/* =====================================================================
   bellwest.au — design system v3.0.0 | 2026-06-17
   "Coastal Editorial" (light) + "Aurora Glass" (dark)
   Theme switched via [data-theme] on <html>; toggle pill injected by main.js.
   ===================================================================== */

/* ---------- Tokens: LIGHT (default) — Warm Coastal Editorial ---------- */
:root {
  --canvas:      #fbf8f3;
  --canvas-2:    #f3ece1;
  --surface:     #ffffff;
  --surface-2:   #fffdfa;
  --ink:         #15302e;
  --ink-soft:    #55635f;
  --line:        rgba(21, 48, 46, 0.12);
  --line-strong: rgba(21, 48, 46, 0.22);

  --deep:        #0c2b2c;   /* dark feature sections inside light theme */
  --deep-2:      #103e3b;
  --on-deep:     #f4efe6;
  --on-deep-soft:#b7c7c2;

  --brand:       #1f7a6d;   /* teal */
  --brand-ink:   #176055;   /* teal that passes contrast on canvas */
  --aqua:        #4fb8a4;
  --accent:      #ff6b4a;   /* coral — signature CTA */
  --accent-ink:  #d9461f;   /* coral for text/links on light */
  --accent-2:    #e0a82e;   /* gold */

  --glass:       rgba(255, 255, 255, 0.66);
  --glass-brd:   rgba(255, 255, 255, 0.7);
  --halo:        rgba(31, 122, 109, 0.16);

  --shadow-sm:   0 2px 10px rgba(21, 48, 46, 0.07);
  --shadow:      0 10px 30px rgba(21, 48, 46, 0.10);
  --shadow-md:   0 20px 50px rgba(21, 48, 46, 0.14);
  --shadow-lg:   0 36px 90px rgba(21, 48, 46, 0.20);
  --glow:        0 18px 50px rgba(255, 107, 74, 0.28);

  --grad-hero:   linear-gradient(135deg, #0c2b2c 0%, #103e3b 55%, #1f5d57 100%);
  --grad-accent: linear-gradient(100deg, #ff6b4a 0%, #e0a82e 100%);
  --grad-aqua:   linear-gradient(120deg, #1f7a6d 0%, #4fb8a4 100%);

  --radius:      18px;
  --radius-lg:   26px;
  --radius-sm:   11px;
  --radius-pill: 999px;

  --font-display:"Fraunces", Georgia, "Times New Roman", serif;
  --font-body:   "Source Sans 3", system-ui, -apple-system, sans-serif;

  --container:   1180px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);

  color-scheme: light;
}

/* ---------- Tokens: DARK — Aurora Glass ---------- */
:root[data-theme="dark"] {
  --canvas:      #08121a;
  --canvas-2:    #0c1b25;
  --surface:     rgba(255, 255, 255, 0.045);
  --surface-2:   rgba(255, 255, 255, 0.06);
  --ink:         #eaf3f1;
  --ink-soft:    #9fb4b0;
  --line:        rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);

  --deep:        #050e15;
  --deep-2:      #0a1a22;
  --on-deep:     #eaf3f1;
  --on-deep-soft:#9fb4b0;

  --brand:       #4fd0bc;
  --brand-ink:   #6fe0cd;
  --aqua:        #57e0c8;
  --accent:      #ff7a5c;
  --accent-ink:  #ff967c;
  --accent-2:    #f5c451;

  --glass:       rgba(255, 255, 255, 0.06);
  --glass-brd:   rgba(255, 255, 255, 0.14);
  --halo:        rgba(79, 208, 188, 0.22);

  --shadow-sm:   0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow:      0 14px 36px rgba(0, 0, 0, 0.5);
  --shadow-md:   0 24px 60px rgba(0, 0, 0, 0.6);
  --shadow-lg:   0 40px 100px rgba(0, 0, 0, 0.7);
  --glow:        0 18px 60px rgba(255, 122, 92, 0.4);

  --grad-hero:   linear-gradient(150deg, #050e15 0%, #0c2230 50%, #103a3c 100%);
  --grad-accent: linear-gradient(100deg, #ff7a5c 0%, #f5c451 100%);
  --grad-aqua:   linear-gradient(120deg, #4fd0bc 0%, #6f8bff 120%);

  color-scheme: dark;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease);
}

/* Aurora ambience for dark theme */
:root[data-theme="dark"] body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60vw 50vh at 12% -5%, rgba(79, 208, 188, 0.16), transparent 60%),
    radial-gradient(55vw 50vh at 95% 8%, rgba(120, 130, 255, 0.14), transparent 60%),
    radial-gradient(50vw 50vh at 60% 100%, rgba(255, 122, 92, 0.12), transparent 60%);
}
body > * { position: relative; z-index: 1; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: 1.3rem; }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 700; }

/* ---------- Links: underlined, animated ---------- */
a { color: var(--brand-ink); text-decoration: none; }

.prose-link,
p a:not(.btn):not(.nav-link):not(.nav-cta):not(.logo-link),
.showcase-links a,
.link-list a,
.footer-nav-list a,
.footer-contact-list a,
.panorama-note a,
.article-prose a,
.stripe-link-fallback a,
.promo-form-note a,
.faq-list a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, var(--accent-ink) 45%, transparent);
  transition: text-decoration-color 0.25s var(--ease), color 0.25s var(--ease);
}
.showcase-links a:hover,
.link-list a:hover,
.footer-nav-list a:hover,
.footer-contact-list a:hover,
.panorama-note a:hover,
.article-prose a:hover,
p a:hover,
.faq-list a:hover {
  text-decoration-color: currentColor;
  color: var(--accent);
}

::selection { background: var(--accent); color: #fff; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.2rem);
}
main { display: block; }
section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

.section-header { max-width: 720px; margin-bottom: 2.8rem; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 0.7rem;
}
.section-eyebrow::before {
  content: ""; display: inline-block;
  width: 26px; height: 2px; vertical-align: middle;
  margin-right: 0.6rem;
  background: var(--grad-accent);
}
.section-lead { font-size: 1.15rem; margin-top: 0.7rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  transform: translateZ(0);
}
.btn-primary {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: var(--glow);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 24px 60px rgba(255, 107, 74, 0.42); }
.btn-primary:active { transform: translateY(-1px) scale(0.99); }

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { transform: translateY(-3px); border-color: var(--brand); color: var(--brand-ink); box-shadow: var(--shadow); }
:root[data-theme="dark"] .btn-secondary { backdrop-filter: blur(10px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--canvas) 78%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.logo-link { display: inline-flex; align-items: center; }
.logo-img { height: 42px; width: auto; }
:root[data-theme="dark"] .logo-img { filter: brightness(0) invert(1); opacity: 0.92; }

.site-nav { display: flex; align-items: center; gap: 0.35rem; }
.nav-link {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink-soft);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  position: relative;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--ink); background: color-mix(in srgb, var(--brand) 12%, transparent); }
.nav-link.active { color: var(--brand-ink); }
.nav-link.active::after {
  content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.25rem;
  height: 2px; border-radius: 2px; background: var(--grad-accent);
}
.nav-cta {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: var(--grad-accent);
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  margin-left: 0.4rem;
  box-shadow: var(--glow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.nav-cta:hover { transform: translateY(-2px); }
@media (max-width: 720px) {
  .nav-link:not(.active) { display: none; }
  .logo-img { height: 36px; }
}

/* ---------- Theme toggle pill (injected by main.js, sits in header) ---------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--ink) 7%, transparent);
  border: 1px solid var(--line);
  margin-left: 0.3rem;
  flex: 0 0 auto;
}
.theme-toggle button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 0.2s, background 0.3s var(--ease), transform 0.3s var(--ease);
}
.theme-toggle button svg { width: 17px; height: 17px; }
.theme-toggle button:hover { color: var(--ink); }
.theme-toggle button.is-active {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
  transform: scale(1.04);
}
@media (max-width: 420px) { .theme-toggle button { width: 27px; height: 27px; } }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-hero);
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media .hero-youtube,
.hero-media iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 24, 26, 0.55) 0%, rgba(8, 24, 26, 0.35) 40%, rgba(8, 24, 26, 0.82) 100%),
    radial-gradient(70% 60% at 20% 30%, rgba(255, 107, 74, 0.18), transparent 60%);
}
.hero-content { max-width: 760px; padding-block: 5rem; color: var(--on-deep); }
.hero-content h1 { color: #fff; text-wrap: balance; }
.hero-eyebrow {
  display: inline-block;
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-2);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  margin-bottom: 1.3rem;
  backdrop-filter: blur(6px);
}
.hero-lead { color: rgba(244, 239, 230, 0.9); font-size: 1.2rem; margin-top: 1.3rem; max-width: 620px; }
.hero-lead strong { color: #fff; }
.hero-offer {
  display: inline-flex; align-items: baseline; gap: 0.7rem;
  margin-top: 1.8rem; padding: 0.8rem 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.hero-offer .price {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 700;
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-offer .price-detail { color: rgba(244, 239, 230, 0.75); font-size: 0.95rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-actions .btn-secondary { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(255, 255, 255, 0.3); backdrop-filter: blur(8px); }
.hero-actions .btn-secondary:hover { background: rgba(255, 255, 255, 0.18); color: #fff; }

/* ---------- Domains strip ---------- */
.domains-strip { padding-block: 0; transform: translateY(-50%); margin-bottom: -2rem; }
.domain-list {
  list-style: none; padding: 1.3rem 1.8rem; margin: 0 auto;
  max-width: 640px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.domain-list li {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink);
}
.domain-badge {
  font-family: var(--font-body); font-weight: 800; font-size: 0.8rem;
  color: #fff; background: var(--grad-aqua);
  padding: 0.25rem 0.6rem; border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Section backgrounds ---------- */
.region-showcase, .faq, .article-section { background: var(--canvas); }
.utility-hub, .explore-cards, .panorama-section { background: var(--canvas-2); }

/* ---------- Generic card 3D ---------- */
.showcase-card, .utility-card, .pitch-card, .feature-card, .aside-card { transform-style: preserve-3d; }

/* ---------- Showcase grid ---------- */
.showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.6rem; }
.showcase-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.showcase-card:hover { box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); }
.showcase-media { display: block; overflow: hidden; aspect-ratio: 16 / 10; }
.showcase-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.showcase-card:hover .showcase-media img { transform: scale(1.06); }
.showcase-body { padding: 1.5rem 1.6rem 1.7rem; }
.showcase-body h3 { margin-bottom: 0.5rem; }
.showcase-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; margin-top: 1rem; font-weight: 600; font-size: 0.95rem; }

/* ---------- Promo banner (home) ---------- */
.promo-banner { background: var(--deep); color: var(--on-deep); position: relative; overflow: hidden; }
.promo-banner::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 120% at 90% 10%, var(--halo), transparent 60%);
}
.promo-banner-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.promo-banner-copy { max-width: 640px; }
.promo-banner-copy h2 { color: #fff; margin-bottom: 0.7rem; }
.promo-banner-copy p { color: var(--on-deep-soft); }
.promo-banner-eyebrow { color: var(--accent-2); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.78rem; }
.promo-banner-price { font-family: var(--font-display); color: var(--accent-2); font-weight: 700; }

/* ---------- Utility hub ---------- */
.utility-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; }
.utility-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.8rem 1.8rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.utility-card:hover { box-shadow: var(--shadow-md); }
.utility-card h3 { margin-bottom: 0.4rem; }
.utility-card > p { font-size: 0.97rem; margin-bottom: 1rem; }
.link-list { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.link-list li { position: relative; padding-left: 1.2rem; }
.link-list li::before { content: "\2192"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-aqua); color: #fff; position: relative; overflow: hidden; }
.cta-band-dark { background: var(--grad-hero); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band-inner h2 { color: #fff; max-width: 680px; }
.cta-band-inner p { color: rgba(255, 255, 255, 0.9); margin-top: 0.5rem; }
.cta-band .btn-primary { background: #fff; color: var(--ink); box-shadow: var(--shadow-md); }
.cta-band .btn-primary:hover { background: #fff; box-shadow: var(--shadow-lg); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.9rem; max-width: 820px; }
.faq-list details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0 1.4rem;
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-list details[open] { border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); box-shadow: var(--shadow); }
.faq-list summary {
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink);
  padding: 1.1rem 2rem 1.1rem 0; cursor: pointer; list-style: none; position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--accent); font-family: var(--font-body); transition: transform 0.3s var(--ease);
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { padding-bottom: 1.2rem; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { background: var(--grad-hero); color: var(--on-deep); padding-block: clamp(3.5rem, 9vw, 6rem); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 85% 0%, var(--halo), transparent 60%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 18ch; text-wrap: balance; }
.page-hero .section-eyebrow { color: var(--accent-2); }
.page-hero-lead { color: rgba(244, 239, 230, 0.9); font-size: 1.2rem; margin-top: 1.1rem; max-width: 680px; }
.page-hero-lead a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Explore: map ---------- */
.map-shell {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-md); margin-bottom: 1.4rem;
}
#region-map { height: clamp(360px, 55vh, 540px); width: 100%; background: var(--canvas-2); }
.leaflet-popup-content a { color: var(--accent-ink); font-weight: 700; }
.map-legend { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; }
.map-legend li { font-size: 0.92rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 0.4rem; }
.map-legend li::before { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--grad-aqua); box-shadow: 0 0 0 3px var(--halo); }

/* ---------- Explore: 360 tours (merged from panorama) ---------- */
.panorama-stack { display: grid; gap: 2.4rem; }
.panorama-block {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease);
}
.panorama-block:hover { box-shadow: var(--shadow-md); }
.panorama-block h2 { margin-bottom: 0.2rem; }
.panorama-location { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 1rem; }
.panorama-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.panorama-embed iframe { display: block; width: 100%; border: 0; }
.panorama-note { margin-top: 0.9rem; font-size: 0.95rem; font-weight: 600; }

/* ---------- Article (Barwon Heads) ---------- */
.article-layout { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.9fr); gap: 2rem 2.6rem; align-items: start; }
.article-hero-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); cursor: zoom-in; transition: transform 0.4s var(--ease); }
.article-hero-img:hover { transform: translateY(-4px); }
.article-aside { display: grid; gap: 1rem; position: sticky; top: 90px; }
.aside-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem; box-shadow: var(--shadow-sm); }
.aside-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.aside-card p { font-size: 0.95rem; }
.article-prose { max-width: 740px; }
.article-prose h2 { margin: 2rem 0 0.8rem; font-size: 1.7rem; }
.article-prose p { margin-bottom: 1.1rem; font-size: 1.1rem; }
.article-meta { font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-ink); font-weight: 700; }
@media (max-width: 800px) { .article-layout { grid-template-columns: 1fr; } .article-aside { position: static; } }

/* ---------- Invest: pitches ---------- */
.pitches { display: grid; gap: 2.2rem; }
.pitch-card {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pitch-card:hover { box-shadow: var(--shadow-lg); }
.pitch-card:nth-child(even) { direction: rtl; }
.pitch-card:nth-child(even) > * { direction: ltr; }
.pitch-image { width: 100%; height: 100%; object-fit: cover; min-height: 320px; cursor: zoom-in; transition: transform 0.6s var(--ease); }
.pitch-card:hover .pitch-image { transform: scale(1.05); }
.pitch-number {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: #fff; background: var(--grad-accent);
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%;
  box-shadow: var(--glow);
}
.pitch-card:nth-child(even) .pitch-number { left: auto; right: 1rem; }
.pitch-content { padding: 2rem 2.2rem; display: flex; flex-direction: column; justify-content: center; }
.pitch-content h2 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.pitch-content p { margin-bottom: 0.9rem; font-size: 1rem; }
.pitch-highlights { list-style: none; padding: 0; display: grid; gap: 0.5rem; margin-top: 0.4rem; }
.pitch-highlights li { position: relative; padding-left: 1.6rem; font-size: 0.96rem; color: var(--ink); }
.pitch-highlights li::before {
  content: "\2713"; position: absolute; left: 0; top: 0; color: #fff; font-size: 0.7rem; font-weight: 800;
  width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--grad-aqua);
}
@media (max-width: 820px) {
  .pitch-card, .pitch-card:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .pitch-image { min-height: 240px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: none; place-items: center;
  background: rgba(6, 14, 18, 0.88); backdrop-filter: blur(8px);
  padding: 5vw;
}
.lightbox.active { display: grid; animation: fade 0.3s var(--ease); }
.lightbox-content { position: relative; max-width: 1200px; width: 100%; }
.lightbox-content img, #lightbox-img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: -3rem; right: 0; font-size: 2.2rem; line-height: 1;
  color: #fff; cursor: pointer; background: none; border: 0;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* =====================================================================
   PROMO PAGE
   ===================================================================== */
.promo-hero { position: relative; overflow: hidden; background: var(--grad-hero); color: var(--on-deep); padding-block: clamp(4rem, 10vw, 7rem); }
.promo-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(50% 70% at 15% 20%, rgba(255, 107, 74, 0.22), transparent 60%),
    radial-gradient(50% 70% at 90% 80%, rgba(79, 184, 164, 0.22), transparent 60%);
}
.promo-hero-content { position: relative; z-index: 1; max-width: 760px; }
.promo-hero-content h1 { color: #fff; text-wrap: balance; }
.promo-hero-lead { color: rgba(244, 239, 230, 0.92); font-size: 1.2rem; margin-top: 1.2rem; max-width: 640px; }
.promo-hero-lead strong { color: var(--accent-2); }
.promo-hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.promo-hero-cta .btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.3); }

.promo-intro-strip { background: var(--deep-2); color: var(--on-deep); padding-block: 1.4rem; border-top: 1px solid rgba(255,255,255,0.08); }
.promo-intro-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.8rem 1.6rem; }
.promo-stat { display: flex; flex-direction: column; align-items: center; text-align: center; font-size: 0.85rem; color: var(--on-deep-soft); }
.promo-stat-value { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1; }
.promo-stat:first-child .promo-stat-value { color: var(--accent-2); }
.promo-stat-sep { width: 1px; height: 34px; background: rgba(255,255,255,0.18); }

.promo-features { background: var(--canvas); }
.promo-section-header { max-width: 720px; margin-bottom: 2.6rem; }
.promo-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.9rem 1.7rem; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); }
.feature-card-icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px;
  background: var(--grad-aqua); color: #fff; margin-bottom: 1.1rem; box-shadow: var(--shadow-sm);
}
.feature-card-icon svg { width: 26px; height: 26px; }
.feature-card-num { position: absolute; top: 1.3rem; right: 1.5rem; font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--line-strong); }
.feature-card h3 { margin-bottom: 0.45rem; }
.feature-card p { font-size: 0.97rem; }

.promo-included { background: var(--canvas-2); }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.included-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem; box-shadow: var(--shadow-sm); }
.included-card-extra { border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.included-card h3 { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 1.1rem; }
.included-card h3 .tag { font-family: var(--font-body); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; padding: 0.2rem 0.55rem; border-radius: var(--radius-pill); }
.included-card-yes h3 .tag { background: var(--grad-aqua); }
.included-card-extra h3 .tag { background: var(--grad-accent); }
.included-card ul { list-style: none; padding: 0; display: grid; gap: 0.75rem; }
.included-card li { position: relative; padding-left: 1.8rem; color: var(--ink); font-size: 0.98rem; line-height: 1.5; }
.included-card li::before { position: absolute; left: 0; top: 0.05rem; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; font-size: 0.72rem; font-weight: 800; color: #fff; }
.included-card-yes li::before { content: "\2713"; background: var(--grad-aqua); }
.included-card-extra li::before { content: "+"; background: var(--grad-accent); font-size: 0.95rem; }
.included-note { margin-top: 1.4rem; font-size: 0.92rem; color: var(--ink-soft); }
@media (max-width: 700px) { .included-grid { grid-template-columns: 1fr; } }

.promo-pricing { background: var(--canvas); }
.pricing-display-bar { margin-bottom: 2rem; }
.pricing-display-glass {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  background: var(--glass); border: 1px solid var(--glass-brd);
  border-radius: var(--radius-lg); padding: 1.4rem 1.8rem;
  backdrop-filter: blur(14px); box-shadow: var(--shadow-md);
}
.pricing-display-label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.pricing-display-month { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--ink); }
.pricing-display-center { text-align: center; }
.pricing-display-price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; line-height: 1; background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pricing-display-period { font-size: 0.85rem; color: var(--ink-soft); }
.pricing-display-right { text-align: right; }
.pricing-discount-badge { display: inline-block; font-weight: 800; font-size: 0.8rem; color: #fff; background: var(--grad-accent); padding: 0.3rem 0.7rem; border-radius: var(--radius-pill); }
.pricing-display-savings { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.3rem; }

.pricing-visual-stage { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.pricing-columns { display: flex; align-items: flex-end; gap: 0.5rem; height: 240px; margin-bottom: 1.4rem; }
.pricing-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; background: none; border: 0; cursor: pointer; height: 100%; justify-content: flex-end; padding: 0; }
.pricing-col-bar {
  width: 100%; height: var(--bar-height, 50%);
  background: var(--canvas-2); border: 1px solid var(--line);
  border-radius: 10px 10px 4px 4px; position: relative;
  display: flex; align-items: flex-start; justify-content: center; padding-top: 0.4rem;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s;
}
.pricing-col.is-active .pricing-col-bar { background: var(--grad-accent); border-color: transparent; box-shadow: var(--glow); transform: translateY(-4px) scaleX(1.04); }
.pricing-col-price { font-size: 0.72rem; font-weight: 700; color: var(--ink-soft); }
.pricing-col.is-active .pricing-col-price { color: #fff; }
.pricing-col-month { font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); }
.pricing-col.is-active .pricing-col-month { color: var(--accent-ink); }
.pricing-col-off { font-size: 0.68rem; font-weight: 700; color: var(--brand-ink); }
.pricing-col-off.is-full { color: var(--ink-soft); }

.pricing-slider-rail { position: relative; padding: 0.5rem 0; }
.pricing-slider-track-bg { position: relative; height: 8px; border-radius: var(--radius-pill); background: var(--canvas-2); border: 1px solid var(--line); }
.promo-slider-fill { position: absolute; inset: 0 auto 0 0; width: 10%; background: var(--grad-accent); border-radius: var(--radius-pill); transition: width 0.25s var(--ease); }
.pricing-slider-thumb-glow { position: absolute; top: 50%; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: var(--glow); transform: translate(-50%, -50%); pointer-events: none; transition: left 0.25s var(--ease); }
.promo-price-slider { position: absolute; inset: 0; width: 100%; margin: 0; opacity: 0; cursor: pointer; height: 28px; top: -10px; }
.pricing-slider-hint { font-size: 0.9rem; color: var(--ink-soft); margin-top: 1rem; }

.promo-checkout { background: var(--deep); color: var(--on-deep); }
.promo-checkout-inner { max-width: 640px; margin-inline: auto; text-align: center; }
.promo-checkout-inner h2 { color: #fff; }
.promo-checkout-inner .section-eyebrow { color: var(--accent-2); }
.promo-checkout-lead { color: var(--on-deep-soft); margin: 0.8rem auto 2rem; }
.promo-checkout-lead strong { color: var(--accent-2); }
.stripe-checkout-slot { background: var(--glass); border: 1px solid var(--glass-brd); border-radius: var(--radius-lg); padding: 1.8rem; backdrop-filter: blur(12px); }
.stripe-coupon-hint { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1rem; }
:root[data-theme="dark"] .stripe-coupon-hint { color: var(--on-deep-soft); }
.stripe-link-fallback { margin-top: 1rem; font-size: 0.9rem; }
.promo-checkout-alt { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1.6rem; }
.promo-checkout-alt .btn-secondary { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.28); }

.promo-upsell { background: var(--canvas); }
.promo-upsell-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-sm); }
.promo-upsell-copy { max-width: 560px; }
.promo-upsell-copy h2 { font-size: 1.7rem; margin-bottom: 0.6rem; }
.promo-upsell-examples { display: flex; flex-direction: column; gap: 0.6rem; }
.subdomain-chip { font-family: var(--font-display); font-weight: 600; color: var(--brand-ink); background: var(--canvas-2); border: 1px dashed var(--line-strong); border-radius: var(--radius-pill); padding: 0.5rem 1.1rem; text-align: center; }

.promo-form-section { background: var(--canvas-2); }
.promo-form-wrap { max-width: 760px; margin-inline: auto; }
.promo-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-md); }
.promo-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 1.4rem; }
.promo-field { display: flex; flex-direction: column; gap: 0.4rem; }
.promo-field-wide { grid-column: 1 / -1; }
.promo-field-label { font-size: 0.82rem; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }
.promo-field input { font-family: var(--font-body); font-size: 1rem; color: var(--ink); padding: 0.8rem 1rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line-strong); background: var(--canvas); transition: border-color 0.2s, box-shadow 0.2s; }
.promo-field input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--halo); }
.promo-form-submit { width: 100%; font-family: var(--font-body); font-weight: 800; font-size: 1.05rem; color: #fff; background: var(--grad-accent); border: 0; border-radius: var(--radius-pill); padding: 1rem; cursor: pointer; box-shadow: var(--glow); transition: transform 0.25s var(--ease); }
.promo-form-submit:hover { transform: translateY(-2px); }
.promo-form-note { text-align: center; font-size: 0.9rem; color: var(--ink-soft); margin-top: 1rem; }
@media (max-width: 560px) { .promo-form-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   FOOTER — redesigned
   ===================================================================== */
.site-footer { background: var(--deep); color: var(--on-deep); position: relative; overflow: hidden; padding-block: clamp(3rem, 6vw, 4.5rem) 1.8rem; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-accent); }
.site-footer::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(45% 80% at 85% 0%, var(--halo), transparent 60%); }
.site-footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.4rem; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-brand-col { max-width: 380px; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: #fff; text-decoration: none; display: inline-block; }
.footer-brand-name:hover { color: var(--accent-2); }
.footer-tagline { color: var(--on-deep-soft); margin-top: 0.7rem; font-size: 0.97rem; }
.footer-col-heading { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-2); font-weight: 700; margin-bottom: 1rem; }
.footer-nav-list, .footer-contact-list { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer-nav-list a, .footer-contact-list a { color: var(--on-deep-soft); text-decoration-color: rgba(255,255,255,0.25); font-size: 0.97rem; }
.footer-nav-list a:hover, .footer-contact-list a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; }
.footer-copy { color: var(--on-deep-soft); font-size: 0.9rem; }
.footer-copy a { color: var(--on-deep-soft); text-decoration: underline; text-underline-offset: 2px; }
.footer-copy a:hover { color: #fff; }
.footer-domains { font-family: var(--font-display); color: rgba(255,255,255,0.5); font-size: 0.92rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand-col { grid-column: 1 / -1; } }

/* =====================================================================
   3D tilt + scroll reveal (driven by main.js)
   ===================================================================== */
[data-reveal], .reveal-on-scroll {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible, .reveal-on-scroll.is-visible { opacity: 1; transform: none; }

.tilt-glare {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,0.25), transparent 45%);
  opacity: 0; transition: opacity 0.3s var(--ease); z-index: 3; mix-blend-mode: soft-light;
}
.is-tilting .tilt-glare { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  [data-reveal], .reveal-on-scroll { opacity: 1 !important; transform: none !important; }
  .hero-media iframe { display: none; }
}
