@import "../main.css";

/* Support page: same glass navigation as index.html with stronger page contrast. */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 3%, rgba(255,255,255,.38), transparent 26rem),
    radial-gradient(circle at 86% 12%, rgba(255,255,255,.18), transparent 24rem),
    linear-gradient(140deg, #f14874 0%, #ff4d53 46%, #ff7043 100%) top / 100% 980px no-repeat,
    linear-gradient(180deg, #fff7ed 0%, #fffaf3 30%, #ffffff 68%, #fff7ed 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: clip;
  max-width: 100%;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 24% 22%, rgba(255,255,255,.20), transparent 1px),
    radial-gradient(circle at 70% 16%, rgba(255,255,255,.16), transparent 1px);
  background-size: 42px 42px, 64px 64px;
  mask-image: linear-gradient(to bottom, black 0 620px, transparent 980px);
  opacity: .45;
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, calc(100% - 40px)); max-width: calc(100% - 40px); margin: 0 auto; }

/* Shared glass header — matched to index.html */
.nav {
  position: sticky;
  top: 14px;
  z-index: 100;
  margin-top: 14px;
}
.nav-inner {
  min-height: 74px;
  height: auto;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px 12px 22px;
  color: #fff;
  background: rgba(255,255,255,.17);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 18px 70px rgba(128, 32, 45, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .28s ease, color .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.nav.scrolled .nav-inner {
  color: var(--ink);
  background: rgba(255,255,255,.94);
  border-color: rgba(80, 45, 55, .12);
  box-shadow: 0 18px 45px rgba(91, 40, 55, .14);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: 1.18rem;
  white-space: nowrap;
}
.mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(255,79,102,.24);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .94rem;
  font-weight: 800;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  padding: 11px 14px;
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.nav-links a:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.15);
}
.nav.scrolled .nav-links a:hover {
  color: var(--coral-deep, #e93c64);
  background: rgba(255,79,102,.10);
}
.nav-cta {
  color: #fff !important;
  background: rgba(255,255,255,.20);
  box-shadow: inset 0 1px rgba(255,255,255,.25);
}
.nav.scrolled .nav-cta,
.nav-cta:hover {
  color: #fff !important;
  background: linear-gradient(135deg, var(--coral), var(--orange)) !important;
  box-shadow: 0 14px 30px rgba(255,79,102,.28);
}

.hero {
  padding: 88px 0 70px;
  color: #fff;
}

.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 36px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.17);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 18px 44px rgba(128,32,45,.16);
  color: #fff;
  font-weight: 900;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1 { font-size: clamp(2.6rem, 5vw, 5rem); line-height: .96; letter-spacing: -.07em; margin: 20px 0 18px; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.04; letter-spacing: -.045em; margin: 0 0 14px; color: var(--ink); }
h3 { font-size: 1.1rem; line-height: 1.2; margin: 0 0 8px; color: #111827; }
.lead { font-size: 1.18rem; color: rgba(255,255,255,.92); max-width: 720px; }

.hero-card,
.card,
.toc,
.callout,
.step,
.shot-card {
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(80,45,55,.13);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(94,34,52,.12);
}

.hero-grid > *,
.nav-inner > *,
.card,
.toc,
.callout,
.step,
.shot-card,
.shot-body,
.section-head,
.footer-row,
.footer-links {
  min-width: 0;
}

.nav-links a,
.toc a,
.card p,
.step p,
.shot-card p,
.support-list li,
.note {
  overflow-wrap: anywhere;
}
.hero-card { padding: 18px; }
.hero-card img { border-radius: 22px; border: 1px solid rgba(80,45,55,.13); }
.hero-card .hero-note {
  display: inline-block;
  margin: 14px 4px 0;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(80,45,55,.14);
  color: #253044;
  font-weight: 850;
  line-height: 1.35;
  box-shadow: 0 12px 26px rgba(91,40,55,.12);
}
.note { color: #475569; font-size: .95rem; }

.toc {
  padding: 18px;
  margin-top: 22px;
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.30);
  box-shadow: 0 18px 70px rgba(128,32,45,.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.toc h2 { font-size: 1.05rem; letter-spacing: 0; margin-bottom: 10px; color: #fff; }
.toc-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.toc a {
  display: block;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.35);
  font-weight: 850;
  color: #243041;
}
.toc a:hover { border-color: rgba(255,255,255,.75); color: #e93c64; transform: translateY(-1px); }

main { position: relative; }
.section { padding: 62px 0; background: #fffaf3; position: relative; }
.section:nth-of-type(even) { background: #fff; }
.section.alt { background: linear-gradient(180deg, #fff7ed 0%, #fffaf3 100%); }
.section-head { max-width: 800px; margin-bottom: 24px; }
.section-head p { color: #475569; font-size: 1.05rem; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card { padding: 22px; }
.card p,
.step p,
.shot-card p { color: #475569; margin: 0; }
.badge {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: #fff;
  font-weight: 950;
  margin-bottom: 14px;
}
.steps { display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: 72px minmax(0, 1fr) minmax(0, 300px); gap: 20px; padding: 18px; align-items: center; }
.step-num { width: 54px; height: 54px; border-radius: 18px; background: #111827; color: #fff; display: grid; place-items: center; font-weight: 950; font-size: 1.1rem; }
.step img { width: 100%; max-width: 300px; justify-self: end; border-radius: 20px; border: 1px solid rgba(80,45,55,.13); }
.shot-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.shot-card { overflow: hidden; }
.shot-card img { width: 100%; border-bottom: 1px solid rgba(80,45,55,.13); }
.shot-body { padding: 18px; }
.callout { padding: 24px; background: linear-gradient(135deg, #fff, #fff7ed); }
.callout strong { color: #0f172a; }
.faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.support-list { margin: 10px 0 0; padding-left: 20px; color: #475569; }
.support-list li { margin: 8px 0; }
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 26px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 18px 56px rgba(128,32,45,.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.pill {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 10px 24px rgba(128,32,45,.12);
  font-weight: 850;
  color: #243041;
}

.button { display: inline-flex; align-items: center; justify-content: center; padding: 13px 18px; border-radius: 999px; color: #fff; font-weight: 900; background: linear-gradient(135deg, var(--coral), var(--orange)); box-shadow: 0 16px 34px rgba(255,79,102,.25); }

footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #6d6570;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 950;
}
.footer-links { display: flex; gap: 24px; font-size: .93rem; flex-wrap: wrap; }
.footer-links a:hover { color: #f43f5e; }

.callout--support-actions { margin-top: 20px; }
.callout--support-actions .note a,
.section-head a { color: var(--coral-deep); font-weight: 850; }

@media (max-width: 1020px) {
  .container { width: min(100% - 28px, var(--max)); max-width: calc(100% - 28px); }
  .hero-grid,
  .step { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .toc-grid { grid-template-columns: repeat(2, 1fr); }
  .step img { max-width: 100%; justify-self: start; margin-top: 16px; }
}
@media (max-width: 900px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 26px;
  }
  .nav-links { justify-content: flex-start; }
}
@media (max-width: 760px) {
  body { background-size: auto, auto, 100% 1120px, auto; }
  .nav { top: 8px; margin-top: 8px; }
  .nav-inner { padding: 14px; }
  .nav-links { width: 100%; max-width: 100%; gap: 6px; font-size: .88rem; }
  .nav-links a { padding: 10px 12px; }
  .hero { padding: 54px 0 42px; }
  .cards,
  .shot-grid,
  .faq,
  .toc-grid { grid-template-columns: 1fr; }
  h1 { letter-spacing: -.055em; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
