/* =========================================================
   ARTEMIS CREATORS — site styles
   Black & gold, elegant, animated, high-end
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-2: #0d0a07;
  --panel: #141008;
  --panel-2: #1a1410;
  --line: #2a221a;
  --gold: #d4af37;
  --gold-2: #f0c75e;
  --gold-soft: #b8932e;
  --gold-glow: rgba(212, 175, 55, 0.55);
  --gold-mute: rgba(212, 175, 55, 0.18);
  --white: #ffffff;
  --mute: #b6ada0;
  --mute-2: #7a716a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background:
    radial-gradient(1200px 800px at 50% -20%, #1a130a 0%, #0a0a0a 60%),
    var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.font-display {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  letter-spacing: 0.005em;
}

.italic-cursive {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* -------- Particle / sprinkle background -------- */
#particles {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}
main, nav, footer { position: relative; z-index: 1; }

/* -------- NAV -------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: max(1rem, calc(env(safe-area-inset-top, 0px) + 0.65rem)) 2rem 1rem;
  padding-left: max(2rem, env(safe-area-inset-left, 0px));
  padding-right: max(2rem, env(safe-area-inset-right, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.55);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.88);
  border-bottom-color: rgba(212, 175, 55, 0.18);
  padding-top: max(0.7rem, calc(env(safe-area-inset-top, 0px) + 0.4rem));
  padding-bottom: 0.7rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}
.nav-logo {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  -webkit-mask-image: -webkit-radial-gradient(white, black); /* Safari clip fix for ::after */
}
.nav-logo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.nav-brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--mute-2);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  color: var(--mute);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a:hover { color: var(--gold-2); }
.nav-links a.active { color: var(--gold); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  height: 1px;
  width: 70%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: transform 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-cta {
  display: inline-block;
  padding: 0.55rem 1.3rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #0a0a0a !important;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-size: 0.75rem !important;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.2);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.5);
}
.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 10px;
  color: var(--gold);
  cursor: pointer;
  padding: 0.5rem;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.menu-toggle:hover, .menu-toggle:active { background: rgba(212, 175, 55, 0.14); border-color: var(--gold); }
.menu-icon {
  width: 22px;
  height: 22px;
  display: block;
}
.menu-icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon-close { display: block; }

@media (max-width: 820px) {
  .nav {
    padding: max(0.95rem, calc(env(safe-area-inset-top, 0px) + 0.6rem)) 1.1rem 0.95rem;
    /* Solid opaque background on mobile — backdrop-filter is buggy on Samsung Internet & some Android browsers */
    background: #0a0a0a;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    min-height: 60px;
  }
  .nav.scrolled {
    background: #0a0a0a;
    border-bottom-color: rgba(212, 175, 55, 0.28);
  }
  .nav-brand { z-index: 2; position: relative; }
  .nav-brand-tag { display: none; }
  .nav-brand-name { font-size: 1.25rem; }
  .menu-toggle { z-index: 2; position: relative; font-size: 1.6rem; padding: 0.35rem 0.6rem; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: #0a0a0a;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    padding: 1rem 0 1.4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.3s ease, visibility 0.25s ease;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.55);
    z-index: 1;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a { padding: 0.9rem 1.5rem; text-align: center; width: auto; }
  .nav-links .nav-cta {
    margin: 0.6rem auto 0;
    width: auto;
    display: inline-block;
    padding: 0.65rem 1.6rem;
  }
  .menu-toggle { display: inline-flex; }
  .nav-logo { width: 40px; height: 40px; }
  .hero { padding-top: calc(7.5rem + env(safe-area-inset-top, 0px)); }
  .page-hero { padding-top: calc(10rem + env(safe-area-inset-top, 0px)); }
}

/* -------- HERO -------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  position: relative;
}
.hero-logo {
  display: inline-block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.55);
  box-shadow:
    0 0 40px rgba(212, 175, 55, 0.35),
    0 0 80px rgba(212, 175, 55, 0.15),
    inset 0 0 30px rgba(212, 175, 55, 0.08);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  animation: logo-pulse 5s ease-in-out infinite;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.hero-logo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.35), 0 0 80px rgba(212, 175, 55, 0.15), inset 0 0 30px rgba(212, 175, 55, 0.08); }
  50%     { box-shadow: 0 0 60px rgba(212, 175, 55, 0.55), 0 0 120px rgba(212, 175, 55, 0.25), inset 0 0 30px rgba(212, 175, 55, 0.12); }
}

/* -------- COIN SHINE (cross-browser shimmer sweep) -------- */
.coin-shine::before,
.coin-shine::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.coin-shine::before {
  background: radial-gradient(circle at 35% 30%, rgba(255, 240, 200, 0.22), transparent 55%);
  mix-blend-mode: screen;
}
.coin-shine::after {
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 245, 210, 0.0) 45%,
    rgba(255, 245, 210, 0.65) 50%,
    rgba(255, 245, 210, 0.0) 55%,
    transparent 62%
  );
  -webkit-transform: translate3d(-110%, 0, 0);
          transform: translate3d(-110%, 0, 0);
  -webkit-animation: coin-shine 5s ease-in-out infinite;
          animation: coin-shine 5s ease-in-out infinite;
  mix-blend-mode: screen;
}
@-webkit-keyframes coin-shine {
  0%, 65%, 100% { -webkit-transform: translate3d(-110%, 0, 0); }
  82%           { -webkit-transform: translate3d(110%, 0, 0); }
}
@keyframes coin-shine {
  0%, 65%, 100% { -webkit-transform: translate3d(-110%, 0, 0); transform: translate3d(-110%, 0, 0); }
  82%           { -webkit-transform: translate3d(110%, 0, 0);  transform: translate3d(110%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .coin-shine::after { animation: none; }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: 0.005em;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold) 20%, var(--gold-2) 50%, var(--gold) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  color: var(--gold-2);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}
.hero-sub {
  max-width: 640px;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--mute);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* -------- BUTTONS -------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 2.4rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.6s ease;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.25), 0 8px 30px rgba(0,0,0,0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.cta-btn:hover {
  transform: translateY(-2px);
  background-position: right center;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.55), 0 12px 40px rgba(0,0,0,0.5);
}
.cta-btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.cta-btn:hover .arrow { transform: translateX(4px); }

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: transparent;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}
.cta-btn-secondary:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold);
  color: var(--gold-2);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--mute-2);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
  text-decoration: none;
}
.scroll-indicator::after {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0.6rem auto 0;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.4; }
  50%      { transform: translate(-50%, 8px); opacity: 0.9; }
}

/* -------- SECTIONS -------- */
section {
  padding: 6rem 1.5rem;
  position: relative;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 800px;
}
.section-title .accent {
  font-style: italic;
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-lede {
  max-width: 640px;
  color: var(--mute);
  font-size: 1.02rem;
  margin-bottom: 3.5rem;
}
.section-head {
  text-align: center;
  margin: 0 auto 3.5rem;
  max-width: 800px;
}
.section-head .section-lede { margin: 0 auto; }

/* -------- PLATFORMS STRIP -------- */
.platforms {
  padding: 4rem 1.5rem 3rem;
}
.platforms-inner {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.platforms-inner .section-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
}
.platforms-sub {
  color: var(--mute);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}
.platform-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.04) 50%, transparent 100%);
  position: relative;
}
.platform-row::before,
.platform-row::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 120px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.platform-row::before { top: -1px; }
.platform-row::after  { bottom: -1px; }

.platform {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--gold);
  opacity: 0.78;
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease, color 0.4s ease;
  cursor: default;
}
.platform:hover {
  opacity: 1;
  color: var(--gold-2);
  transform: translateY(-2px);
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.55));
}
.platform-icon {
  height: 50px;
  width: auto;
  max-width: 60px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.platform-icon-svg {
  width: 50px;
  height: 50px;
  color: currentColor;
}
.platform-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -0.3px;
  color: currentColor;
  line-height: 1;
}
.platform-name.fansly-name { font-weight: 600; letter-spacing: 0.2px; }
.platform-name.fanvue-name { font-weight: 500; letter-spacing: 0.6px; }
.platforms-foot {
  margin-top: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-soft);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

@media (max-width: 760px) {
  .platform-row { gap: 1.75rem; padding: 1.8rem 0.5rem; }
  .platform { gap: 0.55rem; }
  .platform-icon, .platform-icon-svg { height: 36px; width: auto; max-width: 44px; }
  .platform-icon-svg { width: 36px; }
  .platform-name { font-size: 1.1rem; }
  .platforms { padding: 3rem 1.2rem 2rem; }
}

/* -------- BENEFITS GRID -------- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.benefit {
  background: linear-gradient(180deg, rgba(212,175,55,0.04) 0%, rgba(20,16,8,0.4) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
}
.benefit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 50% -20%, rgba(212, 175, 55, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.benefit:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.15);
}
.benefit:hover::before { opacity: 1; }
.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.06));
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  color: var(--gold);
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.benefit h3 em { color: var(--gold); font-style: italic; font-weight: 500; }
.benefit p {
  color: var(--mute);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* -------- SPLIT (text + visual) -------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse > :first-child { order: 0; }
}

/* growth diagram */
.growth-card {
  background: linear-gradient(180deg, rgba(212,175,55,0.04) 0%, rgba(20,16,8,0.6) 100%);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 22px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.growth-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 80% 0%, rgba(212, 175, 55, 0.12), transparent 60%);
  pointer-events: none;
}
.growth-svg { width: 100%; height: auto; display: block; }
.growth-grid line { stroke: rgba(212, 175, 55, 0.08); }
.growth-line { stroke: url(#goldGrad); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 6px rgba(212,175,55,0.45)); }
.growth-area { fill: url(#goldArea); opacity: 0.5; }
.growth-dot { fill: var(--gold-2); filter: drop-shadow(0 0 6px rgba(212,175,55,0.6)); }
.growth-label { fill: var(--mute-2); font-size: 10px; font-family: 'Inter', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; }

.stat-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 120px;
}
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-value em { font-style: italic; }
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--mute-2);
  text-transform: uppercase;
}

/* privacy / shield diagram */
.shield-wrap {
  display: grid;
  place-items: center;
  position: relative;
  min-height: 360px;
}
.shield-ring {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  animation: ring-rotate 30s linear infinite;
}
.shield-ring.r1 { width: 320px; height: 320px; }
.shield-ring.r2 { width: 240px; height: 240px; animation-duration: 22s; animation-direction: reverse; border-color: rgba(212, 175, 55, 0.3); }
.shield-ring.r3 { width: 160px; height: 160px; animation-duration: 16s; border-color: rgba(212, 175, 55, 0.45); }
@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.shield-core {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--gold-soft) 60%, #4a3a14);
  display: grid;
  place-items: center;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.5), inset 0 0 30px rgba(0,0,0,0.4);
  position: relative;
  z-index: 2;
}
.shield-core svg { width: 50px; height: 50px; color: #0a0a0a; }

.bullet-list { list-style: none; margin-top: 1.5rem; }
.bullet-list li {
  padding: 0.7rem 0 0.7rem 1.8rem;
  position: relative;
  color: var(--mute);
  font-size: 0.98rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}
.bullet-list li:last-child { border-bottom: none; }
.bullet-list strong { color: var(--white); font-weight: 500; }

/* -------- BIG CTA -------- */
.cta-band {
  text-align: center;
  padding: 7rem 1.5rem;
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 50% 50%, rgba(212, 175, 55, 0.1), transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto 1.2rem;
}
.cta-band h2 .accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-band p {
  color: var(--mute);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* -------- FOOTER -------- */
.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  color: var(--mute-2);
  font-size: 0.85rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.footer-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-meta { font-size: 0.75rem; }

/* -------- REVEAL ON SCROLL -------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.page-hero {
  padding: 11rem 1.5rem 5rem;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.page-hero h1 .accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--mute);
  font-size: 1.05rem;
}

.services-list {
  max-width: 880px;
  margin: 0 auto;
}
.service {
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  padding: 0;
  transition: background 0.4s ease;
}
.service:first-of-type { border-top: 1px solid rgba(212, 175, 55, 0.12); }
.service:hover { background: rgba(212, 175, 55, 0.025); }
.service-head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 0.5rem;
  cursor: pointer;
  transition: padding 0.3s ease;
  user-select: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  color: inherit;
  font-family: inherit;
}
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-soft);
  min-width: 36px;
  letter-spacing: 0.1em;
}
.service-title {
  flex: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s ease;
}
.service-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.service.open .service-title { color: var(--gold-2); }
.service-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: transform 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
.service:hover .service-toggle {
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.2);
}
.service.open .service-toggle {
  transform: rotate(45deg);
  background: var(--gold);
  color: #0a0a0a;
}
.service-toggle svg { width: 14px; height: 14px; }

.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s ease, opacity 0.4s ease;
  opacity: 0;
}
.service.open .service-body {
  max-height: 600px;
  opacity: 1;
}
.service-body-inner {
  padding: 0 0.5rem 2rem 3rem;
  color: var(--mute);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 720px;
}
.service-body-inner p { margin-bottom: 1rem; }
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.service-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.04);
}

/* =========================================================
   OUR STORY PAGE
   ========================================================= */

.page-hero-sub {
  max-width: 680px;
  margin: 1.5rem auto 0;
  color: var(--mute);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
}

/* Sprinkle / shimmer title effect for big page hero h1 */
.sprinkle-title { position: relative; }
.sprinkle-title .accent {
  position: relative;
  font-style: italic;
  background: linear-gradient(110deg,
    var(--gold-soft) 0%,
    var(--gold-2) 35%,
    #ffffff 50%,
    var(--gold-2) 65%,
    var(--gold) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-animation: sprinkle 7s linear infinite;
          animation: sprinkle 7s linear infinite;
  text-shadow: 0 0 38px rgba(212, 175, 55, 0.18);
}
@-webkit-keyframes sprinkle {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}
@keyframes sprinkle {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}

/* -------- STATS COUNTER -------- */
.stats-section {
  padding: 4rem 1.5rem 5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.stat-card {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(20, 16, 8, 0.5) 100%);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 22px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 200px at 50% -20%, rgba(212, 175, 55, 0.16), transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 18px 50px rgba(0,0,0,0.5), 0 0 50px rgba(212, 175, 55, 0.15);
}
.stat-number-wrap {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: 0.005em;
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 60%, var(--gold-soft) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.05em;
}
.stat-prefix, .stat-suffix {
  font-style: italic;
  font-weight: 500;
  font-size: 0.65em;
}
.stat-number {
  font-variant-numeric: tabular-nums;
  display: inline-block;
}
.stat-card-label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

/* -------- COMPARISON BAR CHART -------- */
.comparison-section { padding: 4rem 1.5rem 5rem; }
.comparison-card {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04) 0%, rgba(20, 16, 8, 0.5) 100%);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 24px;
  padding: 2rem 1.8rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.comparison-legend {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-size: 0.82rem;
  color: var(--mute);
}
.legend-item { display: inline-flex; align-items: center; gap: 0.55rem; }
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}
.legend-dot.solo { background: rgba(154, 163, 178, 0.35); border: 1px solid rgba(154,163,178,0.5); }
.legend-dot.artemis { background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: 0 0 10px rgba(212,175,55,0.6); }
.legend-y {
  margin-left: auto;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-soft);
  font-size: 1rem;
}
.comparison-chart {
  width: 100%;
  height: 320px;
  position: relative;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.6rem;
  height: 100%;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  position: relative;
}
.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
}
.bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 100%;
  width: 100%;
  padding-bottom: 8px;
}
.bar {
  width: 26%;
  max-width: 36px;
  border-radius: 6px 6px 0 0;
  height: 0;
  transition: height 1.4s cubic-bezier(0.65, 0.05, 0.36, 1);
  position: relative;
}
.bar-solo {
  background: linear-gradient(180deg, rgba(154, 163, 178, 0.35) 0%, rgba(154, 163, 178, 0.12) 100%);
  border: 1px solid rgba(154, 163, 178, 0.35);
  border-bottom: none;
}
.bar-artemis {
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 60%, var(--gold-soft) 100%);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
  border-top: 1px solid rgba(255, 245, 200, 0.5);
}
.bar-label {
  position: absolute;
  bottom: -28px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute-2);
  white-space: nowrap;
}
.comparison-foot {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--mute-2);
}

/* stagger growth: handled in JS, this is a fallback */

/* -------- STORY GRID -------- */
.story-section { padding: 5rem 1.5rem; }
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.story-block {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04) 0%, rgba(20, 16, 8, 0.4) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 22px;
  padding: 2.4rem 2rem;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.story-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(212, 175, 55, 0.1), transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.story-block:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}
.story-block:hover::before { opacity: 1; }
.story-block .section-eyebrow { margin-bottom: 0.7rem; }
.story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.story-title .accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.story-block p {
  color: var(--mute);
  font-size: 0.96rem;
  line-height: 1.7;
}
.story-block-wide { grid-column: 1 / -1; }
.story-block-wide .story-title { max-width: 720px; }
.story-block-wide p { max-width: 720px; font-size: 1rem; }

/* =========================================================
   REDDIT PAGE
   ========================================================= */

.reddit-hero { padding-bottom: 3rem; }
.reddit-mark {
  width: 110px;
  height: 110px;
  margin: 0 auto 2rem;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.5);
  box-shadow:
    0 0 40px rgba(212, 175, 55, 0.35),
    0 0 80px rgba(212, 175, 55, 0.15),
    inset 0 0 30px rgba(212, 175, 55, 0.08);
  background: radial-gradient(circle at 30% 25%, #1a1410 0%, #0a0a0a 70%);
  position: relative;
  overflow: hidden;
  -webkit-animation: logo-pulse 5s ease-in-out infinite;
          animation: logo-pulse 5s ease-in-out infinite;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.reddit-mark svg {
  width: 64%;
  height: 64%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.45));
}

/* Standalone note card */
.reddit-note { padding: 1.5rem 1.5rem 0; }
.reddit-note-card {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(20, 16, 8, 0.4) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  padding: 1.8rem 2rem;
  position: relative;
}
.reddit-note-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: grid;
  place-items: center;
  color: var(--gold);
}
.reddit-note-icon svg { width: 22px; height: 22px; }
.reddit-note-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--white);
}
.reddit-note-card p {
  color: var(--mute);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* Reddit services grid */
.reddit-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.reddit-service {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04) 0%, rgba(20, 16, 8, 0.45) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 18px;
  padding: 2.2rem 1.8rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.reddit-service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 0% 0%, rgba(212, 175, 55, 0.1), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.reddit-service:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.12);
}
.reddit-service:hover::before { opacity: 1; }
.reddit-service-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gold-soft);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  display: inline-block;
}
.reddit-service h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--white);
  line-height: 1.25;
}
.reddit-service h3 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.reddit-service p {
  color: var(--mute);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* Reddit pricing */
.reddit-pricing { padding: 5rem 1.5rem; }
.reddit-pricing-card {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(20, 16, 8, 0.5) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reddit-pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(212, 175, 55, 0.14), transparent 70%);
  pointer-events: none;
}
.reddit-pricing-card .section-eyebrow { display: inline-block; margin-bottom: 0.7rem; }
.reddit-pricing-card .section-title { margin: 0 auto 1rem; }
.reddit-pricing-card .section-lede { margin: 0 auto 2rem; }
.reddit-pricing-card .bullet-list {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================================
   FORMS — apply (multi-step) + contact
   ========================================================= */

.apply-section, .contact-section { padding: 1rem 1.5rem 5rem; }
.apply-container, .contact-container {
  max-width: 760px;
}

/* Progress bar */
.apply-progress {
  margin-bottom: 2rem;
}
.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.7rem;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold-2), var(--gold));
  background-size: 200% 100%;
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.5);
  -webkit-animation: shimmer 4s linear infinite;
          animation: shimmer 4s linear infinite;
}
.progress-label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute-2);
  text-align: center;
}
.progress-label span { color: var(--gold); font-weight: 600; }

/* Form card */
.apply-form, .contact-form {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04) 0%, rgba(20, 16, 8, 0.55) 100%);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 24px;
  padding: 2.5rem 2.4rem;
  position: relative;
  overflow: hidden;
}
.apply-form::before, .contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 280px at 50% 0%, rgba(212, 175, 55, 0.1), transparent 70%);
  pointer-events: none;
}

/* Step transitions */
.form-step {
  display: none;
  position: relative;
  z-index: 1;
}
.form-step.active {
  display: block;
  -webkit-animation: step-slide-in 0.45s cubic-bezier(0.65, 0.05, 0.36, 1) both;
          animation: step-slide-in 0.45s cubic-bezier(0.65, 0.05, 0.36, 1) both;
}
@-webkit-keyframes step-slide-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes step-slide-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.step-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.7rem;
  color: var(--white);
}
.step-title .accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.step-help {
  color: var(--mute);
  font-size: 0.93rem;
  margin-bottom: 2rem;
}
.step-help .req, .field .req { color: var(--gold); font-weight: 600; }
.optional { color: var(--mute-2); font-size: 0.85em; font-weight: 400; }

/* Field wrappers */
.field {
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
}
.field > label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.7rem;
  font-weight: 500;
}

/* Inputs */
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  background: rgba(10, 8, 4, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 0.95rem 1.1rem;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--mute-2);
  opacity: 0.7;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(20, 16, 8, 0.7);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12), 0 0 20px rgba(212, 175, 55, 0.15);
}
.field input.error, .field textarea.error {
  border-color: rgba(220, 80, 80, 0.7);
  box-shadow: 0 0 0 3px rgba(220, 80, 80, 0.15);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}

/* Chip group (radio / checkbox styled as pills) */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.chip-group.error {
  position: relative;
}
.chip-group.error::after {
  content: "Please select an option";
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255, 130, 130, 0.9);
  letter-spacing: 0.04em;
}
.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.chip > span {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: rgba(20, 16, 8, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--mute);
  letter-spacing: 0.02em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.chip:hover > span {
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--white);
}
.chip input:checked + span {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: var(--gold);
  color: #0a0a0a;
  font-weight: 600;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}
.chip input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.chip-group-large .chip > span {
  padding: 1rem 1.6rem;
  font-size: 0.95rem;
}

/* Nav buttons */
.apply-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.apply-nav .cta-btn,
.apply-nav .cta-btn-secondary {
  flex: 0 0 auto;
  min-width: 0;
}

/* Compact button variant — for navigation rows where space is tight */
.cta-btn-compact {
  padding: 0.95rem 1.6rem !important;
  letter-spacing: 0.12em !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
  justify-content: center !important;
}
.cta-btn-compact .arrow { font-size: 0.95em; }
#applyPrev[hidden],
#applyNext[hidden],
#applySubmit[hidden] { display: none !important; }
#applyPrev[disabled] {
  visibility: hidden;
}

/* Success state */
.apply-success, .contact-success {
  text-align: center;
  padding: 1.5rem 1rem 0.5rem;
  position: relative;
  z-index: 1;
}
.success-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
  -webkit-animation: success-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
          animation: success-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.success-ring svg { width: 38px; height: 38px; }
@-webkit-keyframes success-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
@keyframes success-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.apply-success h2, .contact-success h3 {
  margin-bottom: 1rem;
}
.contact-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
}
.apply-success p, .contact-success p {
  color: var(--mute);
  max-width: 520px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

/* Contact form footer */
.contact-form-foot {
  margin-top: 0.8rem;
  text-align: right;
}

/* Contact Telegram block */
.contact-telegram { margin-top: 3rem; position: relative; z-index: 1; }
.contact-telegram-divider {
  text-align: center;
  position: relative;
  margin-bottom: 2.2rem;
}
.contact-telegram-divider::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.25), transparent);
}
.contact-telegram-divider span {
  position: relative;
  display: inline-block;
  background: var(--bg);
  padding: 0 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-soft);
}

.contact-telegram-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(20, 16, 8, 0.5) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 22px;
  padding: 1.8rem 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.contact-telegram-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 40px rgba(212, 175, 55, 0.15);
}
.contact-telegram-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #1a1410, #0a0a0a 70%);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.25);
}
.contact-telegram-icon svg { width: 30px; height: 30px; }
.contact-telegram-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.contact-telegram-text p {
  color: var(--mute);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* Apply hero / contact hero spacing */
.apply-hero, .contact-hero { padding-bottom: 2rem; }

@media (max-width: 700px) {
  .apply-form, .contact-form { padding: 2rem 1.4rem; }
  .step-help { margin-bottom: 1.5rem; }
  .field { margin-bottom: 1.3rem; }
  .chip > span { padding: 0.6rem 1rem; font-size: 0.85rem; }
  .apply-nav { flex-direction: row; }
  .apply-nav .cta-btn, .apply-nav .cta-btn-secondary {
    flex: 1;
    min-width: 0;
    justify-content: center;
  }
  .apply-nav .cta-btn-compact {
    padding: 0.85rem 1rem !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.1em !important;
  }
  .contact-telegram-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.6rem 1.4rem;
  }
  .contact-telegram-icon { margin: 0 auto; }
  .telegram-cta { width: 100%; justify-content: center; }
}

/* =========================================================
   FLOATING TELEGRAM BUTTON (global, all pages)
   ========================================================= */
.float-telegram {
  position: fixed;
  bottom: max(1.4rem, env(safe-area-inset-bottom, 0px) + 0.6rem);
  right: max(1.4rem, env(safe-area-inset-right, 0px) + 0.6rem);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-soft) 100%);
  color: #0a0a0a;
  display: grid;
  place-items: center;
  z-index: 80;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0,0,0,0.45), 0 0 30px rgba(212, 175, 55, 0.4);
  border: 1.5px solid rgba(255, 245, 200, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  -webkit-animation: float-telegram-pulse 3.5s ease-in-out infinite;
          animation: float-telegram-pulse 3.5s ease-in-out infinite;
}
.float-telegram svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  /* nudge the Telegram paper-plane visually centered */
  transform: translateX(-1px);
}
.float-telegram:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.55), 0 0 50px rgba(212, 175, 55, 0.7);
}
.float-telegram:active { transform: scale(0.96); }
@-webkit-keyframes float-telegram-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(0,0,0,0.45), 0 0 30px rgba(212, 175, 55, 0.35); }
  50%      { box-shadow: 0 10px 28px rgba(0,0,0,0.45), 0 0 50px rgba(212, 175, 55, 0.7); }
}
@keyframes float-telegram-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(0,0,0,0.45), 0 0 30px rgba(212, 175, 55, 0.35); }
  50%      { box-shadow: 0 10px 28px rgba(0,0,0,0.45), 0 0 50px rgba(212, 175, 55, 0.7); }
}
.float-telegram::after {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(10, 8, 4, 0.95);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-weight: 500;
}
.float-telegram:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 700px) {
  .float-telegram { width: 52px; height: 52px; }
  .float-telegram svg { width: 26px; height: 26px; }
  .float-telegram::after { display: none; }
}

/* =========================================================
   GENESIS PAGE
   ========================================================= */

.genesis-hero { padding-bottom: 3rem; }
.genesis-glyph {
  width: 130px;
  height: 130px;
  margin: 0 auto 2rem;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.45);
  box-shadow:
    0 0 50px rgba(212, 175, 55, 0.35),
    0 0 100px rgba(212, 175, 55, 0.12),
    inset 0 0 40px rgba(212, 175, 55, 0.08);
  background: radial-gradient(circle at 30% 25%, #1a1410 0%, #0a0a0a 70%);
  position: relative;
  overflow: hidden;
  -webkit-animation: logo-pulse 6s ease-in-out infinite, genesis-rotate 60s linear infinite;
          animation: logo-pulse 6s ease-in-out infinite, genesis-rotate 60s linear infinite;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.genesis-glyph svg {
  width: 100%; height: 100%;
  display: block;
}
@-webkit-keyframes genesis-rotate { to { transform: rotate(360deg); } }
@keyframes genesis-rotate { to { transform: rotate(360deg); } }

/* Why Genesis grid */
.why-genesis { padding: 4rem 1.5rem 4rem; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04) 0%, rgba(20, 16, 8, 0.45) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5), 0 0 36px rgba(212, 175, 55, 0.12);
}
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold-soft);
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--white);
  line-height: 1.25;
}
.why-card h3 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.why-card p {
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Process / blueprint */
.genesis-process { padding: 4rem 1.5rem 5rem; }
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.process-steps::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.4) 15%, rgba(212, 175, 55, 0.4) 85%, transparent 100%);
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.8rem;
  padding: 1.6rem 0;
  align-items: flex-start;
}
.process-step-num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #1a1410, #0a0a0a 70%);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.65rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.25);
  flex-shrink: 0;
}
.process-step-body {
  padding-top: 1rem;
}
.process-step-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.process-step-body h3 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.process-step-body p {
  color: var(--mute);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Ownership card */
.ownership-section { padding: 4rem 1.5rem 5rem; }
.ownership-card {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(20, 16, 8, 0.5) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 24px;
  padding: 2.8rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ownership-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(212, 175, 55, 0.14), transparent 70%);
  pointer-events: none;
}
.ownership-card .section-eyebrow { display: inline-block; margin-bottom: 0.6rem; }
.ownership-card .section-title { margin: 0 auto 1.5rem; }
.ownership-card .bullet-list { text-align: left; max-width: 600px; margin: 0 auto; }

/* =========================================================
   FAQ PAGE — split-panel explorer
   ========================================================= */

.faq-hero { padding-bottom: 3rem; }
.faq-section { padding: 2rem 1.5rem 5rem; }

.faq-explorer {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 1.4fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

/* Left rail */
.faq-rail {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04) 0%, rgba(20, 16, 8, 0.5) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 22px;
  padding: 0.75rem;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.3) transparent;
}
.faq-rail::-webkit-scrollbar { width: 6px; }
.faq-rail::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 3px; }

.faq-q {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  color: var(--mute);
  font-family: inherit;
  font-size: 0.93rem;
  line-height: 1.4;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  width: 100%;
}
.faq-q:hover {
  background: rgba(212, 175, 55, 0.04);
  color: var(--white);
}
.faq-q.active {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%);
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--white);
  box-shadow: inset 4px 0 0 var(--gold);
}
.faq-q-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  width: 24px;
}
.faq-q.active .faq-q-num { color: var(--gold); }
.faq-q-text {
  flex: 1;
  font-weight: 500;
}
.faq-q-arrow {
  font-size: 1rem;
  color: var(--gold-soft);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}
.faq-q.active .faq-q-arrow,
.faq-q:hover .faq-q-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold);
}

/* Right stage */
.faq-stage {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(20, 16, 8, 0.55) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 24px;
  padding: 2.8rem 2.6rem;
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.faq-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 100% 0%, rgba(212, 175, 55, 0.12), transparent 65%);
  pointer-events: none;
}

.faq-a {
  display: none;
  position: relative;
  z-index: 1;
  -webkit-animation: faq-fade-in 0.45s ease both;
          animation: faq-fade-in 0.45s ease both;
}
.faq-a.active { display: block; }
@-webkit-keyframes faq-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes faq-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-a-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.6rem;
}
.faq-a h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 1.4rem;
  color: var(--white);
}
.faq-a p {
  color: var(--mute);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 1rem;
}
.faq-a p strong { color: var(--white); font-weight: 500; }
.faq-a .bullet-list { margin-top: 0.8rem; }

/* Mobile FAQ — stack & become inline accordion */
@media (max-width: 880px) {
  .faq-explorer {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .faq-rail {
    position: static;
    max-height: none;
    background: transparent;
    border: none;
    padding: 0;
    overflow: visible;
  }
  .faq-q {
    border-radius: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    padding: 1.1rem 0.5rem;
    background: transparent !important;
    border-left: none;
    box-shadow: none !important;
    border-bottom: none;
    border-right: none;
  }
  .faq-q:first-child { border-top: 1px solid rgba(212, 175, 55, 0.12); }
  .faq-q::after {
    content: "+";
    margin-left: auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    line-height: 1;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    transition: transform 0.4s ease, background 0.25s ease;
    flex-shrink: 0;
  }
  .faq-q-arrow { display: none; }
  .faq-q.active::after {
    transform: rotate(45deg);
    background: var(--gold);
    color: #0a0a0a;
  }
  .faq-stage {
    display: none;
  }
  .faq-q.active + .faq-mobile-answer-anchor {
    display: block;
  }
  /* Inline answer rendered by JS on mobile */
  .faq-inline-answer {
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    padding: 0.5rem 0.5rem 1.5rem;
    -webkit-animation: faq-fade-in 0.4s ease both;
            animation: faq-fade-in 0.4s ease both;
  }
  .faq-inline-answer h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gold-2);
  }
  .faq-inline-answer p {
    color: var(--mute);
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 0.9rem;
  }
  .faq-inline-answer .faq-a-tag {
    margin-bottom: 1rem;
  }
}

@media (max-width: 760px) {
  .stats-section, .comparison-section, .story-section { padding: 3rem 1.2rem; }
  .stats-grid { gap: 1rem; }
  .stat-card { padding: 2rem 1.4rem; }
  .stat-card-label { font-size: 0.7rem; }

  .comparison-card { padding: 1.5rem 0.8rem 1.4rem; }
  .comparison-chart { height: 240px; }
  .chart-bars { padding-bottom: 30px; gap: 0.3rem; }
  .bars { gap: 4px; padding-bottom: 4px; }
  .bar { max-width: 22px; }
  .bar-label { font-size: 0.6rem; letter-spacing: 0.1em; bottom: -22px; }
  .comparison-legend { gap: 0.9rem; font-size: 0.75rem; }
  .legend-y { width: 100%; margin-left: 0; order: 99; }

  .reddit-mark { width: 88px; height: 88px; }
  .reddit-note-card { flex-direction: column; gap: 1rem; padding: 1.4rem 1.4rem; }
  .reddit-pricing-card { padding: 2rem 1.4rem; }
  .reddit-service { padding: 1.8rem 1.4rem; }
}

@media (max-width: 600px) {
  section { padding: 4.5rem 1.2rem; }
  .hero {
    padding: calc(6.5rem + env(safe-area-inset-top, 0px)) 1.2rem 4rem;
  }
  .hero-logo { width: 100px; height: 100px; }
  .service-body-inner { padding-left: 0; padding-right: 0; }
  .service-num { min-width: 24px; font-size: 0.95rem; }
}
