/* ═══════════════════════════════════════════════
   ATHENA DIGITAL — style.css  v3
═══════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── TOKENS ── */
:root {
  --bg:        #050505;
  --bg2:       #0c0c0c;
  --bg3:       #111111;
  --border:    rgba(255,255,255,.07);
  --border2:   rgba(255,255,255,.13);
  --white:     #f0ede8;
  --white2:    #b8b4ae;
  --white3:    #6a6760;
  --gold:      #c9a96e;
  --gold2:     #e8c98a;
  --gold-glow: rgba(201,169,110,.18);
  --font-display: 'Bebas Neue', cursive;
  --font-body:    'Outfit', sans-serif;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --radius:    12px;
  --radius-lg: 20px;
}

/* ── BASE ── */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  cursor: auto;                   /* native cursor always visible by default */
  -webkit-font-smoothing: antialiased;
}
/* JS adds .cursor-ready → then hide native cursor */
body.cursor-ready,
body.cursor-ready a,
body.cursor-ready button { cursor: none; }

/* Touch screens: NEVER hide native cursor */
@media (hover: none) {
  body,
  body.cursor-ready,
  body.cursor-ready a,
  body.cursor-ready button { cursor: auto !important; }
}

a   { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── CUSTOM CURSOR DOTS ── */
#cur {
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: -200px; left: -200px; /* offscreen until JS moves it */
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width .22s var(--ease), height .22s var(--ease),
              background .25s, opacity .2s;
  will-change: left, top;
}
#cur-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(201,169,110,.4);
  border-radius: 50%;
  position: fixed; top: -200px; left: -200px;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width .35s var(--ease), height .35s var(--ease),
              border-color .25s, opacity .2s;
  will-change: left, top;
}
/* show only after JS confirms cursor is live */
body.cursor-ready #cur      { opacity: 1; }
body.cursor-ready #cur-ring { opacity: 1; }

body.cur-hover #cur      { width: 18px; height: 18px; background: rgba(201,169,110,.28); }
body.cur-hover #cur-ring { width: 52px; height: 52px; border-color: rgba(201,169,110,.22); }
body.cur-text  #cur      { width: 3px; height: 20px; border-radius: 2px; }

/* ── GRID CANVAS ── */
#grid-canvas {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;                     /* BEHIND everything */
}

/* ── LAYOUT ── */
.page-wrap {
  position: relative;
  z-index: 2;                     /* ABOVE canvas */
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 68px; padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(5,5,5,.9);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201,169,110,.1);
  transition: border-color .4s, background .4s;
}
nav.scrolled { border-bottom-color: rgba(201,169,110,.22); background: rgba(5,5,5,.97); }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: .13em; color: var(--white); line-height: 1;
}
.nav-logo-text span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--white3); padding: 8px 15px; border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover  { color: var(--white); background: rgba(255,255,255,.05); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  border: 1px solid rgba(201,169,110,.5) !important;
  color: var(--gold) !important; border-radius: 6px !important;
}
.nav-cta:hover { background: rgba(201,169,110,.1) !important; border-color: var(--gold) !important; }

/* hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--border2);
  width: 40px; height: 40px; border-radius: 8px;
  align-items: center; justify-content: center; padding: 0;
}
.nav-burger span { display: block; width: 18px; height: 1.5px; background: var(--white); transition: .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(5,5,5,.97); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 20px 24px 28px; gap: 4px;
  z-index: 499;
}
.nav-drawer a {
  font-size: 14px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--white3); padding: 12px 16px; border-radius: 8px;
  transition: color .2s, background .2s; display: block;
}
.nav-drawer a:hover { color: var(--white); background: rgba(255,255,255,.04); }
.nav-drawer.open { display: flex; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #050505;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 7px; border: none;
  transition: background .25s, transform .2s, box-shadow .3s;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,169,110,.2); }
.btn-gold svg { width: 14px; height: 14px; stroke: #050505; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white2);
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 7px;
  border: 1px solid var(--border2);
  transition: border-color .25s, color .25s, background .25s;
}
.btn-outline:hover { border-color: rgba(201,169,110,.5); color: var(--gold); background: rgba(201,169,110,.05); }
.btn-outline svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── SECTIONS ── */
.sec { padding: 110px 5vw; }
.sec-inner { max-width: 1320px; margin: 0 auto; }

.sec-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.sec-label::before { content: ''; width: 22px; height: 1px; background: var(--gold); }

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  letter-spacing: .03em; line-height: .95; color: var(--white);
}
.sec-desc {
  font-size: 15px; color: var(--white3); font-weight: 300;
  line-height: 1.8; max-width: 520px; margin-top: 16px;
}
.gold-div { width: 44px; height: 2px; background: var(--gold); border-radius: 2px; margin: 24px 0; }

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden; padding: 17px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(12,12,12,.6);
}
.marquee-track { display: flex; width: max-content; animation: marq 32s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  white-space: nowrap; padding: 0 44px;
  font-family: var(--font-display); font-size: 13px;
  letter-spacing: .2em; color: rgba(201,169,110,.4);
  display: flex; align-items: center; gap: 44px;
}
.marquee-item::after { content: '✦'; font-size: 7px; color: rgba(201,169,110,.2); }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; }

/* ── CARDS ── */
.card-wrap {
  background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.card {
  background: var(--bg2); padding: 40px 34px;
  position: relative; overflow: hidden;
  transition: background .3s;
}
.card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform .4s var(--ease);
}
.card:hover { background: var(--bg3); }
.card:hover::after { transform: scaleX(1); }

.card-ico {
  width: 50px; height: 50px; border-radius: 11px;
  background: rgba(201,169,110,.07); border: 1px solid rgba(201,169,110,.16);
  display: flex; align-items: center; justify-content: center; margin-bottom: 26px;
  transition: background .3s, border-color .3s;
}
.card:hover .card-ico { background: rgba(201,169,110,.13); border-color: rgba(201,169,110,.3); }
.card-ico svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.card-title { font-family: var(--font-display); font-size: 21px; letter-spacing: .06em; color: var(--white); margin-bottom: 11px; }
.card-desc  { font-size: 13px; color: var(--white3); line-height: 1.77; font-weight: 300; }

.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.tag {
  font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  background: rgba(255,255,255,.04); color: var(--white3);
  border: 1px solid rgba(255,255,255,.08);
}

/* ── STATS ── */
.stat-val { font-family: var(--font-display); font-size: 68px; letter-spacing: -.02em; color: var(--gold); line-height: 1; }
.stat-sub { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--white3); margin-top: 8px; }
.stat-item { background: var(--bg); padding: 44px 32px; text-align: center; }

/* ── INDUSTRY LIST ── */
a.ind-row { text-decoration: none; display: flex; }
.ind-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; border-bottom: 1px solid var(--border);
  transition: padding-left .35s var(--ease);
}
.ind-row:first-child { border-top: 1px solid var(--border); }
.ind-row:hover { padding-left: 14px; }
.ind-name {
  font-family: var(--font-display); font-size: clamp(26px,3.2vw,46px);
  letter-spacing: .04em; color: var(--white); transition: color .2s;
}
.ind-row:hover .ind-name { color: var(--gold); }
.ind-arr {
  width: 38px; height: 38px; border: 1px solid var(--border2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .25s, border-color .25s, transform .35s var(--ease);
}
.ind-row:hover .ind-arr { background: var(--gold); border-color: var(--gold); transform: rotate(-45deg); }
.ind-arr svg { width: 14px; height: 14px; stroke: var(--white3); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; transition: stroke .25s; }
.ind-row:hover .ind-arr svg { stroke: #050505; }

/* ── CTA BAND ── */
.cta-band {
  padding: 100px 5vw; text-align: center;
  background: var(--bg2);
  border-top: 1px solid rgba(201,169,110,.1);
  border-bottom: 1px solid rgba(201,169,110,.1);
}
.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 108px);
  letter-spacing: .02em; line-height: .9; color: var(--white);
}
.cta-band-title span { color: var(--gold); text-shadow: 0 0 80px rgba(201,169,110,.25); }
.cta-band-sub { font-size: 16px; color: var(--white3); font-weight: 300; line-height: 1.75; max-width: 480px; margin: 22px auto 0; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 44px; flex-wrap: wrap; }
.cta-actions .btn-gold,
.cta-actions .btn-outline { min-width: 200px; justify-content: center; }

/* ── LEGAL ── */
.legal-hero { padding: 76px 5vw 52px; border-bottom: 1px solid var(--border); }
.legal-title { font-family: var(--font-display); font-size: clamp(44px, 6vw, 78px); letter-spacing: .04em; color: var(--white); }
.legal-date  { font-size: 13px; color: var(--white3); font-weight: 300; margin-top: 10px; }
.legal-body  { padding: 56px 5vw 110px; max-width: 800px; }
.legal-body h2 { font-family: var(--font-display); font-size: 24px; letter-spacing: .06em; color: var(--gold); margin: 40px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p  { font-size: 14px; color: var(--white3); line-height: 1.85; font-weight: 300; margin-bottom: 14px; }
.legal-body ul { padding-left: 20px; margin-bottom: 14px; }
.legal-body ul li { font-size: 14px; color: var(--white3); line-height: 1.8; font-weight: 300; margin-bottom: 6px; }
.legal-body a  { color: var(--gold); }
.legal-body strong { color: var(--white2); font-weight: 600; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 5vw 36px; background: var(--bg);
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 52px; }
.footer-brand p { font-size: 13px; color: var(--white3); line-height: 1.75; font-weight: 300; margin-top: 14px; max-width: 260px; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(201,169,110,.55); margin-bottom: 18px; }
.footer-col a  { display: block; font-size: 13px; color: var(--white3); margin-bottom: 10px; font-weight: 300; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bot { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; border-top: 1px solid var(--border); }
.footer-bot p { font-size: 12px; color: var(--white3); font-weight: 300; }
.social-row { display: flex; gap: 8px; }
.soc-btn { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.04); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.soc-btn:hover { background: rgba(201,169,110,.1); border-color: rgba(201,169,110,.4); }
.soc-btn svg { width: 14px; height: 14px; stroke: var(--white3); fill: none; stroke-width: 1.6; transition: stroke .2s; }
.soc-btn:hover svg { stroke: var(--gold); }

/* ── FORM ── */
.form-wrap { display: flex; flex-direction: column; gap: 16px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-grp { display: flex; flex-direction: column; gap: 7px; }
.f-lbl { font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--white3); }
.f-inp, .f-sel, .f-ta {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 15px;
  font-family: var(--font-body); font-size: 14px; color: var(--white); font-weight: 300;
  transition: border-color .2s, box-shadow .2s; outline: none; appearance: none;
}
.f-inp::placeholder, .f-ta::placeholder { color: var(--white3); opacity: .7; }
.f-inp:focus, .f-sel:focus, .f-ta:focus { border-color: rgba(201,169,110,.45); box-shadow: 0 0 0 3px rgba(201,169,110,.06); }
.f-sel { color: var(--white2); }
.f-sel option { background: var(--bg3); color: var(--white); }
.f-ta  { resize: vertical; min-height: 118px; }
.f-submit {
  background: var(--gold); color: #050505;
  padding: 14px 26px; border-radius: 8px;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border: none; width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.f-submit:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(201,169,110,.2); }
.f-submit svg { width: 15px; height: 15px; stroke: #050505; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.f-error { font-size: 11px; color: #e05252; margin-top: 4px; min-height: 16px; display: block; }

/* ── SECTION VARIANTS ── */
.bg-dark2 { background: var(--bg2); }
.bg-dark3 { background: var(--bg3); }

/* ── PROCESS ── */
.proc-step { background: var(--bg2); padding: 40px 30px; position: relative; }
.proc-step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,169,110,.3), transparent); opacity: 0; transition: opacity .3s; }
.proc-step:hover::before { opacity: 1; }
.proc-num   { font-family: var(--font-display); font-size: 78px; color: rgba(255,255,255,.03); line-height: 1; margin-bottom: 24px; }
.proc-title { font-family: var(--font-display); font-size: 19px; letter-spacing: .06em; color: var(--white); margin-bottom: 10px; }
.proc-desc  { font-size: 13px; color: var(--white3); line-height: 1.75; font-weight: 300; }

/* ── VALUES ── */
.val-card  { background: var(--bg2); padding: 36px 30px; }
.val-num   { font-family: var(--font-display); font-size: 54px; color: rgba(201,169,110,.1); line-height: 1; margin-bottom: 18px; }
.val-title { font-family: var(--font-display); font-size: 19px; letter-spacing: .06em; color: var(--white); margin-bottom: 10px; }
.val-desc  { font-size: 13px; color: var(--white3); line-height: 1.72; font-weight: 300; }

/* ── WHY POINTS ── */
.why-pt { padding: 22px; border-radius: 11px; border: 1px solid transparent; transition: border-color .3s, background .3s; }
.why-pt:hover { border-color: rgba(201,169,110,.2); background: rgba(201,169,110,.04); }
.why-pt-head { display: flex; align-items: center; gap: 13px; margin-bottom: 9px; }
.why-pt-ico { width: 34px; height: 34px; flex-shrink: 0; border-radius: 8px; background: rgba(201,169,110,.09); border: 1px solid rgba(201,169,110,.18); display: flex; align-items: center; justify-content: center; }
.why-pt-ico svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.why-pt-title { font-family: var(--font-display); font-size: 17px; letter-spacing: .06em; color: var(--white); }
.why-pt-desc  { font-size: 13px; color: var(--white3); line-height: 1.72; font-weight: 300; padding-left: 47px; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 68px);
  padding-top: 68px;
  display: flex; flex-direction: column; justify-content: center;
  padding-left: 5vw; padding-right: 5vw;
  position: relative; overflow: hidden;
}
/* hero children: visible by default, animate in via JS class */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp .7s .15s var(--ease) both;
}
.hero-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12.5vw, 196px);
  line-height: .88; letter-spacing: -.01em;
  opacity: 0;
  animation: fadeUp .9s .3s var(--ease) both;
}
.hero-title .solid     { display: block; color: var(--white); }
.hero-title .stroke    { display: block; -webkit-text-stroke: 1px rgba(240,237,232,.18); color: transparent; }
.hero-title .gold-line { display: block; color: var(--gold); text-shadow: 0 0 60px rgba(201,169,110,.22); }

.hero-sub {
  font-size: clamp(14px, 1.3vw, 16px); color: var(--white3); font-weight: 300;
  line-height: 1.8; max-width: 480px; margin-top: 36px;
  opacity: 0;
  animation: fadeUp .9s .45s var(--ease) both;
}
.hero-actions {
  display: flex; align-items: center; gap: 14px; margin-top: 44px;
  opacity: 0;
  animation: fadeUp .9s .6s var(--ease) both;
  flex-wrap: wrap;
}
.hero-scroll {
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--white3);
  margin-top: 52px;
  opacity: 0;
  animation: fadeUp .9s .75s var(--ease) both;
}
.scroll-line {
  width: 44px; height: 1px; background: var(--white3);
  animation: scrollAnim 2.2s 1.5s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100%{width:44px;opacity:.5} 50%{width:68px;opacity:1} }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .grid-3.services-g { grid-template-columns: repeat(2,1fr); }
  .grid-4.proc-g { grid-template-columns: repeat(2,1fr); }
  .grid-4.stats-g { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .sec { padding: 72px 20px; }
  nav { padding: 0 20px; }
  .hero { padding-left: 20px; padding-right: 20px; padding-bottom: 60px; }
  .nav-links { display: none !important; }
  .nav-burger { display: flex; }
  .grid-3.services-g { grid-template-columns: 1fr; }
  .grid-4.proc-g { grid-template-columns: 1fr; }
  .grid-4.stats-g { grid-template-columns: repeat(2,1fr); }
  .grid-3.values-g { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bot { flex-direction: column; gap: 14px; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .f-row { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(60px, 17vw, 110px); }
}
