:root {
  --ink: #081a30;
  --ink-soft: #405268;
  --navy: #06182d;
  --blue: #1c84ff;
  --cyan: #27d6db;
  --mint: #3dd6ae;
  --purple: #8a50b2;
  --coral: #ff765f;
  --amber: #ffbd4a;
  --cloud: #f4f8fb;
  --line: #dce6ed;
  --white: #fff;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; display: block; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: white;
  background: rgba(6, 24, 45, .9);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-shell {
  width: var(--shell);
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 600; letter-spacing: 0; }
.brand strong { color: var(--cyan); font-weight: 800; }
.brand-mark { width: 36px; height: 36px; display: grid; place-items: center; color: var(--cyan); }
.brand-mark svg { width: 100%; height: 100%; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 600; }
.site-nav > a:not(.nav-download) { opacity: .76; transition: opacity .2s ease; }
.site-nav > a:not(.nav-download):hover { opacity: 1; }
.nav-download {
  padding: 10px 17px;
  color: var(--navy);
  background: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 6px;
}
.nav-download:hover { background: white; border-color: white; }
.menu-toggle { display: none; }

.hero {
  min-height: 720px;
  height: min(780px, calc(100vh - 56px));
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 69% 42%, rgba(34,213,218,.19), transparent 28%),
    linear-gradient(117deg, #06172d 0%, #092645 51%, #06395b 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -290px;
  bottom: -210px;
  border: 1px solid rgba(39,214,219,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(39,214,219,.04), 0 0 0 170px rgba(39,214,219,.025);
}
.hero-grid {
  width: var(--shell);
  height: 100%;
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
  align-items: center;
  gap: 70px;
  padding-top: 90px;
  position: relative;
  z-index: 2;
}
.hero-copy { padding-bottom: 20px; }
.eyebrow, .section-kicker {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 30px; height: 2px; background: var(--cyan); }
.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(52px, 6vw, 86px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: 0;
}
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero-lede { max-width: 620px; margin: 28px 0 32px; color: #bed0df; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.play-button {
  width: 194px;
  min-height: 58px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  background: #05090d;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px;
  transition: transform .2s ease, background .2s ease;
}
.play-button:hover { transform: translateY(-2px); background: #131c26; }
.play-button svg { width: 25px; flex: 0 0 25px; }
.play-button span { font-size: 19px; font-weight: 600; line-height: 1.08; }
.play-button small { display: block; margin-bottom: 3px; font-size: 8px; font-weight: 500; }
.text-link { color: white; font-size: 14px; font-weight: 700; }
.text-link span { margin-left: 8px; color: var(--cyan); }
.hero-points { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 38px; color: #91a8ba; font-size: 12px; font-weight: 600; }
.hero-points span { display: inline-flex; align-items: center; gap: 8px; }
.hero-points i { width: 6px; height: 6px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 4px rgba(61,214,174,.1); }
.hero-visual { height: 100%; min-height: 650px; position: relative; display: grid; place-items: end center; }
.phone-frame {
  position: relative;
  width: min(360px, 78%);
  aspect-ratio: 9 / 18;
  padding: 8px;
  overflow: hidden;
  background: #0b1522;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 38px 38px 0 0;
  box-shadow: 0 34px 80px rgba(0,0,0,.42), 0 0 0 8px rgba(255,255,255,.035);
}
.phone-frame img, .screen-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 30px 30px 0 0; }
.phone-speaker { position: absolute; z-index: 2; width: 54px; height: 5px; top: 15px; left: 50%; transform: translateX(-50%); background: #172231; border-radius: 10px; }
.halo { position: absolute; border: 1px solid rgba(39,214,219,.28); border-radius: 50%; }
.halo-one { width: 480px; height: 480px; top: 19%; left: 50%; transform: translateX(-50%); }
.halo-two { width: 350px; height: 350px; top: 27%; left: 50%; transform: translateX(-50%); border-color: rgba(39,214,219,.16); }
.status-pill {
  position: absolute;
  z-index: 3;
  min-width: 166px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 7px;
  box-shadow: 0 18px 40px rgba(0,0,0,.2);
}
.status-pill small { display: block; color: #7a8a99; font-size: 9px; font-weight: 600; }
.status-pill > span:last-child { font-size: 12px; font-weight: 800; line-height: 1.45; }
.status-top { top: 31%; right: -5%; }
.status-bottom { bottom: 13%; left: -4%; }
.status-icon { width: 31px; height: 31px; flex: 0 0 31px; display: grid; place-items: center; background: #e1faf3; border-radius: 50%; }
.shield-icon::before { content: ""; width: 13px; height: 15px; background: var(--mint); clip-path: polygon(50% 0,100% 20%,92% 70%,50% 100%,8% 70%,0 20%); }
.spark-icon { color: white; background: var(--purple); font-size: 24px; font-weight: 400; }
.scroll-cue { position: absolute; z-index: 4; left: 50%; bottom: 26px; width: 28px; height: 44px; border: 1px solid rgba(255,255,255,.25); border-radius: 20px; }
.scroll-cue span { position: absolute; width: 4px; height: 8px; top: 9px; left: 11px; background: var(--cyan); border-radius: 5px; animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

.section-shell { width: var(--shell); margin: 0 auto; }
.feature-intro, .showcase, .privacy { scroll-margin-top: 88px; }
.feature-intro { padding: 86px 0 124px; background: white; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; margin-bottom: 62px; }
.section-kicker { color: #318287; margin-bottom: 13px; }
.section-heading h2, .showcase h2, .privacy h2, .download h2 { margin: 0; font-size: clamp(37px, 4vw, 56px); line-height: 1.12; letter-spacing: 0; }
.section-heading > p { margin: 0 0 5px; color: var(--ink-soft); line-height: 1.8; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.feature { min-height: 340px; position: relative; padding: 32px 28px 28px; border-right: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.feature:last-child { border-right: 0; }
.feature:hover { z-index: 2; transform: translateY(-7px); background: white; box-shadow: 0 22px 48px rgba(20,48,71,.12); }
.feature-primary { color: white; background: var(--navy); }
.feature-primary:hover { background: var(--navy); }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; color: #cda7e4; background: rgba(138,80,178,.16); border-radius: 6px; }
.feature-icon svg { width: 27px; height: 27px; }
.feature-icon.mint { color: #128b6e; background: #dff8f0; }
.feature-icon.coral { color: #c84d3b; background: #ffebe7; }
.feature-icon.amber { color: #a56a00; background: #fff1d4; }
.feature-number { position: absolute; top: 33px; right: 25px; color: #a7b3bf; font-size: 11px; font-weight: 800; }
.feature h3 { margin: 58px 0 12px; font-size: 21px; line-height: 1.25; }
.feature p { margin: 0; color: #687a8c; font-size: 14px; line-height: 1.75; }
.feature-primary p { color: #9fb1c2; }
.feature-tag { position: absolute; bottom: 28px; left: 28px; color: #607386; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.feature-primary .feature-tag { color: var(--cyan); }

.showcase { padding: 110px 0; overflow: hidden; color: white; background: #091c32; }
.showcase-shell { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 100px; }
.showcase-copy > p:not(.section-kicker) { max-width: 455px; margin: 25px 0 32px; color: #9fb2c4; }
.screen-tabs { border-top: 1px solid rgba(255,255,255,.13); }
.screen-tab {
  width: 100%;
  padding: 15px 2px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #788da1;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
  cursor: pointer;
  text-align: left;
  transition: color .2s ease, padding .2s ease;
}
.screen-tab span { color: #536a7f; font-size: 10px; font-weight: 800; }
.screen-tab:hover, .screen-tab.active { color: white; padding-left: 10px; }
.screen-tab.active span { color: var(--cyan); }
.screen-stage { min-height: 650px; position: relative; display: grid; place-items: center; }
.screen-stage::before { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(39,214,219,.16); border-radius: 50%; box-shadow: 0 0 0 80px rgba(39,214,219,.025); }
.screen-phone { width: min(310px, 70%); aspect-ratio: 9 / 18; position: relative; z-index: 2; padding: 7px; overflow: hidden; background: #101824; border: 1px solid rgba(255,255,255,.4); border-radius: 34px; box-shadow: 0 32px 70px rgba(0,0,0,.4); }
.screen-phone img { border-radius: 27px; }
.screen-phone img.fade { animation: imageFade .35s ease; }
@keyframes imageFade { from { opacity: .25; transform: scale(.985); } to { opacity: 1; transform: scale(1); } }
.gallery-arrow { position: absolute; z-index: 4; width: 45px; height: 45px; display: grid; place-items: center; color: white; background: transparent; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; cursor: pointer; transition: color .2s, border-color .2s, background .2s; }
.gallery-arrow:hover { color: var(--navy); background: var(--cyan); border-color: var(--cyan); }
.gallery-prev { left: 5%; }
.gallery-next { right: 5%; }
.screen-counter { position: absolute; right: 5%; bottom: 3%; z-index: 4; display: flex; align-items: baseline; gap: 6px; }
.screen-counter strong { color: var(--cyan); font-size: 26px; }
.screen-counter span { color: #6f879d; font-size: 11px; }

.tool-band { padding: 92px 0 105px; background: #edf5f7; }
.tool-list { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 32px; border-top: 1px solid #cbdadd; }
.tool-list > div { min-height: 180px; padding: 29px 28px 5px 0; border-right: 1px solid #cbdadd; }
.tool-list > div:not(:first-child) { padding-left: 28px; }
.tool-list > div:last-child { border-right: 0; }
.tool-list span { color: #6d878b; font-size: 10px; font-weight: 800; }
.tool-list h3 { margin: 22px 0 8px; font-size: 17px; }
.tool-list p { margin: 0; color: #63777c; font-size: 13px; }

.privacy { padding: 110px 0; }
.privacy-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 110px; }
.privacy-visual { min-height: 410px; position: relative; display: grid; place-items: center; background: #eef7f6; overflow: hidden; }
.privacy-ring { position: absolute; border: 1px solid rgba(49,130,135,.18); border-radius: 50%; }
.ring-one { width: 290px; height: 290px; }
.ring-two { width: 430px; height: 430px; }
.privacy-shield { position: relative; z-index: 2; width: 112px; height: 112px; display: grid; place-items: center; color: var(--purple); background: white; border-radius: 50%; box-shadow: 0 23px 60px rgba(17,66,74,.16); }
.privacy-shield svg { width: 54px; }
.privacy-copy > p:not(.section-kicker) { max-width: 570px; margin: 25px 0; color: var(--ink-soft); line-height: 1.85; }
.privacy-note { max-width: 560px; padding: 18px 20px; display: flex; gap: 15px; align-items: center; background: #f5f8fa; border-left: 3px solid var(--mint); }
.privacy-note span { width: 25px; height: 25px; display: grid; place-items: center; flex: 0 0 25px; color: white; background: var(--mint); border-radius: 50%; font-size: 12px; font-weight: 800; }
.privacy-note p { margin: 0; color: #5b6e7f; font-size: 13px; }

.download { padding: 0 24px 96px; }
.download-inner { width: min(1260px, 100%); min-height: 330px; margin: 0 auto; padding: 64px 70px; display: flex; align-items: center; justify-content: space-between; gap: 60px; color: white; background: var(--purple); }
.download .section-kicker { color: #f1d8ff; }
.download h2 { max-width: 660px; }
.download p:not(.section-kicker) { max-width: 620px; margin: 18px 0 0; color: #eadcf3; }
.play-button-light { flex: 0 0 194px; }

.site-footer { padding: 74px 0 25px; color: #9db0c1; background: var(--navy); }
.footer-inner, .footer-bottom { width: var(--shell); margin: 0 auto; }
.footer-inner { display: flex; justify-content: space-between; gap: 50px; }
.footer-brand { color: white; }
.footer-inner > div:first-child > p { max-width: 390px; margin: 19px 0 0; font-size: 13px; }
.footer-links { display: grid; grid-template-columns: repeat(2, max-content); gap: 12px 44px; color: #d1dce5; font-size: 13px; }
.footer-links a:hover, .footer-bottom a:hover { color: var(--cyan); }
.footer-bottom { margin-top: 52px; padding-top: 21px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.11); font-size: 11px; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1.08fr .72fr; gap: 25px; }
  .status-pill { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature { border-bottom: 1px solid var(--line); }
  .feature:nth-child(2) { border-right: 0; }
  .feature:nth-child(n+3) { border-bottom: 0; }
  .showcase-shell { gap: 40px; }
  .tool-list { grid-template-columns: repeat(2,1fr); }
  .tool-list > div:nth-child(2) { border-right: 0; }
  .tool-list > div:nth-child(n+3) { border-top: 1px solid #cbdadd; }
  .privacy-grid { gap: 55px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 620px); }
  .nav-shell { height: 72px; }
  .feature-intro, .showcase, .privacy { scroll-margin-top: 72px; }
  .brand { font-size: 13px; }
  .brand-mark { width: 31px; height: 31px; }
  .menu-toggle { width: 42px; height: 42px; padding: 11px 9px; display: flex; flex-direction: column; justify-content: center; gap: 5px; background: transparent; border: 0; cursor: pointer; }
  .menu-toggle span { width: 100%; height: 2px; background: white; transition: transform .2s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 72px 0 0; padding: 48px 24px; display: none; flex-direction: column; align-items: stretch; gap: 0; color: white; background: #06182df7; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 17px 4px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 17px; }
  .site-nav .nav-download { margin-top: 24px; padding: 14px; text-align: center; }

  .hero { height: auto; min-height: 740px; }
  .hero-grid { height: auto; min-height: 740px; grid-template-columns: 1fr; padding-top: 100px; text-align: left; }
  .hero-copy { position: relative; z-index: 3; padding-bottom: 0; }
  .hero h1 { font-size: clamp(46px, 14vw, 67px); }
  .hero-lede { margin: 22px 0 27px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .hero-points { display: none; }
  .hero-visual { height: 260px; min-height: 0; margin-top: -5px; place-items: end center; overflow: hidden; }
  .phone-frame { width: 230px; border-radius: 27px 27px 0 0; }
  .phone-frame img { border-radius: 21px 21px 0 0; }
  .halo-one { width: 350px; height: 350px; top: 19%; }
  .halo-two { width: 260px; height: 260px; top: 29%; }
  .scroll-cue { display: none; }

  .feature-intro { padding: 64px 0 84px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 42px; }
  .section-heading h2, .showcase h2, .privacy h2, .download h2 { font-size: 37px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { min-height: 290px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .feature:last-child { border-bottom: 0 !important; }
  .feature h3 { margin-top: 42px; }

  .showcase { padding: 76px 0 82px; }
  .showcase-shell { grid-template-columns: 1fr; gap: 48px; }
  .screen-stage { min-height: 560px; }
  .screen-stage::before { width: 380px; height: 380px; }
  .screen-phone { width: 245px; }
  .gallery-prev { left: 0; }
  .gallery-next { right: 0; }
  .screen-counter { right: 0; bottom: 0; }

  .tool-band { padding: 72px 0 78px; }
  .tool-list { grid-template-columns: 1fr; }
  .tool-list > div { min-height: 145px; padding: 24px 0 !important; border-right: 0; border-top: 1px solid #cbdadd; }
  .tool-list > div:first-child { border-top: 0; }
  .tool-list h3 { margin: 15px 0 6px; }

  .privacy { padding: 75px 0 80px; }
  .privacy-grid { grid-template-columns: 1fr; gap: 48px; }
  .privacy-visual { min-height: 310px; }
  .ring-one { width: 220px; height: 220px; }
  .ring-two { width: 330px; height: 330px; }

  .download { padding: 0; }
  .download-inner { padding: 56px 24px 60px; flex-direction: column; align-items: flex-start; gap: 35px; }
  .play-button-light { flex: 0 0 auto; }
  .site-footer { padding-top: 62px; }
  .footer-inner { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
}

@media (max-width: 380px) {
  :root { --shell: calc(100% - 24px); }
  .brand { font-size: 11px; gap: 7px; }
  .hero h1 { font-size: 43px; }
  .section-heading h2, .showcase h2, .privacy h2, .download h2 { font-size: 33px; }
  .gallery-arrow { width: 39px; height: 39px; }
  .screen-phone { width: 225px; }
  .footer-links { grid-template-columns: 1fr; }
}

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