
:root {
  --cream: #FBF7F1;
  --paper: #FFFDF9;
  --navy: #20324C;
  --muted: #6C7686;
  --rose: #B84D58;
  --rose-dark: #9F3F49;
  --rose-soft: #F7E8E7;
  --green: #4D7A67;
  --green-soft: #E7F1EB;
  --gold: #B68520;
  --border: rgba(32,50,76,.10);
  --shadow-soft: 0 18px 50px rgba(32,50,76,.08);
  --shadow-phone: 0 28px 75px rgba(32,50,76,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 44px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,247,241,.82);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-bottom: 1px solid rgba(32,50,76,.06);
}
.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark { width: 43px; height: 43px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; }
.brand-name {
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 29px;
  line-height: .95;
}
.brand-tagline {
  color: var(--muted);
  font-size: 10px;
  margin-top: 5px;
  letter-spacing: .01em;
}
.header-cta {
  text-decoration: none;
  color: var(--rose);
  padding: 8px 13px;
  border: 1px solid rgba(184,77,88,.25);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 750;
  background: rgba(255,253,249,.58);
}

/* HERO */
.hero {
  padding: 68px 0 74px;
  background:
    radial-gradient(circle at 88% 16%, rgba(247,232,231,.72), transparent 30%),
    linear-gradient(180deg, #FBF7F1 0%, #FFFDF9 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.hero-badges { margin-bottom: 18px; }
.eyebrow {
  color: var(--rose);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(48px, 5.1vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 670px;
  margin: 0 0 20px;
}
.hero-sub {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(18px,1.7vw,21px);
  line-height: 1.5;
  margin: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button-primary {
  background: var(--rose);
  color: white;
  box-shadow: 0 12px 28px rgba(184,77,88,.20);
}
.button-primary:hover { background: var(--rose-dark); transform: translateY(-1px); }
.button-secondary {
  border: 1px solid rgba(184,77,88,.38);
  color: var(--rose);
  background: transparent;
}
.text-link {
  color: var(--rose);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1 / 1.04;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
  border-radius: inherit;
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

/* PRODUCT */
.app-section {
  padding: 92px 0 96px;
  background: var(--paper);
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.phone-stage {
  min-height: 670px;
  display: grid;
  place-items: center;
  position: relative;
}
.phone-stage::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,232,231,.78) 0%, rgba(247,232,231,.20) 58%, rgba(247,232,231,0) 72%);
}
.phone-shell {
  position: relative;
  z-index: 2;
  width: min(370px, 82vw);
  padding: 6px;
  border-radius: 43px;
  background: #fff;
  border: 1px solid rgba(32,50,76,.10);
  box-shadow: var(--shadow-phone);
}
.phone-shell img {
  width: 100%;
  border-radius: 37px;
}
.section-kicker {
  display: inline-block;
  color: var(--rose);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.app-copy h2,
.story-heading h2,
.action-card h2 {
  font-size: clamp(35px,3.5vw,50px);
  line-height: 1.04;
  letter-spacing: -.045em;
  margin: 14px 0 14px;
}
.app-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 470px;
  margin: 0;
}

/* Feature list: intentionally not boxed */
.benefit-grid {
  margin-top: 33px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.benefit-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 13px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
}
.benefit-card > span {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--rose);
  background: var(--rose-soft);
  font-weight: 700;
}
.benefit-card:nth-child(3) > span {
  color: var(--green);
  background: var(--green-soft);
}
.benefit-card:nth-child(4) > span {
  color: var(--gold);
  background: #FFF2D2;
}
.benefit-copy strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
  margin: 1px 0 5px;
}
.benefit-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}
.india-note {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}
.india-note span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--green);
  background: var(--green-soft);
  font-weight: 800;
}
.india-note strong { color: var(--navy); }

/* STORY: editorial, not card-like */
.story-section {
  padding: 88px 0;
  background:
    linear-gradient(135deg, rgba(247,232,231,.72) 0%, rgba(251,247,241,.98) 48%, rgba(231,241,235,.55) 100%);
}
.story-card {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 72px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.story-kicker {
  display: inline-block;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.story-heading h2 { margin-bottom: 0; }
.story-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.story-copy strong { color: var(--navy); }
.story-heart {
  color: var(--navy) !important;
  font-size: 18px !important;
}
.story-details { margin-top: 22px; }
.story-details summary {
  list-style: none;
  cursor: pointer;
  color: var(--rose);
  font-size: 14px;
  font-weight: 800;
  width: fit-content;
}
.story-details summary::-webkit-details-marker { display: none; }
.story-details summary span { display: inline-block; transition: transform .2s ease; }
.story-details[open] summary span { transform: rotate(90deg); }
.story-full {
  margin-top: 20px;
  padding: 0 0 0 20px;
  border-left: 2px solid rgba(184,77,88,.45);
  background: transparent;
  border-radius: 0;
}
.story-full p { font-size: 14.5px; line-height: 1.65; margin-bottom: 12px; }

/* CTA */
.action-section {
  padding: 80px 0 86px;
  background: var(--paper);
}
.action-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
}
.action-card {
  border-radius: 28px;
  padding: 34px;
  border: 1px solid var(--border);
}
.action-card.founding {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--rose) 0%, #C66069 100%);
  box-shadow: 0 20px 50px rgba(184,77,88,.16);
}
.action-card.founding .action-kicker {
  color: rgba(255,255,255,.78);
}
.action-card.founding h2,
.action-card.founding p { color: white; }
.action-card.founding .button-primary {
  color: var(--rose);
  background: white;
  box-shadow: none;
}
.action-card.partner {
  background: transparent;
  border-color: rgba(32,50,76,.10);
}
.action-kicker {
  display: inline-block;
  color: var(--rose);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.action-card.partner .action-kicker { color: var(--green); }
.action-card h2 { font-size: 31px; margin-bottom: 10px; }
.action-card p {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.5;
}

.site-footer {
  padding: 30px 0 34px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand .brand-mark { width: 36px; height: 36px; }
.footer-brand .brand-name { font-size: 23px; }
.footer-email {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

/* TABLET */
@media (max-width: 900px) {
  .hero-grid, .app-grid, .story-card { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .hero-visual { max-width: 650px; width: 100%; margin-inline: auto; aspect-ratio: 1.2 / 1; }
  .app-grid { gap: 36px; }
  .app-copy { text-align: center; max-width: 650px; margin-inline: auto; }
  .app-copy > p { margin-inline: auto; }
  .benefit-grid { max-width: 580px; margin-inline: auto; margin-top: 28px; text-align: left; }
  .india-note { justify-content: center; }
  .phone-stage { min-height: 600px; }
  .story-card { gap: 28px; }
  .action-grid { grid-template-columns: 1fr; }
}

/* MOBILE FIRST PASS */
@media (max-width: 640px) {
  .container { width: min(100% - 32px, 1120px); }

  .header-inner { height: 62px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-name { font-size: 23px; }
  .brand-tagline { display: none; }
  .header-cta {
    padding: 7px 11px;
    font-size: 11.5px;
    background: rgba(255,253,249,.66);
  }

  .hero {
    padding: 34px 0 42px;
    background:
      radial-gradient(circle at 85% 6%, rgba(247,232,231,.76), transparent 31%),
      linear-gradient(180deg, #FBF7F1 0%, #FFFDF9 100%);
  }
  .hero-grid { gap: 30px; }
  .hero-copy { text-align: left; }
  .hero-badges { margin-bottom: 13px; }
  .eyebrow {
    display: block;
    max-width: 330px;
    font-size: 9.3px;
    line-height: 1.5;
    letter-spacing: .065em;
  }
  .hero h1 {
    font-size: 43px;
    line-height: .99;
    letter-spacing: -.052em;
    margin: 0 0 16px;
    max-width: 350px;
  }
  .hero-sub {
    font-size: 16.5px;
    line-height: 1.48;
    max-width: 345px;
    margin: 0;
  }
  .hero-actions {
    margin-top: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .button {
    width: 100%;
    min-height: 51px;
    font-size: 13.5px;
  }
  .text-link {
    text-align: center;
    font-size: 13px;
  }
  .hero-visual {
    border-radius: 28px;
    aspect-ratio: 1.08 / 1;
    box-shadow: 0 16px 42px rgba(32,50,76,.09);
  }

  .app-section { padding: 58px 0 62px; }
  .app-grid { gap: 30px; }
  .app-copy {
    order: 1;
    text-align: left;
    max-width: none;
    margin: 0;
  }
  .phone-stage {
    order: 2;
    min-height: 520px;
  }
  .section-kicker {
    font-size: 9.5px;
    letter-spacing: .075em;
  }
  .app-copy h2 {
    font-size: 34px;
    line-height: 1.03;
    margin: 10px 0 11px;
    max-width: 340px;
  }
  .app-copy > p {
    font-size: 15px;
    line-height: 1.5;
    max-width: 330px;
    margin: 0;
  }
  .benefit-grid {
    margin-top: 25px;
    max-width: none;
  }
  .benefit-card {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 15px 0;
  }
  .benefit-card > span {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 13px;
  }
  .benefit-copy strong { font-size: 13.5px; }
  .benefit-copy p {
    font-size: 12.3px;
    line-height: 1.46;
  }
  .india-note {
    margin-top: 19px;
    justify-content: flex-start;
    font-size: 12px;
  }
  .phone-stage::before {
    width: 360px;
    height: 360px;
  }
  .phone-shell {
    width: min(315px, 88vw);
    padding: 5px;
    border-radius: 39px;
  }
  .phone-shell img { border-radius: 34px; }

  .story-section { padding: 60px 0 64px; }
  .story-card { gap: 20px; }
  .story-kicker { font-size: 9.5px; }
  .story-heading h2 {
    font-size: 33px;
    line-height: 1.02;
    margin: 10px 0 0;
    max-width: 325px;
  }
  .story-copy p {
    font-size: 15px;
    line-height: 1.62;
    margin-bottom: 13px;
  }
  .story-heart { font-size: 15.5px !important; }
  .story-details { margin-top: 17px; }
  .story-details summary { font-size: 13px; }
  .story-full { padding-left: 16px; }
  .story-full p { font-size: 13.5px; }

  .action-section { padding: 56px 0 60px; }
  .action-grid { gap: 16px; }
  .action-card {
    padding: 27px 23px;
    border-radius: 24px;
  }
  .action-card h2 {
    font-size: 29px;
    line-height: 1.04;
  }
  .action-card p { font-size: 14px; }
  .action-card.partner {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .site-footer { padding: 26px 0 30px; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
  }
}
