:root {
  --brand: #1B86FF;
  --brand-deep: #0C2A4A;
  --accent-green: #00A36C;
  --accent-warn: #FFA000;

  --bg-top: #F6FBFF;
  --bg-bottom: #EAF4FF;

  --text-main: #10243E;
  --text-secondary: #4F637A;

  --card-bg: rgba(255, 255, 255, 0.88);
  --card-border: rgba(12, 42, 74, 0.1);
  --card-shadow: 0 14px 36px rgba(12, 42, 74, 0.1);

  --focus-ring: rgba(27, 134, 255, 0.36);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --font-heading: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;

  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  line-height: 1.6;
  background: linear-gradient(160deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  min-height: 100vh;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(4px);
}

body::before {
  width: 260px;
  height: 260px;
  right: -90px;
  top: 120px;
  background: radial-gradient(circle at center, rgba(27, 134, 255, 0.15), rgba(27, 134, 255, 0));
}

body::after {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: 50px;
  background: radial-gradient(circle at center, rgba(0, 163, 108, 0.13), rgba(0, 163, 108, 0));
}

img {
  max-width: 100%;
  height: auto;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--brand-deep);
  color: #ffffff;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  z-index: 1200;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section-space {
  padding: 2.7rem 0;
}

.section-space-sm {
  padding: 1rem 0 1.4rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--brand);
  font-weight: 700;
}

h1,
h2,
h3,
.footer-title {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 1.15rem;
}

.section-head h2 {
  margin-top: 0.4rem;
  font-size: clamp(1.45rem, 4.2vw, 2.2rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(140deg, var(--brand) 0%, #4ca7ff 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(27, 134, 255, 0.26);
}

.btn-ghost {
  border-color: rgba(12, 42, 74, 0.22);
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.72);
}

.btn-store {
  background: #ffffff;
  color: var(--brand-deep);
  border-color: rgba(255, 255, 255, 0.48);
  min-width: 170px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(246, 251, 255, 0.8);
  border-bottom: 1px solid rgba(12, 42, 74, 0.08);
  transition: box-shadow 0.24s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 26px rgba(16, 36, 62, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-deep);
  margin-right: auto;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: inline-grid;
  place-items: center;
  font-size: 0.75rem;
  color: #ffffff;
  background: linear-gradient(140deg, var(--brand-deep), var(--brand));
}

.logo-text {
  font-size: 1rem;
}

.nav-toggle {
  border: 1px solid rgba(12, 42, 74, 0.18);
  background: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.main-nav {
  position: absolute;
  inset: calc(100% + 0.5rem) 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  padding: 0.95rem;
  display: none;
}

.main-nav.is-open {
  display: block;
}

.nav-links,
.nav-secondary,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links {
  display: grid;
  gap: 0.35rem;
}

.nav-secondary {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(12, 42, 74, 0.18);
}

.nav-links a,
.nav-secondary a {
  display: inline-flex;
  border-radius: 10px;
  padding: 0.4rem 0.55rem;
  color: var(--text-main);
}

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

.header-cta {
  display: none;
}

.hero {
  padding-top: 2rem;
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
}

.hero-content h1 {
  margin-top: 0.5rem;
  font-size: clamp(1.9rem, 7vw, 3.1rem);
}

.lead {
  margin-top: 0.9rem;
  color: var(--text-secondary);
  max-width: 59ch;
}

.hero-highlights {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  color: var(--text-main);
}

.hero-highlights li {
  position: relative;
  padding-left: 1.35rem;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 0.56rem;
  background: var(--accent-green);
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.phone-stage {
  position: relative;
}

.phone-frame {
  margin: 0;
  width: min(330px, 100%);
  margin-inline: auto;
  border-radius: 36px;
  padding: 0.75rem;
  background: linear-gradient(155deg, #0f3157 0%, #1b86ff 100%);
  box-shadow: 0 18px 34px rgba(12, 42, 74, 0.26);
}

.phone-notch {
  width: 40%;
  height: 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 0.65rem;
}

.phone-screen {
  border-radius: 30px;
  background: linear-gradient(180deg, #f4f9ff 0%, #e6f1ff 100%);
  min-height: 510px;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.metric-card,
.metric-row > div,
.report-chip,
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.metric-card {
  border-radius: var(--radius-sm);
  padding: 0.85rem;
}

.metric-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
}

.metric-card strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.5rem;
  color: var(--brand-deep);
}

.metric-card span {
  color: var(--accent-green);
  font-size: 0.82rem;
  font-weight: 700;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.metric-row > div {
  border-radius: var(--radius-sm);
  padding: 0.7rem;
}

.metric-row p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.metric-row strong {
  color: var(--brand-deep);
}

.report-chip {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 0.8rem;
}

.trust-grid,
.features-grid,
.steps-grid,
.footer-grid,
.doc-grid {
  display: grid;
  gap: 0.95rem;
}

.glass-card {
  border-radius: var(--radius-md);
  padding: 1rem;
}

.trust-card h2 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.trust-card p,
.feature-card p,
.step-card p,
.footer-text,
.doc-copy,
.policy-item p {
  color: var(--text-secondary);
}

.feature-card h3,
.step-card h3,
.screen-card figcaption,
.faq-question,
.doc-card h3,
.policy-item h3 {
  font-size: 1rem;
}

.step-card {
  position: relative;
  padding-top: 2.1rem;
}

.step-number {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(27, 134, 255, 0.14);
  color: var(--brand-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--font-heading);
}

.screens-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  overflow-x: auto;
  gap: 0.8rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.4rem;
}

.screen-card {
  scroll-snap-align: start;
}

.screen-placeholder {
  height: 270px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(160deg, rgba(27, 134, 255, 0.2), rgba(0, 163, 108, 0.18)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.45),
      rgba(255, 255, 255, 0.45) 14px,
      rgba(234, 244, 255, 0.75) 14px,
      rgba(234, 244, 255, 0.75) 28px
    );
  border: 1px solid rgba(12, 42, 74, 0.15);
}

.screen-placeholder span {
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.87);
  border: 1px solid rgba(12, 42, 74, 0.12);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-weight: 700;
}

.screen-card figcaption {
  margin-top: 0.65rem;
  color: var(--text-main);
}

.faq-wrap {
  max-width: 880px;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-item {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.86);
  overflow: clip;
}

.faq-question {
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  color: var(--brand-deep);
  background: transparent;
  border: 0;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--brand);
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: var(--text-secondary);
}

.js-enabled .faq-answer {
  display: none;
}

.js-enabled .faq-item.is-open .faq-answer {
  display: block;
}

.cta-band {
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  display: grid;
  gap: 1rem;
  color: #ffffff;
  background: linear-gradient(130deg, #0c2a4a 0%, #1b86ff 65%, #2c95ff 100%);
  box-shadow: 0 20px 44px rgba(12, 42, 74, 0.24);
}

.cta-band h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.4rem, 4vw, 2rem);
}

.cta-band p:last-child {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  margin-top: 1.3rem;
  padding: 2rem 0 1.6rem;
  border-top: 1px solid rgba(12, 42, 74, 0.08);
  background: rgba(255, 255, 255, 0.5);
}

.footer-title {
  font-size: 1.12rem;
  margin-bottom: 0.35rem;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(12, 42, 74, 0.16);
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.legal-note {
  margin-top: 0.3rem;
  color: #2c4662;
}

.doc-main {
  padding: 2.2rem 0;
}

.lang-switch {
  margin-top: 1rem;
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}

.lang-btn {
  border: 1px solid transparent;
  background: transparent;
  color: var(--brand-deep);
  border-radius: 999px;
  padding: 0.38rem 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--brand);
  color: #ffffff;
}

.doc-hero {
  max-width: 780px;
  margin-bottom: 1.3rem;
}

.doc-hero h1 {
  margin-top: 0.45rem;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.doc-copy {
  margin-top: 0.9rem;
}

.doc-card,
.policy-item,
.info-card {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  padding: 1rem;
}

.doc-card h2,
.policy-item h3,
.info-card h3 {
  margin-bottom: 0.4rem;
}

.doc-list,
.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.note-box {
  margin-top: 1.1rem;
  border-left: 4px solid var(--accent-warn);
  padding: 0.85rem 1rem;
  border-radius: 0 12px 12px 0;
  background: rgba(255, 245, 224, 0.65);
}

.inline-link {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.back-home {
  margin-top: 1.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 375px) {
  .section-space {
    padding: 3rem 0;
  }

  .cta-band {
    padding: 1.55rem;
  }
}

@media (min-width: 768px) {
  .section-space {
    padding: 4.2rem 0;
  }

  .section-space-sm {
    padding: 1.6rem 0 2rem;
  }

  .header-inner {
    gap: 1rem;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    margin-right: auto;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }

  .nav-secondary {
    margin: 0;
    padding: 0;
    border: 0;
    display: flex;
    gap: 0.2rem;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 1.6rem;
  }

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

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

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

  .screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: initial;
    overflow: visible;
  }

  .cta-band {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.4rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

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

@media (min-width: 1200px) {
  :root {
    --header-height: 82px;
  }

  .container {
    width: min(1200px, calc(100% - 4rem));
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-content h1 {
    max-width: 16ch;
  }

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

  .screen-placeholder {
    height: 300px;
  }

  .glass-card,
  .doc-card,
  .policy-item,
  .info-card {
    padding: 1.15rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .site-header {
    transition: none;
  }
}
