:root {
  color-scheme: light;
  --page: #f5f6f2;
  --paper: #ffffff;
  --paper-soft: #f0f2ed;
  --ink: #161b1f;
  --ink-muted: #586068;
  --ink-soft: #7a8288;
  --line: rgba(22, 27, 31, 0.12);
  --blue: #285e7a;
  --blue-dark: #16384c;
  --green: #2e765f;
  --gold: #b6843e;
  --red: #b75b4d;
  --shadow-lg: 0 24px 64px rgba(39, 48, 55, 0.18);
  --shadow-md: 0 16px 36px rgba(39, 48, 55, 0.12);
  --shadow-sm: 0 8px 22px rgba(39, 48, 55, 0.08);
  --radius: 8px;
  --max: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent 22rem),
    var(--page);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(40, 94, 122, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 1rem;
  left: 1rem;
  padding: 0.6rem 0.9rem;
  color: #fff;
  background: var(--blue-dark);
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 0.85rem 0;
  background: rgba(245, 246, 242, 0.86);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
  font-weight: 800;
}

.brand img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
}

.nav-links a {
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 0.65rem;
  min-width: max-content;
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.35rem 0.45rem 0.35rem 0.65rem;
  color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 27, 31, 0.1);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
}

.language-picker select {
  min-width: 8.3rem;
  max-width: 10rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-store {
  color: #fff;
  background: linear-gradient(135deg, #11161a, #253544);
  box-shadow: 0 14px 26px rgba(18, 24, 29, 0.18);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.42);
}

.wide {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100vh - 4.5rem);
  max-height: 920px;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
  background: #dfe7ea;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% 44%;
  filter: saturate(0.95) contrast(0.94);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(245, 246, 242, 0.98) 0%, rgba(245, 246, 242, 0.92) 31%, rgba(245, 246, 242, 0.35) 62%, rgba(245, 246, 242, 0.72) 100%),
    linear-gradient(180deg, rgba(245, 246, 242, 0.04), rgba(245, 246, 242, 0.7));
}

.hero-content {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 7vh 0 4.5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 9.4em;
  margin-bottom: 1.25rem;
  font-family: var(--display);
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 45rem;
  margin-bottom: 1.7rem;
  color: var(--ink-muted);
  font-size: clamp(1.02rem, 1.45vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 10rem));
  gap: 0.75rem;
  margin: 0;
}

.hero-facts div {
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.hero-facts dt {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-facts dd {
  margin: 0.2rem 0 0;
  color: var(--ink);
  font-weight: 900;
}

.proof-strip,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  transform: translateY(-2.2rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-md);
}

.proof-strip div {
  padding: 1.25rem;
  background: #fff;
}

.proof-strip span,
.feature-card span,
.question-flow span,
.guided-step,
.price-label {
  display: inline-flex;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-strip p,
.feature-card p,
.operator-copy p,
.question-copy p,
.question-flow p,
.guided-copy p,
.section-heading p,
.safety-grid p,
.pricing-copy p,
.pricing-panel p,
.pricing-panel li,
.faq-list p,
.site-footer p {
  color: var(--ink-muted);
}

.proof-strip p {
  margin: 0.4rem 0 0;
}

.section {
  padding: 4.8rem 0 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.8rem;
}

.section-heading h2,
.operator-copy h2,
.question-copy h2,
.privacy-copy h2,
.pricing-copy h2 {
  margin-bottom: 0.85rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
  gap: 2rem;
  align-items: end;
  max-width: none;
}

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

.feature-card,
.question-flow article,
.operator-section,
.guided-showcase,
.screen-showcase,
.safety-grid article,
.pricing-section,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  min-height: 15.4rem;
  padding: 1.25rem;
}

.feature-card h3,
.question-flow h3,
.safety-grid h3 {
  margin: 0.65rem 0 0.45rem;
  font-size: 1.1rem;
  line-height: 1.25;
}

.question-section {
  display: grid;
  grid-template-columns: minmax(22rem, 0.78fr) minmax(0, 1.22fr);
  gap: 2rem;
  align-items: start;
}

.question-copy {
  padding: 0.4rem 0 0.4rem 1rem;
  border-left: 4px solid var(--green);
}

.question-copy h2 {
  max-width: 9.5em;
}

.question-copy p:last-child {
  margin-bottom: 0;
}

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

.question-flow article {
  min-height: 12rem;
  padding: 1.25rem;
}

.question-flow article:nth-child(1) {
  border-top: 3px solid var(--green);
}

.question-flow article:nth-child(2) {
  border-top: 3px solid var(--blue);
}

.question-flow article:nth-child(3) {
  border-top: 3px solid var(--gold);
}

.question-flow article:nth-child(4) {
  border-top: 3px solid var(--red);
}

.feature-card:nth-child(3n + 1) {
  border-top: 3px solid var(--blue);
}

.feature-card:nth-child(3n + 2) {
  border-top: 3px solid var(--green);
}

.feature-card:nth-child(3n + 3) {
  border-top: 3px solid var(--gold);
}

.operator-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
  gap: 1.5rem;
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 236, 229, 0.74)),
    var(--paper);
}

.operator-copy p:last-child {
  margin-bottom: 0;
}

.operator-metrics {
  display: grid;
  gap: 0.75rem;
}

.operator-metrics div {
  padding: 1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(22, 27, 31, 0.08);
}

.operator-metrics strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

.operator-metrics span {
  color: var(--ink-muted);
}

.guided-showcase {
  display: grid;
  grid-template-columns: minmax(19rem, 0.34fr) minmax(0, 0.66fr);
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
}

.guided-copy {
  align-self: start;
  padding: 0.75rem;
}

.guided-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.guided-tab {
  min-height: 2.35rem;
  padding: 0 0.75rem;
  color: var(--ink-muted);
  background: var(--paper-soft);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.guided-tab.is-active {
  color: #fff;
  background: var(--green);
}

.guided-step {
  margin-bottom: 0.7rem;
}

.guided-copy h3 {
  margin-bottom: 0.65rem;
  font-size: 1.6rem;
  line-height: 1.16;
}

.guided-copy p:last-child {
  margin-bottom: 0;
}

.guided-figure {
  align-self: start;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eef1ef;
}

.guided-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.screen-showcase {
  display: grid;
  grid-template-columns: minmax(18rem, 0.34fr) minmax(0, 0.66fr);
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
}

.gallery-copy {
  align-self: start;
  padding: 0.75rem;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.gallery-tab {
  min-height: 2.35rem;
  padding: 0 0.75rem;
  color: var(--ink-muted);
  background: var(--paper-soft);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.gallery-tab.is-active {
  color: #fff;
  background: var(--blue-dark);
}

.gallery-copy h3 {
  margin-bottom: 0.65rem;
  font-size: 1.55rem;
  line-height: 1.18;
}

.gallery-copy p {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.gallery-figure {
  align-self: start;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eef1ef;
}

.gallery-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.2rem;
  align-items: start;
}

.privacy-copy {
  position: sticky;
  top: 5.5rem;
}

.privacy-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.safety-grid {
  display: grid;
  gap: 0.8rem;
}

.safety-grid article {
  padding: 1.15rem;
}

.safety-grid article:nth-child(2) {
  border-left: 3px solid var(--red);
}

.safety-grid article:nth-child(1) {
  border-left: 3px solid var(--green);
}

.safety-grid article:nth-child(3) {
  border-left: 3px solid var(--blue);
}

.safety-grid p {
  margin-bottom: 0;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.55fr);
  gap: 1.4rem;
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 235, 229, 0.8)),
    var(--paper);
}

.pricing-copy {
  align-self: center;
}

.pricing-copy p:last-child {
  margin-bottom: 0;
}

.pricing-panel {
  padding: 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, #11161a, #1d3442 62%, #2e765f);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.pricing-panel strong {
  display: block;
  margin: 0.35rem 0 0.2rem;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.95;
}

.pricing-panel p,
.pricing-panel li {
  color: rgba(255, 255, 255, 0.82);
}

.pricing-panel ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.1rem 0 1.2rem;
  padding: 0;
  list-style: none;
}

.pricing-panel li {
  position: relative;
  padding-left: 1rem;
}

.pricing-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #9fd6c3;
}

.faq-section .section-heading {
  margin-bottom: 1.25rem;
}

.faq-section h2 {
  margin-bottom: 0;
}

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

.faq-list details {
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 0.65rem 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  display: block;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-actions {
    grid-column: 2;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 5rem;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(245, 246, 242, 0.98) 0%, rgba(245, 246, 242, 0.86) 56%, rgba(245, 246, 242, 0.54) 100%);
  }

  .proof-strip,
  .feature-grid,
  .question-section,
  .guided-showcase,
  .screen-showcase,
  .privacy-section,
  .pricing-section,
  .operator-section,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .privacy-copy {
    position: static;
  }

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

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

@media (max-width: 680px) {
  [id] {
    scroll-margin-top: 145px;
  }

  .site-header,
  .proof-strip,
  .section,
  .site-footer {
    width: min(calc(100% - 1rem), var(--max));
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .brand,
  .header-actions {
    justify-self: stretch;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .brand {
    justify-content: center;
  }

  .language-picker,
  .language-picker select {
    width: 100%;
    max-width: none;
  }

  .nav-links {
    justify-content: center;
    gap: 0.85rem;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .hero-content {
    width: min(calc(100% - 1rem), var(--max));
    padding-top: 3.2rem;
  }

  .hero-facts,
  .proof-strip,
  .feature-grid,
  .question-flow {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 3.7rem;
  }

  .screen-showcase,
  .guided-showcase,
  .pricing-section,
  .operator-section {
    padding: 0.8rem;
  }

  .guided-copy,
  .gallery-copy {
    padding: 0.2rem;
  }

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