:root {
  --emerald: #125C4B;
  --emerald-deep: #073B30;
  --teal-700: #0E5E52;
  --teal-500: #1B7F6E;
  --gold: #C2A05B;
  --gold-bright: #E8C878;
  --cream: #F6F0E2;
  --ivory: #FDFAF3;
  --ink: #17211E;
  --ink-600: #48544F;
  --radius: 22px;
  --shadow: 0 18px 48px rgba(7, 59, 48, 0.12), 0 2px 6px rgba(7, 59, 48, 0.06);
  --shadow-lg: 0 30px 70px rgba(7, 59, 48, 0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', system-ui, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 500; line-height: 1.1; }
.accent { color: var(--gold-bright); }

/* Gold shimmer sweep on the hero accent word. */
.shimmer {
  background: linear-gradient(100deg, var(--gold) 20%, #fff6df 45%, var(--gold-bright) 55%, var(--gold) 80%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 5.5s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }

.eyebrow {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-bright); margin-bottom: 14px;
}
.eyebrow.dark { color: var(--gold); }

/* Reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float, .shimmer, .orb-a, .orb-b, .together-orb { animation: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px clamp(20px, 5vw, 64px);
  background: rgba(7, 59, 48, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(232, 200, 120, 0.12);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 34px; height: 34px; border-radius: 9px; }
.brand-name { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--ivory); }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 3vw, 34px); }
.nav-links a { color: rgba(253, 250, 243, 0.82); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.15s ease; }
.nav-links a:hover { color: var(--gold-bright); }
.nav-cta {
  background: var(--gold); color: var(--emerald-deep) !important;
  padding: 9px 18px; border-radius: 100px; font-weight: 700 !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.nav-cta:hover { background: var(--gold-bright); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(232, 200, 120, 0.3); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--teal-700) 0%, var(--emerald) 45%, var(--emerald-deep) 100%);
  background-size: 180% 180%;
  animation: heroPan 18s ease infinite;
  color: var(--ivory);
  padding: clamp(48px, 8vw, 104px) clamp(20px, 5vw, 64px) clamp(28px, 4vw, 48px);
}
@keyframes heroPan { 0%, 100% { background-position: 0% 40%; } 50% { background-position: 100% 60%; } }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(6px); }
.orb-a {
  top: -22%; right: -8%; width: 46vw; height: 46vw;
  background: radial-gradient(circle, rgba(232, 200, 120, 0.20), transparent 62%);
  animation: floatOrb 12s ease-in-out infinite;
}
.orb-b {
  bottom: -30%; left: -12%; width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(27, 127, 110, 0.35), transparent 60%);
  animation: floatOrb 15s ease-in-out infinite reverse;
}
@keyframes floatOrb { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-18px, 22px); } }

.hero-inner {
  position: relative; max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); margin-bottom: 22px; font-weight: 600; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(253, 250, 243, 0.88); max-width: 34ch; }
.hero-note { margin-top: 18px; font-size: 0.9rem; color: rgba(253, 250, 243, 0.62); max-width: 40ch; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.cta-row.center { justify-content: center; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; padding: 11px 22px; border-radius: 14px;
  background: var(--ivory); color: var(--emerald-deep);
  border: 1px solid rgba(255,255,255,0.4); min-width: 178px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(0,0,0,0.22); }
.store-btn.light { background: var(--gold); color: var(--emerald-deep); }
.store-txt { display: inline-flex; flex-direction: column; }
.store-sub { font-size: 0.72rem; opacity: 0.7; }
.store-main { font-size: 1.15rem; font-weight: 700; line-height: 1.1; font-family: 'Figtree', sans-serif; }
.store-ico {
  width: 22px; height: 22px; flex: none;
  background: currentColor;
  -webkit-mask: center / contain no-repeat; mask: center / contain no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16.5 3c.1 1.2-.4 2.4-1.1 3.2-.8.9-2 1.5-3.1 1.4-.1-1.1.4-2.3 1.1-3.1C14.1 3.6 15.4 3 16.5 3zm3.4 14.1c-.5 1.2-.8 1.7-1.5 2.7-1 1.4-2.3 3.1-4 3.1-1.5 0-1.9-1-3.9-1-2 0-2.5 1-3.9 1-1.7 0-3-1.6-4-3C-.2 16.7-.4 12 1.8 9.6 2.9 8.4 4.4 7.6 6 7.6c1.6 0 2.6 1 3.9 1 1.3 0 2.1-1 3.9-1 1.4 0 2.9.8 3.9 2.1-3.4 1.9-2.8 6.7 2.2 8.4z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16.5 3c.1 1.2-.4 2.4-1.1 3.2-.8.9-2 1.5-3.1 1.4-.1-1.1.4-2.3 1.1-3.1C14.1 3.6 15.4 3 16.5 3zm3.4 14.1c-.5 1.2-.8 1.7-1.5 2.7-1 1.4-2.3 3.1-4 3.1-1.5 0-1.9-1-3.9-1-2 0-2.5 1-3.9 1-1.7 0-3-1.6-4-3C-.2 16.7-.4 12 1.8 9.6 2.9 8.4 4.4 7.6 6 7.6c1.6 0 2.6 1 3.9 1 1.3 0 2.1-1 3.9-1 1.4 0 2.9.8 3.9 2.1-3.4 1.9-2.8 6.7 2.2 8.4z'/%3E%3C/svg%3E");
}
.store-ico.play {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.6 2.3 13.4 12 3.6 21.7c-.4-.2-.6-.6-.6-1.1V3.4c0-.5.2-.9.6-1.1zm11.2 10.8 2.6 2.6-9.7 5.5 7.1-8.1zM5.7 2.2l9.7 5.5-2.6 2.6-7.1-8.1zM17.9 9.2l2.9 1.6c.7.4.7 1.4 0 1.8l-2.9 1.6L15 12l2.9-2.8z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.6 2.3 13.4 12 3.6 21.7c-.4-.2-.6-.6-.6-1.1V3.4c0-.5.2-.9.6-1.1zm11.2 10.8 2.6 2.6-9.7 5.5 7.1-8.1zM5.7 2.2l9.7 5.5-2.6 2.6-7.1-8.1zM17.9 9.2l2.9 1.6c.7.4.7 1.4 0 1.8l-2.9 1.6L15 12l2.9-2.8z'/%3E%3C/svg%3E");
}

.hero-art { position: relative; display: flex; justify-content: center; }
.phone-glow {
  position: absolute; inset: -8% 10%;
  background: radial-gradient(circle, rgba(232, 200, 120, 0.28), transparent 65%);
  filter: blur(8px);
}
.phone {
  position: relative;
  width: min(280px, 74vw); border-radius: 42px; padding: 10px;
  background: linear-gradient(160deg, #0a2b24, #0f4a3d);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(232,200,120,0.25);
}
.phone img { width: 100%; border-radius: 32px; display: block; }
.float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.trust {
  position: relative; max-width: 1160px; margin: clamp(30px, 5vw, 54px) auto 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px;
  font-size: 0.9rem; color: rgba(253, 250, 243, 0.78);
  padding-top: 22px; border-top: 1px solid rgba(232, 200, 120, 0.16);
}
.trust .dot { color: rgba(232, 200, 120, 0.5); }

/* ---------- Sections ---------- */
.section { padding: clamp(44px, 6vw, 78px) clamp(20px, 5vw, 64px); background: var(--ivory); }
.section.privacy { background: var(--cream); }
.section-head { max-width: 1160px; margin: 0 auto clamp(24px, 4vw, 40px); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--emerald); }

.grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow); border: 1px solid rgba(18, 92, 75, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card.soft { background: var(--ivory); }
.card.highlight {
  background: linear-gradient(165deg, var(--teal-500), var(--emerald) 45%, var(--emerald-deep));
  color: var(--ivory); border: 1px solid rgba(232,200,120,0.3);
}
.card.highlight p { color: rgba(253,250,243,0.85); }
.card-icon {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 18px;
  background: rgba(18, 92, 75, 0.08);
}
.card.highlight .card-icon { background: rgba(232, 200, 120, 0.18); }
.card h3 { font-size: 1.28rem; color: var(--emerald); margin-bottom: 10px; }
.card.highlight h3 { color: var(--ivory); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.card p { color: var(--ink-600); font-size: 0.98rem; }
.card.highlight p { color: rgba(253,250,243,0.85); }
.tag {
  font-family: 'Figtree', sans-serif; font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; vertical-align: middle;
  background: var(--gold); color: var(--emerald-deep);
  padding: 3px 8px; border-radius: 100px;
}

/* ---------- Together band (flagship) ---------- */
.together {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--teal-700), var(--emerald) 45%, var(--emerald-deep));
  background-size: 160% 160%;
  animation: heroPan 20s ease infinite;
  color: var(--ivory);
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 64px);
}
.together-orb {
  position: absolute; top: -20%; left: 50%; width: 60vw; height: 60vw;
  transform: translateX(-50%); pointer-events: none;
  background: radial-gradient(circle, rgba(232, 200, 120, 0.14), transparent 60%);
  animation: floatOrb 16s ease-in-out infinite;
}
.together-inner { position: relative; max-width: 1040px; margin: 0 auto; }
.together-head { text-align: center; }
.together h2 { font-size: clamp(2rem, 5vw, 3.3rem); margin-bottom: 16px; }
.together-lede { max-width: 54ch; margin: 0 auto; color: rgba(253,250,243,0.86); font-size: 1.12rem; }

.steps {
  margin-top: clamp(36px, 5vw, 60px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: left;
}
.step {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(232,200,120,0.22);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform 0.22s ease, background 0.22s ease;
}
.step:hover { transform: translateY(-5px); background: rgba(255,255,255,0.1); }
.step-num {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-size: 1.25rem; color: var(--emerald-deep);
  background: linear-gradient(150deg, var(--gold-bright), var(--gold)); margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(232, 200, 120, 0.3);
}
.step h4 { font-size: 1.2rem; margin-bottom: 8px; color: var(--ivory); }
.step p { color: rgba(253,250,243,0.82); font-size: 0.96rem; }

/* Reassurance sample */
.together-assure { margin-top: clamp(34px, 5vw, 54px); text-align: center; }
.assure-card {
  display: inline-flex; align-items: center; gap: 14px; text-align: left;
  max-width: 520px; margin: 0 auto;
  background: rgba(253, 250, 243, 0.97); color: var(--ink);
  border-radius: 20px; padding: 18px 22px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(232, 200, 120, 0.4);
}
.assure-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-size: 1.5rem; background: var(--cream);
}
.assure-name { font-weight: 800; color: var(--emerald); font-size: 0.9rem; }
.assure-body p { margin-top: 2px; font-size: 1rem; color: var(--ink); }
.together-note {
  max-width: 52ch; margin: 20px auto 0; font-size: 0.94rem;
  color: rgba(253, 250, 243, 0.72);
}

/* Animated "how it works" flow */
.flow-title {
  text-align: center; margin-top: clamp(40px, 6vw, 66px);
  font-family: 'Fraunces', serif; font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-bright);
}
.flow {
  margin-top: clamp(24px, 4vw, 40px);
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start; gap: 8px;
}
.flow-step { text-align: center; padding: 0 6px; }
.flow-badge {
  width: 62px; height: 62px; margin: 0 auto 14px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.7rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,200,120,0.35);
  box-shadow: 0 0 0 0 rgba(232,200,120,0.5);
  animation: badgePulse 4.8s ease-in-out infinite;
}
.flow-step:nth-child(3) .flow-badge { animation-delay: .6s; }
.flow-step:nth-child(5) .flow-badge { animation-delay: 1.2s; }
.flow-step:nth-child(7) .flow-badge { animation-delay: 1.8s; }
@keyframes badgePulse {
  0%, 70%, 100% { box-shadow: 0 0 0 0 rgba(232,200,120,0); transform: translateY(0); }
  12% { box-shadow: 0 0 24px 3px rgba(232,200,120,0.45); transform: translateY(-4px); }
}
.flow-step h4 { color: var(--ivory); font-size: 1.06rem; margin-bottom: 6px; }
.flow-step p { color: rgba(253,250,243,0.78); font-size: 0.9rem; line-height: 1.45; }
.flow-line {
  position: relative; height: 3px; margin-top: 30px; align-self: start;
  background: rgba(255,255,255,0.12); border-radius: 2px; overflow: hidden;
}
.flow-pulse {
  position: absolute; top: 0; left: -40%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  animation: flowPulse 3s linear infinite;
}
@keyframes flowPulse {
  0% { left: -40%; } 100% { left: 100%; }
}

/* Free vs Premium tiers */
.together-tiers {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.tier {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(232,200,120,0.22);
  border-radius: var(--radius); padding: 30px 26px;
}
.tier.premium {
  background: linear-gradient(160deg, rgba(232, 200, 120, 0.16), rgba(255,255,255,0.04));
  border-color: rgba(232, 200, 120, 0.5);
}
.tier-badge {
  display: inline-block; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
  background: var(--gold); color: var(--emerald-deep); margin-bottom: 14px;
}
.tier-badge.free { background: rgba(253, 250, 243, 0.9); color: var(--emerald-deep); }
.tier h4 { font-size: 1.4rem; color: var(--ivory); margin-bottom: 8px; }
.tier p { color: rgba(253,250,243,0.82); font-size: 0.98rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  text-align: center; padding: clamp(52px, 7vw, 88px) clamp(20px, 5vw, 64px);
  background: linear-gradient(150deg, var(--teal-700), var(--emerald) 45%, var(--emerald-deep));
  background-size: 160% 160%;
  animation: heroPan 20s ease infinite;
  color: var(--ivory);
}
.cta-mark { width: 72px; height: 72px; border-radius: 20px; margin-bottom: 16px; box-shadow: var(--shadow-lg); }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--ivory); }
.cta-band > p { color: var(--gold-bright); margin: 8px 0 26px; font-size: 1.1rem; }

/* ---------- Footer ---------- */
.footer {
  background: var(--emerald-deep); color: rgba(253,250,243,0.75);
  text-align: center; padding: 46px 24px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; }
.footer-brand img { width: 30px; height: 30px; border-radius: 8px; }
.footer-brand span { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--ivory); }
.footer-tag { color: var(--gold-bright); font-size: 0.9rem; margin-top: 6px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin: 20px 0; }
.footer-links a { color: rgba(253,250,243,0.72); text-decoration: none; font-size: 0.92rem; transition: color 0.15s ease; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-copy { font-size: 0.82rem; opacity: 0.6; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-art { order: 1; }
  .lede, .hero-note { margin-inline: auto; }
  .cta-row { justify-content: center; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .grid.three { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .together-tiers { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; gap: 0; }
  .flow-step { margin-bottom: 18px; }
  .flow-line {
    width: 3px; height: 26px; margin: 0 auto 18px; align-self: center;
  }
  .flow-pulse {
    left: 0; top: -40%; width: 100%; height: 40%;
    background: linear-gradient(180deg, transparent, var(--gold-bright), transparent);
    animation: flowPulseV 3s linear infinite;
  }
  @keyframes flowPulseV { 0% { top: -40%; } 100% { top: 100%; } }
}
@media (max-width: 560px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .grid { grid-template-columns: 1fr; }
  .assure-card { flex-direction: column; text-align: center; }
}
