:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-soft: #eef6ff;
  --ink: #0b1220;
  --text: #101828;
  --muted: #667085;
  --faint: #98a2b3;
  --border: #e4e7ec;
  --border-strong: #d0d5dd;
  --blue: #3b82f6;
  --blue-strong: #2563eb;
  --emerald: #10b981;
  --amber: #f59e0b;
  --rose: #ec4899;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.15);
  --shadow-soft: 0 14px 36px rgba(16, 24, 40, 0.08);
  --radius: 8px;
  --max: 1120px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.13), transparent 34%),
    linear-gradient(225deg, rgba(16, 185, 129, 0.12), transparent 31%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 42%, #ffffff 100%);
  color: var(--text);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.policy-page {
  background: #fbfcff;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(228, 231, 236, 0.82);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  font-size: 1.05rem;
  color: var(--ink);
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(59, 130, 246, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  padding: 9px 12px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #f2f6fc;
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  min-height: calc(100vh - 72px);
  padding: 70px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  align-items: center;
  gap: 82px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 8vw, 6.65rem);
  line-height: 0.92;
  letter-spacing: 0;
  color: var(--ink);
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 12px 17px;
  background: var(--surface);
  color: var(--text);
  font-weight: 760;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.12);
}

.button.primary {
  border-color: var(--blue);
  background: linear-gradient(180deg, #4c8ff8 0%, var(--blue-strong) 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
}

.store-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.proof-row span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(208, 213, 221, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 13px;
  color: #475467;
  font-size: 0.92rem;
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.05);
}

.proof-row strong {
  color: var(--ink);
}

.phone-wrap {
  justify-self: end;
  position: relative;
  width: min(100%, 430px);
  padding: 24px 18px;
}

.phone {
  position: relative;
  overflow: hidden;
  border: 10px solid #111827;
  border-radius: 42px;
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
  box-shadow: var(--shadow);
  aspect-ratio: 9 / 18.5;
  transform: rotate(1.5deg);
}

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

.screen {
  min-height: 100%;
  padding: 50px 18px 22px;
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.screen-title {
  font-weight: 800;
  font-size: 1.28rem;
}

.icon-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.09);
}

.counter-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: 20px;
  background: #ffffff;
  padding: 15px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.07);
}

.bubble {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.12);
  font-size: 1.35rem;
}

.bubble.green {
  background: rgba(16, 185, 129, 0.13);
}

.bubble.amber {
  background: rgba(245, 158, 11, 0.14);
}

.counter-name {
  font-weight: 750;
}

.counter-meta {
  color: var(--muted);
  font-size: 0.84rem;
}

.counter-value {
  font-size: 1.65rem;
  font-weight: 850;
}

.tap-panel {
  margin-top: 18px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.17), transparent 34%),
    linear-gradient(135deg, var(--blue), var(--emerald));
  color: #ffffff;
  padding: 24px;
  text-align: center;
  box-shadow: 0 24px 44px rgba(59, 130, 246, 0.28);
}

.tap-panel .count {
  display: block;
  font-size: 4.8rem;
  font-weight: 860;
  line-height: 1;
}

.tap-panel .label {
  display: block;
  margin-top: 8px;
  font-weight: 760;
}

.mini-chart {
  height: 72px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 7px;
  margin-top: 18px;
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  padding: 13px;
}

.mini-chart span {
  display: block;
  min-height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.88), rgba(16, 185, 129, 0.82));
}

.preview-panel {
  position: absolute;
  z-index: 3;
  width: 142px;
  border: 1px solid rgba(208, 213, 221, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
  box-shadow: 0 18px 38px rgba(16, 24, 40, 0.13);
  backdrop-filter: blur(16px);
}

.preview-panel-left {
  left: -28px;
  top: 20%;
}

.preview-panel-right {
  right: -20px;
  bottom: 17%;
}

.preview-panel strong {
  display: block;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
}

.preview-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.preview-label {
  margin-bottom: 7px;
  color: var(--blue-strong) !important;
  text-transform: uppercase;
}

.section-intro {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}

.section-intro p {
  max-width: 520px;
  color: var(--muted);
}

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

.feature {
  min-height: 244px;
  border: 1px solid rgba(208, 213, 221, 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92));
  padding: 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(16, 24, 40, 0.12);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef6ff, #e7f8f2);
  color: var(--blue-strong);
  font-size: 1.18rem;
  font-weight: 850;
}

.feature p,
.policy-card p,
.support-card p,
.legal-section p,
.legal-section li {
  color: var(--muted);
}

.band {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-block: 1px solid var(--border);
}

.use-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.lead.compact {
  max-width: 480px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.use-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  border: 1px solid rgba(208, 213, 221, 0.78);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 14px 16px;
  color: #344054;
  font-weight: 680;
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.05);
}

.use-item span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #f2f6fc;
}

.privacy-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.policy-card,
.support-card {
  border: 1px solid rgba(208, 213, 221, 0.78);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.status-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.status-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: #344054;
}

.check {
  color: var(--emerald);
  font-weight: 900;
}

.cta {
  text-align: center;
}

.cta-panel {
  border: 1px solid rgba(208, 213, 221, 0.78);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent 38%),
    linear-gradient(225deg, rgba(16, 185, 129, 0.12), transparent 42%),
    #ffffff;
  padding: clamp(32px, 6vw, 64px);
  box-shadow: var(--shadow-soft);
}

.cta h2,
.cta p {
  margin-left: auto;
  margin-right: auto;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 54px;
  align-items: start;
}

.workflow-copy {
  position: sticky;
  top: 112px;
}

.workflow-copy p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.08rem;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 6px 18px;
  border: 1px solid rgba(208, 213, 221, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.timeline-item span {
  grid-row: span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  background: #eef6ff;
  color: var(--blue-strong);
  font-weight: 850;
}

.timeline-item strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

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

.legal-shell {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 88px;
}

.legal-hero {
  margin-bottom: 34px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
}

.legal-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 7vw, 4.7rem);
  line-height: 0.98;
}

.legal-date {
  color: var(--muted);
  font-weight: 650;
}

.legal-section {
  padding: 22px 0;
}

.legal-section h2 {
  font-size: 1.55rem;
  line-height: 1.15;
}

.legal-section ul {
  padding-left: 1.2rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.support-card h2 {
  font-size: 1.35rem;
}

.contact-line {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue-strong);
  font-weight: 760;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 58px;
  }

  .phone-wrap {
    justify-self: center;
    max-width: 360px;
  }

  .preview-panel {
    width: 128px;
  }

  .preview-panel-left {
    left: -8px;
  }

  .preview-panel-right {
    right: -6px;
  }

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

  .use-section,
  .workflow {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .workflow-copy {
    position: static;
  }

  .privacy-strip {
    grid-template-columns: 1fr;
  }

  .section-intro {
    display: block;
  }
}

@media (max-width: 700px) {
  .nav {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(16, 24, 40, 0.12);
    padding: 8px;
  }

  .nav-links[data-open] {
    display: grid;
  }

  .nav-links a {
    padding: 12px;
  }

  .section,
  .footer-inner,
  .legal-shell {
    width: min(var(--max), calc(100% - 28px));
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.55rem);
  }

  .button {
    width: 100%;
  }

  .proof-row span {
    flex: 1 1 100%;
  }

  .phone-wrap {
    width: min(100%, 330px);
    padding: 8px 0 24px;
  }

  .phone {
    transform: none;
  }

  .preview-panel {
    position: static;
    width: auto;
    margin: 0 12px 12px;
  }

  .preview-panel-right {
    margin: 12px 12px 0;
  }

  .tap-panel .count {
    font-size: 4.1rem;
  }

  .feature-grid,
  .use-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item span {
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
