:root {
  --bg: #07080b;
  --surface: #0d0f14;
  --surface-2: #12151c;
  --surface-3: #181c25;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f7fb;
  --muted: #a3a9b8;
  --muted-2: #737a8c;
  --blue: #7aa2ff;
  --violet: #9c7cff;
  --cyan: #5ee7f2;
  --gold: #f4cf76;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(75, 103, 255, 0.16), transparent 27rem),
    radial-gradient(circle at 20% 32%, rgba(156, 124, 255, 0.08), transparent 26rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  z-index: -1;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(calc(100% - 40px), var(--max));
  height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 8, 11, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 760;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(122,162,255,.28), rgba(156,124,255,.08));
  box-shadow: inset 0 0 20px rgba(122,162,255,.12);
  font-size: 13px;
}

.site-header nav { display: flex; align-items: center; gap: 30px; }
.site-header nav a { color: var(--muted); font-size: 14px; transition: color .2s ease; }
.site-header nav a:hover, .site-header nav a:focus-visible { color: var(--text); }
.site-header .nav-cta {
  color: var(--text);
  padding: 9px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 72px;
  padding-block: 92px 112px;
}

.eyebrow, .section-kicker, .offer-label, .panel-label {
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow { color: #c6ccda; display: inline-flex; align-items: center; gap: 10px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 16px rgba(94,231,242,.8); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 24px 0 24px;
  max-width: 700px;
  font-size: clamp(56px, 7.2vw, 96px);
  line-height: .97;
  letter-spacing: -.065em;
  font-weight: 760;
}

.hero-lede { max-width: 630px; margin-bottom: 34px; color: var(--muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 720;
  font-size: 14px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.button-primary { color: #05070a; background: #f5f7fb; }
.button-primary:hover, .button-primary:focus-visible { background: #dfe7ff; }
.button-secondary { border-color: var(--line-strong); background: rgba(255,255,255,.035); }
.button-secondary:hover, .button-secondary:focus-visible { background: rgba(255,255,255,.075); border-color: rgba(255,255,255,.3); }
.full { width: 100%; }
.trust-line { margin: 23px 0 0; color: var(--muted-2); font-size: 12px; }
.trust-line span { display: inline-block; width: 3px; height: 3px; margin: 0 9px 3px; border-radius: 50%; background: var(--muted-2); }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.visual-glow { position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(101,129,255,.26), rgba(103,72,255,.08) 48%, transparent 72%); filter: blur(20px); }
.arena-card {
  position: relative;
  z-index: 2;
  width: min(100%, 530px);
  min-height: 430px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 25px;
  background: linear-gradient(150deg, rgba(21,25,35,.96), rgba(9,11,16,.97));
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.06);
  overflow: hidden;
}
.arena-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 45%, rgba(122,162,255,.055), transparent 70%); pointer-events: none; }
.arena-topbar, .arena-meta, .arena-footer { display: flex; align-items: center; justify-content: space-between; }
.micro-brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 12px; letter-spacing: .13em; }
.micro-brand span { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 7px; }
.live-pill { display: flex; align-items: center; gap: 7px; padding: 5px 9px; border: 1px solid rgba(94,231,242,.24); border-radius: 999px; color: #b9f9ff; background: rgba(94,231,242,.07); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 9px var(--cyan); }
.arena-meta { margin-top: 45px; color: var(--muted-2); font-size: 10px; letter-spacing: .12em; }
.arena-title { margin-top: 6px; font-size: 44px; line-height: 1; font-weight: 740; letter-spacing: -.045em; }
.scoreboard { margin-top: 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.team-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.team-row + .team-row { border-top: 1px solid var(--line); }
.team { display: flex; align-items: center; gap: 12px; }
.team-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; color: #dce5ff; background: linear-gradient(145deg, rgba(122,162,255,.26), rgba(156,124,255,.09)); border: 1px solid rgba(122,162,255,.24); font-size: 11px; }
.team strong { font-size: 13px; letter-spacing: .12em; }
.score { font-size: 24px; font-weight: 800; }
.muted-row { opacity: .52; }
.bracket-strip { display: grid; grid-template-columns: 1fr 36px 1fr; align-items: center; gap: 10px; margin-top: 22px; }
.bracket-strip > div:not(.connector) { padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.025); }
.bracket-strip span { display: block; color: var(--muted-2); font-size: 8px; letter-spacing: .12em; }
.bracket-strip b { display: block; margin-top: 3px; font-size: 11px; letter-spacing: .08em; }
.bracket-strip .active { border-color: rgba(122,162,255,.38) !important; box-shadow: inset 0 0 22px rgba(122,162,255,.06); }
.connector { height: 1px; background: linear-gradient(90deg, var(--line-strong), rgba(122,162,255,.5), var(--line-strong)); }
.arena-footer { margin-top: 28px; color: var(--muted-2); font: 11px ui-monospace, SFMono-Regular, Menlo, monospace; }
.pulse-bars { display: flex; align-items: end; gap: 3px; height: 18px; }
.pulse-bars i { width: 3px; border-radius: 4px; background: linear-gradient(var(--cyan), var(--violet)); animation: pulsebar 1.4s ease-in-out infinite; }
.pulse-bars i:nth-child(1) { height: 7px; }
.pulse-bars i:nth-child(2) { height: 15px; animation-delay: .12s; }
.pulse-bars i:nth-child(3) { height: 10px; animation-delay: .25s; }
.pulse-bars i:nth-child(4) { height: 18px; animation-delay: .38s; }
@keyframes pulsebar { 0%,100% { opacity: .35; transform: scaleY(.7); } 50% { opacity: 1; transform: scaleY(1); } }
.floating-chip { position: absolute; z-index: 3; padding: 8px 12px; border: 1px solid var(--line-strong); border-radius: 999px; color: #d5d9e4; background: rgba(12,14,20,.84); backdrop-filter: blur(10px); box-shadow: 0 12px 28px rgba(0,0,0,.25); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.chip-one { top: 12%; right: -3%; }
.chip-two { left: -3%; bottom: 21%; }
.chip-three { right: 4%; bottom: 6%; }

.statement { padding-block: 122px; border-top: 1px solid var(--line); text-align: center; }
.section-kicker { margin-bottom: 17px; color: var(--blue); }
.statement h2 { max-width: 1000px; margin: 0 auto 25px; font-size: clamp(35px, 5vw, 64px); line-height: 1.08; letter-spacing: -.045em; }
.statement > p:last-child { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: 18px; }

.applications, .value { padding-block: 110px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 50px; }
.section-heading h2, .concept-header h2, .acquire h2 { margin-bottom: 0; font-size: clamp(38px, 5vw, 64px); line-height: 1.05; letter-spacing: -.045em; }
.section-heading > p { max-width: 500px; margin-bottom: 5px; color: var(--muted); }
.application-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.application-card { position: relative; min-height: 315px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(18,21,28,.88), rgba(10,12,17,.88)); overflow: hidden; }
.application-card::after { content: ""; position: absolute; inset: auto -50px -80px auto; width: 190px; height: 190px; border-radius: 50%; background: radial-gradient(circle, rgba(122,162,255,.09), transparent 70%); }
.card-index { position: absolute; top: 24px; right: 26px; color: var(--muted-2); font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 48px; border: 1px solid var(--line-strong); border-radius: 14px; background: rgba(255,255,255,.035); color: var(--blue); }
.application-card h3 { margin-bottom: 11px; font-size: 24px; letter-spacing: -.025em; }
.application-card p { max-width: 470px; color: var(--muted); }
.sample-path { position: absolute; bottom: 26px; color: var(--muted-2); font: 11px ui-monospace, SFMono-Regular, Menlo, monospace; }
.bracket-icon { grid-template-columns: repeat(2, 7px); gap: 5px 9px; }
.bracket-icon i { width: 7px; height: 7px; border-radius: 2px; background: currentColor; opacity: .8; }
.bracket-icon i:nth-child(3) { grid-column: 2; }
.trophy-icon { font-size: 24px; }
.study-icon { display: flex; gap: 4px; padding: 11px; }
.study-icon i { display: block; width: 9px; height: 23px; border: 1px solid currentColor; border-radius: 3px; }
.rank-icon { display: flex; align-items: end; gap: 4px; padding: 12px; }
.rank-icon i { width: 6px; border-radius: 2px; background: currentColor; }
.rank-icon i:nth-child(1) { height: 9px; opacity: .4; }.rank-icon i:nth-child(2) { height: 17px; opacity: .7; }.rank-icon i:nth-child(3) { height: 25px; }

.concept { padding-block: 115px; }
.concept-header { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 32px; }
.concept-tabs { display: flex; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.025); }
.concept-tab { padding: 9px 15px; color: var(--muted); border: 0; border-radius: 999px; background: transparent; cursor: pointer; font: inherit; font-size: 13px; }
.concept-tab.active { color: #08090d; background: #eef2fb; }
.concept-window { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 26px; background: #0b0d12; box-shadow: var(--shadow); }
.browser-bar { height: 48px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 18px; border-bottom: 1px solid var(--line); color: var(--muted-2); }
.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.22); }
.browser-address { min-width: 190px; padding: 5px 25px; border: 1px solid var(--line); border-radius: 999px; text-align: center; font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; }
.secure-mark { justify-self: end; }
.concept-panel { min-height: 520px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 50px; padding: 58px; background: radial-gradient(circle at 80% 50%, rgba(122,162,255,.08), transparent 36%); }
.panel-copy h3 { margin: 10px 0 16px; font-size: clamp(39px, 5vw, 69px); line-height: 1.01; letter-spacing: -.055em; }
.panel-copy p { max-width: 430px; color: var(--muted); font-size: 17px; }
.panel-label { color: var(--blue); }
.fake-button { display: inline-flex; align-items: center; gap: 18px; margin-top: 14px; padding: 11px 16px; border: 1px solid var(--line-strong); border-radius: 10px; background: rgba(255,255,255,.04); font-size: 13px; font-weight: 700; }
.fake-button b { color: var(--blue); }
.panel-art { position: relative; min-height: 340px; }
.esports-art svg { position: absolute; inset: 22px 0 0; width: 100%; height: 250px; overflow: visible; }
.esports-art path { fill: none; stroke: rgba(122,162,255,.34); stroke-width: 1.5; }
.match-card { position: absolute; z-index: 2; width: 145px; padding: 15px; border: 1px solid var(--line-strong); border-radius: 14px; background: rgba(17,20,28,.96); box-shadow: 0 16px 35px rgba(0,0,0,.3); }
.match-card span { display: block; color: var(--muted-2); font-size: 8px; letter-spacing: .12em; }
.match-card b { display: block; margin-top: 10px; font-size: 13px; letter-spacing: .08em; }
.match-card em { position: absolute; right: 14px; bottom: 13px; font-style: normal; font-size: 20px; font-weight: 800; }
.match-card.left { left: 0; top: 35px; }.match-card.right { right: 0; bottom: 35px; }.match-card.middle { left: 50%; top: 50%; transform: translate(-50%,-50%); border-color: rgba(122,162,255,.48); box-shadow: 0 0 48px rgba(122,162,255,.12); }
.education-art { display: grid; grid-template-columns: 155px 1fr; min-height: 330px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 18px; background: #10131a; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.study-sidebar { padding: 23px 18px; border-right: 1px solid var(--line); background: rgba(255,255,255,.018); }
.study-sidebar b { display: block; margin-bottom: 28px; }
.study-sidebar span { display: block; margin: 13px 0; color: var(--muted-2); font-size: 11px; }
.study-main { padding: 30px; }
.study-head { display: flex; justify-content: space-between; }
.study-head b { color: var(--cyan); }
.progress-track { height: 5px; margin: 13px 0 30px; border-radius: 9px; background: rgba(255,255,255,.08); }
.progress-track i { display: block; width: 68%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.task { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.task i { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 7px; font-style: normal; font-size: 10px; }
.task.done { opacity: .55; }
.sports-art { display: grid; grid-template-columns: 110px 1fr; gap: 14px; }
.date-tile { min-height: 290px; display: grid; align-content: center; justify-items: center; border: 1px solid var(--line-strong); border-radius: 17px; background: linear-gradient(155deg, rgba(122,162,255,.16), rgba(156,124,255,.03)); }
.date-tile span { color: var(--muted); font-size: 11px; letter-spacing: .18em; }
.date-tile b { font-size: 62px; line-height: 1; }
.sports-list { border: 1px solid var(--line-strong); border-radius: 17px; overflow: hidden; background: #10131a; }
.sports-list div { position: relative; padding: 25px 22px; }
.sports-list div + div { border-top: 1px solid var(--line); }
.sports-list span { display: block; color: var(--muted-2); font-size: 9px; letter-spacing: .1em; }
.sports-list b { display: block; margin-top: 6px; font-size: 13px; }
.sports-list em { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--muted); font-style: normal; font-size: 9px; }
.sports-list div:nth-child(2) em { color: var(--cyan); }
.concept-note { margin: 16px 0 0; color: var(--muted-2); font-size: 11px; text-align: center; }

.value-list { border-top: 1px solid var(--line); }
.value-row { display: grid; grid-template-columns: 70px 1fr 1.25fr; gap: 35px; align-items: center; min-height: 150px; border-bottom: 1px solid var(--line); }
.value-row > span { color: var(--muted-2); font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; }
.value-row h3 { margin: 0; font-size: 22px; letter-spacing: -.025em; }
.value-row p { margin: 0; color: var(--muted); }

.brand-moment { padding-block: 140px; text-align: center; }
.brand-word { font-size: clamp(72px, 15vw, 190px); line-height: .83; font-weight: 800; letter-spacing: -.085em; background: linear-gradient(180deg, #f8faff 10%, #697185 92%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-word span { color: var(--blue); -webkit-text-fill-color: var(--blue); font-size: .28em; letter-spacing: -.03em; }
.brand-moment p { margin: 32px 0 0; color: var(--muted); font-size: 18px; }

.acquire { padding-block: 70px 140px; }
.acquire-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; padding: 58px; border: 1px solid var(--line-strong); border-radius: 30px; background: radial-gradient(circle at 10% 10%, rgba(122,162,255,.12), transparent 33%), linear-gradient(145deg, #11141b, #0b0d12); box-shadow: var(--shadow); }
.acquire-copy > p:not(.section-kicker) { max-width: 540px; margin: 25px 0 0; color: var(--muted); font-size: 18px; }
.domain-only-notice { margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--line); }
.domain-only-notice strong, .domain-only-notice span { display: block; }
.domain-only-notice strong { margin-bottom: 7px; }
.domain-only-notice span { color: var(--muted-2); font-size: 13px; }
.offer-card { padding: 29px; border: 1px solid var(--line-strong); border-radius: 20px; background: rgba(6,8,12,.68); }
.offer-label { color: var(--muted-2); }
.offer-price { margin-top: 8px; font-size: clamp(46px, 6vw, 72px); line-height: 1; font-weight: 770; letter-spacing: -.055em; }
.offer-subline { display: block; margin: 9px 0 26px; color: var(--muted); font-size: 12px; }
.offer-card .button + .button { margin-top: 10px; }
.contact-link { display: block; margin-top: 20px; color: #cdd6eb; text-align: center; text-decoration: underline; text-underline-offset: 4px; font-size: 12px; }
.marketplace-note { margin: 14px 0 0; color: var(--muted-2); text-align: center; font-size: 10px; }

.site-footer { min-height: 120px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 11px; }
.site-footer p { margin: 0; }
.site-footer p:last-child { justify-self: end; }
.footer-brand { color: var(--text); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 72px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 480px; }
  .section-heading, .concept-header { align-items: start; flex-direction: column; }
  .concept-panel { grid-template-columns: 1fr; }
  .panel-art { margin-top: 10px; }
  .acquire-panel { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 720px) {
  .section-shell, .site-header { width: min(calc(100% - 28px), var(--max)); }
  .site-header { height: 70px; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .hero { min-height: auto; padding-block: 64px 88px; }
  h1 { font-size: clamp(49px, 16vw, 72px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { min-height: 410px; }
  .arena-card { min-height: 390px; padding: 20px; }
  .arena-meta { margin-top: 35px; }
  .arena-title { font-size: 36px; }
  .chip-one { right: 0; top: 3%; }.chip-two { left: 0; bottom: 13%; }.chip-three { display: none; }
  .statement, .applications, .value, .concept { padding-block: 84px; }
  .application-grid { grid-template-columns: 1fr; }
  .application-card { min-height: 300px; }
  .concept-tabs { width: 100%; }
  .concept-tab { flex: 1; }
  .concept-window { border-radius: 20px; }
  .browser-address { min-width: 140px; }
  .concept-panel { min-height: auto; padding: 34px 22px 38px; gap: 26px; }
  .panel-art { min-height: 300px; }
  .match-card { width: 116px; padding: 12px; }
  .match-card b { font-size: 10px; }.match-card em { font-size: 16px; }
  .education-art { grid-template-columns: 105px 1fr; min-height: 290px; }
  .study-sidebar { padding: 19px 12px; }.study-main { padding: 22px 15px; }
  .sports-art { grid-template-columns: 82px 1fr; }.date-tile b { font-size: 45px; }.sports-list div { padding: 20px 14px; }.sports-list em { display: none; }
  .value-row { grid-template-columns: 42px 1fr; gap: 16px; padding: 27px 0; }
  .value-row p { grid-column: 2; }
  .brand-moment { padding-block: 100px; }
  .acquire { padding-bottom: 100px; }
  .acquire-panel { padding: 30px 20px; border-radius: 22px; }
  .offer-card { padding: 22px 16px; }
  .site-footer { grid-template-columns: 1fr; gap: 10px; padding-block: 28px; text-align: center; }
  .site-footer > * { justify-self: center !important; }
}
