@import url("/css/fonts.css");

:root {
  --page-bg: #060b0f;
  --page-bg-soft: #0d151b;
  --panel-bg: rgba(12, 19, 25, 0.82);
  --panel-bg-strong: rgba(16, 25, 33, 0.92);
  --panel-bg-soft: rgba(24, 34, 43, 0.82);
  --accent: #199e9e;
  --accent-soft: #77ecff;
  --accent-deep: #0b6f82;
  --text-main: #f1fdff;
  --text-soft: #b6cdd4;
  --text-muted: #78939b;
  --line-soft: rgba(119, 236, 255, 0.16);
  --line-strong: rgba(119, 236, 255, 0.34);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --site-width: 97%;
  --cut-size: 24px;
  --cut-size-small: 16px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  font-family: "lyonsRounded", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(25, 158, 158, 0.22), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(95, 117, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #071015 0%, #05090d 100%);
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page-glow,
.page-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.page-grid {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 92%);
}

.page-glow {
  filter: blur(26px);
  opacity: 0.75;
}

.page-glow--left {
  background: radial-gradient(circle, rgba(36, 226, 226, 0.18), transparent 48%);
  transform: translate(-20%, -12%);
}

.page-glow--right {
  background: radial-gradient(circle, rgba(97, 102, 255, 0.14), transparent 44%);
  transform: translate(36%, -6%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: var(--site-width);
  margin: 0 auto;
  padding: 22px 0 140px;
}

.cut-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  clip-path: polygon(
    0 0,
    calc(100% - var(--cut-size)) 0,
    100% var(--cut-size),
    100% 100%,
    var(--cut-size) 100%,
    0 calc(100% - var(--cut-size))
  );
  background: transparent;
  box-shadow: var(--shadow);
}

.cut-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(135deg, rgba(119, 236, 255, 0.68), rgba(25, 158, 158, 0.25) 40%, rgba(119, 236, 255, 0.12) 100%);
  clip-path: inherit;
  z-index: -2;
}

.cut-panel::after {
  content: "";
  position: absolute;
  inset: 2px;
  background:
    linear-gradient(180deg, rgba(20, 31, 40, 0.96), rgba(8, 13, 18, 0.96)),
    linear-gradient(120deg, rgba(119, 236, 255, 0.08), transparent 30%);
  clip-path: inherit;
  z-index: -1;
}

.site-header {
  min-height: var(--header-height);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 16px;
  z-index: 10;
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(25, 158, 158, 0.34));
}

.textHead {
  margin: 0;
  font-family: "cloudRound", sans-serif;
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, #9ff8ff 0%, #4ac9ff 48%, #dffcff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.header-links,
.header-actions,
.hero-actions,
.cta-banner__actions,
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-links {
  flex-wrap: wrap;
  justify-content: center;
}

.header-links a,
.site-footer__links a {
  color: var(--text-soft);
  transition: color 140ms ease, transform 140ms ease;
}

.header-links a:hover,
.site-footer__links a:hover {
  color: var(--text-main);
  transform: translateY(-1px);
}

.navButton {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  color: var(--text-main);
  background:
    linear-gradient(180deg, rgba(30, 146, 146, 0.26), rgba(12, 64, 77, 0.56));
  clip-path: polygon(
    var(--cut-size-small) 0,
    100% 0,
    calc(100% - var(--cut-size-small)) 100%,
    0 100%
  );
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 150ms ease, filter 150ms ease, border-color 150ms ease;
}

.navButton:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.navButton--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-soft);
}

.landing-main {
  display: grid;
  gap: 34px;
  padding-top: 34px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.content-section,
.cta-banner {
  display: grid;
  gap: 24px;
}

.eyebrow-row {
  display: flex;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(119, 236, 255, 0.24);
  border-radius: 999px;
  background: rgba(119, 236, 255, 0.08);
  color: var(--accent-soft);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title,
.section-heading h2,
.cta-banner h2 {
  margin: 0;
  font-family: "righteous", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.hero-title {
  font-size: 40px;
}

.hero-text,
.section-heading p,
.cta-banner p,
.mini-card h2,
.metric-card strong,
.feature-card p,
.space-card p,
.site-footer p,
.cookieDesc {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.hero-text {
  max-width: 60ch;
  font-size: 1.05rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-card,
.metric-card,
.feature-card,
.space-card,
.cta-banner {
  padding: 22px;
}

.mini-card {
  min-height: 158px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.mini-card__label,
.metric-card span,
.preview-sidebar__group p,
.preview-members__group p,
.feature-icon,
.space-card span {
  color: var(--accent-soft);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mini-card h2 {
  font-size: 1rem;
  font-weight: 400;
}

.hero-preview {
  padding: 18px;
  display: grid;
  gap: 16px;
  min-height: 520px;
  align-content: space-between;
}

.visual-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.82rem;
}

.privacy-graphic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
  min-height: 0;
}

.privacy-card,
.privacy-core {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.privacy-card {
  min-height: 168px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.privacy-card::before,
.privacy-core::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(119, 236, 255, 0.06), transparent 48%);
  pointer-events: none;
}

.privacy-card--action {
  grid-column: 1 / -1;
  min-height: 144px;
  background:
    linear-gradient(180deg, rgba(255, 184, 77, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.privacy-card__tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(119, 236, 255, 0.16);
  background: rgba(119, 236, 255, 0.07);
  color: var(--accent-soft);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.privacy-card strong,
.privacy-core h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.privacy-card p,
.privacy-core p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.privacy-core {
  grid-column: 1 / -1;
  min-height: 250px;
  padding: 28px 24px 24px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
  isolation: isolate;
}

.privacy-core__ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(119, 236, 255, 0.18), rgba(119, 236, 255, 0.06) 35%, transparent 68%);
  filter: blur(6px);
  z-index: 0;
}

.privacy-core__shield {
  position: relative;
  z-index: 1;
  width: 118px;
  height: 132px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 88% 15%, 88% 58%, 50% 100%, 12% 58%, 12% 15%);
  background:
    linear-gradient(180deg, rgba(149, 252, 255, 0.96), rgba(25, 158, 158, 0.92));
  box-shadow:
    0 0 0 8px rgba(119, 236, 255, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.28);
}

.privacy-core__lock {
  position: relative;
  width: 34px;
  height: 32px;
  border-radius: 10px;
  background: rgba(4, 16, 20, 0.78);
}

.privacy-core__lock::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 22px;
  height: 18px;
  border: 4px solid rgba(4, 16, 20, 0.78);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  transform: translateX(-50%);
}

.hero-visual__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.preview-topbar,
.preview-chat__header,
.preview-members__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.preview-topbar {
  flex-wrap: wrap;
}

.preview-pill,
.preview-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(119, 236, 255, 0.1);
  border: 1px solid rgba(119, 236, 255, 0.18);
  color: var(--accent-soft);
  font-size: 0.82rem;
}

.preview-dots {
  display: inline-flex;
  gap: 8px;
}

.preview-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.preview-stage {
  display: grid;
  grid-template-columns: 56px 210px minmax(0, 1fr) 170px;
  gap: 14px;
  min-height: 0;
  flex: 1;
}

.preview-servers,
.preview-sidebar,
.preview-chat,
.preview-members {
  min-height: 0;
}

.preview-servers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 6px;
}

.server-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  clip-path: polygon(
    50% 0%,
    72% 3%,
    88% 12%,
    97% 28%,
    100% 50%,
    97% 72%,
    88% 88%,
    72% 97%,
    50% 100%,
    28% 97%,
    12% 88%,
    3% 72%,
    0% 50%,
    3% 28%,
    12% 12%,
    28% 3%
  );
  transition: clip-path 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.server-icon img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.server-icon--active,
.server-icon:hover {
  background: var(--accent);
  transform: translateY(-1px);
  clip-path: polygon(
    15% 0%,
    85% 0%,
    100% 15%,
    100% 35%,
    100% 65%,
    100% 85%,
    85% 100%,
    65% 100%,
    35% 100%,
    15% 100%,
    0% 85%,
    0% 65%,
    0% 35%,
    0% 15%,
    15% 0%,
    35% 0%
  );
}

.preview-sidebar,
.preview-chat,
.preview-members {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
}

.preview-sidebar {
  padding: 16px 14px;
  display: grid;
  align-content: start;
  gap: 18px;
}

.preview-sidebar__header {
  min-height: 44px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  font-weight: 700;
}

.preview-sidebar__group {
  display: grid;
  gap: 8px;
}

.preview-channel {
  min-height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  color: var(--text-soft);
  border-radius: 12px;
  transition: background 140ms ease, color 140ms ease;
}

.preview-channel:hover,
.preview-channel--active {
  background: rgba(119, 236, 255, 0.08);
  color: var(--text-main);
}

.preview-chat {
  padding: 16px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
}

.preview-chat__header strong {
  display: block;
  font-size: 1.04rem;
}

.preview-chat__header span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.preview-feed {
  display: grid;
  gap: 14px;
  align-content: start;
  overflow: hidden;
}

.preview-message {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.preview-message--self {
  flex-direction: row-reverse;
}

.preview-avatar,
.member-avatar {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  color: var(--text-main);
  font-weight: 700;
  flex: 0 0 auto;
}

.preview-avatar--cyan,
.member-avatar--aqua {
  background: linear-gradient(180deg, #1e9ea4, #0d5666);
}

.preview-avatar--violet,
.member-avatar--violet {
  background: linear-gradient(180deg, #7568ff, #40378b);
}

.member-avatar--amber {
  background: linear-gradient(180deg, #ffc875, #8a5a17);
}

.preview-bubble {
  min-width: 0;
  max-width: 92%;
  padding: 12px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    color-mix(in oklab, rgba(17, 17, 18, 0.84) 88%, var(--accent) 12%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.preview-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.preview-bubble p {
  margin: 0;
  color: var(--text-main);
  line-height: 1.5;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(119, 236, 255, 0.12);
  color: #d7fbff;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-chip img {
  width: 14px;
  height: 14px;
}

.badge-chip--muted {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
}

.preview-compose {
  min-height: 52px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: var(--text-muted);
}

.preview-compose img {
  width: 24px;
  opacity: 0.85;
}

.preview-members {
  padding: 16px 14px;
  display: grid;
  align-content: start;
  gap: 18px;
}

.preview-members__header {
  font-weight: 700;
}

.preview-members__group {
  display: grid;
  gap: 10px;
}

.member-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 0 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.member-row--offline {
  opacity: 0.58;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.status-dot.online {
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

.status-dot.offline {
  background: #5f6b73;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric-card {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.metric-card strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 400;
}

.content-section {
  gap: 20px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.feature-grid,
.space-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.space-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.space-card {
  display: grid;
  gap: 14px;
  min-height: 244px;
}

.feature-card h3,
.space-card h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.2;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(119, 236, 255, 0.08);
  border: 1px solid rgba(119, 236, 255, 0.14);
}

.space-card span {
  align-self: end;
}

.cta-banner {
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: center;
  gap: 22px;
}

.site-footer {
  padding: 36px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.site-footer p {
  max-width: 54ch;
}

.cookieStuff {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 14;
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookieStuff.is-hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.content {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(8, 13, 18, 0.9);
  border: 1px solid rgba(119, 236, 255, 0.24);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.cookieCopy {
  display: grid;
  gap: 6px;
}

.cookieText {
  margin: 0;
  font-size: 1rem;
}

.cookieButton {
  min-width: 132px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(30, 146, 146, 0.3), rgba(12, 64, 77, 0.64));
  color: var(--text-main);
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  transition: filter 150ms ease, transform 150ms ease;
}

.cookieButton:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.noSelect {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.noI {
  cursor: default;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .preview-stage {
    grid-template-columns: 56px 200px minmax(0, 1fr);
  }

  .preview-members {
    display: none;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    position: relative;
    top: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-links {
    order: 3;
    width: 100%;
  }

  .hero-highlights,
  .metrics-row,
  .space-grid,
  .feature-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .privacy-graphic {
    grid-template-columns: 1fr;
  }

  .privacy-core,
  .privacy-card--action {
    grid-column: auto;
  }

  .preview-stage {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .preview-sidebar {
    display: none;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --site-width: min(100%, calc(100% - 20px));
  }

  .page-shell {
    padding-top: 12px;
  }

  .site-header {
    padding: 18px 18px 20px;
  }

  .brand {
    justify-content: center;
    width: 100%;
  }

  .textHead {
    font-size: 2.4rem;
  }

  .header-actions,
  .hero-actions,
  .cta-banner__actions {
    width: 100%;
    flex-direction: column;
  }

  .navButton {
    width: 100%;
  }

  .hero-title {
    font-size: clamp(0.5rem, 14vw, 2rem);
  }

  .hero-preview {
    min-height: 0;
    padding: 14px;
  }

  .hero-visual__tags {
    justify-content: center;
  }

  .preview-stage {
    grid-template-columns: 1fr;
  }

  .preview-servers {
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .preview-chat__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookieButton {
    width: 100%;
  }
}
