:root {
  --accent: #1479e9;
  --accent-deep: #07184f;
  --accent-soft: #edf5ff;
  --text: #08164f;
  --text-soft: #5f6885;
  --border: #dfe5ef;
  --background: #f7f8fb;
  --surface: #ffffff;
  --cream: #f0f4fb;
  --display: "Manrope", system-ui, sans-serif;
  --sans: "Manrope", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --max-width: 1200px;
  --radius-small: 12px;
  --radius-medium: 24px;
  --radius-large: 36px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--background);
  font-family: var(--sans);
  letter-spacing: -0.025em;
  -webkit-font-smoothing: antialiased;
}

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

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(20, 121, 233, 0.12), transparent 68%);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 180ms ease;
}

.cursor-glow.is-visible {
  opacity: 1;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.055em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.75rem, 7vw, 7rem);
  font-weight: 800;
  line-height: 0.96;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
}

p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: grid;
  width: 100%;
  height: 88px;
  padding-inline: max(24px, calc((100% - var(--max-width)) / 2));
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-radius: 0;
  color: var(--surface);
  background: transparent;
  transform: translateX(-50%);
  transition:
    top 360ms cubic-bezier(0.22, 1, 0.36, 1),
    width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 360ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 360ms cubic-bezier(0.22, 1, 0.36, 1),
    color 260ms ease,
    background 360ms ease,
    box-shadow 360ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  width: min(calc(100% - 32px), var(--max-width));
  height: 64px;
  padding-inline: 18px;
  border-radius: 22px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 50px rgba(8, 22, 79, 0.13);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .brand span {
  color: var(--accent);
}

.site-header.is-scrolled .button-small {
  border-color: var(--accent);
  color: var(--surface);
  background: var(--accent);
}

.brand {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand span {
  color: var(--accent);
}

.site-header .brand span {
  color: #9dcfff;
}

.main-nav {
  display: flex;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 500;
}

.main-nav a,
.text-link,
.hero-link {
  transition: opacity 160ms ease;
}

.main-nav a:hover,
.text-link:hover,
.hero-link:hover {
  opacity: 0.68;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-small);
  align-items: center;
  justify-content: center;
  color: var(--surface);
  background: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  background: var(--accent-deep);
  box-shadow: 0 14px 34px rgba(20, 121, 233, 0.26);
  transform: translate3d(var(--magnetic-x, 0), calc(var(--magnetic-y, 0) - 2px), 0);
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
  border-color: var(--surface);
  color: var(--accent-deep);
  background: var(--surface);
}

.button-small:hover {
  color: var(--surface);
}

.button-light {
  border-color: var(--surface);
  color: var(--accent-deep);
  background: var(--surface);
}

.button-light:hover {
  color: var(--surface);
  background: transparent;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--surface);
  background: #11151d;
  border-radius: 0 0 var(--radius-large) var(--radius-large);
}

.hero-photo {
  --pointer-x: 0px;
  --pointer-y: 0px;
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--pointer-x), var(--pointer-y), 0) scale(1.035);
  transition: transform 120ms linear;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(3, 8, 18, 0.48);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding-top: 190px;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 24px;
  height: 1px;
  margin-right: 12px;
  background: currentColor;
  vertical-align: middle;
  content: "";
}

.eyebrow-light {
  color: #9dcfff;
}

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

.type-in span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.28em);
  animation: type-word-in 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.type-in span:nth-child(1) {
  animation-delay: 120ms;
}

.type-in span:nth-child(2) {
  animation-delay: 200ms;
}

.type-in span:nth-child(3) {
  animation-delay: 280ms;
}

.type-in span:nth-child(4) {
  animation-delay: 360ms;
}

.type-in span:nth-child(5) {
  animation-delay: 440ms;
}

.type-in span:nth-child(6) {
  animation-delay: 520ms;
}

.type-in span:nth-child(7) {
  animation-delay: 600ms;
}

.type-in .type-accent {
  color: #76b9ff;
  font-weight: 800;
}

@keyframes type-word-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.15rem;
}

.hero-actions {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-link {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.trust-line {
  position: relative;
  z-index: 3;
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 32px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.trust-line span::before {
  margin-right: 8px;
  color: #9dcfff;
  content: "✓";
}

.hero-receipt {
  display: none;
  position: absolute;
  top: 166px;
  right: max(5vw, calc((100vw - var(--max-width)) / 2));
  z-index: 4;
  width: 320px;
  padding: 28px 28px 22px;
  border: 1px solid rgba(8, 22, 79, 0.08);
  border-radius: 24px;
  color: var(--text);
  background: #fffef9;
  box-shadow:
    0 30px 70px rgba(4, 14, 52, 0.24),
    0 4px 16px rgba(4, 14, 52, 0.08);
  transform: rotate(1.5deg);
}

.hero-receipt::after {
  content: none;
}

.receipt-topline,
.receipt-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.receipt-brand,
.receipt-caption {
  display: block;
  text-align: center;
}

.receipt-brand {
  margin-top: 30px;
  font-size: 1.3rem;
  letter-spacing: -0.05em;
}

.receipt-caption {
  margin: 10px 0 24px;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.receipt-row,
.receipt-total {
  display: flex;
  padding: 10px 0;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
}

.receipt-row strong,
.receipt-total strong {
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
}

.receipt-minus span::before {
  margin-right: 5px;
  content: "−";
}

.receipt-total {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 2px solid var(--text);
  align-items: baseline;
  color: var(--accent-deep);
  font-weight: 800;
  text-transform: uppercase;
}

.receipt-total strong {
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.receipt-meta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-size: 0.5rem;
}

.receipt-barcode {
  width: 72%;
  height: 28px;
  margin: 18px auto 0;
  background: repeating-linear-gradient(
    90deg,
    var(--text) 0 2px,
    transparent 2px 4px,
    var(--text) 4px 5px,
    transparent 5px 8px
  );
}

.founder-note {
  display: flex;
  min-height: 96px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-soft);
  background: var(--surface);
  font-size: 0.86rem;
  font-style: italic;
}

.founder-note span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.section {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 120px 0;
}

.section-wide {
  width: min(calc(100% - 48px), 1360px);
  margin: 0 auto;
}

.life-scene {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--accent-deep);
}

.life-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.life-scene:hover .life-photo {
  transform: scale(1.025);
}

.life-copy {
  position: relative;
  z-index: 4;
  width: min(44%, 560px);
  margin: 64px;
  padding: 56px;
  border-radius: var(--radius-medium);
  color: var(--surface);
  background: rgba(7, 24, 79, 0.8);
  box-shadow: 0 28px 70px rgba(7, 24, 79, 0.24);
  backdrop-filter: blur(14px);
}

.life-copy h2 {
  max-width: 620px;
}

.life-copy p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.72);
}

.problem {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 96px;
}

.problem-intro p:not(.eyebrow) {
  max-width: 560px;
}

.problem-list article {
  display: grid;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  grid-template-columns: 44px 0.7fr 1.3fr;
  gap: 24px;
}

.problem-list article:last-child {
  border-bottom: 1px solid var(--border);
}

.problem-list article > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.problem-list h3,
.problem-list p {
  margin: 0;
}

.problem-list h3 {
  font-size: 1.3rem;
}

.problem-list p {
  font-size: 0.9rem;
}

.arrow-link {
  display: inline-block;
  margin-top: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.arrow-link::after {
  margin-left: 12px;
  content: "→";
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin-inline: auto;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.product-proof {
  padding-top: 144px;
}

.product-stage {
  position: relative;
  display: grid;
  min-height: 620px;
  margin-top: 24px;
  grid-template-columns: 88px 1fr;
  overflow: visible;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: 0 32px 80px rgba(8, 22, 79, 0.12);
  transform:
    perspective(1200px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
  transform-style: preserve-3d;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-stage:hover {
  box-shadow: 0 42px 100px rgba(8, 22, 79, 0.18);
}

.product-sidebar {
  display: flex;
  padding: 28px 0;
  border-right: 1px solid var(--border);
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: var(--accent-deep);
  border-radius: var(--radius-large) 0 0 var(--radius-large);
}

.sidebar-logo {
  margin-bottom: 48px;
  color: var(--surface);
  font-family: var(--display);
  font-size: 1.6rem;
}

.sidebar-dot {
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 7px;
}

.sidebar-dot.active {
  border-color: var(--surface);
  background: var(--surface);
}

.product-main {
  padding: 48px;
}

.product-topline {
  display: flex;
  margin-bottom: 40px;
  justify-content: space-between;
}

.product-topline h3 {
  margin: 4px 0 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.product-kicker {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.period-chip {
  height: fit-content;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.money-summary {
  display: grid;
  padding: 32px;
  grid-template-columns: 1fr auto 1fr auto 1.15fr;
  align-items: center;
  gap: 20px;
  background: var(--accent-soft);
  border-radius: var(--radius-medium);
}

.money-summary div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.money-summary span {
  color: var(--text-soft);
  font-size: 0.78rem;
}

.money-summary strong {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.05em;
}

.money-summary i {
  color: var(--text-soft);
  font-family: var(--display);
}

.money-summary .money-result strong {
  display: inline-block;
  color: var(--accent);
}

.product-bottom {
  display: grid;
  margin-top: 24px;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.task-list,
.mini-chart {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.dashboard-task {
  display: flex;
  width: 100%;
  margin-top: 20px;
  padding: 6px 8px;
  border: 0;
  border-radius: 12px;
  align-items: center;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-size: 0.88rem;
  text-align: left;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

button.dashboard-task {
  cursor: pointer;
}

button.dashboard-task:hover {
  color: var(--accent);
  background: var(--accent-soft);
  transform: translateX(3px);
}

button.dashboard-task:focus-visible {
  outline: 3px solid rgba(20, 121, 233, 0.28);
  outline-offset: 2px;
}

.dashboard-task.is-complete {
  color: var(--text-soft);
}

.dashboard-task.is-complete .dashboard-task-label {
  text-decoration: line-through;
  text-decoration-color: rgba(95, 104, 133, 0.5);
}

.dashboard-task.is-complete .task-open {
  border-color: var(--accent);
  color: var(--surface);
  background: var(--accent);
}

.dashboard-task.is-complete .task-open::after {
  content: "✓";
}

.dashboard-feedback {
  min-height: 20px;
  margin: 18px 8px 0;
  color: var(--text-soft);
  font-size: 0.75rem;
  line-height: 1.45;
  transition: color 180ms ease;
}

.dashboard-feedback.is-success {
  color: var(--accent);
}

.task-check,
.task-open {
  display: inline-flex;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border: 1px solid var(--border);
  border-radius: 7px;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  background: var(--accent);
}

.task-open {
  vertical-align: middle;
  background: transparent;
}

.bars {
  display: flex;
  height: 150px;
  align-items: flex-end;
  gap: 12px;
}

.bars span {
  display: block;
  width: 100%;
  height: var(--bar);
  background: var(--accent-soft);
  border-bottom: 3px solid var(--accent);
  transform-origin: bottom;
  transition: height 520ms cubic-bezier(0.22, 1, 0.36, 1), background 180ms ease;
}

.product-stage.is-updating .bars span {
  animation: dashboard-bar-update 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.product-stage.is-updating .money-result strong {
  animation: dashboard-total-update 620ms ease both;
}

.features {
  position: relative;
  padding-top: 160px;
  padding-bottom: 60px;
}

.feature-list {
  width: 74%;
  margin-left: auto;
}

.feature-list article {
  display: grid;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  transition:
    padding 220ms ease,
    background 220ms ease;
}

.feature-list article:hover {
  padding-right: 20px;
  padding-left: 20px;
  border-radius: var(--radius-small);
  background: var(--surface);
}

.feature-list article:last-child {
  border-bottom: 1px solid var(--border);
}

.feature-number {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.74rem;
}

.feature-list h3 {
  margin-bottom: 8px;
}

.feature-list p {
  max-width: 600px;
  margin-bottom: 0;
  font-size: 0.96rem;
}

.feature-arrow {
  color: var(--accent);
  font-size: 1.2rem;
}

.calculation {
  position: relative;
  display: grid;
  min-height: 720px;
  padding: 120px 7vw;
  overflow: hidden;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
  color: var(--surface);
  background: var(--accent-deep);
  border-radius: var(--radius-large);
}

.calculation::before {
  position: absolute;
  top: -200px;
  left: 38%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.calculation-copy {
  position: relative;
  z-index: 3;
}

.calculation-copy p:not(.eyebrow) {
  max-width: 530px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.65);
}

.calculation-lines {
  position: relative;
  z-index: 2;
  padding: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.calculation-lines div {
  display: flex;
  padding: 16px 0;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.68);
}

.calculation-lines strong {
  color: var(--surface);
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
}

.calculation-lines .calculation-result {
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--surface);
}

.calculation-result strong {
  font-size: 2.7rem;
  letter-spacing: -0.06em;
}

.comparison {
  padding-top: 144px;
}

.comparison > h2 {
  max-width: 700px;
}

.comparison-grid {
  display: grid;
  margin-top: 72px;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.comparison-grid article {
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface);
}

.comparison-grid article > span {
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-grid h3 {
  margin: 12px 0 32px;
  font-size: 2rem;
}

.comparison-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-grid li {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
}

.comparison-grid li::before {
  display: inline-block;
  width: 24px;
  color: var(--text-soft);
  content: "−";
}

.comparison-positive {
  color: var(--surface);
  background: var(--accent-deep) !important;
}

.comparison-positive article > span,
.comparison-positive > span,
.comparison-positive li {
  color: rgba(255, 255, 255, 0.72);
}

.comparison-positive li {
  border-color: rgba(255, 255, 255, 0.15);
}

.comparison-positive li::before {
  color: #76b9ff;
  content: "✓";
}

.audience-security {
  display: grid;
  padding: 72px;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(8, 22, 79, 0.08);
}

.audience-security h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.audience-list dl {
  margin: 0;
  padding: 0;
}

.audience-list dt {
  padding: 16px 0;
  border-top: 1px solid rgba(8, 22, 79, 0.12);
  font-weight: 700;
}

.audience-list dd {
  margin: 0;
  padding-bottom: 20px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.security-story {
  display: flex;
  padding: 56px;
  border-radius: var(--radius-medium);
  flex-direction: column;
  justify-content: center;
  color: var(--surface);
  background: var(--accent-deep);
}

.security-story .eyebrow {
  color: #9dcfff;
}

.security-story .security-lead {
  max-width: 480px;
  margin-bottom: 20px;
  color: var(--surface);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.45;
}

.security-story > p:not(.eyebrow, .security-lead, .security-signoff) {
  color: rgba(255, 255, 255, 0.7);
}

.security-story .security-signoff {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.security-signoff span {
  margin-inline: 8px;
  color: #76b9ff;
}

.pricing {
  padding-top: 160px;
}

.pricing-title > span {
  display: block;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 20px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 650px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  flex-direction: column;
  background: var(--surface);
}

.price-card > span:first-child:not(.plan-badge) {
  font-size: 1.3rem;
  font-weight: 800;
}

.price-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.price-card > p {
  min-height: 52px;
  font-size: 0.9rem;
}

.price {
  margin: 22px 0 28px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 4.7rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.price sup {
  margin-right: 6px;
  font-size: 1.1rem;
  vertical-align: top;
}

.price small {
  margin-left: 8px;
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.plan-limits {
  flex-grow: 1;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 2;
}

.plan-limits strong {
  display: inline-block;
  min-width: 48px;
  color: var(--accent-deep);
  font-size: 1.8rem;
}

.price-card ul {
  min-height: 170px;
  margin: 24px 0 36px;
  padding: 0;
  list-style: none;
}

.price-card li {
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.price-card li::before {
  margin-right: 10px;
  color: var(--accent);
  content: "✓";
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.price-button-secondary,
.price-button-secondary:visited {
  border-color: var(--border);
  color: var(--text) !important;
  background: var(--accent-soft);
  -webkit-text-fill-color: var(--text);
}

.price-button-secondary span {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: inherit;
  opacity: 1;
  visibility: visible;
}

.price-card .button.price-button-secondary:hover,
.price-card .button.price-button-secondary:focus-visible {
  color: #ffffff !important;
  background: var(--accent-deep);
  -webkit-text-fill-color: #ffffff;
}

.price-card .button.price-button-secondary:hover span,
.price-card .button.price-button-secondary:focus-visible span {
  color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-text-fill-color: #ffffff;
}

.price-card-featured {
  border: 2px solid var(--accent);
  background: #f2f6ff;
  box-shadow: 0 28px 70px rgba(20, 121, 233, 0.16);
}

.price-card-muted {
  background: #eef0f4;
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--surface);
  background: var(--accent-deep);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button-disabled {
  border-color: #cbd1dc;
  color: #7c8498;
  background: #dce0e8;
  pointer-events: none;
}

.pricing-note {
  margin-top: 28px;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.all-plans {
  margin-top: 64px;
  padding: 48px;
  border-radius: var(--radius-medium);
  text-align: center;
  background: var(--accent-soft);
}

.all-plans h3 {
  margin-bottom: 8px;
}

.all-plans > p {
  margin-bottom: 32px;
}

.all-plans ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 32px;
  text-align: left;
  list-style: none;
}

.all-plans li {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.all-plans li::before {
  margin-right: 10px;
  color: var(--accent);
  content: "✓";
}

.faq {
  display: grid;
  padding-top: 160px;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--accent);
  font-size: 1.35rem;
  content: "+";
}

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

.faq-list details p {
  padding: 0 48px 24px 0;
  font-size: 0.94rem;
}

.final-cta {
  position: relative;
  display: flex;
  min-height: 560px;
  margin-top: 80px;
  padding: 104px max(48px, calc((100% - var(--max-width)) / 2));
  overflow: hidden;
  align-items: center;
  color: var(--surface);
  background: var(--accent-deep);
  border-radius: var(--radius-large) var(--radius-large) 0 0;
}

.final-cta > div:first-child {
  position: relative;
  z-index: 4;
  max-width: 720px;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  display: grid;
  padding: 80px max(48px, calc((100% - var(--max-width)) / 2));
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  color: rgba(255, 255, 255, 0.72);
  background: #040e34;
}

.site-footer > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.site-footer strong {
  margin-bottom: 8px;
  color: var(--surface);
}

.site-footer a:not(.brand) {
  font-size: 0.86rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer .foot-biz-inline {
  grid-column: 1 / -1;
  margin: 32px 0 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.site-footer .foot-biz-inline a {
  color: inherit;
  font-size: inherit;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.32);
}

.brand-light {
  color: var(--surface);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 100ms;
}

[data-reveal-delay="2"] {
  transition-delay: 200ms;
}

/* Vrijstaande mascottes, zonder kaart of kader. */
.mascot-asset {
  position: absolute;
  z-index: 5;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 24px 32px rgba(4, 14, 52, 0.2));
}

.mascot-product {
  right: -108px;
  bottom: -138px;
  width: 330px;
  transform: rotate(5deg);
}

.mascot-features {
  position: static;
  display: block;
  width: 310px;
  margin: 48px auto 0;
  inset: auto;
  transform: none;
}

@media (max-width: 1040px) {
  .main-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    padding-top: 160px;
  }

  .hero-photo {
    object-position: 58% center;
  }

  .hero h1,
  .hero-copy {
    max-width: 620px;
  }

  .life-copy {
    width: min(56%, 560px);
    margin: 48px;
    padding: 48px;
  }

  .hero-receipt {
    top: 210px;
    right: 24px;
    width: 276px;
  }

  .problem {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .comparison-grid,
  .audience-security {
    grid-template-columns: 1fr;
  }

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

  .price-card {
    min-height: 580px;
  }

  .product-stage {
    grid-template-columns: 64px 1fr;
  }

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

  .money-summary i {
    display: none;
  }

  .feature-list {
    width: 82%;
  }

  .mascot-features {
    width: 230px;
  }

  .calculation {
    padding-inline: 48px;
    gap: 40px;
  }

}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.5rem, 11.5vw, 3.25rem);
  }

  h2 {
    font-size: clamp(2.05rem, 9.5vw, 2.8rem);
    line-height: 1.06;
  }

  .site-header {
    position: sticky;
    top: 0;
    left: auto;
    width: 100%;
    height: calc(88px + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
    padding-inline: 16px;
    transform: none;
    color: var(--text);
    background: #fff;
    border-bottom: 1px solid rgba(8, 22, 79, 0.1);
    transition: none;
  }

  .site-header .brand span {
    color: var(--accent);
  }

  .site-header .button-small {
    border-color: var(--accent);
    color: var(--surface);
    background: var(--accent);
  }

  .site-header.is-scrolled {
    top: 0;
    width: 100%;
    height: calc(88px + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
    padding-inline: 16px;
    border-radius: 0;
    background: #fff;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(8, 22, 79, 0.1);
    box-shadow: none;
  }

  .header-actions .text-link {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 54px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-line {
    flex-direction: column;
    gap: 8px;
  }

  .hero-receipt {
    display: none;
  }

  .hero-photo {
    object-position: right center;
  }

  .hero-backdrop {
    background: rgba(3, 8, 18, 0.58);
  }

  .life-photo {
    object-position: right center;
  }

  .problem-list article {
    grid-template-columns: 32px 1fr;
  }

  .problem-list article p {
    grid-column: 2;
  }

  .section,
  .section-wide {
    width: calc(100% - 32px);
  }

  .section {
    padding: 88px 0;
  }

  .life-scene {
    min-height: 760px;
  }

  .life-copy {
    position: absolute;
    top: 24px;
    right: 24px;
    bottom: auto;
    left: 24px;
    width: auto;
    margin: 0;
    padding: 32px 24px;
  }

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

  .product-sidebar {
    display: none;
  }

  .product-main {
    padding: 24px;
  }

  .product-topline {
    gap: 16px;
  }

  .product-bottom {
    grid-template-columns: 1fr;
  }

  .mascot-product {
    right: -72px;
    bottom: -146px;
    width: 240px;
    transform: rotate(5deg);
  }

  .features {
    padding-top: 140px;
    padding-bottom: 120px;
  }

  .feature-list {
    width: 100%;
  }

  .feature-list article {
    grid-template-columns: 40px 1fr;
  }

  .feature-arrow {
    display: none;
  }

  .mascot-features {
    margin-top: 48px;
  }

  .calculation {
    width: 100%;
    padding: 88px 24px 220px;
    grid-template-columns: 1fr;
  }

  .calculation-lines {
    padding: 24px 0;
  }

  .comparison-grid,
  .audience-security,
  .pricing-cards,
  .faq {
    grid-template-columns: 1fr;
  }

  .comparison-grid article,
  .audience-security,
  .price-card {
    padding: 32px 24px;
  }

  .audience-security {
    gap: 48px;
  }

  .security-story {
    padding: 40px 24px;
  }

  .security-story .security-lead {
    font-size: 1.12rem;
  }

  .pricing-title {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .pricing-mobile-break {
    display: block;
  }

  .all-plans {
    padding: 32px 24px;
  }

  .all-plans ul {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 5rem;
  }

  .faq {
    gap: 48px;
  }

  .final-cta {
    min-height: 520px;
    padding: 72px 24px;
    align-items: center;
  }

  .site-footer {
    padding: 64px 24px;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .scroll-title .title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.28em);
  }

  .scroll-title.is-title-visible .title-word {
    animation: type-word-in 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--word-index) * 80ms);
  }

  .mascot-asset {
    animation: mascot-float 5.5s ease-in-out infinite;
  }

  .mascot-features {
    animation-delay: -1.7s;
  }

  .mascot-product {
    animation-delay: -3.2s;
  }

  @keyframes mascot-float {
    0%,
    100% {
      translate: 0 0;
    }
    50% {
      translate: 0 -8px;
    }
  }

}

@keyframes dashboard-bar-update {
  0% { opacity: 0.5; transform: scaleY(0.72); }
  100% { opacity: 1; transform: scaleY(1); }
}

@keyframes dashboard-total-update {
  0% { color: var(--accent); transform: translateY(3px) scale(0.96); }
  100% { color: var(--accent); transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-title .title-word {
    opacity: 1;
    transform: none;
  }

  .type-in span {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-photo,
  .life-photo,
  .product-stage,
  .button {
    transition: none;
  }
}
