﻿:root {
  --navy: #061b46;
  --navy-2: #09275f;
  --navy-3: #0c3471;
  --blue: #1677ff;
  --cyan: #20c8f5;
  --yellow: #facc15;
  --green: #16a34a;
  --red: #dc2626;
  --ink: #071426;
  --muted: #62748d;
  --line: #dbe5f2;
  --soft: #f3f7fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 27, 70, 0.16);
  --shadow-soft: 0 16px 44px rgba(6, 27, 70, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #f7faff;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  color: white;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
  border-radius: 999px;
}

.site-header.is-elevated {
  background: rgba(6, 27, 70, 0.94);
  box-shadow: 0 14px 40px rgba(2, 8, 23, 0.28);
  backdrop-filter: blur(14px);
}

.brand img {
  display: block;
  width: 196px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2.8vw, 34px);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a:hover {
  color: white;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid transparent;
}

.header-cta {
  background: white;
  color: var(--navy);
}

.primary-button {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 30px rgba(22, 119, 255, 0.24);
}

.secondary-button {
  color: white;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta,
.primary-button,
.secondary-button,
.store-badge,
.floating-download {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.store-badge:hover,
.floating-download:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.62fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
  padding: 92px clamp(20px, 5vw, 76px) 48px;
  color: white;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(22, 119, 255, 0.22), transparent 32%),
    linear-gradient(110deg, rgba(6, 27, 70, 0.99) 0%, rgba(6, 27, 70, 0.94) 54%, rgba(8, 57, 118, 0.84) 100%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    var(--navy);
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background: linear-gradient(0deg, #f7faff, rgba(247, 250, 255, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 700;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 7.2vw, 78px);
  font-weight: 600;
  line-height: 0.98;
}

h2 {
  font-size: clamp(34px, 4.4vw, 48px);
  line-height: 1.05;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 780px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 22px;
}

.trust-row {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  font-size: 13px;
  font-weight: 500;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 76px);
  transform: translateY(-22px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.stats-band div {
  display: grid;
  gap: 6px;
  padding: 20px 24px;
  background: white;
}

.stats-band strong {
  color: var(--navy);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.stats-band div > span:first-child {
  color: var(--navy);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.stats-band span {
  color: var(--muted);
  font-weight: 600;
}

.hero-scene {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 14px;
  align-items: center;
  justify-self: center;
  pointer-events: none;
}

.device-pair {
  display: grid;
  grid-template-columns: minmax(260px, 360px);
  gap: 22px;
  align-items: end;
  justify-content: center;
}

.ops-panel {
  position: static;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.live-ops-section {
  background: #eef4fc;
}

.live-ops-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.58fr);
  gap: 18px;
  align-items: stretch;
  max-width: 1180px;
}

.live-ops-section .ops-panel,
.live-ops-section .hero-policy-card {
  background: #102d63;
  border-color: #294979;
}

.finance-lock-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(29, 125, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #eef4fc, #f8fbff);
}

.finance-lock-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1220px;
}

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

.lock-feature-card,
.finance-flow-card {
  border: 1px solid #d8e4f3;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 52px rgba(6, 27, 70, 0.08);
}

.lock-feature-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.lock-feature-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  box-shadow: 0 14px 30px rgba(29, 125, 255, 0.20);
}

.lock-feature-icon svg,
.finance-flow-list svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lock-feature-icon svg path:first-child {
  fill: rgba(255, 255, 255, 0.10);
}

.lock-feature-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
}

.lock-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.finance-flow-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(6, 27, 70, 0.96), rgba(9, 35, 85, 0.94)),
    var(--navy);
}

.flow-card-top {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.flow-card-top img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px;
}

.flow-card-top span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.flow-card-top strong {
  display: block;
  margin-top: 3px;
  color: white;
  font-size: 24px;
}

.finance-flow-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.finance-flow-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.finance-flow-list li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 800;
}

.finance-flow-list li > span svg {
  width: 18px;
  height: 18px;
}

.finance-flow-list strong {
  display: block;
  color: white;
  font-size: 16px;
}

.finance-flow-list small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.45;
}

.security-phone {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(2, 6, 23, 0.68)),
    #06142f;
  box-shadow: 0 28px 70px rgba(2, 8, 23, 0.30);
}

.hero-phone {
  width: min(330px, 100%);
}

.phone-speaker {
  width: 54px;
  height: 6px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.phone-screen {
  min-height: 432px;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px 18px 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 8%, rgba(22, 119, 255, 0.10), transparent 38%),
    #ffffff;
  color: var(--navy);
}

.phone-topline {
  display: flex;
  justify-content: space-between;
  color: #64748b;
  font-size: 10px;
  font-weight: 400;
}

.phone-screen img {
  width: 62px;
}

.shield-lock {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 8px auto 0;
  border-radius: 30px;
  background:
    linear-gradient(180deg, #2787ff, #0f4fc4);
  box-shadow: 0 16px 28px rgba(22, 119, 255, 0.28);
}

.shield-lock::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 20px;
  width: 32px;
  height: 28px;
  border: 4px solid white;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.shield-lock span {
  position: absolute;
  left: 20px;
  top: 43px;
  width: 44px;
  height: 32px;
  border-radius: 9px;
  background: white;
}

.shield-lock.ios {
  background: linear-gradient(180deg, #061b46, #1677ff);
}

.phone-screen b {
  text-align: center;
  font-size: 28px;
}

.phone-screen > span {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
}

.phone-screen small {
  text-align: center;
  color: var(--muted);
  font-weight: 400;
}

.phone-status {
  padding: 10px 12px;
  border-radius: 8px;
  color: #1d4ed8;
  background: #e8f1ff;
  font-size: 12px;
  font-weight: 600;
}

.security-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.security-summary div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 8px;
  background: #eef6ff;
}

.security-summary span,
.emi-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.security-summary strong {
  color: var(--navy);
}

.security-summary div span:last-child,
.emi-card span:nth-child(2) {
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
}

.emi-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff7d6, #e8f1ff);
}

.emi-card strong {
  color: var(--navy);
  font-size: 28px;
}

.emi-card small {
  text-align: left;
  color: var(--muted);
}

.phone-status.good {
  color: #166534;
  background: #dcfce7;
}

.phone-button {
  display: grid;
  place-items: center;
  min-height: 40px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 700;
}

.phone-button.muted {
  color: white;
  background: var(--navy);
}

.hero-policy-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-policy-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.hero-policy-card strong {
  color: white;
}

.hero-policy-card div span:last-child {
  color: white;
  font-weight: 700;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-top span {
  color: rgba(255, 255, 255, 0.70);
  font-weight: 700;
}

.panel-top strong {
  color: #bbf7d0;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.metric {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.10);
  font-size: 12px;
  font-weight: 600;
}

.metric b {
  font-size: 24px;
  color: white;
}

.metric > span {
  font-size: 24px;
  color: white;
  font-weight: 800;
}

.metric.blue {
  border-left: 4px solid var(--blue);
}

.metric.green {
  border-left: 4px solid var(--green);
}

.metric.yellow {
  border-left: 4px solid var(--yellow);
}

.metric.red {
  border-left: 4px solid var(--red);
}

.activity-lines {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.activity-lines span {
  display: block;
  width: var(--w);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(250, 204, 21, 0.85), rgba(32, 200, 245, 0.45));
}

.section {
  padding: clamp(50px, 6.4vw, 82px) clamp(20px, 5vw, 76px);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 32px;
}

.section-heading p,
.interest-copy p,
.download-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.feature-card,
.offer-card,
.download-panel,
.interest-form {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 26px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.feature-card:hover,
.offer-card:hover {
  transform: translateY(-2px);
  border-color: #c8d8ed;
  box-shadow: 0 22px 58px rgba(6, 27, 70, 0.13);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 10px;
  color: white;
  background: var(--navy);
  font-weight: 700;
}

.feature-card p,
.offer-card p,
.download-panel p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.interest-section,
.download-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.offer-marquee {
  overflow: hidden;
  padding: 15px 0;
  background: linear-gradient(90deg, #facc15, #ffe78a, #facc15);
  color: var(--navy);
  font-weight: 700;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.operations-section {
  background: linear-gradient(180deg, #eef4fc, #f8fbff);
}

.ops-experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ops-experience-grid article {
  display: grid;
  gap: 16px;
  min-height: 170px;
  padding: 24px;
  border: 1px solid #d8e4f3;
  border-radius: 10px;
  background: white;
  box-shadow: 0 10px 32px rgba(6, 27, 70, 0.06);
}

.ops-experience-grid b {
  color: var(--navy);
  font-size: 20px;
}

.ops-experience-grid span {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 400;
}

.ops-experience-grid article > span:first-child {
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
}

.offer-card {
  position: relative;
  padding: 30px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.offer-card.highlighted {
  border-color: rgba(22, 119, 255, 0.46);
  box-shadow: 0 24px 70px rgba(22, 119, 255, 0.16);
}

.offer-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 700;
}

.price {
  color: var(--blue) !important;
  font-size: 34px !important;
  font-weight: 800;
  line-height: 1;
}

.offer-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.offer-card li {
  padding-left: 24px;
  color: #334155;
  background: linear-gradient(var(--green), var(--green)) 0 8px / 9px 9px no-repeat;
  font-weight: 600;
}

.download-section {
  background: linear-gradient(180deg, #ffffff, #f4f8fe);
}

.platform-badges,
.support-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.store-badge {
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 8px;
  color: white;
  background: #111827;
  border: 1px solid rgba(15, 23, 42, 0.18);
}

.store-badge small {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
}

.store-badge b {
  font-size: 18px;
}

.store-badge span span {
  font-weight: 700;
}

.store-badge.android {
  background: linear-gradient(135deg, #102d63, #1677ff);
}

.store-badge.ios {
  background: linear-gradient(135deg, #111827, #475569);
}

.support-badges {
  margin-top: 0;
}

.support-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #e8f1ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
}

.platform-svg {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  fill: currentColor;
}

.platform-svg.small {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}

.store-badge.android .platform-svg,
.support-badges span:first-child .platform-svg {
  color: #3ddc84;
}

.store-badge.ios .platform-svg {
  color: #ffffff;
}

.platform-svg.dark {
  color: #111827;
}

.install-steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.install-steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #d6e4f5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.70);
}

.install-steps b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: white;
  background: var(--navy);
}

.install-steps span {
  color: #334155;
  font-weight: 600;
}

.install-steps div > span:first-child {
  font-weight: 800;
}

.download-helper-link {
  margin-top: 18px;
  color: #526884;
  font-size: 14px;
  line-height: 1.5;
}

.download-helper-link a {
  color: var(--blue);
  font-weight: 800;
}

.download-panel {
  display: grid;
  gap: 20px;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(6, 27, 70, 0.10);
}

.download-card-header {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: start;
}

.download-card-header img {
  width: 72px;
}

.download-card-header span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.download-card-header h3 {
  margin-bottom: 8px;
}

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

.download-meta span {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 8px;
  background: #f8fbff;
  color: var(--muted);
  font-weight: 600;
}

.download-meta b {
  color: var(--navy);
  font-size: 12px;
}

.download-note {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 8px;
  background: #f8fbff;
  border: 1px solid #dbe5f2;
}

.download-note b {
  color: var(--navy);
}

.download-note span {
  color: #64748b;
  line-height: 1.45;
}

.download-note span:first-child {
  color: var(--navy);
  font-weight: 700;
}

.interest-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
}

.interest-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd9e8;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f8fbff;
  font: inherit;
  outline: none;
}

.interest-form textarea {
  resize: vertical;
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 119, 255, 0.12);
}

.full {
  grid-column: 1 / -1;
}

.interest-form .primary-button {
  border: 0;
  cursor: pointer;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.form-note.success {
  color: #15803d;
}

.form-note.error {
  color: #b91c1c;
}

.site-footer {
  padding: 52px clamp(20px, 5vw, 76px) 28px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(150px, 0.55fr) minmax(150px, 0.55fr) minmax(190px, 0.65fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 18px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-brand p + p,
.footer-brand address {
  margin-top: 12px;
}

.footer-brand address {
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  line-height: 1.6;
  font-weight: 400;
}

.footer-brand a,
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand b,
.footer-links h3,
.footer-social h3 {
  color: white;
}

.footer-links,
.footer-social {
  display: grid;
  gap: 14px;
}

.footer-links h3,
.footer-social h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.footer-links a {
  font-weight: 400;
}

.footer-links a:hover,
.footer-brand a:hover {
  color: white;
}

.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: white;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom b,
.footer-bottom span:last-child {
  font-weight: 700;
  color: white;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(42px, 7vw, 84px) clamp(20px, 5vw, 76px);
  color: white;
  background: var(--navy);
}

.final-cta h2 {
  max-width: 780px;
  margin: 0;
}

.floating-download {
  position: fixed;
  z-index: 19;
  right: 18px;
  bottom: 18px;
  display: none;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: white;
  background: var(--blue);
  box-shadow: 0 16px 40px rgba(22, 119, 255, 0.34);
  font-weight: 400;
}

.protect-page {
  background: #f6f9ff;
}

.protect-header {
  background: rgba(6, 27, 70, 0.94);
  box-shadow: 0 14px 40px rgba(2, 8, 23, 0.20);
}

.protect-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: 124px clamp(20px, 5vw, 76px) 70px;
  color: white;
  background:
    radial-gradient(circle at 84% 18%, rgba(32, 200, 245, 0.22), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(250, 204, 21, 0.13), transparent 26%),
    linear-gradient(120deg, #061b46 0%, #09275f 55%, #0b3a81 100%);
}

.protect-hero h1 {
  max-width: 880px;
  font-size: clamp(44px, 6.4vw, 76px);
  font-weight: 620;
}

.protect-dashboard {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.protect-phone {
  width: min(330px, 100%);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(2, 6, 23, 0.72)), #06142f;
  box-shadow: 0 32px 80px rgba(2, 8, 23, 0.36);
}

.protect-phone-screen {
  min-height: 440px;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.96)),
    #ffffff;
  color: var(--navy);
}

.protect-app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #526987;
  font-size: 12px;
  font-weight: 700;
}

.protect-app-top img {
  width: 64px;
}

.protect-shield {
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  margin: 8px auto 0;
  border-radius: 38px;
  background:
    radial-gradient(circle at 36% 26%, rgba(255, 255, 255, 0.35), transparent 28%),
    linear-gradient(160deg, #1677ff, #061b46);
  color: white;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(22, 119, 255, 0.26);
}

.protect-location-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 14px;
  background: #eaf4ff;
}

.protect-location-card span,
.protect-location-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.protect-location-card strong {
  color: var(--navy);
  font-size: 18px;
}

.protect-action-list {
  display: grid;
  gap: 10px;
}

.protect-action-list span {
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8fbff;
  color: #17345f;
  font-weight: 700;
}

.protect-command-card {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: min(280px, 76%);
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(2, 8, 23, 0.26);
}

.protect-command-card > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.protect-command-card strong {
  font-size: 22px;
}

.protect-command-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.76);
}

.protect-command-card b {
  color: white;
}

.protect-feature-grid,
.protect-app-grid,
.protect-command-grid,
.protect-roadmap {
  display: grid;
  gap: 18px;
}

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

.protect-feature-grid article,
.protect-app-card,
.protect-roadmap div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.protect-feature-grid article {
  padding: 24px;
}

.protect-feature-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #eaf2ff;
  color: var(--blue);
  font-weight: 800;
}

.protect-feature-grid p,
.protect-app-card p,
.protect-roadmap strong {
  color: var(--muted);
  line-height: 1.6;
  font-weight: 500;
}

.protect-control-section {
  background: linear-gradient(180deg, #eef5ff, #ffffff);
}

.protect-control-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
}

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

.protect-command-grid span {
  min-height: 92px;
  display: flex;
  align-items: end;
  padding: 18px;
  border-radius: 14px;
  color: white;
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.84), rgba(6, 27, 70, 0.96)),
    var(--navy);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

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

.protect-app-card {
  padding: 30px;
}

.app-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: white;
  font-size: 24px;
  font-weight: 800;
}

.parent-mark {
  background: linear-gradient(135deg, #1677ff, #061b46);
}

.child-mark {
  background: linear-gradient(135deg, #16a34a, #20c8f5);
}

.protect-app-download {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 13px 18px;
  font-size: 14px;
}

.protect-app-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.protect-app-card li {
  padding-left: 22px;
  color: #334155;
  background: linear-gradient(var(--green), var(--green)) 0 8px / 8px 8px no-repeat;
  font-weight: 650;
}

.protect-roadmap-section {
  background: #f4f8fe;
}

.protect-roadmap {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.protect-roadmap div {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.protect-roadmap span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.protect-interest {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: white;
  background: var(--navy);
}

.protect-interest h2 {
  max-width: 900px;
}

.protect-interest p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.72);
}

.protect-child-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 84% 18%, rgba(32, 200, 245, 0.18), transparent 30%),
    linear-gradient(135deg, #061b46 0%, #09275f 44%, #f6f9ff 44%, #f6f9ff 100%);
}

.child-handoff {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 70px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
}

.child-handoff-hero {
  color: white;
}

.child-handoff-hero img {
  width: 190px;
  margin-bottom: 42px;
}

.child-handoff-hero h1 {
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 620;
}

.child-handoff-hero p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 20px;
  line-height: 1.5;
}

.child-handoff-panel {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.child-step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  background: #f6f9ff;
}

.child-step > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--navy);
  color: white;
  font-weight: 800;
}

.child-step h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.child-step p,
.child-fallback p {
  color: var(--muted);
  line-height: 1.55;
}

.child-step .primary-button,
.child-step .secondary-button {
  margin-top: 8px;
  width: 100%;
  color: white;
}

.child-open-button {
  background: var(--navy);
}

.child-fallback {
  padding: 16px;
  border: 1px dashed #b9cce8;
  border-radius: 18px;
  background: #fbfdff;
}

.token-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.token-row input {
  min-width: 0;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--navy);
  background: #f6f9ff;
}

.token-row button {
  height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  color: white;
  background: var(--blue);
  font-weight: 700;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(6, 27, 70, 0.98);
    box-shadow: 0 24px 70px rgba(2, 8, 23, 0.32);
  }

  .site-header.menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 58px;
  }

  .hero-content,
  .hero-scene {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-content {
    order: 1;
  }

  .hero-scene {
    order: 2;
    margin-top: 24px;
  }

  .device-pair {
    grid-template-columns: minmax(260px, 340px);
    justify-content: center;
  }

  h1 {
    font-size: 78px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 21px;
  }

  .ops-panel {
    width: 100%;
    opacity: 1;
  }

  .feature-grid,
  .offer-grid,
  .stats-band,
  .ops-experience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .interest-section,
  .download-section,
  .live-ops-layout,
  .finance-lock-layout,
  .protect-hero,
  .protect-control-panel,
  .child-handoff {
    grid-template-columns: 1fr;
  }

  .protect-dashboard {
    min-height: auto;
  }

  .protect-command-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

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

  .stats-band {
    margin-top: 18px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand img {
    width: 176px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 116px 18px 54px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions a,
  .interest-form .primary-button {
    width: 100%;
  }

  .feature-grid,
  .offer-grid,
  .interest-form,
  .stats-band,
  .ops-experience-grid,
  .protect-feature-grid,
  .protect-app-grid,
  .protect-command-grid,
  .protect-roadmap {
    grid-template-columns: 1fr;
  }

  .protect-hero {
    padding: 112px 18px 48px;
  }

  .protect-hero h1 {
    font-size: 42px;
  }

  .protect-interest {
    display: grid;
  }

  .hero-scene {
    grid-template-columns: 1fr;
  }

  .device-pair {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-policy-card {
    grid-template-columns: 1fr;
  }

  .download-panel {
    grid-template-columns: 1fr;
  }

  .finance-lock-grid {
    grid-template-columns: 1fr;
  }

  .lock-feature-card {
    min-height: auto;
  }

  .download-card-header,
  .download-meta {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: auto;
  }

  .site-footer {
    padding-bottom: 74px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .final-cta {
    display: grid;
  }

  .floating-download {
    display: inline-flex;
  }
}


