:root {
  --forest-950: #031910;
  --forest-900: #06271a;
  --forest-850: #0b3323;
  --forest-800: #12432f;
  --forest-700: #1b6044;
  --ivory: #f7f4eb;
  --ivory-deep: #eee9dc;
  --paper: #fffdf8;
  --ink: #10211a;
  --muted: #5e6d65;
  --line: rgba(16, 33, 26, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --cyan: #32c7d8;
  --coral: #ff7043;
  --yellow: #ffd12f;
  --violet: #9b7bff;
  --green: #20d865;
  --lime: #c7cf00;
  --shadow: 0 30px 90px rgba(2, 25, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  transform: translateY(-150%);
}

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

.wrap {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line-dark);
  background: var(--forest-950);
  color: #ffffff;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 780;
  letter-spacing: -0.01em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 650;
}

.nav-links .nav-pill {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #ffffff;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 20%, rgba(50, 199, 216, 0.14), transparent 24%),
    radial-gradient(circle at 18% 100%, rgba(255, 112, 67, 0.13), transparent 30%),
    var(--forest-950);
  color: #ffffff;
}

.hero-shell::after {
  position: absolute;
  inset: auto -12vw -36vw 34vw;
  height: 52vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  content: "";
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(390px, 0.8fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
  padding: clamp(62px, 8vw, 112px) 0 clamp(74px, 9vw, 126px);
}

.app-lockup {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 26px;
}

.app-lockup img {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.app-name {
  display: block;
  font-size: 20px;
  font-weight: 780;
  line-height: 1.1;
}

.coming-soon {
  display: block;
  margin-top: 4px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 750px;
  margin-bottom: 24px;
  font-size: clamp(55px, 7.4vw, 100px);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.button:hover {
  background: #ffffff;
  text-decoration: none;
}

.text-link {
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 750;
}

.hero-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  width: min(100%, 490px);
  min-height: 608px;
  justify-self: end;
}

.phone {
  position: absolute;
  width: 324px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 48px;
  background: #07110d;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.phone img {
  width: 100%;
  height: auto !important;
  aspect-ratio: 23 / 50;
  object-fit: contain;
  border-radius: 39px;
}

.phone-main {
  top: 0;
  right: 0;
  transform: rotate(2.5deg);
}

.phone-back {
  left: 0;
  top: 102px;
  width: 260px;
  opacity: 0.68;
  transform: rotate(-7deg);
}

.privacy-float {
  position: absolute;
  z-index: 4;
  right: 210px;
  bottom: 42px;
  width: 230px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(12, 54, 37, 0.86);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.privacy-float strong,
.privacy-float span {
  display: block;
}

.privacy-float strong {
  margin-bottom: 5px;
  font-size: 16px;
}

.privacy-float span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.privacy-float .dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(32, 216, 101, 0.12);
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.trust-item {
  min-height: 150px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-number {
  display: block;
  margin-bottom: 17px;
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.trust-item strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.trust-item span:last-child {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.section-intro {
  max-width: 780px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--forest-700);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 5.4vw, 70px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-lede {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.privacy-section {
  background: var(--ivory);
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(400px, 1.2fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.privacy-copy h2 {
  max-width: 600px;
}

.privacy-copy p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
  font-size: 18px;
}

.privacy-copy .dark-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--forest-700);
  font-weight: 800;
}

.data-map {
  position: relative;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.data-map::before {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background: rgba(50, 199, 216, 0.1);
  content: "";
}

.map-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 46px 1fr 46px 1fr;
  align-items: center;
  gap: 10px;
}

.map-node {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.node-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--forest-900);
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
}

.map-node strong {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.15;
}

.map-node span:last-child {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.map-arrow {
  color: var(--forest-700);
  font-size: 24px;
  text-align: center;
}

.developer-out {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.not-node {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ivory);
  color: #8a3026;
  font-weight: 900;
}

.features-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

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

.feature-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 15px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.cyan { background: rgba(50, 199, 216, 0.24); }
.coral { background: rgba(255, 112, 67, 0.22); }
.yellow { background: rgba(255, 209, 47, 0.32); }
.violet { background: rgba(155, 123, 255, 0.23); }
.green { background: rgba(32, 216, 101, 0.2); }
.lime { background: rgba(199, 207, 0, 0.23); }

.feature-card h3 {
  margin-bottom: 9px;
  font-size: 23px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

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

.screens-section {
  overflow: hidden;
  background: var(--forest-950);
  color: #ffffff;
}

.screens-section .eyebrow {
  color: var(--yellow);
}

.screens-section .section-lede {
  color: rgba(255, 255, 255, 0.64);
}

.screens-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: 20px;
  align-items: start;
}

.screen-card {
  min-width: 0;
}

.screen-shot {
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 34px;
  background: #07110d;
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.screen-shot img {
  width: 100%;
  height: auto !important;
  aspect-ratio: 23 / 50;
  object-fit: contain;
  border-radius: 27px;
}

.screen-card:nth-child(2),
.screen-card:nth-child(4) {
  margin-top: 48px;
}

.screen-caption {
  margin: 16px 8px 0;
}

.screen-caption strong,
.screen-caption span {
  display: block;
}

.screen-caption strong {
  font-size: 16px;
}

.screen-caption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.sharing-section {
  background: var(--ivory-deep);
}

.sharing-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
}

.share-steps {
  counter-reset: share-step;
}

.share-step {
  position: relative;
  padding: 0 0 30px 64px;
  border-left: 1px solid rgba(16, 33, 26, 0.18);
  counter-increment: share-step;
}

.share-step:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.share-step::before {
  position: absolute;
  left: -20px;
  top: -2px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-900);
  color: #ffffff;
  content: counter(share-step);
  font-size: 13px;
  font-weight: 850;
}

.share-step h3 {
  margin-bottom: 6px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.share-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.sharing-copy .section-lede {
  margin-bottom: 36px;
}

.local-ai {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.ai-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
}

.ai-phone {
  width: min(100%, 390px);
  padding: 8px;
  border-radius: 48px;
  background: var(--forest-950);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ai-phone img {
  border-radius: 39px;
}

.ai-copy .callout {
  margin-top: 30px;
  padding: 20px 22px;
  border-left: 4px solid var(--green);
  background: rgba(32, 216, 101, 0.08);
  color: var(--forest-800);
  font-weight: 700;
}

.faq-section {
  background: var(--ivory);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 56px;
}

.faq-item {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.faq-item h3 {
  margin-bottom: 9px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta {
  background:
    radial-gradient(circle at 20% 0, rgba(255, 112, 67, 0.15), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(50, 199, 216, 0.14), transparent 30%),
    var(--forest-950);
  color: #ffffff;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: end;
  padding: clamp(74px, 9vw, 120px) 0;
}

.cta-inner h2 {
  max-width: 770px;
  margin-bottom: 0;
}

.cta-inner .eyebrow {
  color: var(--yellow);
}

.cta-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--forest-950);
  color: rgba(255, 255, 255, 0.62);
}

.footer-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.7fr);
  }

  .phone {
    width: 280px;
  }

  .phone-back {
    width: 220px;
  }

  .privacy-float {
    right: 150px;
  }

  .screens-row {
    width: calc(100vw - 44px);
    grid-template-columns: repeat(4, 230px);
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x proximity;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  }

  .screen-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 860px) {
  .nav-links a:not(.nav-pill) {
    display: none;
  }

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

  .hero-visual {
    width: min(100%, 560px);
    min-height: 590px;
    justify-self: center;
  }

  .phone-main {
    right: 7%;
  }

  .phone-back {
    left: 7%;
  }

  .privacy-float {
    left: 4%;
    right: auto;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .privacy-grid,
  .sharing-grid,
  .ai-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

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

  .map-row {
    grid-template-columns: 1fr;
  }

  .map-node {
    min-height: 110px;
  }

  .map-arrow {
    transform: rotate(90deg);
  }

  .ai-phone {
    justify-self: center;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 560px);
  }

  .nav {
    min-height: 62px;
  }

  .brand span {
    max-width: 160px;
    line-height: 1.15;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .hero-actions,
  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-actions .text-link {
    padding: 8px 2px;
  }

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

  .phone-main {
    width: 240px;
    right: 0;
  }

  .phone-back {
    width: 188px;
    left: -18px;
    top: 92px;
  }

  .privacy-float {
    left: 0;
    bottom: 20px;
    width: 210px;
  }

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

  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-icon {
    margin-bottom: 34px;
  }

  .data-map {
    padding: 24px;
  }

  .screens-row {
    width: calc(100vw - 28px);
    grid-template-columns: repeat(4, 210px);
  }

  .screen-card:nth-child(2),
  .screen-card:nth-child(4) {
    margin-top: 24px;
  }

  .share-step {
    padding-left: 48px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 0;
  }
}

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