:root {
  color-scheme: light;
  --blue: #003f8a;
  --blue-mid: #1565c0;
  --ink: #142033;
  --muted: #5f6e82;
  --line: #dce6f2;
  --paper: #f7f9fc;
  --white: #ffffff;
  --teal: #0f8d8f;
  --gold: #c78b1f;
  --shadow: 0 24px 70px rgba(20, 32, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(247, 249, 252, 0.88);
  border-bottom: 1px solid rgba(220, 230, 242, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand span {
  overflow-wrap: anywhere;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 63, 138, 0.2);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  min-width: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--blue);
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
  min-height: calc(100svh - 70px);
  padding: clamp(48px, 7vw, 90px) clamp(20px, 6vw, 96px) 56px;
  background:
    linear-gradient(135deg, rgba(0, 63, 138, 0.12), rgba(15, 141, 143, 0.08) 42%, rgba(255, 255, 255, 0) 72%),
    var(--paper);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(3rem, 6.4vw, 6.25rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--blue);
}

.availability {
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-device {
  justify-self: center;
  width: min(100%, 380px);
  padding: 12px;
  background: #0f1722;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.hero-device img {
  width: 100%;
  aspect-ratio: 1290 / 2796;
  object-fit: cover;
  border-radius: 31px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-band div {
  min-height: 138px;
  padding: 28px clamp(20px, 4vw, 44px);
  background: var(--white);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 8px;
  color: var(--blue);
}

.trust-band span {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 6vw, 96px);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.feature-grid article {
  min-height: 214px;
  padding: 28px;
  background: var(--white);
}

.feature-grid p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.screenshots-section {
  background: var(--white);
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  aspect-ratio: 1290 / 2796;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 52px rgba(20, 32, 51, 0.16);
}

figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 96px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.legal {
  background: var(--white);
}

.legal-hero {
  padding: clamp(46px, 7vw, 86px) clamp(20px, 6vw, 96px) 34px;
  background: linear-gradient(135deg, rgba(0, 63, 138, 0.1), rgba(15, 141, 143, 0.06)), var(--paper);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 980px;
  font-size: clamp(2.45rem, 5vw, 5.2rem);
}

.legal-content {
  max-width: 880px;
  padding: 48px clamp(20px, 6vw, 96px) 86px;
}

.legal-content h2 {
  margin: 38px 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content li {
  margin: 8px 0;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.note {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: #fff8e9;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-device {
    width: min(72vw, 360px);
  }

  .trust-band,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    gap: 16px;
  }

  nav {
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    font-size: 0.9rem;
  }

  nav a {
    min-width: 0;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 3.6rem);
  }

  .hero-device {
    width: min(86vw, 330px);
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  figure {
    max-width: 310px;
    margin-inline: auto;
  }

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