:root {
  color-scheme: dark;
  --bg: #02050a;
  --bg-blue: #020812;
  --surface: rgba(9, 15, 25, 0.78);
  --line: rgba(113, 145, 189, 0.16);
  --line-strong: rgba(137, 167, 209, 0.26);
  --text: #f4f7fb;
  --muted: #aeb7c5;
  --soft: #858e9d;
  --blue: #5d8cff;
  --blue-bright: #78a1ff;
  --red: #ff5c52;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --shell: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 13%, rgba(27, 59, 115, .12), transparent 24%),
    linear-gradient(180deg, #010307 0%, #020812 52%, #01050a 100%);
  color: var(--text);
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

a { color: inherit; }
img, svg { display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

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

.section {
  position: relative;
  border-bottom: 1px solid rgba(99, 129, 171, .13);
  overflow: hidden;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: 94px;
}

.header-inner {
  width: min(1344px, calc(100% - 72px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  justify-self: start;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .31em;
  line-height: 1;
  text-shadow: 0 0 24px rgba(255,255,255,.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 15px;
  color: rgba(238, 242, 248, .78);
}

.nav-links a,
.footer-nav a {
  text-decoration: none;
  transition: color .2s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible { color: #fff; }

.header-cta {
  justify-self: end;
  text-decoration: none;
  padding: 12px 25px 13px;
  border: 1px solid rgba(214, 220, 231, .44);
  border-radius: 999px;
  color: rgba(247, 249, 252, .94);
  font-size: 14px;
  line-height: 1;
  background: rgba(7, 10, 15, .33);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.header-cta:hover { border-color: rgba(255,255,255,.72); background: rgba(255,255,255,.04); transform: translateY(-1px); }

.hero { min-height: 850px; background: radial-gradient(circle at 68% 43%, rgba(18, 42, 84, .13), transparent 36%); }
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 3, 8, .73));
}
.hero-inner { min-height: 850px; position: relative; }
.hero-copy {
  position: relative;
  z-index: 3;
  width: 510px;
  padding-top: 151px;
}
.eyebrow {
  margin: 0 0 20px;
  color: #72a1ff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .34em;
  line-height: 1;
  text-shadow: 0 0 15px rgba(84, 143, 255, .42);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); }
h1 {
  margin-bottom: 25px;
  font-size: clamp(70px, 5.7vw, 84px);
  font-weight: 600;
  letter-spacing: -.052em;
  line-height: .99;
  color: #f7f8fa;
  text-shadow: 0 1px 15px rgba(255,255,255,.04);
}
.hero-description {
  margin-bottom: 24px;
  color: #aeb7c4;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -.014em;
}
.hero-promise {
  margin-bottom: 40px;
  color: #e8ecf3;
  font-size: 20px;
  line-height: 1.5;
}
.hero-promise span { color: #cfd6e1; }
.hero-actions { display: flex; align-items: center; gap: 19px; }
.hero-actions .button-primary { min-width: 226px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 63px;
  padding: 0 38px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.015em;
  white-space: nowrap;
  transition: transform .2s ease, filter .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.button:active { transform: translateY(0); }
.button-primary {
  color: white;
  background: linear-gradient(180deg, #77a1ff 0%, #4977ed 100%);
  border: 1px solid rgba(175, 202, 255, .82);
  box-shadow: 0 10px 30px rgba(46, 94, 228, .22), inset 0 1px 0 rgba(255,255,255,.35);
}
.button-secondary {
  min-width: 246px;
  color: #edf1f7;
  border: 1px solid rgba(210, 216, 225, .55);
  background: rgba(3, 6, 10, .24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
}
.button-secondary svg { width: 20px; height: 20px; margin-right: 12px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linejoin: round; }
.drive-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 0;
  color: #8f98a7;
  font-size: 16px;
  letter-spacing: -.01em;
}
.drive-logo { width: 23px; height: 21px; }
.hero-art {
  position: absolute;
  z-index: 1;
  top: 74px;
  left: 506px;
  width: 974px;
  height: 792px;
  pointer-events: none;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: -4% -2% -2% -6%;
  z-index: 2;
  background: linear-gradient(90deg, #02050a 0%, rgba(2,5,10,.58) 8%, transparent 24%), linear-gradient(180deg, #02050a 0%, transparent 8%, transparent 92%, #01040a 100%);
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .98;
  filter: saturate(.94) contrast(1.03);
}
.hero-art-glow {
  position: absolute;
  z-index: 3;
  left: 41%;
  top: 22%;
  width: 320px;
  height: 160px;
  border-radius: 50%;
  opacity: .12;
  background: #315bff;
  filter: blur(70px);
  animation: breathe 5s ease-in-out infinite;
}

.story { min-height: 520px; background: radial-gradient(circle at 70% 52%, rgba(16, 38, 78, .18), transparent 38%); }
.story-inner { position: relative; min-height: 520px; display: flex; align-items: center; }
.story-copy { position: relative; z-index: 3; width: 560px; padding-left: 2px; }
.story h2,
.privacy h2,
.silence h2 {
  margin-bottom: 28px;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -.043em;
  line-height: 1.05;
}
.story-copy p,
.privacy-copy > p,
.silence-copy p {
  margin-bottom: 27px;
  color: #b7bfca;
  font-size: 20px;
  line-height: 1.48;
  letter-spacing: -.014em;
}
.story-art {
  position: absolute;
  right: -18px;
  top: 54px;
  width: 960px;
  height: 438px;
}
.story-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #020812 0%, rgba(2,8,18,.85) 9%, transparent 31%), linear-gradient(180deg, #020812 0%, transparent 11%, transparent 90%, #020812 100%);
}
.story-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: saturate(1.03) contrast(1.06);
}

.normal { min-height: 500px; background: radial-gradient(circle at 51% 0%, rgba(15, 35, 67, .13), transparent 43%); }
.normal-inner { min-height: 500px; padding-top: 59px; text-align: center; }
.normal h2,
.connected h2,
.pricing h2 {
  margin-bottom: 12px;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -.043em;
  line-height: 1.12;
}
.section-intro {
  margin-bottom: 45px;
  color: #aab3c1;
  font-size: 20px;
  line-height: 1.5;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}
.feature-item { position: relative; min-height: 220px; padding: 0 32px; }
.feature-item + .feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 1px;
  height: 168px;
  background: linear-gradient(180deg, transparent, rgba(101, 132, 174, .24) 19%, rgba(101,132,174,.24) 78%, transparent);
}
.line-icon,
.mini-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(73, 130, 235, .7);
  border-radius: 50%;
  color: #6e9dff;
  box-shadow: 0 0 24px rgba(44, 104, 229, .08), inset 0 0 18px rgba(29, 87, 184, .04);
}
.line-icon { width: 58px; height: 58px; margin: 0 auto 24px; }
.line-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-item h3 {
  margin-bottom: 9px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.025em;
}
.feature-item p {
  margin: 0;
  color: #aeb7c4;
  font-size: 18px;
  line-height: 1.42;
}

.privacy { min-height: 520px; background: radial-gradient(circle at 68% 48%, rgba(20, 49, 99, .17), transparent 39%); }
.privacy-inner { min-height: 520px; display: flex; align-items: center; position: relative; }
.privacy-copy { position: relative; z-index: 3; width: 530px; }
.privacy h2 { margin-bottom: 24px; }
.privacy-copy > p { margin-bottom: 40px; }
.privacy-points { display: flex; gap: 55px; }
.privacy-point { width: 108px; text-align: center; color: #d5dbe5; font-size: 15px; line-height: 1.25; }
.mini-icon { width: 42px; height: 42px; margin: 0 auto 12px; }
.mini-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.privacy-art {
  position: absolute;
  z-index: 1;
  right: -14px;
  top: 36px;
  width: 850px;
  height: 452px;
}
.privacy-art::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, #020812 0%, rgba(2,8,18,.73) 10%, transparent 28%), linear-gradient(180deg, #020812 0%, transparent 8%, transparent 90%, #020812 100%);
}
.privacy-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.98) contrast(1.04); }

.silence { min-height: 380px; background: radial-gradient(circle at 72% 55%, rgba(22, 51, 98, .11), transparent 39%); }
.silence-inner { min-height: 380px; display: flex; align-items: center; position: relative; }
.silence-copy { width: 515px; position: relative; z-index: 3; }
.silence h2 { margin-bottom: 21px; }
.silence-copy p { margin-bottom: 0; }
.silence-art { position: absolute; right: -4px; top: 46px; width: 860px; height: 292px; }
.silence-art::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, #020812 0%, rgba(2,8,18,.62) 7%, transparent 24%), linear-gradient(180deg, #020812 0%, transparent 10%, transparent 90%, #020812 100%);
}
.silence-art img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }

.connected { min-height: 500px; background: radial-gradient(circle at 50% 62%, rgba(18, 43, 88, .14), transparent 44%); }
.connected-inner { min-height: 500px; padding-top: 48px; text-align: center; }
.connected h2 { margin-bottom: 36px; }
.steps-wrap { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 52px; max-width: 1200px; margin: 0 auto; }
.step-connector {
  position: absolute;
  z-index: 0;
  left: 28%;
  right: 28%;
  top: 115px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #417ee8 14%, #417ee8 86%, transparent);
  box-shadow: 0 0 9px rgba(69, 132, 255, .85);
}
.step-connector span,
.step-connector i {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8e5ff;
  box-shadow: 0 0 14px 4px rgba(67, 130, 255, .72);
  transform: translate(-50%, -50%);
}
.step-connector span:first-child { left: 3%; }
.step-connector i { left: 50%; }
.step-connector span:last-child { left: 97%; }
.step-card {
  position: relative;
  z-index: 1;
  min-height: 320px;
  padding: 30px 25px 24px;
  border: 1px solid rgba(138, 160, 192, .32);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(10,16,26,.84), rgba(4,9,16,.62));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 18px 50px rgba(0,0,0,.12);
}
.step-number {
  position: absolute;
  left: 27px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(70, 132, 241, .82);
  border-radius: 50%;
  color: #82a9ff;
  font-size: 18px;
  box-shadow: inset 0 0 14px rgba(48, 106, 214, .08);
}
.step-drive { width: 64px; height: 57px; margin: 55px auto 30px; }
.step-icon { width: 72px; height: 72px; margin: 49px auto 26px; fill: rgba(43,92,187,.12); stroke: #5f91fb; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 8px rgba(71, 130, 255, .2)); }
.step-card h3 { margin-bottom: 13px; font-size: 24px; font-weight: 500; letter-spacing: -.026em; }
.step-card p { margin: 0; color: #aab3c0; font-size: 18px; line-height: 1.42; }

.pricing { min-height: 540px; background: radial-gradient(circle at 50% 40%, rgba(16, 40, 80, .13), transparent 42%); }
.pricing-inner { min-height: 540px; padding-top: 47px; text-align: center; }
.pricing h2 { margin-bottom: 34px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; max-width: 1240px; margin: 0 auto; text-align: left; }
.price-card {
  position: relative;
  min-height: 356px;
  padding: 36px 46px 35px;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(9,15,25,.83), rgba(3,8,15,.68));
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 22px 70px rgba(0,0,0,.14);
}
.price-card-free { border: 1px solid rgba(77, 132, 243, .86); box-shadow: inset 0 0 38px rgba(34,83,175,.035), 0 0 26px rgba(37,92,196,.025); }
.price-card-paid { border: 1px solid rgba(223, 77, 69, .82); box-shadow: inset 0 0 38px rgba(164,47,42,.035), 0 0 26px rgba(186,50,45,.025); }
.plan-label { margin-bottom: 8px; color: #ccd3df; font-size: 20px; }
.price { margin-bottom: 13px; font-family: var(--font-display); color: #f8f9fb; font-size: 62px; line-height: 1; letter-spacing: -.05em; }
.paid-price span { font-size: 19px; letter-spacing: -.02em; }
.price-copy { margin-bottom: 31px; color: #c0c7d2; font-size: 18px; line-height: 1.45; }
.price-button { position: absolute; left: 46px; right: 46px; bottom: 35px; min-height: 64px; }
.price-button-blue { color: #fff; background: linear-gradient(180deg, #6897ff, #3567db); border: 1px solid rgba(133,169,255,.7); box-shadow: 0 10px 28px rgba(38,88,215,.22), inset 0 1px 0 rgba(255,255,255,.25); }
.price-button-red { color: #fff; background: linear-gradient(180deg, #e35c53, #bb3d37); border: 1px solid rgba(246,120,110,.58); box-shadow: 0 10px 28px rgba(174,50,44,.18), inset 0 1px 0 rgba(255,255,255,.18); }
.price-watermark { position: absolute; right: 38px; top: 38px; width: 148px; height: 148px; opacity: .09; }
.folder-watermark { border: 4px solid #3d70d5; border-radius: 15px; }
.folder-watermark::before { content: ""; position: absolute; left: -4px; top: -24px; width: 72px; height: 30px; border: 4px solid #3d70d5; border-bottom: 0; border-radius: 13px 13px 0 0; }
.shield-watermark { clip-path: polygon(50% 0, 92% 18%, 88% 62%, 50% 100%, 12% 62%, 8% 18%); border: 5px solid #b3423b; }

.final-cta { min-height: 390px; background: radial-gradient(circle at 80% 73%, rgba(111, 24, 29, .17), transparent 20%), radial-gradient(circle at 31% 83%, rgba(30,71,145,.13), transparent 25%); }
.final-inner { position: relative; z-index: 3; min-height: 390px; padding-top: 55px; text-align: center; }
.final-cta h2 { margin-bottom: 18px; font-size: 58px; font-weight: 500; letter-spacing: -.045em; line-height: 1.06; }
.final-cta p { margin-bottom: 28px; color: #aeb7c4; font-size: 19px; }
.final-button { min-width: 350px; }
.final-pulse { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; height: 130px; opacity: .86; }
.final-pulse svg { width: 100%; height: 100%; }
.pulse-base { fill: none; stroke: url(#pulseGradient); stroke-width: 2; vector-effect: non-scaling-stroke; filter: url(#blueGlow); stroke-linecap: round; }

.site-footer { min-height: 125px; background: #010409; }
.footer-inner { min-height: 125px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.footer-brand { display: flex; flex-direction: column; gap: 5px; }
.footer-brand strong { font-family: var(--font-display); font-size: 18px; font-weight: 500; }
.footer-brand span { color: #7f8998; font-size: 13px; }
.footer-nav { display: flex; gap: 54px; color: #adb5c0; font-size: 13px; }
.copyright { justify-self: end; margin: 0; color: #7f8998; font-size: 13px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .11s; }

@keyframes breathe { 0%,100% { transform: scale(.92); opacity: .08; } 50% { transform: scale(1.08); opacity: .17; } }

@media (max-width: 1180px) {
  :root { --shell: 1100px; }
  .page-shell { width: min(var(--shell), calc(100% - 64px)); }
  .header-inner { width: calc(100% - 64px); }
  .hero-art { left: 43%; width: 760px; }
  .story-art { width: 760px; }
  .privacy-art { width: 650px; right: -10px; }
  .silence-art { width: 650px; right: -20px; }
  .steps-wrap { gap: 30px; }
  .pricing-grid { gap: 35px; }
}

@media (max-width: 900px) {
  body { font-size: 16px; }
  .desktop-only { display: none; }
  .page-shell { width: min(100% - 40px, 720px); }
  .header-inner { width: calc(100% - 40px); grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .header-cta { font-size: 12px; padding: 10px 15px; }
  .brand { font-size: 15px; }
  .hero, .hero-inner { min-height: 980px; }
  .hero-copy { width: 100%; padding-top: 130px; }
  h1 { font-size: clamp(55px, 12vw, 76px); }
  .hero-description { max-width: 520px; }
  .hero-art { top: 495px; left: 50%; width: 760px; height: 635px; transform: translateX(-46%); opacity: .82; }
  .hero-art::before { background: linear-gradient(180deg, #02050a 0%, transparent 9%, transparent 88%, #01040a 100%); }
  .story, .story-inner { min-height: 650px; }
  .story-inner { align-items: flex-start; padding-top: 60px; }
  .story-copy { width: 100%; }
  .story-art { top: 280px; right: -120px; width: 850px; height: 400px; opacity: .82; }
  .normal, .normal-inner { min-height: 780px; }
  .feature-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature-item { min-height: 160px; }
  .feature-item + .feature-item::before { display: none; }
  .privacy, .privacy-inner { min-height: 720px; }
  .privacy-inner { align-items: flex-start; padding-top: 60px; }
  .privacy-copy { width: 100%; }
  .privacy-art { top: 370px; right: 50%; width: 680px; height: 400px; transform: translateX(50%); opacity: .92; }
  .silence, .silence-inner { min-height: 600px; }
  .silence-inner { align-items: flex-start; padding-top: 60px; }
  .silence-copy { width: 100%; }
  .silence-art { top: 300px; right: 50%; width: 690px; height: 300px; transform: translateX(50%); }
  .connected, .connected-inner { min-height: 1100px; }
  .steps-wrap { grid-template-columns: 1fr; max-width: 520px; gap: 22px; }
  .step-connector { display: none; }
  .step-card { min-height: 285px; }
  .pricing, .pricing-inner { min-height: 900px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 570px; gap: 28px; }
  .price-card { min-height: 345px; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; padding: 28px 0; text-align: center; }
  .footer-brand, .copyright { justify-self: center; }
  .footer-nav { grid-row: 2; gap: 26px; }
}

@media (max-width: 560px) {
  .page-shell { width: calc(100% - 32px); }
  .header-inner { width: calc(100% - 32px); }
  .header-cta { display: none; }
  .hero, .hero-inner { min-height: 900px; }
  .hero-copy { padding-top: 112px; }
  .eyebrow { font-size: 11px; }
  h1 { font-size: 53px; }
  .hero-description, .hero-promise { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .button, .button-secondary { width: 100%; min-width: 0; }
  .hero-art { top: 510px; width: 650px; height: 540px; transform: translateX(-45%); }
  .story h2, .privacy h2, .silence h2, .normal h2, .connected h2, .pricing h2 { font-size: 38px; }
  .story-copy p, .privacy-copy > p, .silence-copy p { font-size: 16px; }
  .story-art { right: -210px; }
  .privacy-points { gap: 17px; justify-content: space-between; }
  .privacy-point { width: 92px; font-size: 12px; }
  .privacy-art { width: 600px; height: 360px; }
  .silence-art { width: 610px; height: 270px; }
  .connected h2 { margin-bottom: 28px; }
  .pricing, .pricing-inner { min-height: 880px; }
  .price-card { padding-inline: 28px; }
  .price-button { left: 28px; right: 28px; }
  .final-cta h2 { font-size: 42px; }
  .final-button { min-width: 0; width: min(100%, 320px); }
  .footer-nav { gap: 18px; font-size: 12px; }
}

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

/* Edge-faded artwork assets blend into the live page rather than presenting as rectangular screenshots. */
.story-art img,
.privacy-art img,
.silence-art img { background: transparent; }

/* ---- FAQ ----------------------------------------------------------------
   Native <details> disclosure: no JS, keyboard-accessible, and it still opens
   if scripts fail. Answers stay collapsed so the section reads as a short
   list of questions rather than a wall of text. */
.faq { background: radial-gradient(circle at 50% 30%, rgba(16, 40, 80, .11), transparent 44%); }
.faq-inner { padding-top: 47px; text-align: center; }
.faq h2 { margin-bottom: 14px; }
.faq .section-intro { margin-bottom: 40px; }

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
  border-top: 1px solid rgba(101, 132, 174, .2);
}

.faq-item { border-bottom: 1px solid rgba(101, 132, 174, .2); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -.022em;
  line-height: 1.3;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue-bright); }
.faq-item summary:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; border-radius: 6px; }

/* Plus sign that rotates into a minus when the answer opens. */
.faq-mark {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.faq-mark::before,
.faq-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #7d95c4;
  transform: translate(-50%, -50%);
}
.faq-mark::before { width: 15px; height: 1.5px; }
.faq-mark::after { width: 1.5px; height: 15px; transition: opacity .3s ease; }
.faq-item[open] .faq-mark { transform: rotate(180deg); }
.faq-item[open] .faq-mark::after { opacity: 0; }
.faq-item[open] summary { color: var(--blue-bright); }
.faq-item[open] .faq-mark::before { background: var(--blue-bright); }

.faq-answer { padding: 0 52px 26px 4px; color: #aab3c1; font-size: 17px; line-height: 1.55; }
.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: #dce4f0; font-weight: 500; }
.faq-answer em { font-style: normal; color: #dce4f0; }
.faq-answer ul { margin: 0; padding-left: 20px; }
.faq-answer li { margin-bottom: 10px; }
.faq-answer li:last-child { margin-bottom: 0; }

.faq-foot { margin: 38px 0 0; color: var(--soft); font-size: 15px; }
.faq-foot a { color: #8aa9e8; text-decoration: none; border-bottom: 1px solid rgba(138, 169, 232, .35); }
.faq-foot a:hover { color: var(--blue-bright); }

@media (max-width: 900px) {
  .faq-inner { padding-top: 12px; }
  .faq-item summary { padding: 20px 2px; font-size: 19px; gap: 16px; }
  .faq-answer { padding: 0 28px 22px 2px; font-size: 16px; }
}

@media (max-width: 560px) {
  .faq-item summary { font-size: 17px; }
  .faq-answer { padding-right: 8px; }
}
