:root {
  color-scheme: dark;
  --ink: #f3f8ed;
  --muted: #9eb5aa;
  --bg: #061c17;
  --bg-deep: #03110e;
  --panel: #0c2a22;
  --panel-2: #0f352b;
  --line: rgba(214, 255, 196, 0.16);
  --route: #c8ff15;
  --route-2: #9bf018;
  --draft: #33d9ff;
  --moss: #5f7e5e;
  --dark-text: #06120f;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.44);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg-deep);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 6%, rgba(51, 217, 255, 0.1), transparent 28rem),
    radial-gradient(circle at 16% 22%, rgba(200, 255, 21, 0.08), transparent 24rem),
    var(--bg-deep);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection {
  color: var(--dark-text);
  background: var(--route);
}

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

img {
  max-width: 100%;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.92fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  padding: 118px clamp(20px, 5vw, 74px) 68px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    repeating-radial-gradient(ellipse at 16% 32%, transparent 0 78px, rgba(197, 224, 175, 0.08) 80px 83px, transparent 86px 152px),
    repeating-radial-gradient(ellipse at 82% 40%, transparent 0 88px, rgba(197, 224, 175, 0.07) 90px 93px, transparent 96px 168px),
    linear-gradient(135deg, #06231d 0%, #083327 44%, #03120f 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 26vh;
  background: linear-gradient(180deg, transparent, var(--bg-deep));
  pointer-events: none;
}

.nav {
  position: absolute;
  z-index: 5;
  inset: 24px clamp(18px, 5vw, 74px) auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  font-weight: 900;
}

.brand img,
.footer img:first-child {
  display: block;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}

.nav-link {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 780;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  color: var(--ink);
}

.store-pill {
  min-height: 38px;
  border: 1px solid rgba(200, 255, 21, 0.42);
  border-radius: 999px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  color: var(--route);
  background: rgba(200, 255, 21, 0.08);
  font-size: 0.85rem;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.store-pill:hover,
.store-pill:focus-visible {
  border-color: rgba(200, 255, 21, 0.7);
  background: rgba(200, 255, 21, 0.14);
  transform: translateY(-2px);
}

.brand:focus-visible,
.nav-link:focus-visible,
.store-pill:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.more-app-card:focus-visible,
.footer a:focus-visible {
  outline: 3px solid rgba(51, 217, 255, 0.34);
  outline-offset: 5px;
  border-radius: 8px;
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--route);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.4rem, 10vw, 9.4rem);
  line-height: 0.86;
  font-weight: 950;
  letter-spacing: 0;
}

.lede {
  max-width: 770px;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2.75rem);
  line-height: 1.05;
  font-weight: 860;
  text-wrap: balance;
}

.intro {
  max-width: 660px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.55vw, 1.16rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.secondary-button,
.support-submit {
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.primary-button,
.support-submit {
  border: 1px solid rgba(200, 255, 21, 0.76);
  color: var(--dark-text);
  background: linear-gradient(180deg, #d7ff3a, var(--route));
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible,
.support-submit:hover,
.support-submit:focus-visible {
  transform: translateY(-2px);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: rgba(51, 217, 255, 0.48);
  background: rgba(51, 217, 255, 0.08);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-device-showcase {
  position: relative;
  min-height: clamp(540px, 54vw, 720px);
  isolation: isolate;
}

.hero-phone,
.hero-ipad {
  position: absolute;
  margin: 0;
  filter: drop-shadow(0 32px 54px rgba(0, 0, 0, 0.42));
}

.hero-phone img,
.hero-ipad img,
.screen-card img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-phone-main {
  right: 5%;
  top: 1%;
  z-index: 2;
  width: min(40vw, 354px);
}

.hero-ipad {
  left: -1%;
  bottom: -9%;
  z-index: 1;
  width: min(50vw, 560px);
  opacity: 0.58;
  transform: rotate(-2deg);
}

main {
  background: var(--bg-deep);
}

.summary-band,
.feature-grid,
.screen-section,
.workflow-section,
.privacy-panel,
.more-apps,
.footer,
.policy-main,
.support-main {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.summary-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: end;
  padding: 74px 0 76px;
  border-bottom: 1px solid var(--line);
}

h2 {
  color: var(--ink);
  font-size: clamp(2.05rem, 5vw, 4.8rem);
  line-height: 0.96;
  font-weight: 930;
  letter-spacing: 0;
  text-wrap: balance;
}

.summary-band > p,
.screen-copy p,
.workflow-section p,
.privacy-panel > p,
.subpage-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 50px 0 74px;
}

.feature-grid article,
.workflow-list article,
.more-app-card,
.support-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.feature-grid article {
  min-height: 238px;
  padding: 24px;
}

.feature-mark {
  display: block;
  width: 34px;
  height: 5px;
  margin-bottom: 28px;
  border-radius: 999px;
}

.feature-mark.lime {
  background: var(--route);
}

.feature-mark.cyan {
  background: var(--draft);
}

.feature-mark.moss {
  background: #73a06f;
}

.feature-mark.slate {
  background: #c8d7cd;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.15;
}

.feature-grid p,
.workflow-list p,
.more-app-card span span,
.policy-main p,
.policy-main li {
  color: var(--muted);
  line-height: 1.6;
}

.screen-section {
  padding: 36px 0 90px;
}

.screen-copy {
  max-width: 700px;
  margin-bottom: 44px;
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px) clamp(18px, 3vw, 30px);
  align-items: start;
}

.screen-card {
  position: relative;
  display: grid;
  gap: 16px;
  justify-items: center;
  margin: 0;
}

.screen-card img {
  width: min(100%, 236px);
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.36));
}

.screen-card figcaption {
  width: min(100%, 236px);
  min-height: 2.2em;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  line-height: 1.08;
  font-weight: 920;
  text-align: center;
  text-wrap: balance;
}

.phone-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 36px);
  align-items: center;
}

.phone-frame {
  position: relative;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.phone-raised {
  transform: translateY(-24px);
}

.phone-frame::before {
  content: "";
  display: block;
  width: min(100%, 322px);
  aspect-ratio: 0.49;
  border: 1px solid rgba(244, 255, 236, 0.16);
  border-radius: 38px;
  background: #051511;
  box-shadow: var(--shadow);
}

.phone-screen {
  position: absolute;
  top: 17px;
  width: min(calc(100% - 34px), 288px);
  aspect-ratio: 0.51;
  border-radius: 28px;
  overflow: hidden;
  background:
    repeating-linear-gradient(11deg, transparent 0 35px, rgba(199, 225, 177, 0.08) 37px 39px, transparent 42px 78px),
    linear-gradient(145deg, #0a2c24, #071511);
}

.phone-screen::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 78px;
  height: 22px;
  border-radius: 999px;
  background: #030c0a;
  transform: translateX(-50%);
}

.route-preview,
.draft-route,
.chart-line {
  position: absolute;
  inset: 28% 8% auto;
  height: 42%;
  border: 8px solid var(--route);
  border-color: transparent transparent var(--route) var(--route);
  border-radius: 44% 18% 42% 28%;
  transform: rotate(-12deg);
}

.draft-route {
  border-color: transparent transparent var(--draft) var(--draft);
}

.chart-line {
  inset: 42% 12% auto;
  height: 24%;
  border-width: 5px;
  border-color: transparent transparent var(--route) transparent;
}

.screen-dot,
.draft-node {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 4px solid #03110e;
  border-radius: 999px;
  background: var(--route);
}

.dot-one {
  left: 24%;
  top: 45%;
}

.dot-two {
  right: 18%;
  top: 54%;
}

.draft-node {
  background: var(--draft);
}

.node-a {
  left: 28%;
  top: 48%;
}

.node-b {
  left: 50%;
  top: 37%;
}

.node-c {
  right: 24%;
  top: 56%;
}

.chart-bar {
  position: absolute;
  left: 16%;
  right: 16%;
  height: 1px;
  background: rgba(244, 255, 236, 0.18);
}

.bar-one {
  top: 36%;
}

.bar-two {
  top: 50%;
}

.bar-three {
  top: 64%;
}

.phone-frame figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  padding: 74px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-list {
  display: grid;
  gap: 12px;
}

.workflow-list article {
  padding: 20px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
}

.workflow-list article span {
  grid-row: span 2;
  color: var(--route);
  font-size: 0.86rem;
  font-weight: 950;
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.64fr);
  gap: clamp(22px, 4vw, 60px);
  align-items: center;
  padding: 76px 0;
}

.more-apps {
  padding: 18px 0 82px;
}

.more-apps-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.more-apps-heading h2 {
  max-width: 620px;
  font-size: clamp(1.7rem, 3.4vw, 3.35rem);
  line-height: 1;
}

.more-app-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.more-app-card {
  padding: 16px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.more-app-card:hover,
.more-app-card:focus-visible {
  border-color: rgba(200, 255, 21, 0.38);
  background: rgba(200, 255, 21, 0.055);
  transform: translateY(-2px);
}

.more-app-card img {
  width: 58px;
  height: 58px;
  border-radius: 13px;
}

.more-app-card strong,
.more-app-card span span {
  display: block;
}

.more-app-card strong {
  margin-bottom: 5px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.footer div,
.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--ink);
}

.subpage-hero {
  position: relative;
  min-height: 54svh;
  padding: 118px clamp(20px, 5vw, 74px) 70px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.subpage-copy {
  width: min(100%, 800px);
}

.subpage-copy h1 {
  max-width: 8ch;
}

.policy-main,
.support-main {
  padding: 72px 0 92px;
}

.policy-main {
  display: grid;
  gap: 36px;
  max-width: 820px;
}

.policy-main section {
  display: grid;
  gap: 12px;
}

.policy-main h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.policy-main a {
  color: var(--route);
}

.support-main {
  max-width: 720px;
}

.support-form {
  padding: clamp(18px, 4vw, 34px);
  display: grid;
  gap: 18px;
}

.field-group {
  display: grid;
  gap: 8px;
}

label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.18);
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: rgba(51, 217, 255, 0.62);
  outline: 3px solid rgba(51, 217, 255, 0.18);
}

@media (max-width: 980px) {
  .hero,
  .summary-band,
  .workflow-section,
  .privacy-panel {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    order: -1;
  }

  .hero-device-showcase {
    min-height: 560px;
  }

  .hero-phone-main {
    right: 5%;
    width: min(58vw, 350px);
  }

  .hero-ipad {
    left: 3%;
    bottom: -4%;
    width: min(68vw, 420px);
    opacity: 0.52;
  }

  .screen-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
    margin: 0 auto;
  }

  .phone-row {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .phone-raised {
    transform: none;
  }
}

@media (max-width: 720px) {
  .hero,
  .subpage-hero {
    padding: 98px 18px 44px;
  }

  .nav {
    inset: 18px 18px auto;
    gap: 12px;
  }

  .brand span {
    display: none;
  }

  .nav-link {
    font-size: 0.88rem;
  }

  .store-pill {
    display: none;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 6.2rem);
  }

  .summary-band,
  .feature-grid,
  .screen-section,
  .workflow-section,
  .privacy-panel,
  .more-apps,
  .footer,
  .policy-main,
  .support-main {
    width: min(100% - 28px, 1180px);
  }

  .feature-grid,
  .more-app-list {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .nav {
    flex-wrap: wrap;
  }

  .support-link {
    display: none;
  }

  .hero-device-showcase {
    min-height: 480px;
  }

  .hero-phone-main {
    right: 50%;
    width: min(60vw, 234px);
    transform: translateX(50%);
  }

  .hero-ipad {
    display: none;
  }

  .screen-gallery {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .screen-card,
  .screen-card:nth-child(2),
  .screen-card:nth-child(3),
  .screen-card:nth-child(5),
  .screen-card:nth-child(7) {
    width: min(100%, 286px);
    margin: 0 auto;
  }

  .screen-card img,
  .screen-card figcaption {
    width: min(100%, 286px);
  }

  .screen-card figcaption {
    min-height: 0;
  }

}
