:root {
  color-scheme: light;
  --ink: #082457;
  --ink-strong: #041a42;
  --text: #334565;
  --muted: #66748d;
  --blue: #1769ff;
  --blue-dark: #0753dd;
  --blue-soft: #eaf3ff;
  --lavender: #eeeaff;
  --paper: #fffdfb;
  --surface: #ffffff;
  --line: rgba(8, 36, 87, 0.1);
  --shadow-sm: 0 16px 42px rgba(22, 52, 107, 0.09);
  --shadow-lg: 0 38px 100px rgba(25, 62, 135, 0.16);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --content: 1180px;
  --reading: 780px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

section[id],
[id].anchor-target {
  scroll-margin-top: calc(var(--header-height) + 40px);
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at 80% 8%, rgba(199, 220, 255, 0.38), transparent 28rem),
    linear-gradient(180deg, #fffdfa 0%, #f7f9ff 44%, #fff 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(23, 105, 255, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.reading-width {
  width: min(calc(100% - 40px), var(--reading));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 251, 0.76);
  backdrop-filter: blur(24px) saturate(165%);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 253, 251, 0.93);
  box-shadow: 0 10px 30px rgba(18, 48, 101, 0.05);
}

.nav {
  position: relative;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(22, 105, 255, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links > a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--text);
  font-size: 15px;
  font-weight: 620;
  transition: color 150ms ease, background 150ms ease;
}

.nav-links > a:hover {
  background: rgba(23, 105, 255, 0.07);
  color: var(--ink);
}

.nav-links .nav-cta {
  margin-left: 6px;
  padding: 10px 17px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(8, 36, 87, 0.16);
}

.nav-links .nav-cta:hover {
  background: var(--blue-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

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

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #8d6eff);
  box-shadow: 0 0 0 6px rgba(23, 105, 255, 0.09);
  content: "";
}

.hero {
  min-height: calc(100svh - var(--header-height));
  padding: 76px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.8fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 790;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero-lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--text);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
  letter-spacing: -0.014em;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 720;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 18px 36px rgba(23, 105, 255, 0.24);
}

.button-primary:hover {
  box-shadow: 0 22px 46px rgba(23, 105, 255, 0.3);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(8, 36, 87, 0.06);
}

.button-secondary:hover {
  background: #fff;
}

.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  overflow: clip;
  min-height: 690px;
  display: grid;
  place-items: center;
}

.hero-halo {
  position: absolute;
  inset: 8% -8% 5%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50% 44% 48% 42%;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(145deg, #dceaff 0%, #f2ecff 58%, #e9f7ff 100%);
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(74vw, 340px);
  padding: 10px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 55px;
  background: linear-gradient(145deg, #101116, #2b2d33 45%, #090a0d);
  box-shadow:
    0 46px 90px rgba(9, 31, 78, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.26);
  transform: rotate(2.5deg);
}

.phone::after {
  position: absolute;
  top: 18%;
  right: -4px;
  width: 4px;
  height: 82px;
  border-radius: 0 4px 4px 0;
  background: #17181c;
  content: "";
}

.phone img {
  width: 100%;
  border-radius: 45px;
}

.float-card {
  position: absolute;
  z-index: 3;
  width: 190px;
  padding: 16px 17px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 54px rgba(27, 64, 129, 0.17);
  color: var(--ink);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.float-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.float-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.float-card-one {
  top: 16%;
  left: -1%;
  transform: rotate(-4deg);
}

.float-card-two {
  right: -6%;
  bottom: 19%;
  transform: rotate(3deg);
}

.trust-bar {
  margin-top: -12px;
  padding-bottom: 82px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.trust-item {
  min-height: 116px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.trust-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 17px;
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding: 100px 0;
}

.section-soft {
  border-block: 1px solid rgba(8, 36, 87, 0.07);
  background: rgba(238, 244, 255, 0.52);
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 16px;
}

.section-heading h2,
.closing-cta h2,
.support-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 770;
  letter-spacing: -0.048em;
  line-height: 1.04;
}

.section-heading p {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.6;
}

.section-heading.centered p {
  margin-inline: auto;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 36, 87, 0.08);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.feature-card.large {
  grid-column: span 7;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: center;
  padding-right: 22px;
}

.feature-card.small {
  grid-column: span 5;
  min-height: 760px;
  display: flex;
  flex-direction: column;
}

.feature-card.wide {
  grid-column: 1 / -1;
  min-height: 510px;
}

.feature-copy {
  position: relative;
  z-index: 3;
  padding: clamp(28px, 4vw, 48px);
}

.feature-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-copy h3 {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.feature-copy p {
  max-width: 540px;
  margin: 16px 0 0;
  color: var(--text);
  font-size: 17px;
}

.feature-card.visual-blue {
  background:
    radial-gradient(circle at 80% 70%, rgba(114, 167, 255, 0.45), transparent 28rem),
    linear-gradient(155deg, #fdfefe 0%, #edf5ff 100%);
}

.feature-card.visual-lavender {
  background:
    radial-gradient(circle at 18% 80%, rgba(178, 155, 255, 0.28), transparent 23rem),
    linear-gradient(150deg, #fff 0%, #f5f1ff 100%);
}

.feature-card.visual-mint {
  background:
    radial-gradient(circle at 80% 80%, rgba(97, 213, 203, 0.22), transparent 24rem),
    linear-gradient(155deg, #fff 0%, #effcf9 100%);
}

.feature-phone {
  position: relative;
  right: auto;
  bottom: auto;
  width: 224px;
  flex: 0 0 auto;
  margin: 0 auto 30px;
  padding: 8px;
  border-radius: 43px;
  background: #101116;
  box-shadow: 0 34px 70px rgba(16, 44, 98, 0.22);
  transform: rotate(2deg);
}

.feature-phone.left {
  right: auto;
  left: auto;
  transform: rotate(-2deg);
}

.feature-phone img {
  border-radius: 36px;
}

.feature-card.large .feature-copy {
  padding-right: 20px;
}

.feature-card.large .feature-phone {
  width: 220px;
  margin: 28px auto;
}

.feature-card.small .feature-copy {
  padding-bottom: 22px;
}

.feature-card.small .feature-phone {
  margin-top: auto;
}

.feature-card.wide .feature-copy {
  width: 44%;
  padding-block: 74px;
}

.desktop-frame {
  position: absolute;
  right: -4%;
  bottom: 8%;
  width: 60%;
  padding: 12px 12px 24px;
  border-radius: 22px;
  background: linear-gradient(145deg, #1e2025, #050607);
  box-shadow: 0 38px 74px rgba(13, 33, 72, 0.22);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

.desktop-frame::after {
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -12px;
  height: 14px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #5d6068, #1f2024);
  content: "";
}

.desktop-frame img {
  border-radius: 12px;
}

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

.workflow-step {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 780;
}

.workflow-step h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 23px;
  letter-spacing: -0.025em;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.platform-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 44px;
  min-height: 660px;
  padding: 54px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 75% 10%, rgba(255, 255, 255, 0.96), transparent 26rem),
    linear-gradient(135deg, #e5efff, #f3edff 54%, #edf9ff);
  box-shadow: var(--shadow-lg);
}

.platform-copy {
  position: relative;
  z-index: 4;
  max-width: 550px;
}

.platform-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 4.4vw, 58px);
  letter-spacing: -0.05em;
  line-height: 1.01;
}

.platform-copy p {
  max-width: 470px;
  margin: 20px 0 0;
  font-size: 18px;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.platform-tags span {
  padding: 8px 13px;
  border: 1px solid rgba(8, 36, 87, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-size: 14px;
  font-weight: 680;
}

.platform-device {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 12px;
  border-radius: 24px;
  background: #16171b;
  box-shadow: 0 34px 80px rgba(16, 44, 98, 0.28);
  transform: perspective(1500px) rotateY(-5deg) rotateX(2deg);
}

.platform-device img {
  border-radius: 13px;
}

.privacy-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(42px, 8vw, 100px);
}

.privacy-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  border-radius: 44px;
  background: linear-gradient(145deg, #eef7ff, #f5f0ff);
}

.privacy-visual .phone {
  width: 300px;
  transform: rotate(-2deg);
}

.privacy-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 5vw, 62px);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.privacy-copy > p {
  margin: 22px 0 0;
  font-size: 19px;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  align-items: start;
}

.check-list li::before {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 850;
  content: "✓";
}

.check-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 16px;
}

.check-list span {
  color: var(--muted);
  font-size: 15px;
}

.pricing-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid rgba(8, 36, 87, 0.09);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(146, 190, 255, 0.32), transparent 25rem),
    #fff;
  box-shadow: var(--shadow-sm);
}

.pricing-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4.8vw, 58px);
  letter-spacing: -0.048em;
  line-height: 1.05;
}

.pricing-card p {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: 18px;
}

.pricing-facts {
  min-width: 280px;
  padding: 24px;
  border-radius: 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.pricing-facts strong {
  display: block;
  color: #fff;
  font-size: 29px;
  line-height: 1.15;
}

.pricing-facts span {
  display: block;
  margin-top: 7px;
  font-size: 14px;
}

.pricing-facts small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 710;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 19px;
  line-height: 1;
  transform: translateY(-50%);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-answer {
  max-width: 760px;
  padding: 0 52px 26px 0;
  color: var(--text);
}

.faq-answer p {
  margin: 0;
}

.closing-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 82px);
  border-radius: 46px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  box-shadow: 0 32px 80px rgba(8, 36, 87, 0.24);
}

.closing-cta::after {
  position: absolute;
  top: -45%;
  right: -10%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 159, 255, 0.65), transparent 68%);
  content: "";
}

.closing-cta > * {
  position: relative;
  z-index: 2;
}

.closing-cta h2 {
  max-width: 760px;
  color: #fff;
}

.closing-cta p {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 19px;
}

.closing-cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: none;
}

.site-footer {
  margin-top: 100px;
  padding: 54px 0 34px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 44px;
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-column h2 {
  margin: 4px 0 14px;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--blue-dark);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.page-hero {
  padding: 92px 0 76px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(46px, 6vw, 74px);
}

.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: 20px;
}

.page-hero-compact {
  padding-bottom: 50px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
}

.support-card {
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.support-card.primary {
  background:
    radial-gradient(circle at 95% 5%, rgba(111, 167, 255, 0.34), transparent 18rem),
    linear-gradient(150deg, #fff, #edf5ff);
}

.support-card h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.support-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  letter-spacing: -0.03em;
}

.support-card p {
  margin: 16px 0 0;
}

.support-card .button {
  margin-top: 24px;
}

.support-meta {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.support-meta span {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

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

.topic-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
}

.topic-card .topic-number {
  display: block;
  margin-bottom: 30px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 780;
}

.topic-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  letter-spacing: -0.025em;
}

.topic-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.resource-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.resource-link {
  min-height: 138px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.resource-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.resource-link span {
  color: var(--blue-dark);
  font-size: 14px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 66px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  min-width: 0;
  top: calc(var(--header-height) + 28px);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.legal-nav strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 14px;
}

.legal-nav a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.legal-nav a:hover {
  color: var(--blue-dark);
}

.legal-document {
  max-width: 820px;
  min-width: 0;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legal-document .legal-intro {
  margin: 0 0 34px;
  padding: 22px 24px;
  border-radius: 20px;
  background: var(--blue-soft);
  color: var(--ink);
}

.legal-document h2 {
  margin: 46px 0 13px;
  color: var(--ink);
  font-size: 27px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.legal-document h2:first-of-type {
  margin-top: 0;
}

.legal-document h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 19px;
}

.legal-document p,
.legal-document li {
  color: #40506c;
  font-size: 16px;
  line-height: 1.72;
}

.legal-document p {
  margin: 0 0 14px;
}

.legal-document ul {
  margin: 10px 0 18px;
  padding-left: 22px;
}

.legal-document li {
  margin-bottom: 8px;
}

.legal-document a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-decoration-color: rgba(7, 83, 221, 0.25);
  text-underline-offset: 3px;
}

.legal-document address {
  font-style: normal;
}

.legal-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 34px;
}

.legal-summary div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfcff;
}

.legal-summary strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 14px;
}

.legal-summary span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.legal-note {
  margin-top: 30px;
  padding: 20px 22px;
  border-left: 4px solid var(--blue);
  border-radius: 0 18px 18px 0;
  background: #f5f8ff;
}

.legal-date {
  margin-top: 46px !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 13px !important;
}

.not-found {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  place-items: center;
  padding: 70px 0;
  text-align: center;
}

.not-found-card {
  width: 100%;
  min-width: 0;
  max-width: 720px;
  padding: clamp(36px, 7vw, 74px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.not-found-code {
  color: var(--blue);
  font-size: 15px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.not-found h1 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 72px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.not-found p {
  margin: 20px auto 0;
  max-width: 520px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links > a {
    padding: 13px 15px;
  }

  .nav-links .nav-cta {
    margin: 3px 0 0;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
    text-align: center;
  }

  .hero-lede,
  .hero-actions {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 650px;
  }

  .float-card-one {
    left: 10%;
  }

  .float-card-two {
    right: 8%;
  }

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

  .feature-card.large,
  .feature-card.small {
    grid-column: span 6;
  }

  .feature-card.wide .feature-copy {
    width: 50%;
  }

  .platform-showcase {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: 0;
  }

  .platform-device {
    width: 100%;
  }

  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .privacy-copy {
    order: -1;
  }

  .pricing-card {
    grid-template-columns: 1fr;
  }

  .pricing-facts {
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }

  .footer-column:last-child {
    grid-column: 2;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-nav {
    position: static;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px;
  }

  .legal-nav strong {
    display: none;
  }

  .legal-nav a {
    min-width: max-content;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--blue-soft);
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

  body {
    font-size: 16px;
  }

  .container,
  .reading-width {
    width: min(calc(100% - 28px), var(--content));
  }

  .nav {
    min-height: var(--header-height);
  }

  .brand {
    font-size: 15px;
  }

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

  .hero {
    min-height: auto;
    padding: 50px 0 70px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 570px;
  }

  .hero-halo {
    inset: 7% -12% 2%;
  }

  .phone {
    width: min(78vw, 300px);
    border-radius: 49px;
  }

  .phone img {
    border-radius: 40px;
  }

  .float-card {
    width: 154px;
    padding: 13px;
  }

  .float-card-one {
    top: 12%;
    left: 0;
  }

  .float-card-two {
    right: 0;
    bottom: 13%;
  }

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

  .trust-item {
    min-height: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .closing-cta h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .section-heading p {
    font-size: 17px;
  }

  .feature-grid {
    display: block;
  }

  .feature-card {
    min-height: auto;
    margin-top: 18px;
    border-radius: 30px;
  }

  .feature-card:first-child {
    margin-top: 0;
  }

  .feature-copy {
    padding: 30px;
  }

  .feature-copy h3 {
    font-size: 34px;
  }

  .feature-phone,
  .feature-phone.left {
    right: auto;
    left: auto;
    bottom: auto;
    width: min(62vw, 224px);
    margin: 0 auto 28px;
    transform: rotate(1.5deg);
  }

  .feature-card.large,
  .feature-card.small {
    display: flex;
    min-height: 720px;
    padding-right: 0;
    flex-direction: column;
  }

  .feature-card.large .feature-phone,
  .feature-card.small .feature-phone {
    width: min(62vw, 224px);
    margin: auto auto 28px;
  }

  .feature-card.wide {
    min-height: 630px;
  }

  .feature-card.wide .feature-copy {
    width: 100%;
    padding: 34px 30px;
  }

  .desktop-frame {
    right: 5%;
    bottom: 9%;
    width: 90%;
    transform: none;
  }

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

  .workflow-step {
    padding: 25px;
  }

  .step-number {
    margin-bottom: 22px;
  }

  .platform-showcase {
    min-height: 0;
    padding: 34px 28px;
    border-radius: 32px;
  }

  .platform-copy h2 {
    font-size: 40px;
  }

  .platform-device {
    width: 100%;
    transform: none;
  }

  .privacy-visual {
    min-height: 560px;
    border-radius: 32px;
  }

  .privacy-visual .phone {
    width: 270px;
  }

  .pricing-card {
    padding: 30px;
    border-radius: 30px;
  }

  .faq-list summary {
    padding-block: 22px;
    font-size: 18px;
  }

  .closing-cta {
    padding: 38px 28px;
    border-radius: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    padding: 64px 0 46px;
  }

  .page-hero p {
    font-size: 17px;
  }

  .support-grid,
  .topic-grid,
  .resource-links {
    grid-template-columns: 1fr;
  }

  .support-card {
    border-radius: 30px;
  }

  .legal-document {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .legal-summary {
    grid-template-columns: 1fr;
  }

  .not-found-card {
    border-radius: 30px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
