:root {
  --ink: #09152d;
  --blue: #5866ee;
  --green: #2dac67;
  --muted: #697386;
  --line: #e6e9ef;
  --quiet: #f6f7f9;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

section {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 64px;
}

:focus-visible {
  outline: 3px solid rgba(88, 102, 238, 0.38);
  outline-offset: 4px;
}

.topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 64px;
  padding: 0 max(5vw, 22px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(9, 21, 45, 0.06);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 700;
}

.brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  color: #536074;
  font-size: 13px;
}

.nav-links a,
footer a {
  transition: color 0.2s ease;
}

.nav-links a:hover,
footer a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 650;
}

.hero {
  padding: 136px 5vw 0;
  text-align: center;
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow.coral { color: #d9675b; }
.eyebrow.lime { color: #86dda4; }
.eyebrow.green { color: #229257; }
.eyebrow.saffron { color: #ce7a2f; }

h1,
h2 {
  margin: 0;
  font-weight: 680;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  font-size: 104px;
}

h1 span,
h2 span {
  color: var(--blue);
}

.hero-lede {
  max-width: 650px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.48;
}

.actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.button {
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
}

.button.primary {
  background: var(--blue);
  color: var(--white);
}

.button.primary:hover {
  background: #4d5be3;
}

.text-link {
  color: var(--blue);
  font-size: 15px;
  font-weight: 620;
}

.text-link span {
  margin-left: 7px;
}

.microcopy {
  margin: 16px 0 0;
  color: #8d95a3;
  font-size: 13px;
}

.hero-asset {
  max-width: 1260px;
  margin: 96px auto 0;
}

.product-canvas {
  isolation: isolate;
  position: relative;
  width: min(100%, 620px);
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
}

.product-canvas.landscape {
  width: 100%;
  min-height: 570px;
  border-radius: 28px 28px 0 0;
}

.tone-blue { background: #edf0ff; }
.tone-mint { background: #e9f5ed; }
.tone-lavender { background: #eeedff; }
.tone-warm { background: #f7efe3; }
.tone-ink { background: #142440; }

.hero-showcase {
  box-shadow: inset 0 0 0 1px rgba(9, 21, 45, 0.04);
}

.web-device {
  position: absolute;
  left: 7%;
  bottom: -2px;
  width: 79%;
  overflow: hidden;
  border: 1px solid #d7dce6;
  border-radius: 14px 14px 0 0;
  background: var(--white);
  box-shadow: 0 35px 75px rgba(35, 49, 82, 0.16);
}

.web-device > img {
  width: 100%;
}

.browser-bar {
  height: 38px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  background: #fafbfc;
}

.browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfd5df;
}

.browser-bar span {
  margin-left: 8px;
  color: #929aaa;
  font-size: 10px;
}

.mobile-device {
  position: absolute;
  z-index: 2;
  right: 6%;
  bottom: -2px;
  width: 20%;
  height: 82%;
  overflow: hidden;
  border: 8px solid #101827;
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  background: var(--white);
  box-shadow: 0 28px 55px rgba(9, 21, 45, 0.2);
}

.mobile-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.confidence-strip {
  max-width: 1120px;
  margin: 0 auto;
  padding: 50px 24px 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
}

.confidence-strip > span {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.confidence-strip > span:last-child {
  border: 0;
}

.confidence-strip strong {
  font-size: 16px;
}

.confidence-strip small {
  color: var(--muted);
  font-size: 13px;
}

.quiet-band {
  background: var(--quiet);
}

.split-story {
  min-height: 890px;
  padding: 124px max(6vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: min(10vw, 170px);
}

.split-story.reverse {
  grid-template-columns: minmax(440px, 1.1fr) minmax(0, 0.9fr);
}

.split-copy {
  max-width: 610px;
}

.split-copy h2,
.section-copy h2,
.owner-copy h2 {
  font-size: 73px;
}

.split-copy h2 {
  margin-bottom: 30px;
}

.split-copy > p,
.section-copy > p:last-child,
.owner-copy > p {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
}

.benefit-line {
  margin-top: 34px !important;
  color: var(--ink) !important;
  font-size: 15px !important;
  font-weight: 650;
}

.benefit-line i {
  width: 25px;
  height: 25px;
  margin-right: 9px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #e3f4e9;
  color: #168749;
  font-style: normal;
}

.quiet-proof {
  width: min(320px, 100%);
  margin-top: 38px;
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #dadde4;
  color: #7a8494;
  font-size: 14px;
}

.quiet-proof strong {
  color: #cb5d52;
}

.media-canvas {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(9, 21, 45, 0.03);
}

.phone-preview img {
  width: 56%;
  height: 88%;
  object-fit: cover;
  object-position: top center;
  border: 9px solid #111a2a;
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
  background: var(--white);
  box-shadow: 0 30px 70px rgba(18, 29, 51, 0.2);
}

.desktop-preview {
  align-items: center;
}

.desktop-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid #dce1eb;
  border-radius: 12px;
  box-shadow: 0 28px 60px rgba(37, 49, 80, 0.14);
}

[data-section="07-language"] h2 {
  line-height: 1.08;
}

.ink-story {
  background: var(--ink);
  color: var(--white);
}

.split-copy.light > p {
  color: #aeb9cb;
}

.split-copy.light h2 span {
  color: #80dca1;
}

.money-row {
  margin-top: 40px;
  display: flex;
  gap: 34px;
  font-size: 25px;
  font-weight: 670;
}

.money-row span {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.money-row small {
  color: #7f8ba0;
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.safety-story {
  min-height: 900px;
  padding: 126px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 82px;
}

.safety-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(6vw, 90px);
}

.device {
  width: 174px;
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 4px solid #d2d6de;
  border-radius: 33px;
  background: #eef0f3;
}

.old-device span {
  width: 76px;
  height: 6px;
  border-radius: 8px;
  background: #d7dbe2;
}

.old-device span:nth-child(2) {
  width: 104px;
}

.new-device {
  border-color: #162440;
  background: var(--white);
  box-shadow: 0 26px 60px rgba(25, 38, 70, 0.1);
}

.new-device img {
  width: 70px;
}

.new-device b {
  font-size: 12px;
}

.transfer-line {
  position: relative;
  width: min(250px, 22vw);
  height: 2px;
  background: #a9d8bd;
}

.transfer-line i {
  position: absolute;
  top: -4px;
  right: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.section-copy {
  max-width: 760px;
}

.section-copy.centered {
  margin: 0 auto;
  text-align: center;
}

.section-copy > p:last-child {
  margin-top: 30px;
}

.why-story {
  min-height: 1280px;
  padding: 138px max(6vw, 28px) 0;
  text-align: center;
}

.why-intro {
  max-width: 980px;
  margin: 0 auto;
}

.why-intro h2 {
  margin: 0;
  font-size: 86px;
  font-weight: 680;
  line-height: 0.98;
}

.why-intro h2 span {
  color: var(--blue);
}

.why-intro > p:last-child {
  max-width: 720px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
}

.why-visual {
  position: relative;
  width: min(830px, 88vw);
  aspect-ratio: 1.55;
  margin: 92px auto 110px;
  display: grid;
  place-items: center;
}

.why-orbit {
  position: absolute;
  border: 1px solid rgba(88, 102, 238, 0.18);
  border-radius: 50%;
}

.orbit-one {
  width: 76%;
  aspect-ratio: 1;
}

.orbit-two {
  width: 100%;
  aspect-ratio: 1.55;
}

.why-core {
  position: relative;
  z-index: 2;
  width: 390px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 35px 90px rgba(74, 87, 219, 0.27);
}

.why-core::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
}

.why-core small,
.why-core strong {
  position: relative;
  z-index: 1;
}

.why-core small {
  opacity: 0.75;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.why-core strong {
  margin-top: 14px;
  font-size: 56px;
  line-height: 0.95;
}

.task-chip {
  position: absolute;
  z-index: 3;
  min-width: 112px;
  padding: 14px 18px;
  border: 1px solid rgba(9, 21, 45, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 38px rgba(37, 49, 79, 0.08);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 650;
}

.task-seats { top: 19%; left: 4%; }
.task-members { top: 24%; right: 3%; }
.task-fees { bottom: 16%; left: 8%; }
.task-renewals { right: 4%; bottom: 12%; }

.why-outcomes {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #dfe2e8;
}

.why-outcomes div {
  min-height: 220px;
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #dfe2e8;
  text-align: left;
}

.why-outcomes div:last-child {
  border: 0;
}

.why-outcomes span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
}

.why-outcomes b {
  margin-top: 38px;
  font-size: 34px;
}

.why-outcomes small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 15px;
}

.proof {
  padding: 142px 6vw 132px;
  background: var(--white);
}

.proof-intro {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.proof-intro h2 {
  margin: 0;
  font-size: 82px;
  font-weight: 680;
  line-height: 0.98;
}

.proof-intro h2 span {
  color: var(--blue);
}

.proof-intro > p:last-child {
  max-width: 770px;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
}

.india-trust-stage {
  position: relative;
  width: min(100%, 1050px);
  min-height: 860px;
  margin: 82px auto 0;
  overflow: hidden;
  border: 1px solid rgba(88, 102, 238, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 45%, rgba(138, 150, 255, 0.16), transparent 36%),
    linear-gradient(145deg, #fbfbff, #f4f5ff 62%, #f8f9ff);
  box-shadow: 0 30px 90px rgba(36, 49, 104, 0.07);
}

.india-map {
  position: absolute;
  inset: 42px 95px 34px;
}

.india-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: rgba(255, 255, 255, 0.58);
  filter: drop-shadow(0 0 1.4px #8995f4) drop-shadow(0 24px 35px rgba(96, 108, 215, 0.08));
  -webkit-mask: url("../assets/india-map.svg") center / contain no-repeat;
  mask: url("../assets/india-map.svg") center / contain no-repeat;
}

.map-dot {
  position: absolute;
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 15px currentColor;
}

.map-dot.blue { color: #6293f5; background: #6293f5; }
.map-dot.mint { color: #55d7c7; background: #55d7c7; }
.map-dot.coral { color: #ff8d7d; background: #ff8d7d; }

.map-focus {
  position: absolute;
  z-index: 3;
  top: 49%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.pin-mark {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 22px rgba(79, 91, 190, 0.1);
}

.pin-mark svg {
  width: 28px;
  fill: none;
  stroke: #7b88ec;
  stroke-width: 1.7;
}

.map-focus strong {
  font-size: 126px;
  line-height: 0.82;
}

.map-focus b {
  margin-top: 18px;
  font-size: 28px;
}

.map-focus small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
}

.map-stat {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.libraries-stat {
  top: 62px;
  right: 58px;
}

.records-stat {
  bottom: 70px;
  left: 58px;
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 18px;
}

.stat-icon.library { background: #e9eaff; }
.stat-icon.records { background: #dff6f1; }

.stat-icon svg {
  width: 36px;
  fill: none;
  stroke: #10254a;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-stat strong {
  font-size: 62px;
  line-height: 1;
}

.map-stat small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.pricing {
  padding: 142px 6vw;
}

.price-showcase {
  max-width: 1120px;
  margin: 78px auto 0;
}

.annual-plan {
  position: relative;
  min-height: 560px;
  padding: min(6vw, 76px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 15%, rgba(119, 134, 255, 0.42), transparent 34%),
    linear-gradient(145deg, #0c1933, #121f3b 62%, #1a2850);
  color: var(--white);
}

.annual-plan::before {
  content: "";
  position: absolute;
  top: -230px;
  right: -130px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(255, 255, 255, 0.024), 0 0 0 148px rgba(255, 255, 255, 0.02);
}

.annual-copy,
.annual-price {
  position: relative;
  z-index: 1;
}

.plan-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-label span {
  color: #bac4d7;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-label b {
  padding: 7px 10px;
  border-radius: 999px;
  background: #7c89ff;
  color: var(--white);
  font-size: 10px;
  text-transform: uppercase;
}

.annual-copy h3 {
  margin: 34px 0 0;
  font-size: 74px;
  font-weight: 400;
  line-height: 0.98;
}

.annual-copy h3 span {
  color: #8ee1aa;
}

.annual-copy p {
  max-width: 520px;
  margin: 26px 0 0;
  color: #aeb9cb;
  font-size: 18px;
  line-height: 1.5;
}

.annual-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.annual-price > small {
  color: #95a2b7;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.annual-price > strong {
  margin-top: 9px;
  font-size: 94px;
  line-height: 1;
}

.annual-price > span {
  margin-top: 12px;
  color: #aeb9cb;
  font-size: 13px;
}

.annual-price .button {
  margin-top: 32px;
  padding: 10px 12px 10px 23px;
  gap: 14px;
}

.annual-price .arrow-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(9, 21, 45, 0.16);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  font-size: 21px;
  line-height: 1;
}

.button.white {
  background: var(--white);
  color: var(--ink);
}

.short-plan {
  min-height: 132px;
  padding: 31px 38px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 42px;
  border: 1px solid #dfe2e8;
  border-top: 0;
  border-radius: 0 0 26px 26px;
  background: var(--white);
}

.short-plan div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.short-plan small,
.short-plan > span {
  color: var(--muted);
  font-size: 12px;
}

.short-plan strong {
  font-size: 22px;
}

.short-plan > span {
  font-size: 13px;
}

.short-plan > a {
  color: var(--blue);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}

.closing {
  min-height: 700px;
  padding: 120px 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.closing img {
  width: 72px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.closing h2 {
  margin-top: 31px;
  font-size: 90px;
}

.closing p {
  max-width: 600px;
  margin: 27px auto 34px;
  color: #b8c2d1;
  font-size: 19px;
  line-height: 1.5;
}

.closing .support-link {
  margin-top: 25px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 14px;
  font-weight: 620;
}

.closing small {
  margin-top: 11px;
  color: #8f9bae;
  font-size: 12px;
}

footer {
  padding: 28px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

footer .brand {
  color: var(--ink);
  font-size: 16px;
}

footer .brand img {
  width: 25px;
  height: 25px;
}

footer div {
  display: flex;
  gap: 23px;
}

.reveal {
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.delay-1 {
  animation-delay: 0.12s;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 1120px) {
  h1 { font-size: 92px; }
  .split-copy h2, .section-copy h2 { font-size: 70px; }
  .why-intro h2, .proof-intro h2, .closing h2 { font-size: 78px; }
  .annual-copy h3 { font-size: 62px; }
  .annual-price > strong { font-size: 78px; }
  .map-focus strong { font-size: 104px; }
  .map-focus b { font-size: 24px; }
  .map-stat strong { font-size: 54px; }
}

@media (max-width: 860px) {
  .topbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 94px 20px 0; }
  h1 { font-size: 72px; }
  .hero-asset { width: 116%; margin: 66px 0 0 -8%; }
  .product-canvas.landscape { min-height: 430px; }
  .mobile-device { width: 23%; right: 5%; }

  .confidence-strip {
    width: calc(100% - 40px);
    padding: 34px 0 64px;
    grid-template-columns: 1fr;
  }
  .confidence-strip > span {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .split-story,
  .split-story.reverse {
    min-height: 0;
    padding: 94px 22px;
    grid-template-columns: 1fr;
    gap: 58px;
  }
  .split-story.reverse .product-canvas { order: 2; }
  .split-story.reverse .split-copy { order: 1; }
  .product-canvas { width: 100%; min-height: 590px; justify-self: center; }

  .safety-story { min-height: 820px; padding: 95px 22px; gap: 64px; }
  .device { width: 124px; height: 250px; border-width: 3px; border-radius: 25px; }
  .new-device img { width: 52px; }
  .new-device b { font-size: 10px; }

  .why-story { min-height: 0; padding: 100px 22px 0; }
  .why-visual { width: 100%; margin: 70px auto 90px; }
  .why-core { width: 340px; }
  .why-core strong { font-size: 54px; }
  .why-outcomes { grid-template-columns: 1fr; }
  .why-outcomes div { min-height: 0; padding: 30px 5px; border-right: 0; border-bottom: 1px solid #dfe2e8; }
  .why-outcomes div:last-child { border-bottom: 0; }
  .why-outcomes b { margin-top: 22px; }

  .proof { padding: 104px 22px 100px; }
  .india-trust-stage { min-height: 760px; }
  .india-map { inset: 78px 34px 62px; }
  .libraries-stat { top: 32px; right: 30px; }
  .records-stat { bottom: 38px; left: 30px; }
  .stat-icon { width: 54px; height: 54px; border-radius: 16px; }
  .stat-icon svg { width: 30px; }

  .pricing { padding: 104px 22px; }
  .annual-plan { min-height: 680px; grid-template-columns: 1fr; align-items: start; gap: 60px; }
  .short-plan { grid-template-columns: 1fr auto; gap: 22px; }
  .short-plan > span { grid-area: 2 / 1 / auto / -1; }

  footer { flex-direction: column; gap: 21px; text-align: center; }
}

@media (max-width: 520px) {
  .topbar .brand { font-size: 18px; }
  .nav-cta { padding: 9px 14px; }
  .hero { padding-top: 78px; }
  h1 { font-size: 50px; }
  .hero-lede { font-size: 18px; }
  .actions { flex-direction: column; gap: 17px; }
  .actions .button { width: min(100%, 310px); }

  .product-canvas,
  .product-canvas.landscape { min-height: 490px; }
  .hero-showcase { min-height: 360px; }
  .web-device { left: 3%; width: 88%; }
  .mobile-device { right: 2%; width: 27%; height: 77%; border-width: 5px; border-bottom: 0; border-radius: 20px 20px 0 0; }
  .browser-bar { height: 28px; }

  .split-copy h2,
  .section-copy h2,
  .why-intro h2,
  .proof-intro h2 { font-size: 44px; }
  .split-copy > p,
  .section-copy > p:last-child,
  .why-intro > p:last-child,
  .proof-intro > p:last-child { font-size: 18px; }
  .phone-preview img { width: 70%; }
  .money-row { gap: 23px; font-size: 21px; }

  .why-visual { aspect-ratio: 1; }
  .orbit-one { width: 78%; }
  .orbit-two { width: 108%; aspect-ratio: 1; }
  .why-core { width: 220px; }
  .why-core strong { font-size: 36px; }
  .task-chip { min-width: 88px; padding: 11px 13px; font-size: 12px; }
  .task-seats { top: 12%; left: -2%; }
  .task-members { top: 14%; right: -2%; }
  .task-fees { bottom: 11%; left: 0; }
  .task-renewals { right: -3%; bottom: 9%; }

  .proof-intro h2 { font-size: 44px; }
  .india-trust-stage { min-height: 680px; margin-top: 58px; border-radius: 28px; }
  .india-map { inset: 92px 15px 100px; }
  .libraries-stat { top: 24px; right: 20px; }
  .records-stat { bottom: 30px; left: 20px; }
  .map-stat strong { font-size: 32px; }
  .map-stat small { max-width: 132px; font-size: 11px; }
  .stat-icon { width: 46px; height: 46px; margin-bottom: 10px; border-radius: 14px; }
  .stat-icon svg { width: 27px; }
  .map-focus strong { font-size: 72px; }
  .map-focus b { margin-top: 14px; font-size: 16px; }
  .map-focus small { margin-top: 8px; font-size: 13px; }
  .pin-mark { width: 40px; height: 40px; }

  .pricing { padding: 100px 20px; }
  .price-showcase { margin-top: 55px; }
  .annual-plan { min-height: 650px; padding: 34px 28px; border-radius: 26px; }
  .annual-copy h3 { font-size: 44px; }
  .annual-price > strong { font-size: 66px; }
  .short-plan { grid-template-columns: 1fr; padding: 27px 24px; }
  .short-plan > span,
  .short-plan > a { grid-area: auto; }

  .closing h2 { font-size: 50px; }
}
