:root {
  color-scheme: light;
  --ink: #071634;
  --muted: #586985;
  --blue: #087fff;
  --blue-dark: #0068df;
  --blue-soft: #eaf3ff;
  --line: #dfe8f5;
  --surface: #f5f8fd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(35, 83, 143, 0.14);
  --radius: 28px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 232, 245, 0.75);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 113, 242, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 620;
}

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

.language-switch {
  padding: 7px 12px;
  border: 1px solid #cfe0f7;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark) !important;
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 100px;
  background:
    radial-gradient(circle at 88% 16%, rgba(46, 136, 255, 0.18), transparent 28%),
    radial-gradient(circle at 8% 84%, rgba(99, 174, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f6f9ff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 7px var(--blue-soft);
  content: "";
}

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

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(52px, 6.6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(35, 83, 143, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(35, 83, 143, 0.15);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual::before {
  position: absolute;
  inset: 10% -12% 8%;
  border-radius: 50%;
  background: rgba(70, 151, 255, 0.18);
  filter: blur(50px);
  content: "";
}

.phone-shot {
  position: relative;
  width: min(100%, 420px);
  border: 12px solid rgba(255, 255, 255, 0.88);
  border-radius: 42px;
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}

.promise-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.promise {
  padding: 29px 24px;
  text-align: center;
  font-size: 15px;
  font-weight: 720;
}

.promise + .promise {
  border-left: 1px solid var(--line);
}

.section {
  padding: 110px 0;
}

.section.tinted {
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2,
.privacy-callout h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-heading p,
.privacy-callout p {
  color: var(--muted);
  font-size: 19px;
}

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

.feature-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(35, 83, 143, 0.06);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.format-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.format-list span {
  padding: 10px 16px;
  border: 1px solid #cfe0f7;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #1b579c;
  font-size: 14px;
  font-weight: 720;
}

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

.showcase-card {
  overflow: hidden;
  padding: 34px 34px 0;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(35, 83, 143, 0.08);
}

.showcase-card h3 {
  margin-bottom: 6px;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.showcase-card p {
  color: var(--muted);
}

.showcase-card img {
  width: 76%;
  margin: 26px auto 0;
  border: 9px solid #f4f7fc;
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 15px 45px rgba(35, 83, 143, 0.11);
}

.privacy-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 58px;
  border-radius: 36px;
  background: var(--ink);
  color: var(--white);
}

.privacy-callout p {
  max-width: 700px;
  margin-bottom: 0;
  color: #bfcde3;
}

.privacy-callout .button {
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--white);
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-weight: 650;
}

.legal-hero {
  padding: 82px 0 64px;
  background: linear-gradient(180deg, #f5f9ff 0%, #fff 100%);
  text-align: center;
}

.legal-hero h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(45px, 7vw, 72px);
}

.legal-hero p {
  margin-bottom: 0;
  color: var(--muted);
}

.document {
  width: min(780px, calc(100% - 48px));
  margin: 64px auto 110px;
}

.document h2 {
  margin: 48px 0 12px;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.document p,
.document li {
  color: #40516d;
}

.document a {
  color: var(--blue-dark);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.document li + li {
  margin-top: 8px;
}

.info-box {
  margin: 34px 0;
  padding: 24px;
  border: 1px solid #cfe1fb;
  border-radius: 20px;
  background: var(--blue-soft);
}

.info-box strong {
  display: block;
  margin-bottom: 5px;
  color: #174e90;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0 56px;
}

.support-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.support-card h2 {
  margin-top: 0;
  font-size: 21px;
}

.support-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.contact-card {
  padding: 36px;
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.contact-card p {
  color: #bfcde3;
}

.contact-card a {
  color: var(--white);
}

a:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(8, 127, 255, 0.4);
  outline-offset: 4px;
}

@media (max-width: 850px) {
  .hero {
    padding-top: 66px;
  }

  .hero-grid,
  .privacy-callout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .actions {
    justify-content: center;
  }

  .hero-copy > p,
  h1 {
    margin-inline: auto;
  }

  .hero-visual {
    margin-top: 18px;
  }

  .phone-shot {
    width: min(78%, 390px);
    transform: rotate(1.5deg);
  }

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

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

  .promise:nth-child(3) {
    border-left: 0;
  }

  .promise:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .shell,
  .document {
    width: min(100% - 32px, var(--max));
  }

  .nav {
    min-height: 64px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-links {
    gap: 12px;
    font-size: 14px;
  }

  .nav-links a:first-child {
    display: none;
  }

  .hero {
    padding: 54px 0 70px;
  }

  .hero-grid {
    gap: 48px;
  }

  h1 {
    font-size: 49px;
  }

  .section {
    padding: 78px 0;
  }

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

  .feature-card {
    min-height: 0;
  }

  .privacy-callout {
    padding: 36px 28px;
  }

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

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

  .button {
    transition: none;
  }
}
