@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/assets/fonts/atkinson-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/assets/fonts/atkinson-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/assets/fonts/atkinson-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/assets/fonts/atkinson-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #0b1526;
  --ink-soft: #34435a;
  --navy: #07111f;
  --navy-raised: #0d1c30;
  --paper: #f7f9fc;
  --surface: #ffffff;
  --line: #d9e1ec;
  --blue: #2563eb;
  --blue-bright: #60a5fa;
  --blue-soft: #e8f0ff;
  --green: #55d6a5;
  --focus: #facc15;
  --radius-small: 12px;
  --radius-medium: 22px;
  --radius-large: 34px;
  --shadow: 0 28px 70px rgb(0 0 0 / 28%);
  font-family: "Atkinson Hyperlegible Next", "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--focus);
  color: #111827;
  padding: 10px 14px;
  font-weight: 700;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(1240px, calc(100% - 40px));
  min-height: 88px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link, .footer-brand { display: inline-flex; }
.brand-link img { width: 172px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.main-nav a:hover { color: #fff; }
.main-nav .nav-cta {
  border: 1px solid #334761;
  border-radius: 999px;
  padding: 9px 15px;
  color: #fff;
}

.hero {
  min-height: 790px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
  padding: 150px max(24px, calc((100vw - 1240px) / 2)) 96px;
  background: var(--navy);
  color: #fff;
}

.hero::before, .hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgb(96 165 250 / 20%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::before { width: 670px; height: 670px; right: -260px; top: -290px; }
.hero::after { width: 420px; height: 420px; left: -280px; bottom: -250px; }
.hero-copy, .product-scene { position: relative; z-index: 1; }
.hero-signal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #b9c7da;
  font-size: 14px;
  font-weight: 600;
}
.hero-signal span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgb(85 214 165 / 12%);
}
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(3.15rem, 6.3vw, 5.85rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .96;
  text-wrap: balance;
}
.hero h1 em { color: var(--blue-bright); font-style: normal; }
.hero-lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: #b9c7da;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: #fff; }
.button-primary:hover { background: #1d4ed8; }
.button-quiet { border-color: #31445d; color: #e5edf8; }
.button-quiet:hover { border-color: #62758d; background: #0c1a2c; }
.button-light { background: #fff; color: var(--navy); }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 28px 0 0;
  padding: 0;
  color: #9fb0c5;
  font-size: 14px;
  list-style: none;
}
.hero-proof li::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 700; }

.product-scene { min-width: 0; padding: 48px 0; }
.meeting-window {
  overflow: hidden;
  border: 1px solid #31435b;
  border-radius: 24px;
  background: #0c192a;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.window-bar {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #24364d;
  padding: 0 18px;
  color: #acbed2;
  font-size: 13px;
}
.window-controls { display: flex; gap: 6px; }
.window-controls span { width: 9px; height: 9px; border-radius: 50%; background: #52647b; }
.window-title { font-weight: 600; }
.local-badge {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #2f5e54;
  border-radius: 999px;
  padding: 4px 9px;
  color: #8ce7c5;
  font-size: 12px;
}
.local-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.meeting-body {
  min-height: 330px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-content: center;
  gap: 18px 12px;
  padding: clamp(30px, 5vw, 54px);
  background: #0a1524;
}
.speaker {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.speaker-one { background: #193b75; color: #bfdbfe; }
.speaker-two { background: #3d2d67; color: #ddd6fe; }
.caption {
  max-width: 90%;
  border: 1px solid #24364d;
  border-radius: 6px 16px 16px 16px;
  background: #132237;
  padding: 13px 15px;
}
.caption span { color: #dbeafe; font-size: 13px; font-weight: 700; }
.caption time { margin-left: 8px; color: #71839a; font-weight: 400; }
.caption p { margin: 5px 0 0; color: #b9c7da; font-size: 15px; line-height: 1.45; }
.caption-two { margin-left: 22px; }
.capture-bar {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  color: #dce8f7;
  font-size: 13px;
}
.capture-bar > span:last-child { justify-self: end; color: #71839a; }
.capture-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
.privacy-chip {
  position: absolute;
  border: 1px solid #324963;
  border-radius: 999px;
  background: #12253c;
  box-shadow: 0 14px 30px rgb(0 0 0 / 28%);
  padding: 9px 13px;
  color: #c5d7ec;
  font-size: 12px;
  font-weight: 700;
}
.chip-top { top: 20px; right: -18px; }
.chip-bottom { bottom: 16px; left: -18px; }

.trust-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px max(24px, calc((100vw - 1240px) / 2));
  background: var(--blue);
  color: #fff;
}
.trust-band p { margin: 0; font-weight: 700; }
.platform-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.platform-list span { border: 1px solid rgb(255 255 255 / 35%); border-radius: 999px; padding: 6px 11px; font-size: 14px; }

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(88px, 12vw, 150px) 0;
}
.section-intro { display: grid; grid-template-columns: minmax(0, .65fr) minmax(300px, .35fr); gap: 36px 80px; align-items: end; }
.section-label { margin: 0 0 16px; color: var(--blue); font-size: 14px; font-weight: 700; }
.section h2, .closing h2 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(2.45rem, 5vw, 4.65rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.02;
  text-wrap: balance;
}
.section-intro > p:last-child { margin: 0; color: var(--ink-soft); font-size: 19px; text-wrap: pretty; }
.steps { margin: 70px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.steps li {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 26px;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.step-number { color: var(--blue); font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums; }
.steps h3 { margin: 0 0 6px; font-size: 24px; line-height: 1.2; }
.steps p { max-width: 660px; margin: 0; color: var(--ink-soft); }

.privacy-story {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(50px, 8vw, 130px);
  padding-inline: max(24px, calc((100vw - 1160px) / 2));
  background: #e8f0ff;
}
.privacy-statement img { margin-bottom: 34px; }
.privacy-details { align-self: end; display: grid; gap: 26px; }
.privacy-details div { border-top: 1px solid #b8c9e5; padding-top: 18px; }
.privacy-details strong { font-size: 20px; }
.privacy-details p { margin: 5px 0 0; color: #3a4e6a; }
.text-link { justify-self: start; color: #1746a2; font-weight: 700; text-underline-offset: 4px; }

.section-intro.compact { display: block; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; margin-top: 68px; }
.principle-grid article { border-top: 2px solid var(--ink); padding-top: 22px; }
.principle-grid article > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; }
.principle-grid h3 { margin: 28px 0 10px; font-size: 23px; line-height: 1.2; }
.principle-grid p { margin: 0; color: var(--ink-soft); }

.closing {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto 40px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  border-radius: var(--radius-large);
  background: var(--blue);
  padding: clamp(38px, 6vw, 72px);
  color: #fff;
}
.closing h2 { max-width: 780px; font-size: clamp(2.3rem, 4vw, 4rem); }
.closing .section-label { color: #d7e5ff; }
.closing .button { flex: none; }

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px 40px;
  padding: 56px max(24px, calc((100vw - 1240px) / 2));
  background: var(--navy);
  color: #aebed1;
  font-size: 14px;
}
.site-footer p { margin: 0; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.site-footer a { color: #dce7f5; text-underline-offset: 4px; }
.copyright { grid-column: 1 / -1; border-top: 1px solid #21334a; padding-top: 22px; }

/* Privacy pages */
.privacy-page { background: var(--paper); }
.privacy-header {
  background: var(--navy);
  color: #fff;
}
.privacy-header .site-header { position: relative; left: auto; transform: none; }
.privacy-hero {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 90px;
}
.privacy-hero h1 { margin: 0; max-width: 780px; font-size: clamp(3rem, 7vw, 5.8rem); line-height: .98; letter-spacing: -.04em; font-weight: 600; }
.privacy-hero > p { max-width: 650px; margin: 24px 0 0; color: #b9c7da; font-size: 20px; }
.language-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.language-nav a { border: 1px solid #344861; border-radius: 999px; padding: 7px 12px; color: #cbd5e1; text-decoration: none; font-size: 14px; font-weight: 700; }
.language-nav a[aria-current="page"] { background: #fff; border-color: #fff; color: var(--navy); }
.policy-shell {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px minmax(0, 720px);
  justify-content: space-between;
  gap: 70px;
  padding: 78px 0 120px;
}
.policy-toc { position: sticky; top: 28px; align-self: start; }
.policy-toc strong { display: block; margin-bottom: 14px; font-size: 14px; }
.policy-toc nav { display: grid; gap: 8px; }
.policy-toc a { color: #53647a; font-size: 14px; text-decoration: none; }
.policy-toc a:hover { color: var(--blue); text-decoration: underline; }
.policy-content { min-width: 0; }
.policy-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0 0 54px; color: #5b6b80; font-size: 14px; }
.policy-section { scroll-margin-top: 24px; border-top: 1px solid var(--line); padding: 42px 0; }
.policy-section:first-of-type { border-top: 0; padding-top: 0; }
.policy-section h2 { margin: 0 0 18px; font-size: clamp(1.85rem, 3vw, 2.45rem); letter-spacing: -.025em; line-height: 1.1; }
.policy-section p, .policy-section li { color: #304157; }
.policy-section p { margin: 0 0 16px; }
.policy-section ul { padding-left: 22px; }
.policy-section li + li { margin-top: 8px; }
.policy-section code { overflow-wrap: anywhere; border-radius: 6px; background: #e8eef6; padding: 2px 5px; color: #13233a; font-size: .9em; }
.policy-note { border: 1px solid #b7cbed; border-radius: var(--radius-small); background: var(--blue-soft); padding: 18px 20px; }
.policy-note p:last-child { margin-bottom: 0; }

@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgb(85 214 165 / 35%); } 50% { box-shadow: 0 0 0 8px rgb(85 214 165 / 0%); } }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 132px; }
  .hero-copy { max-width: 760px; }
  .product-scene { width: min(760px, 100%); justify-self: center; }
  .section-intro { grid-template-columns: 1fr; }
  .privacy-story { grid-template-columns: 1fr; }
  .privacy-details { max-width: 720px; }
  .principle-grid { grid-template-columns: 1fr; gap: 32px; }
  .closing { align-items: flex-start; flex-direction: column; }
  .policy-shell { grid-template-columns: 1fr; gap: 34px; }
  .policy-toc { position: static; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .policy-toc nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-header { width: calc(100% - 28px); min-height: 76px; }
  .brand-link img { width: 146px; }
  .main-nav a:not(.nav-cta) { display: none; }
  .main-nav .nav-cta { padding: 7px 10px; font-size: 13px; }
  .hero { padding-inline: 18px; padding-bottom: 64px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .hero-proof { display: grid; }
  .product-scene { padding: 34px 0; }
  .meeting-window { transform: none; border-radius: 18px; }
  .window-bar { grid-template-columns: 1fr auto; }
  .window-title { display: none; }
  .meeting-body { min-height: 300px; grid-template-columns: 34px 1fr; padding: 26px 18px; }
  .speaker { width: 34px; height: 34px; }
  .caption { max-width: 100%; padding: 11px 12px; }
  .caption p { font-size: 13px; }
  .caption-two { margin-left: 0; }
  .capture-bar { grid-template-columns: auto 1fr; padding: 0 14px; }
  .capture-bar > span:last-child { display: none; }
  .privacy-chip { display: none; }
  .trust-band { align-items: flex-start; flex-direction: column; }
  .platform-list { justify-content: flex-start; }
  .section { width: min(100% - 32px, 1160px); }
  .section h2, .closing h2 { font-size: clamp(2.3rem, 12vw, 3.6rem); }
  .steps li { grid-template-columns: 48px minmax(0, 1fr); gap: 14px; }
  .privacy-story { padding-inline: 18px; }
  .closing { width: calc(100% - 28px); margin-bottom: 14px; border-radius: 24px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
  .copyright { grid-column: auto; }
  .privacy-header .site-header { margin: 0 auto; }
  .privacy-hero { width: calc(100% - 32px); padding: 64px 0 72px; }
  .privacy-hero h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .policy-shell { width: calc(100% - 32px); padding-top: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
