:root {
  --bg: #f7f8fc;
  --surface: #ffffff;
  --surface-soft: #f0efff;
  --ink: #121426;
  --muted: #62677f;
  --line: #dedff0;
  --purple: #6c5cff;
  --purple-dark: #4f34ee;
  --navy: #14102c;
  --navy-2: #201653;
  --cyan: #23b7d9;
  --coral: #ff5577;
  --green: #0a9f68;
  --white: #ffffff;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(20, 16, 44, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--purple-dark);
  border-radius: var(--radius);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  color: var(--white);
  background: rgba(20, 16, 44, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 15px;
  font-weight: 800;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a,
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.nav-cta {
  padding: 0 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 30px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(108, 92, 255, 0.16), transparent 36%),
    linear-gradient(180deg, var(--navy), #110d28 74%, #1b1248);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000, transparent 75%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #bcb6ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.tagline {
  margin: 16px 0 0;
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 750;
  line-height: 1.15;
}

.lead {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 14px 32px rgba(79, 52, 238, 0.32);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.trust-row span {
  padding: 7px 10px;
  color: #d5d2ff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.hero-media,
.product-shot,
.wide-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media {
  transform: perspective(1200px) rotateY(-2deg);
}

.hero-media img,
.product-shot img,
.wide-shot img {
  width: 100%;
  height: auto;
}

.fact-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.fact-strip div {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.fact-strip div:last-child {
  border-right: 0;
}

.fact-strip strong {
  font-size: 23px;
}

.fact-strip span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.25;
}

.section {
  padding: 66px 0;
  scroll-margin-top: 78px;
}

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

.section-heading h2,
.feature-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child,
.feature-copy > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.mode-card,
.feature-grid article,
.privacy-points article {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(20, 16, 44, 0.05);
}

.mode-card span {
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mode-card h3,
.feature-grid h3 {
  margin: 26px 0 8px;
  font-size: 18px;
}

.mode-card p,
.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: 48px;
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse .product-shot {
  order: 1;
}

.dark-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.dark-band .feature-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.4;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #9d94ff;
  border-bottom: 2px solid #9d94ff;
  transform: rotate(-45deg);
}

.control-section,
.privacy-section {
  background: var(--surface);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.mini-grid span {
  padding: 10px 12px;
  color: #443b80;
  background: var(--surface-soft);
  border: 1px solid #dbd7ff;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 750;
}

.editor-section {
  background: linear-gradient(180deg, #f1efff, var(--bg));
}

.wide-shot {
  border-color: var(--line);
}

.export-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.export-row span {
  padding: 8px 12px;
  color: #443b80;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.privacy-points {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.privacy-points article {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 12px;
  padding: 13px;
}

.privacy-points strong {
  font-size: 13px;
}

.privacy-points span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--purple-dark);
  font-size: 14px;
  font-weight: 850;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
}

.all-features {
  background: #eeeff6;
}

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

.feature-grid article {
  min-height: 166px;
}

.feature-grid h3 {
  margin-top: 0;
}

.promo-section {
  padding: 54px 0;
  background: var(--navy);
}

.promo-section img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.66);
  background: #0d0a1d;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.policy-back {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 750;
}

.policy-back:hover,
.policy-back:focus-visible {
  color: var(--white);
}

.policy-main {
  min-height: 70vh;
}

.policy-hero {
  padding: 58px 0 54px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(108, 92, 255, 0.24), transparent 46%),
    linear-gradient(180deg, var(--navy), #1b1248);
}

.policy-hero-inner {
  max-width: 860px;
}

.policy-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.policy-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.6;
}

.policy-updated {
  display: block;
  margin-top: 18px;
  color: #c7c2ff;
  font-size: 12px;
  font-weight: 750;
}

.policy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center;
  align-items: start;
  gap: 34px;
  padding-top: 54px;
  padding-bottom: 70px;
}

.policy-summary {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--surface-soft);
  border: 1px solid #d8d5ff;
  border-radius: var(--radius);
}

.policy-summary strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.policy-summary span {
  position: relative;
  padding-left: 18px;
  color: #514d6b;
  font-size: 12px;
  line-height: 1.4;
}

.policy-summary span::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 5px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.policy-content {
  padding: 8px 32px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.policy-content section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.policy-content section:last-child {
  border-bottom: 0;
}

.policy-content h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.policy-content p {
  margin: 0;
}

.policy-content ul {
  margin: 0;
  padding-left: 20px;
}

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

.policy-content strong {
  color: var(--ink);
}

.policy-content a {
  color: var(--purple-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand img {
  width: 30px;
  height: 30px;
}

.footer-inner p {
  margin: 0 auto 0 0;
  font-size: 12px;
}

.footer-inner > div {
  display: flex;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
}

.reveal {
  opacity: 1;
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.motion-ready .reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-row {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    transform: none;
  }

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

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .product-shot {
    order: initial;
  }

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

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

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: auto;
    padding: 9px 0;
    flex-wrap: wrap;
  }

  .brand {
    font-size: 13px;
  }

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

  .nav-links {
    order: 3;
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .nav-links a {
    min-height: 34px;
  }

  .nav-cta {
    min-height: 36px;
    padding-inline: 11px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .tagline {
    font-size: 21px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .fact-strip div {
    min-height: 66px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .fact-strip div:nth-child(even) {
    border-right: 0;
  }

  .fact-strip div:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .section {
    padding: 44px 0;
  }

  .section-heading h2,
  .feature-copy h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .mode-grid,
  .feature-grid,
  .check-list,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .mode-card h3 {
    margin-top: 14px;
  }

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-inner p {
    margin: 0;
  }

  .policy-hero {
    padding: 42px 0 38px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 28px;
    padding-bottom: 44px;
  }

  .policy-summary {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-summary strong {
    grid-column: 1 / -1;
  }

  .policy-content {
    padding: 2px 20px 16px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
