:root {
  --paper: #fbf8f2;
  --ink: #231a12;
  --faded: #8a7d6b;
  --kumkum: #d94a20;
  --kumkum-soft: #fbeae2;
  --indigo: #33305c;
  --indigo-soft: #ecebf4;
  --gold: #c2913b;
  --gold-soft: #f6efdd;
  --line: #ebe2d3;
  --card: #ffffff;
  --soft: #f4eee3;
  --green: #3e7c4f;
  --green-soft: #e8f2ea;
  --radius: 22px;
  --shadow: 0 28px 80px rgba(35, 26, 18, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-color: rgba(217, 74, 32, 0.45);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--kumkum);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 50;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(235, 226, 211, 0.85);
  background: rgba(251, 248, 242, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.brand span {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: var(--faded);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
}

.nav-cta {
  color: var(--ink) !important;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: #fff;
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 58px;
  min-height: calc(100svh - 74px);
  padding: 56px 0 72px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: var(--kumkum-soft);
  color: var(--kumkum);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero h1,
.section-title,
.content-title,
.phone-title {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 1.02;
}

.hero h1 {
  max-width: 700px;
  margin-top: 18px;
  font-size: clamp(54px, 8vw, 92px);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--faded);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: var(--kumkum);
  color: #fff;
  box-shadow: 0 16px 34px rgba(217, 74, 32, 0.18);
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
}

.button.ghost {
  border-color: var(--line);
  color: var(--faded);
  background: transparent;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  padding: 9px 14px;
  color: var(--faded);
  font-size: 13px;
  font-weight: 700;
}

.hero-note {
  margin-top: 20px;
  color: var(--faded);
  font-size: 13px;
}

.hero-media {
  position: relative;
  justify-self: center;
  width: min(370px, 100%);
}

.phone-shell {
  position: relative;
  aspect-ratio: 9 / 19.5;
  border: 12px solid var(--ink);
  border-radius: 46px;
  background: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-shell::before {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 94px;
  height: 24px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
  transform: translateX(-50%);
}

.phone-shell img {
  height: 100%;
  width: 100%;
  border-radius: 34px;
  background: var(--paper);
  object-fit: cover;
  object-position: top center;
}

.floating-card {
  position: absolute;
  right: -8px;
  bottom: 74px;
  width: 190px;
  border: 1px solid rgba(235, 226, 211, 0.95);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(35, 26, 18, 0.16);
}

.floating-card strong {
  display: block;
  color: var(--indigo);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.floating-card span {
  display: block;
  margin-top: 5px;
  color: var(--faded);
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: 78px 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 32px;
}

.section-title {
  margin-top: 14px;
  font-size: clamp(42px, 6vw, 70px);
}

.section-copy {
  margin: 0;
  color: var(--faded);
  font-size: 17px;
}

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

.feature-card,
.step,
.legal-card,
.support-card,
.mock-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.feature-card {
  min-height: 245px;
  padding: 22px;
}

.feature-card .dev {
  margin-bottom: 28px;
  color: var(--kumkum);
  font-family: "Tiro Devanagari Sanskrit", serif;
  font-size: 40px;
  line-height: 1;
}

.feature-card h3,
.step h3,
.legal-card h3,
.support-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.feature-card p,
.step p,
.legal-card p,
.support-card p,
.mock-card p,
.small-copy {
  color: var(--faded);
}

.feature-card p,
.step p,
.legal-card p,
.support-card p {
  margin: 10px 0 0;
}

.band {
  margin: 30px 0;
  border-block: 1px solid var(--line);
  background: var(--soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step {
  padding: 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--indigo-soft);
  color: var(--indigo);
  font-weight: 800;
}

.mockups {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.mock-card {
  padding: 24px;
  overflow: hidden;
}

.mock-card.large {
  display: grid;
  gap: 18px;
}

.phone-title {
  font-size: 42px;
}

.mini-screen {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  padding: 24px;
}

.screen-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 18px;
}

.screen-row strong {
  display: block;
  color: var(--indigo);
}

.screen-row span {
  display: block;
  color: var(--faded);
  font-size: 13px;
}

.circle-mark {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 6px solid var(--line);
  border-radius: 50%;
}

.count {
  color: var(--kumkum);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 44px;
}

.split-list {
  display: grid;
  gap: 14px;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.trust-panel {
  border-radius: 34px;
  background: var(--indigo);
  color: #fff;
  padding: 34px;
}

.trust-panel .section-kicker {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.trust-panel h2 {
  margin: 20px 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.05;
}

.trust-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 16px 16px 16px 46px;
  color: var(--faded);
}

.check-list li::before {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  content: "✓";
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
}

.cta-band {
  margin: 40px 0 70px;
  border-radius: 36px;
  background: var(--gold-soft);
  padding: 42px;
  text-align: center;
}

.cta-band h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.06;
}

.cta-band p {
  max-width: 650px;
  margin: 14px auto 0;
  color: var(--faded);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 44px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  color: var(--faded);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.content-page {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  padding: 68px 0 84px;
}

.content-intro {
  position: sticky;
  top: 112px;
}

.content-title {
  margin-top: 14px;
  font-size: clamp(48px, 7vw, 78px);
}

.content-intro p {
  color: var(--faded);
  font-size: 18px;
}

.legal-stack {
  display: grid;
  gap: 14px;
}

.legal-card,
.support-card {
  padding: 24px;
}

.legal-card ul,
.support-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--faded);
}

.legal-card li + li,
.support-card li + li {
  margin-top: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-link {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  text-decoration: none;
}

.contact-link strong {
  display: block;
}

.contact-link span {
  display: block;
  margin-top: 5px;
  color: var(--faded);
}

@media (max-width: 920px) {
  .hero,
  .section-header,
  .mockups,
  .trust,
  .content-page {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    width: min(340px, 90vw);
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .hero {
    gap: 34px;
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .feature-grid,
  .steps,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .floating-card {
    right: -8px;
    bottom: 34px;
    width: 160px;
  }

  .cta-band {
    padding: 30px 18px;
  }
}
