/* ==========================================================================
   WEB ARCHITECTS — v2 design system
   Deep-space navy, molten gold, glass, glow, motion.
   ========================================================================== */

:root {
  --bg: #04060d;
  --bg-2: #070b16;
  --navy: #1F3864;
  --navy-bright: #2d4f8a;
  --gold: #B08D57;
  --gold-2: #d8b47c;
  --gold-3: #f0d9ae;
  --white: #f7f9ff;
  --grey: #9aa5bc;
  --grey-2: #6b768e;
  --line: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.035);
  --gold-grad: linear-gradient(100deg, #B08D57 0%, #d8b47c 45%, #f0d9ae 70%, #B08D57 100%);
  --r-lg: 28px;
  --r-md: 18px;
  --pill: 999px;
  --w: 1180px;
  --display: "Sora", "Inter", -apple-system, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

img, svg, canvas { max-width: 100%; display: block; }
a { color: var(--gold-2); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold-3); }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--white);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.45rem); }

.grad-text {
  background: var(--gold-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.wrap { width: min(var(--w), 92%); margin: 0 auto; }
section { padding: clamp(4.5rem, 10vw, 8rem) 0; position: relative; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1.2rem;
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold-grad);
}

.lead { max-width: 620px; font-size: 1.1rem; }
.sec-head { margin-bottom: 3.2rem; }
.sec-head.center { text-align: center; }
.sec-head.center .lead { margin: 1rem auto 0; }
.sec-head:not(.center) .lead { margin-top: 1rem; }
.sec-head.center .kicker::before { display: none; }
.sec-head.center .kicker::after { display: none; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem 2.3rem;
  border-radius: var(--pill);
  font-family: var(--display);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  cursor: pointer;
  border: none;
  overflow: hidden;
  white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.btn-gold {
  background: var(--gold-grad);
  background-size: 200% auto;
  color: #120d05;
  box-shadow: 0 10px 40px rgba(176, 141, 87, .35), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-gold::after {           /* shine sweep */
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  transition: left .6s var(--ease);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 55px rgba(176, 141, 87, .5), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-gold:hover::after { left: 130%; }

.btn-ghost {
  background: rgba(255,255,255,.03);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-3px); }
.btn-sm { padding: .62rem 1.5rem; font-size: .88rem; }

/* ==========================================================================
   Nav
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold-grad);
  z-index: 300;
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
/* blur lives on a pseudo-element so the nav itself never becomes a
   containing block for the fixed mobile menu (backdrop-filter quirk) */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: rgba(4, 6, 13, .78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity .35s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav.scrolled::before { opacity: 1; }
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1rem;
}
.nav.scrolled .nav-in { padding: .8rem 0; }

.logo {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--display);
  font-weight: 800; font-size: 1.12rem;
  color: var(--white); letter-spacing: -0.02em;
}
.logo:hover { color: var(--white); }
.logo-img {
  width: 46px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-mark {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.25), transparent 40%),
    linear-gradient(135deg, #B08D57, #8a6c3e);
  display: grid; place-items: center;
  color: #120d05; font-weight: 800; font-size: .95rem;
  box-shadow: 0 4px 18px rgba(176,141,87,.4);
}
.logo em { font-style: normal; color: var(--gold-2); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a:not(.btn) {
  position: relative;
  color: var(--grey);
  font-weight: 600; font-size: .93rem;
  padding: .3rem 0;
}
/* keep the CTA reading as a button, not a nav link */
.nav-links a.btn-gold {
  color: #0a0703;
  font-weight: 800;
  letter-spacing: .005em;
}
.nav-links a.btn-gold:hover { color: #0a0703; }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:not(.btn):hover, .nav-links a.on { color: var(--white); }
.nav-links a:not(.btn):hover::after, .nav-links a.on::after { transform: scaleX(1); }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; z-index: 210; }
.burger span { display: block; width: 25px; height: 2px; background: var(--white); margin: 5.5px 0; border-radius: 2px; transition: .3s var(--ease); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.orb-navy {
  width: 60vw; height: 60vw; max-width: 780px; max-height: 780px;
  background: radial-gradient(circle, rgba(45, 79, 138, .55), transparent 65%);
  top: -22%; left: 50%; transform: translateX(-50%);
  animation: drift1 16s ease-in-out infinite alternate;
}
.orb-gold {
  width: 34vw; height: 34vw; max-width: 460px; max-height: 460px;
  background: radial-gradient(circle, rgba(176, 141, 87, .28), transparent 65%);
  bottom: -12%; right: -6%;
  animation: drift2 13s ease-in-out infinite alternate;
}
.orb-gold-2 {
  width: 26vw; height: 26vw; max-width: 340px; max-height: 340px;
  background: radial-gradient(circle, rgba(176, 141, 87, .16), transparent 60%);
  bottom: 8%; left: -8%;
  animation: drift1 18s ease-in-out infinite alternate-reverse;
}
@keyframes drift1 { to { transform: translate(-46%, 6%) scale(1.12); } }
@keyframes drift2 { to { transform: translate(-8%, -10%) scale(1.15); } }

/* faint blueprint grid, radially masked */
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 25%, transparent 75%);
  pointer-events: none;
}

.hero-in { position: relative; z-index: 2; width: min(var(--w), 92%); margin: 0 auto; }

.hero-pill {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem 1.25rem;
  border-radius: var(--pill);
  border: 1px solid rgba(176, 141, 87, .38);
  background: rgba(176, 141, 87, .08);
  backdrop-filter: blur(8px);
  color: var(--gold-2);
  font-size: .85rem; font-weight: 600;
  margin-bottom: 2rem;
}
.hero-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 0 rgba(216, 180, 124, .6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(216, 180, 124, .55); }
  70% { box-shadow: 0 0 0 11px rgba(216, 180, 124, 0); }
  100% { box-shadow: 0 0 0 0 rgba(216, 180, 124, 0); }
}

.hero h1 { max-width: 1000px; margin: 0 auto; }
.hero-sub {
  max-width: 640px;
  margin: 1.8rem auto 2.8rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--grey);
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--grey-2);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 44px;
  background: linear-gradient(var(--gold-2), transparent);
  animation: fall 1.8s var(--ease) infinite;
}
@keyframes fall {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  overflow: hidden;
  background: rgba(255,255,255,.015);
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scroll-x 30s linear infinite;
}
.marquee-track span {
  display: flex; align-items: center; gap: 3rem;
  font-family: var(--display);
  font-weight: 600; font-size: .95rem;
  color: var(--grey);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.marquee-track span i {
  font-style: normal; color: var(--gold);
  font-size: .7rem;
}
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.stat {
  position: relative;
  border-radius: var(--r-lg);
  padding: 2.6rem 2rem;
  background: var(--glass);
  border: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.stat:hover { transform: translateY(-6px); border-color: rgba(176,141,87,.45); }
.stat::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(300px circle at 50% 0%, rgba(176,141,87,.12), transparent 65%);
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stat-lbl { margin-top: .8rem; font-weight: 600; color: var(--grey); font-size: .98rem; }

/* ==========================================================================
   Glow cards (mouse-tracked)
   ========================================================================== */
.glow {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--glass);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.glow::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(176, 141, 87, .13), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.glow:hover { transform: translateY(-6px); border-color: rgba(176,141,87,.4); }
.glow:hover::before { opacity: 1; }
.glow > * { position: relative; }

.card-pad { padding: 2.4rem; }

.icon-chip {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(176,141,87,.22), rgba(176,141,87,.06));
  border: 1px solid rgba(176,141,87,.35);
  display: grid; place-items: center;
  color: var(--gold-2);
  margin-bottom: 1.4rem;
}
.icon-chip svg { width: 26px; height: 26px; }

.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.g2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.card-pad h3 { margin-bottom: .7rem; }
.card-pad p { font-size: .97rem; }

.arrow-link {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: 1.3rem;
  font-family: var(--display);
  font-weight: 700; font-size: .93rem;
}
.arrow-link::after { content: "→"; transition: transform .3s var(--ease); }
.arrow-link:hover::after { transform: translateX(5px); }

/* ==========================================================================
   Bento — fully managed
   ========================================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 1.3rem;
}
.bento .glow { padding: 1.9rem; display: flex; flex-direction: column; }
.b-wide { grid-column: span 2; }
.b-tall { grid-row: span 2; }
.bento h3 { font-size: 1.15rem; margin: .9rem 0 .45rem; }
.bento p { font-size: .92rem; }
.bento .icon-chip { margin: 0; width: 46px; height: 46px; border-radius: 13px; }
.bento .icon-chip svg { width: 22px; height: 22px; }

.uptime-bars {
  display: flex; gap: 5px; align-items: flex-end;
  margin-top: auto; padding-top: 1.4rem;
  height: 74px;
}
.uptime-bars i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, rgba(176,141,87,.85), rgba(176,141,87,.15));
  min-height: 20%;
  animation: eq 2.6s ease-in-out infinite alternate;
}
.uptime-bars i:nth-child(2n) { animation-delay: .35s; }
.uptime-bars i:nth-child(3n) { animation-delay: .7s; }
.uptime-bars i:nth-child(5n) { animation-delay: 1.05s; }
@keyframes eq { from { transform: scaleY(.55); } to { transform: scaleY(1); } }

.ok-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: auto;
  align-self: flex-start;
  font-size: .78rem; font-weight: 700;
  color: #86e2ab;
  background: rgba(96, 210, 140, .1);
  border: 1px solid rgba(96, 210, 140, .28);
  padding: .32rem .85rem;
  border-radius: var(--pill);
}
.ok-pill::before { content: "●"; font-size: .6rem; }
.ok-pill.au { color: var(--gold-2); background: rgba(176,141,87,.1); border-color: rgba(176,141,87,.32); }
.ok-pill.au::before { content: "✦"; }

/* ==========================================================================
   Browser mockup
   ========================================================================== */
.browser {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(31,56,100,.35), rgba(4,6,13,.9));
  box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 80px rgba(31,56,100,.25);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .85rem 1.2rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.b-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.15); }
.b-dot.g { background: rgba(176,141,87,.85); }
.b-url {
  margin-left: .8rem;
  flex: 1; max-width: 320px;
  font-size: .76rem;
  color: var(--grey-2);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  padding: .28rem 1rem;
  display: flex; align-items: center; gap: .45rem;
}
.b-url::before { content: "🔒"; font-size: .65rem; }
.browser-body { padding: 2rem; }

/* the mini fake site inside the mockup */
.mini-hero {
  border-radius: 14px;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(45,79,138,.5), transparent 70%),
    rgba(255,255,255,.03);
  border: 1px solid var(--line);
  padding: 1.8rem 1.4rem;
  text-align: center;
}
.mini-badge {
  display: inline-block;
  font-size: .58rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(176,141,87,.4);
  border-radius: var(--pill);
  padding: .2rem .7rem;
  margin-bottom: .8rem;
}
.mini-hero h4 { font-size: 1.05rem; margin-bottom: .4rem; }
.mini-hero p { font-size: .72rem; color: var(--grey-2); max-width: 260px; margin: 0 auto .9rem; }
.mini-cta {
  display: inline-block;
  background: var(--gold-grad);
  color: #120d05;
  font-size: .68rem; font-weight: 800;
  border-radius: var(--pill);
  padding: .45rem 1.2rem;
}
.mini-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: .9rem; }
.mini-card {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: .9rem .8rem;
}
.mini-card i {
  display: block;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(176,141,87,.2);
  border: 1px solid rgba(176,141,87,.35);
  margin-bottom: .55rem;
}
.mini-card b { display: block; color: var(--white); font-size: .68rem; font-family: var(--display); }
.mini-card s {
  display: block; text-decoration: none;
  height: 5px; border-radius: 3px;
  background: rgba(255,255,255,.09);
  margin-top: .45rem;
}
.mini-card s.short { width: 65%; }

.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
}
.split .check-rows { margin-top: 1.6rem; display: grid; gap: 1rem; }
.check-rows li {
  list-style: none;
  display: flex; gap: .9rem;
  color: var(--white); font-weight: 600;
}
.check-rows li::before {
  content: "✓";
  flex-shrink: 0;
  width: 26px; height: 26px;
  margin-top: .1rem;
  border-radius: 50%;
  background: rgba(176,141,87,.14);
  border: 1px solid rgba(176,141,87,.45);
  color: var(--gold-2);
  display: grid; place-items: center;
  font-size: .8rem; font-weight: 800;
}
.check-rows li span { display: block; color: var(--grey); font-weight: 400; font-size: .93rem; }

/* ==========================================================================
   Process timeline
   ========================================================================== */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 27px; left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,141,87,.5) 15%, rgba(176,141,87,.5) 85%, transparent);
}
.t-step { position: relative; padding-top: 4.4rem; }
.t-num {
  position: absolute; top: 0; left: 0;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(176,141,87,.55);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 800; font-size: 1.05rem;
  color: var(--gold-2);
  box-shadow: 0 0 0 6px var(--bg), 0 0 28px rgba(176,141,87,.28);
}
.t-step:hover .t-num { background: var(--gold-grad); color: #120d05; transition: .3s var(--ease); }
.t-step h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.t-step p { font-size: .94rem; }
.t-tag {
  display: inline-block;
  margin-top: .9rem;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(176,141,87,.35);
  background: rgba(176,141,87,.07);
  border-radius: var(--pill);
  padding: .28rem .8rem;
}

/* ==========================================================================
   Case placeholders
   ========================================================================== */
.case {
  border: 1px dashed rgba(176,141,87,.4);
  background:
    radial-gradient(240px circle at 50% 0%, rgba(176,141,87,.07), transparent 70%),
    var(--glass);
  border-radius: var(--r-lg);
  padding: 2.6rem 2rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.case:hover { transform: translateY(-6px); border-color: rgba(176,141,87,.7); }
.case .badge {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(176,141,87,.1);
  border: 1px solid rgba(176,141,87,.35);
  padding: .35rem 1rem;
  border-radius: var(--pill);
}
.case h3 { font-size: 1.15rem; }
.case p { font-size: .92rem; }

/* ==========================================================================
   Big CTA
   ========================================================================== */
.mega-cta {
  position: relative;
  border-radius: calc(var(--r-lg) + 8px);
  border: 1px solid rgba(176,141,87,.3);
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(176,141,87,.14), transparent 60%),
    radial-gradient(70% 140% at 50% 110%, rgba(31,56,100,.55), transparent 70%),
    var(--bg-2);
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  overflow: hidden;
}
.mega-cta .grid-lines { opacity: .6; }
.mega-cta h2 { position: relative; margin-bottom: 1.1rem; }
.mega-cta p { position: relative; max-width: 560px; margin: 0 auto 2.4rem; }
.mega-cta .btn { position: relative; }

/* ==========================================================================
   Tiers
   ========================================================================== */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.tier {
  display: flex; flex-direction: column;
  padding: 2.5rem 2.1rem;
}
.tier.hot {
  border-color: rgba(176,141,87,.55);
  background:
    radial-gradient(300px circle at 50% 0%, rgba(176,141,87,.13), transparent 70%),
    var(--glass);
}
.tier-flag {
  position: absolute; top: 1.4rem; right: 1.4rem;
  background: var(--gold-grad);
  color: #120d05;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: var(--pill);
}
.tier h4 { font-family: var(--display); font-size: 1.35rem; color: var(--white); margin-bottom: .35rem; }
.tier .tag { font-size: .92rem; color: var(--grey-2); margin-bottom: 1.6rem; }
.tier ul { list-style: none; display: grid; gap: .7rem; margin-bottom: 2rem; }
.tier ul li { display: flex; gap: .6rem; font-size: .93rem; }
.tier ul li::before { content: "✓"; color: var(--gold-2); font-weight: 800; flex-shrink: 0; }
.tier .btn { margin-top: auto; }

/* pain lists */
.pain { list-style: none; display: grid; gap: .85rem; margin: 1.5rem 0; }
.pain li { display: flex; gap: .85rem; }
.pain li::before {
  content: "✕";
  flex-shrink: 0;
  width: 24px; height: 24px; margin-top: .15rem;
  border-radius: 7px;
  background: rgba(220, 90, 90, .1);
  border: 1px solid rgba(220, 90, 90, .3);
  color: #e08c8c;
  display: grid; place-items: center;
  font-size: .7rem; font-weight: 800;
}

.niche-block { border-top: 1px solid var(--line); }
.niche-head { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3.5rem; margin-bottom: 3.5rem; align-items: start; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-shell { padding: clamp(2rem, 4vw, 3rem); }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.f-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-family: var(--display);
  font-weight: 600; font-size: .85rem;
  color: var(--white);
  margin-bottom: .5rem;
}
input, select, textarea {
  width: 100%;
  padding: .95rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.04);
  color: var(--white);
  font-family: var(--body);
  font-size: .97rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(176,141,87,.05);
  box-shadow: 0 0 0 4px rgba(176,141,87,.15);
}
select option { background: #0b1120; color: var(--white); }
textarea { min-height: 150px; resize: vertical; }
::placeholder { color: var(--grey-2); }
.f-note { font-size: .85rem; color: var(--grey-2); margin-top: 1rem; }

.c-row {
  display: flex; gap: 1.1rem; align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.c-row:last-child { border-bottom: 0; }
.c-row .icon-chip { margin: 0; width: 48px; height: 48px; flex-shrink: 0; }
.c-row strong { display: block; color: var(--white); font-family: var(--display); font-size: .92rem; }
.c-row a, .c-row .val { color: var(--grey); font-size: .95rem; }

/* booking */
.book-frame {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--glass);
  min-height: 640px;
}
.book-frame iframe { width: 100%; height: 640px; border: 0; }

.assure { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }
.assure .a {
  display: flex; align-items: center; gap: .6rem;
  color: var(--white); font-weight: 600; font-size: .95rem;
}
.assure .a::before {
  content: "✓";
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(176,141,87,.14);
  border: 1px solid rgba(176,141,87,.45);
  color: var(--gold-2);
  display: grid; place-items: center;
  font-size: .75rem; font-weight: 800;
}

/* inner page hero */
.page-hero {
  padding: 10rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .lead { margin: 1.4rem auto 0; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(60% 90% at 50% 120%, rgba(31,56,100,.35), transparent 70%),
    #030409;
  padding: 4.5rem 0 2rem;
  font-size: .95rem;
  position: relative;
}
.f-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 2.6rem;
  margin-bottom: 3.2rem;
}
.f-grid h4 {
  font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.f-grid ul { list-style: none; display: grid; gap: .65rem; }
.f-grid ul a { color: var(--grey); font-size: .93rem; }
.f-grid ul a:hover { color: var(--gold-2); }
.f-about p { margin-top: 1.1rem; max-width: 300px; font-size: .92rem; }

.socials { display: flex; gap: .8rem; margin-top: 1.4rem; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: grid; place-items: center;
  color: var(--grey);
  transition: .3s var(--ease);
}
.socials a:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-3px); box-shadow: 0 8px 22px rgba(176,141,87,.2); }
.socials svg { width: 18px; height: 18px; }

.f-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.7rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  font-size: .84rem; color: var(--grey-2);
}
.f-bottom .legal { display: flex; gap: 1.5rem; }
.f-bottom a { color: var(--grey-2); }
.f-bottom a:hover { color: var(--gold-2); }

/* ==========================================================================
   Reveal
   ========================================================================== */
.rv {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1020px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .split, .niche-head { grid-template-columns: 1fr; gap: 2.5rem; }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 2.6rem; }
  .timeline::before { display: none; }
  .g3, .tiers { grid-template-columns: 1fr 1fr; }
  .f-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 13, .96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    transform: translateY(-100%);
    visibility: hidden;
    opacity: 0;
    transition: transform .45s var(--ease), opacity .35s var(--ease), visibility 0s .45s;
    z-index: 205;
  }
  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    transition: transform .45s var(--ease), opacity .35s var(--ease), visibility 0s;
  }
  .nav-links a { font-size: 1.3rem; }
  .burger { display: block; position: relative; }
  .burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .stats, .g3, .g2, .tiers, .bento, .timeline, .f-grid, .f-grid { grid-template-columns: 1fr; }
  .b-wide, .b-tall { grid-column: auto; grid-row: auto; }
  .f-grid { grid-template-columns: 1fr; }
  .f-bottom { flex-direction: column; text-align: center; }
  .hero { text-align: left; }
  .hero .hero-ctas { justify-content: flex-start; }
  .hero-scroll { display: none; }
  .f-grid .f-about p { max-width: none; }
  .split { gap: 2rem; }
}
