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

:root {
  --bg: #F8F1E7;
  --surface: #FFF9F1;
  --surface2: #F2EAE0;
  --ink: #11100E;
  --ink2: #1e1c1a;
  --muted: #7B7168;
  --muted2: #A09487;
  --gold: #A67C45;
  --goldLight: #C19A63;
  --goldBg: rgba(166,124,69,0.09);
  --goldGlow: rgba(166,124,69,0.18);
  --border: #E7DED3;
  --borderLight: #EDE6DC;
  --espresso: #11100E;
  --espressoSoft: #1C1A17;
  --radius: 20px;
  --radiusSm: 12px;
  --shadow: 0 8px 32px rgba(17,16,14,0.08), 0 1px 3px rgba(17,16,14,0.04);
  --shadowMd: 0 12px 40px rgba(17,16,14,0.12);
  --shadowHero: 0 24px 64px rgba(0,0,0,0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17,16,14,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(166,124,69,0.15);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--goldLight);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.15s;
  letter-spacing: 0.1px;
  cursor: pointer;
}

.nav-links a:hover { color: var(--goldLight); }

.nav-cta {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: -0.1px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--goldLight);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(166,124,69,0.4);
  color: #fff;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #1C1A17;
  border-top: 1px solid rgba(166,124,69,0.12);
  padding: 16px 24px 20px;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
}

.mobile-menu a:last-child { border-bottom: none; }

/* === HERO === */
.hero {
  background: var(--espresso);
  padding: 130px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(166,124,69,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--espresso));
  pointer-events: none;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(166,124,69,0.12);
  border: 1px solid rgba(166,124,69,0.25);
  border-radius: 50px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 22px;
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--goldLight);
  border-radius: 50%;
}

.hero-eyebrow span {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--goldLight);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--goldLight);
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.badge-img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
}

.badge-img:hover { transform: translateY(-2px); opacity: 0.9; }

.hero-trust {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.3px;
}

/* === SECTIONS === */
section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 48px;
}

/* === PROBLEM SECTION === */
.problem-section {
  background: var(--bg);
  padding: 80px 24px;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--goldLight));
  opacity: 0.5;
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.problem-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.problem-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* === WEEK ENGINE === */
.week-engine {
  background: var(--espresso);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.week-engine::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(166,124,69,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.week-engine .section-title { color: #fff; }
.week-engine .section-sub { color: rgba(255,255,255,0.55); }

.timeline {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 32px 0 40px;
  position: relative;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.timeline-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(166,124,69,0.15);
  border: 2px solid rgba(166,124,69,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--goldLight);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.timeline-dot.active {
  background: var(--gold);
  border-color: var(--goldLight);
  box-shadow: 0 0 0 4px rgba(166,124,69,0.15);
}

.timeline-dot.active span { color: #fff; }

.timeline-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(166,124,69,0.3), rgba(166,124,69,0.15));
  margin: 0 -1px;
  margin-top: -34px;
  position: relative;
  z-index: 0;
}

.timeline-label {
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  letter-spacing: 0.3px;
  text-align: center;
}

.phase-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.phase-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(166,124,69,0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, background 0.2s;
}

.phase-card:hover {
  border-color: rgba(166,124,69,0.3);
  background: rgba(255,255,255,0.06);
}

.phase-badge {
  display: inline-block;
  background: rgba(166,124,69,0.15);
  border: 1px solid rgba(166,124,69,0.25);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 800;
  color: var(--goldLight);
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}

.phase-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.phase-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* === FEATURE GRID === */
.features-section {
  background: var(--bg);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(166,124,69,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px !important;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadowMd);
  border-color: rgba(166,124,69,0.3);
}

.feature-icon {
  width: auto; height: auto;
  background: none; border: none;
  border-radius: 0; margin-bottom: 0;
  font-size: inherit;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  margin-top: 4px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* === WHO === */
.who-section {
  background: var(--surface2);
  padding: 80px 24px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.who-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.who-check {
  width: 28px; height: 28px;
  background: var(--goldBg);
  border: 1px solid rgba(166,124,69,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 1px;
}

.who-card p {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}

/* === SAFETY === */
.safety-section {
  background: var(--espresso);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.safety-section::before {
  content: '';
  position: absolute;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(166,124,69,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.safety-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(166,124,69,0.2);
  border-radius: 24px;
  padding: 48px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.safety-card .section-title { color: #fff; margin-bottom: 12px; }

.safety-card .section-sub {
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}

.safety-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.safety-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.safety-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--goldLight);
  flex-shrink: 0;
  margin-top: 7px;
}

.safety-disclaimer {
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(166,124,69,0.08);
  border: 1px solid rgba(166,124,69,0.2);
  border-radius: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* === SEO SECTION === */
.seo-section {
  background: var(--bg);
  padding: 80px 24px;
}

.seo-editorial {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 52px;
}

.seo-big-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
}

.seo-big-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: background 0.2s;
  position: relative;
}

.seo-big-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--goldLight));
  opacity: 0;
  transition: opacity 0.2s;
}

.seo-big-card:hover { background: #FFFDF8; }
.seo-big-card:hover::before { opacity: 0.6; }

.seo-big-card-icon {
  width: 44px; height: 44px;
  background: rgba(166,124,69,0.07);
  border: 1px solid rgba(166,124,69,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.seo-big-card-content { flex: 1; }

.seo-big-card-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.seo-big-card-content p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.seo-big-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.seo-big-card-tags span {
  display: inline-block;
  background: rgba(166,124,69,0.07);
  border: 1px solid rgba(166,124,69,0.15);
  border-radius: 50px;
  padding: 3px 11px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2px;
}

.seo-topic-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.seo-topic-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.seo-topic-header span {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted2);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.seo-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.seo-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: border-color 0.15s, background 0.15s;
}

.seo-pill:hover {
  border-color: rgba(166,124,69,0.25);
  background: #FFFDF8;
}

.seo-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
  opacity: 0.7;
}

.seo-pill-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
  line-height: 1.3;
}

.seo-pill-body {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* === FAQ === */
.faq-section {
  background: var(--surface2);
  padding: 80px 24px;
}

.faq-section .section-inner {
  max-width: 780px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radiusSm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: rgba(166,124,69,0.3); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}

.faq-q:hover { color: var(--gold); }

.faq-arrow {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--goldBg);
  border: 1px solid rgba(166,124,69,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
  font-size: 12px;
  color: var(--gold);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--goldBg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 20px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 20px 18px;
}

/* === FINAL CTA === */
.cta-section {
  background: var(--espresso);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(166,124,69,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section .section-title {
  color: #fff;
  margin: 0 auto 16px;
  max-width: 600px;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin: 0 auto 36px;
  max-width: 480px;
  line-height: 1.65;
}

.cta-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-trust {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
}

/* === FOOTER === */
footer {
  background: #0D0C0A;
  padding: 60px 24px 40px;
  border-top: 1px solid rgba(166,124,69,0.1);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
}

.footer-logo span { color: var(--goldLight); }

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  max-width: 300px;
}

.footer-disclaimer {
  font-size: 11.5px;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
  max-width: 300px;
  font-style: italic;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--goldLight); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

.footer-copy a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  cursor: pointer;
}

.footer-copy a:hover { color: var(--goldLight); }

/* === LEGAL / SUPPORT PAGES === */
.legal-page {
  padding: 100px 24px 80px;
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.legal-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -1.2px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 13px;
  color: var(--muted2);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-body h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.4px;
  margin: 36px 0 10px;
  padding-top: 8px;
}

.legal-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 8px;
}

.legal-body p {
  font-size: 15px;
  color: #4A463F;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}

.legal-body ul li {
  font-size: 15px;
  color: #4A463F;
  line-height: 1.7;
  padding: 3px 0 3px 20px;
  position: relative;
}

.legal-body ul li::before {
  content: '·';
  position: absolute;
  left: 6px;
  color: var(--gold);
  font-weight: 700;
}

.legal-warning {
  background: #FFF3EC;
  border: 1px solid #E8C9A0;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 20px 0;
  font-size: 14px;
  color: #5C3A0E;
  line-height: 1.65;
  font-weight: 600;
}

.legal-note {
  background: var(--goldBg);
  border: 1px solid rgba(166,124,69,0.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
}

.legal-warning-refined {
  background: rgba(166,124,69,0.06);
  border: 1px solid rgba(166,124,69,0.2);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 20px 0;
  font-size: 14px;
  color: #4A3A1E;
  line-height: 1.65;
  font-weight: 600;
}

/* === SUPPORT PAGE === */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}

.support-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.support-card p, .support-card li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 8px;
}

.support-card ul {
  list-style: none;
  padding: 0;
}

.support-card ul li {
  padding-left: 14px;
  position: relative;
}

.support-card ul li::before {
  content: '·';
  position: absolute;
  left: 2px;
  color: var(--gold);
  font-weight: 700;
}

.support-emergency {
  background: #FFF3EC;
  border: 1px solid #E8C9A0;
  border-radius: 14px;
  padding: 24px 26px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.support-emergency h3 {
  font-size: 16px;
  font-weight: 800;
  color: #5C3A0E;
  margin-bottom: 8px;
}

.support-emergency p {
  font-size: 14px;
  color: #7A4B1A;
  line-height: 1.65;
}

.support-emergency-refined {
  background: rgba(166,124,69,0.05);
  border: 1px solid rgba(166,124,69,0.18);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 24px 26px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.support-emergency-refined h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.support-emergency-refined p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.support-link-cards {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.support-link-card {
  background: var(--surface);
  border: 1px solid rgba(166,124,69,0.2);
  border-radius: var(--radiusSm);
  padding: 16px 20px;
  flex: 1;
  min-width: 180px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-align: left;
  text-decoration: none;
  color: inherit;
  display: block;
}

.support-link-card:hover {
  border-color: rgba(166,124,69,0.4);
  background: var(--goldBg);
}

.support-link-card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.support-link-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* === SOURCES PAGE === */
.sources-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 680px;
}

.sources-group {
  margin-bottom: 40px;
}

.sources-group-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.sources-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sources-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sources-list a {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s;
}

.sources-list a:hover { color: var(--gold); }

.sources-list .source-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* === PREMIUM ICON SYSTEM === */
.pdc-icon-box {
  width: 52px; height: 52px;
  background: rgba(166,124,69,0.07);
  border: 1px solid rgba(166,124,69,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.pdc-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card:hover .pdc-icon-box {
  background: rgba(166,124,69,0.12);
  border-color: rgba(166,124,69,0.28);
  box-shadow: 0 0 16px rgba(166,124,69,0.1);
}

.problem-icon-box {
  width: 52px; height: 52px;
  background: rgba(166,124,69,0.07);
  border: 1px solid rgba(166,124,69,0.13);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.2s;
}

.problem-card:hover .problem-icon-box {
  background: rgba(166,124,69,0.13);
}

.pdc-who-icon {
  width: 36px !important; height: 36px !important;
  background: rgba(166,124,69,0.07) !important;
  border: 1px solid rgba(166,124,69,0.15) !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
  margin-top: 2px;
}

/* === SECTION DIVIDER === */
.section-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--goldLight));
  border-radius: 2px;
  margin-bottom: 16px;
  opacity: 0.6;
}

/* === HERO SCREENSHOT === */
.hero-screenshot-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 60px;
  position: relative;
}

.hero-screenshot-wrap::before {
  content: '';
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 480px;
  background: radial-gradient(ellipse at center,
    rgba(166,124,69,0.24) 0%,
    rgba(166,124,69,0.08) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-screenshot {
  width: 280px;
  max-width: 100%;
  display: block;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 28px 56px rgba(0,0,0,0.75))
          drop-shadow(0 0 32px rgba(166,124,69,0.18));
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-float-card-real {
  position: absolute;
  background: rgba(28,26,23,0.92);
  border: 1px solid rgba(166,124,69,0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 2px 6px rgba(166,124,69,0.12);
  min-width: 148px;
  z-index: 10;
}

.hfcr-label {
  font-size: 8px;
  font-weight: 700;
  color: rgba(193,154,99,0.7);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 5px;
}

.hfcr-value {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 2px;
  line-height: 1;
}

.hfcr-sub {
  font-size: 9.5px;
  color: var(--goldLight);
  font-weight: 600;
}

.hfcr-bar-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
}

.hfcr-bar {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hfcr-bar-label {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  width: 34px;
}

.hfcr-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.hfcr-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #A67C45, #C19A63);
  border-radius: 2px;
}

.hfcr-bar-val {
  font-size: 7.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  width: 20px;
  text-align: right;
}

/* === WEEK ENGINE SCREENSHOT === */
.week-engine-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 52px;
  align-items: start;
  margin-top: 0;
}

.week-engine-content {}

.week-engine-screenshot-wrap {
  position: sticky;
  top: 96px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}

.week-engine-screenshot-wrap::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 380px;
  background: radial-gradient(ellipse at center,
    rgba(166,124,69,0.18) 0%,
    rgba(166,124,69,0.05) 55%,
    transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.week-engine-screenshot {
  width: 300px;
  max-width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.8))
          drop-shadow(0 0 28px rgba(166,124,69,0.14));
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* === PRE-LAUNCH CTA BUTTON === */
.cta-launch-btn {
  display: inline-block;
  background: var(--gold, #A67C45);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}

.cta-launch-btn:hover {
  background: var(--goldLight, #C19A63);
  transform: translateY(-1px);
}

/* AI-readable definition */
.hero-ai-def {
  font-size: 0.82rem;
  color: var(--textMuted, #8a8070);
  line-height: 1.55;
  margin-top: 10px;
  max-width: 400px;
}

/* === UTILITIES === */
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* === RESPONSIVE === */
@media (max-width: 1060px) {
  .week-engine-layout { grid-template-columns: 1fr; gap: 40px; }
  .week-engine-screenshot-wrap { position: static; padding-top: 0; }
  .week-engine-screenshot { width: 260px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-mockups { justify-content: center; }
  .phone-mock.tertiary { display: none; }
  .problem-cards { grid-template-columns: 1fr; }
  .phase-cards { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr; }
  .safety-card { grid-template-columns: 1fr; padding: 32px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
  .support-grid { grid-template-columns: 1fr; }
  nav .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .seo-pill-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-big-card { padding: 24px 22px; gap: 18px; }
  .seo-big-card-content h3 { font-size: 16px; }
}

@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero { padding: 110px 18px 60px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .phone-mock.secondary { display: none; }
  .timeline { overflow-x: auto; padding-bottom: 8px; }
  .legal-page { padding: 90px 18px 60px; }
  .hero-screenshot { width: 230px; }
  .hero-float-card-real { display: none; }
  .week-engine-screenshot { width: 210px; }
  .seo-pill-grid { grid-template-columns: 1fr; }
  .seo-big-card { flex-direction: column; gap: 14px; }
}

/* === GHOST GOLD BUTTON === */
.btn-ghost-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1.5px solid rgba(166,124,69,0.5);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  color: var(--goldLight);
  text-decoration: none;
  background: rgba(166,124,69,0.06);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  letter-spacing: -0.2px;
}
.btn-ghost-gold:hover {
  border-color: rgba(166,124,69,0.8);
  background: rgba(166,124,69,0.12);
  color: #D4A85A;
}

/* === DARK ORGANISE SECTION === */
.organise-section {
  background: var(--espresso);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.organise-section::before {
  content: '';
  position: absolute;
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(166,124,69,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.organise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.organise-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(166,124,69,0.18);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
}
.organise-card:hover {
  border-color: rgba(166,124,69,0.32);
  background: rgba(255,255,255,0.06);
}
.organise-card-icon {
  width: 48px; height: 48px;
  background: rgba(166,124,69,0.1);
  border: 1px solid rgba(166,124,69,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.organise-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.organise-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* === APPLE HEALTH SECTION === */
.apple-section {
  background: #141210;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.apple-section::before {
  content: '';
  position: absolute;
  top: 50%; left: -60px;
  transform: translateY(-50%);
  width: 450px; height: 500px;
  background: radial-gradient(ellipse, rgba(166,124,69,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.apple-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.apple-text-col p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 16px;
}
.apple-text-col p strong {
  color: rgba(255,255,255,0.78);
  font-weight: 700;
}
.apple-restriction-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.65;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  margin-top: 20px;
}
.apple-data-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(166,124,69,0.18);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.apple-data-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.apple-data-card-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(166,124,69,0.12);
  border: 1px solid rgba(166,124,69,0.2);
  flex-shrink: 0;
}
.apple-data-card-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.apple-data-card-sublabel {
  font-size: 10px;
  color: var(--goldLight);
  font-weight: 600;
  margin-top: 2px;
}
.apple-data-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.apple-data-row:last-of-type { border-bottom: none; }
.apple-data-row-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(166,124,69,0.08);
  border: 1px solid rgba(166,124,69,0.15);
  flex-shrink: 0;
}
.apple-data-row-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2px;
}
.apple-data-row-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}
.apple-data-row-badge {
  font-size: 9px;
  font-weight: 700;
  color: var(--goldLight);
  background: rgba(166,124,69,0.1);
  border: 1px solid rgba(166,124,69,0.2);
  border-radius: 6px;
  padding: 3px 7px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.apple-data-card-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 10.5px;
  color: rgba(255,255,255,0.28);
  text-align: center;
  line-height: 1.55;
}

/* === SAFETY CONTEXT SECTION (homepage) === */
.safety-ctx-section {
  background: #0D0C0A;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.safety-ctx-section::before {
  content: '';
  position: absolute;
  top: 50%; right: -40px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(166,124,69,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.safety-ctx-intro {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 36px;
}
.safety-source-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
  max-width: 760px;
}
.safety-source-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(166,124,69,0.14);
  border-radius: 14px;
  padding: 20px 22px;
  transition: border-color 0.2s, background 0.2s;
}
.safety-source-card:hover {
  border-color: rgba(166,124,69,0.26);
  background: rgba(255,255,255,0.045);
}
.safety-source-region {
  font-size: 10px;
  font-weight: 700;
  color: var(--goldLight);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.safety-source-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.safety-source-list span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  line-height: 1.45;
}
.safety-ctx-disclaimer {
  font-size: 11.5px;
  color: rgba(255,255,255,0.28);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 32px;
}

/* === DARK FAQ === */
.faq-dark-section {
  background: #141210;
  padding: 80px 24px;
}
.faq-dark-section .section-inner { max-width: 780px; }
.faq-dark-section .faq-list { margin-top: 32px; }
.faq-dark-section .faq-item {
  background: rgba(255,255,255,0.03);
  border-color: rgba(166,124,69,0.14);
}
.faq-dark-section .faq-item.open {
  background: rgba(255,255,255,0.05);
  border-color: rgba(166,124,69,0.28);
}
.faq-dark-section .faq-q { color: rgba(255,255,255,0.85); }
.faq-dark-section .faq-q:hover { color: var(--goldLight); }
.faq-dark-section .faq-a { color: rgba(255,255,255,0.45); }
.faq-dark-section .faq-chevron { color: var(--goldLight); }

/* === FOOTER SAFETY LINE === */
.footer-safety-line {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.2px;
  margin-top: 20px;
  text-align: center;
}

/* === WEEK ENGINE SECTION (safe wording override) === */
.week-engine-section .week-engine-eyebrow { opacity: 0.7; }

/* === RESPONSIVE ADDITIONS === */
@media (max-width: 1050px) {
  .organise-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .apple-section-grid { grid-template-columns: 1fr; gap: 40px; }
  .safety-source-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .organise-grid { grid-template-columns: 1fr; }
  .apple-section { padding: 60px 18px; }
  .safety-ctx-section { padding: 60px 18px; }
  .faq-dark-section { padding: 60px 18px; }
}

/* === HERO ANIMATIONS === */
@keyframes floatA {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

/* === PHASE CARD TEXT (dark section) === */
.phase-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--goldLight);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}
.phase-name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.phase-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* === WEEK ORBIT VISUAL === */
.week-orbit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.week-orbit-visual {
  position: relative;
  width: 300px;
  height: 300px;
  flex-shrink: 0;
}
.week-orbit-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.week-orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}
.week-orbit-center-num {
  font-size: 38px;
  font-weight: 900;
  color: rgba(255,255,255,0.85);
  letter-spacing: -2px;
  line-height: 1;
}
.week-orbit-center-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--goldLight);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.wo-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 3;
}
.wo-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(166,124,69,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}
.wo-dot.wo-active {
  background: var(--gold);
  border-color: var(--goldLight);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(166,124,69,0.14), 0 0 22px rgba(166,124,69,0.28);
}
.wo-lbl {
  font-size: 8px;
  font-weight: 700;
  color: var(--goldLight);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.week-orbit-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(166,124,69,0.14);
  border-radius: 14px;
  width: 100%;
  max-width: 300px;
}
.wo-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wo-legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(166,124,69,0.25);
  flex-shrink: 0;
}
.wo-legend-dot.active {
  background: var(--gold);
  border-color: var(--goldLight);
  box-shadow: 0 0 8px rgba(166,124,69,0.4);
}
.wo-legend-item span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

/* === WEEK ENGINE HEADER === */
.week-engine-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 52px;
  align-items: center;
  margin-bottom: 48px;
}
@media (max-width: 860px) {
  .week-engine-header { grid-template-columns: 1fr; gap: 36px; }
  .week-orbit-visual { width: 240px; height: 240px; }
  .week-orbit-visual .wo-item { transform: scale(0.85); transform-origin: center; }
}

/* === SAFETY CTX 2-COL LAYOUT === */
.safety-ctx-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.safety-ctx-layout .safety-source-cards {
  max-width: none;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .safety-ctx-layout { grid-template-columns: 1fr; gap: 36px; }
}

/* === FOOTER REFINEMENTS === */
.footer-top {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  max-width: 300px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--goldLight); }
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* === NAV CTA pill shape === */
.cta-launch-btn {
  border-radius: 50px;
}

/* === LEGAL NUMBERED SECTIONS === */
.legal-section-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  background: var(--goldBg);
  border: 1px solid rgba(166,124,69,0.18);
  border-radius: 6px;
  padding: 2px 8px;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}
.legal-page h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin: 32px 0 8px;
  padding-top: 6px;
}
.legal-page h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 20px 0 6px;
}
.legal-page p {
  font-size: 15px;
  color: #4A463F;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-page ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}
.legal-page ul li {
  font-size: 14.5px;
  color: #4A463F;
  line-height: 1.7;
  padding: 3px 0 3px 18px;
  position: relative;
}
.legal-page ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-weight: 700;
}
.legal-page a { color: var(--gold); }
.legal-page a:hover { color: var(--goldLight); }
.legal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

/* === DOWNLOAD CTA BUTTON (replaces launch btn) === */
.cta-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.2px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
}
.cta-download-btn:hover {
  background: var(--goldLight);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(166,124,69,0.35);
  color: #fff;
}

/* === STORE BADGES === */
.hero-badges-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.badge-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.badge-link {
  display: inline-block;
  line-height: 0;
  flex-shrink: 0;
  border-radius: 8px;
  transition: opacity 0.15s, transform 0.15s;
}
.badge-link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.badge-img {
  display: block;
  height: 40px;
  width: auto;
}
.badge-play {
  height: 40px;
  margin: 0;
}
.badge-play-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.badge-android-note {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.2px;
  padding-left: 2px;
}
.badge-note {
  font-size: 11.5px;
  color: rgba(255,255,255,0.28);
  line-height: 1.5;
}
.badge-view-safety {
  margin-top: 2px;
}
@media (max-width: 500px) {
  .badge-row { flex-direction: column; align-items: flex-start; }
}

/* === WHAT IT IS (LLMO/SEO) === */
.what-it-is-section {
  background: var(--bg);
  padding: 36px 24px;
  border-bottom: 1px solid var(--border);
}
.what-it-is-inner {
  max-width: 760px;
  margin: 0 auto;
}
.what-it-is-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.what-it-is-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 680px;
}

/* === AT A GLANCE CARD (legal pages) === */
.at-a-glance-card {
  background: var(--goldBg);
  border: 1px solid rgba(166,124,69,0.2);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 28px 0;
}
.at-a-glance-title {
  font-size: 10px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.at-a-glance-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.at-a-glance-list li {
  font-size: 14px;
  color: #4A463F;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.at-a-glance-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}

/* === DOWNLOAD SECTION === */
.download-section {
  background: var(--espresso);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(166,124,69,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.download-inner {
  position: relative;
  z-index: 1;
}
.download-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.download-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.48);
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.download-badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.download-badge-note {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  margin-bottom: 32px;
}
.download-badge-play-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.download-badge-android-note {
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.2px;
}
.download-safety-line {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-top: 8px;
}
@media (max-width: 500px) {
  .download-badge-row { flex-direction: column; align-items: center; }
}

/* === WHAT-IT-IS DARK GLASS REDESIGN === */
.what-it-is-section {
  background: var(--espresso);
  padding: 72px 24px;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.what-it-is-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(166,124,69,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.what-it-is-glass-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,0.038);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(201,158,94,0.18);
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .what-it-is-glass-wrap { padding: 28px 20px; }
}
.what-it-is-eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.what-it-is-heading {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 16px;
}
.what-it-is-body {
  font-size: 15px;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  margin-bottom: 16px;
}
.what-it-is-safety {
  font-size: 13px;
  color: rgba(255,255,255,0.32);
  line-height: 1.7;
  border-top: 1px solid rgba(166,124,69,0.12);
  padding-top: 14px;
  margin-top: 0;
}

/* === PHONE FRAME === */
.phone-frame {
  position: relative;
  display: inline-block;
  background: #0F0F0E;
  border-radius: 40px;
  box-shadow:
    0 0 0 1.5px rgba(201,158,94,0.25),
    0 0 0 3px #1A1814,
    0 20px 60px rgba(0,0,0,0.55),
    0 0 30px rgba(166,124,69,0.10);
  overflow: hidden;
  flex-shrink: 0;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 6px;
  background: #2A2824;
  border-radius: 3px;
  z-index: 10;
}
.phone-frame--hero {
  width: 260px;
  border-radius: 44px;
}
.phone-frame--preview {
  width: 100%;
  border-radius: 34px;
}
.phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  line-height: 0;
}
.phone-screen-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.phone-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.00) 50%,
    rgba(0,0,0,0.04) 100%
  );
  pointer-events: none;
  border-radius: inherit;
}

/* === PRODUCT PREVIEW SECTION === */
.product-preview {
  background: var(--espresso);
  padding: 80px 24px;
  border-top: 1px solid rgba(166,124,69,0.08);
}
.product-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .product-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 580px) {
  .product-preview-grid { grid-template-columns: 1fr; gap: 32px; max-width: min(340px, 92vw); margin-left: auto; margin-right: auto; }
}
.product-shot-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-shot-card .phone-frame {
  width: 100%;
  border-radius: 28px;
}
.product-shot-card .phone-frame::before {
  width: 60px;
  height: 5px;
}
.product-shot-copy {}
.product-shot-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  margin-bottom: 5px;
}
.product-shot-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  line-height: 1.65;
  margin: 0;
}

/* === ACCESSIBILITY: SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--espresso);
  color: var(--goldLight);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.1s;
  white-space: nowrap;
}
.skip-link:focus {
  top: 16px;
}

/* === ACCESSIBILITY: KEYBOARD FOCUS === */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 8px;
}
a:focus-visible,
button:focus-visible {
  border-radius: 10px;
}
.badge-link:focus-visible {
  border-radius: 12px;
}

/* =========================================================
   MOBILE RESPONSIVENESS — CONSOLIDATED FINAL
   v20260701-mobile-fix-3
   ========================================================= */

/* Base: mobile orbit hidden on desktop */
.mobile-week-orbit { display: none; }

/* 1 — Hide nav CTA at ≤360px so logo + hamburger fit cleanly */
@media (max-width: 360px) {
  .nav-cta { display: none; }
}

/* 2 — Global section padding relief + legal-meta stacking */
@media (max-width: 600px) {
  section { padding: 60px 18px; }
  .section-sub { font-size: 15px; }
  .legal-meta-sep { display: none; }
  .legal-meta-item { display: block; }
}

/* 3 — Small-screen card padding */
@media (max-width: 400px) {
  .at-a-glance-card { padding: 16px; }
  .faq-q { font-size: 14px; }
}

/* 4 — Reduced-motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .what-it-is-glass-wrap,
  .phone-frame,
  .product-shot-card {
    backdrop-filter: none;
  }
}

/* 5 — HERO PHONE FRAME (inset: 10px makes screenshot sit inside bezel) */
@media (max-width: 600px) {
  .hero-screenshot-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 28px;
    padding-bottom: 36px;
    overflow: visible;
  }

  .phone-frame--hero {
    width: min(265px, 78vw);
    max-width: 265px;
    margin: 0 auto;
    aspect-ratio: 390 / 844;
    border-radius: 44px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background: #050505;
  }

  .phone-frame--hero .phone-screen {
    position: absolute;
    inset: 14px 10px 10px 10px;
    border-radius: 34px;
    overflow: hidden;
    background: #050505;
    clip-path: inset(0 round 34px);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
  }

  .phone-frame--hero picture,
  .phone-frame--hero img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
    clip-path: inset(0 round 34px);
  }

  .phone-frame--hero img {
    object-fit: cover;
    object-position: top center;
  }

  .phone-frame--hero::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 44px;
    pointer-events: none;
    box-shadow:
      inset 0 0 0 1px rgba(194, 145, 79, 0.22),
      inset 0 18px 24px rgba(0, 0, 0, 0.28);
  }
}

/* 6 — WEEK ORBIT: hide the desktop div-based orbit (pixel positions only
        work for the 300px circle), show the inline SVG mobile orbit instead */
@media (max-width: 600px) {
  .week-engine-header {
    display: block;
  }

  .week-orbit-visual {
    display: none;
  }

  .mobile-week-orbit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 16px auto 0;
  }

  .mobile-week-orbit-svg {
    width: min(280px, 82vw);
    height: auto;
    overflow: visible;
    display: block;
    filter: drop-shadow(0 20px 45px rgba(196, 145, 75, 0.14));
  }

  .mobile-orbit-ring {
    fill: none;
    stroke: rgba(194, 145, 79, 0.16);
    stroke-width: 1.5;
  }

  .mobile-orbit-ring.outer {
    stroke-dasharray: 5 9;
  }

  .mobile-orbit-dot {
    fill: rgba(255, 255, 255, 0.055);
    stroke: rgba(194, 145, 79, 0.22);
    stroke-width: 1.5;
  }

  .mobile-orbit-dot.active {
    fill: rgba(194, 145, 79, 0.95);
    stroke: rgba(246, 207, 135, 0.7);
    filter: drop-shadow(0 0 18px rgba(194, 145, 79, 0.55));
  }

  .mobile-orbit-dot-text {
    fill: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    font-weight: 800;
    font-family: inherit;
  }

  .mobile-orbit-dot-text.active {
    fill: #fff;
  }

  .mobile-orbit-seven {
    fill: rgba(255, 255, 255, 0.92);
    font-size: 52px;
    font-weight: 900;
    font-family: inherit;
  }

  .mobile-orbit-label {
    fill: rgba(210, 166, 98, 0.95);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    font-family: inherit;
  }

  .week-orbit-legend {
    width: min(300px, 84vw);
    margin: 24px auto 0;
  }

  .phase-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
  }
}

/* 7 — Sticky nav scroll-margin so anchors don't hide under the 64px bar */
@media (max-width: 768px) {
  section[id],
  #organise,
  #safety-ctx,
  #faq,
  #download {
    scroll-margin-top: 96px;
  }
}
