@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/stepnow/assets/fonts/manrope-400.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/stepnow/assets/fonts/manrope-600.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/stepnow/assets/fonts/manrope-700.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/stepnow/assets/fonts/manrope-800.ttf") format("truetype");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/stepnow/assets/fonts/space-grotesk-400.ttf") format("truetype");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/stepnow/assets/fonts/space-grotesk-600.ttf") format("truetype");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/stepnow/assets/fonts/space-grotesk-700.ttf") format("truetype");
}
:root {
  --night: #061713;
  --night-2: #0b251d;
  --panel: #0d2a21;
  --mint: #58edaa;
  --lime: #c8ff4e;
  --paper: #edf1e8;
  --paper-2: #dfe9df;
  --ink: #10261e;
  --text: #e2faed;
  --muted: #a0b8ad;
  --line: rgba(145, 222, 181, 0.18);
  --coral: #ff8069;
  --warning: #f4c767;
  --danger: #ff5b64;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--night);
  color: var(--text);
  font-family:
    Manrope,
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
}
a {
  color: inherit;
}
.wrap {
  width: min(1180px, 100%);
  margin: auto;
  padding-inline: 24px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 100;
  padding: 11px 15px;
  background: #fff;
  color: #111;
  transform: translateY(-160%);
  border-radius: 6px;
}
.skip-link:focus {
  transform: none;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 23, 19, 0.96);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 800;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
}
.nav-links > a:not(.button) {
  color: var(--muted);
  text-decoration: none;
}
.nav-links > a:not(.button):hover,
.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(110deg, var(--mint), var(--lime));
  color: #062016;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.button:hover {
  filter: brightness(1.08);
}
.button-small {
  min-height: 42px;
  padding: 9px 16px;
}
.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.hero {
  min-height: 760px;
  padding-block: 72px 98px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 78px;
  align-items: center;
}
.eyebrow,
.label {
  margin: 0;
  color: var(--mint);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
}
.hero h1,
.section-intro h2,
.story-copy h2,
.privacy-grid h2,
.contact-copy h2,
.feature-ledger h3,
.screen-gallery figcaption b,
.capability-grid h3,
.privacy-facts strong,
.legal h1,
.legal h2 {
  font-family:
    "Space Grotesk",
    Manrope,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}
.hero h1 {
  margin: 18px 0 24px;
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
}
.hero h1 span {
  color: var(--mint);
}
.lede {
  max-width: 640px;
  color: #bdd1c8;
  font-size: 19px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}
.text-link {
  color: var(--text);
  font-weight: 750;
  text-underline-offset: 4px;
}
.trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}
.trust-row li:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--mint);
}
.hero-screen,
.product-screen {
  margin: 0;
}
.screen-shell {
  overflow: hidden;
  border: 1px solid rgba(174, 238, 204, 0.24);
  border-radius: 38px;
  background: #020b09;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}
.screen-shell img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-screen {
  width: 365px;
  justify-self: center;
  transform: rotate(1.5deg);
}
.hero-screen figcaption {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin-top: 14px;
}
.signal-strip {
  border-block: 1px solid var(--line);
  background: #092019;
}
.signal-strip .wrap {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #b9d8ca;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.signal-strip span + span:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
  margin: 0 24px 2px 0;
}
.feature-section {
  padding-block: 110px;
  background: var(--night-2);
  color: var(--text);
  border-top: 1px solid var(--line);
}
.section-intro {
  max-width: 830px;
  margin-bottom: 58px;
}
.section-intro h2,
.story-copy h2,
.privacy-grid h2,
.contact-copy h2,
.legal h1 {
  font-family:
    "Space Grotesk",
    Manrope,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}
.section-intro h2,
.story-copy h2,
.privacy-grid h2,
.contact-copy h2 {
  font-size: 52px;
  line-height: 1.03;
  margin: 14px 0 19px;
}
.section-intro > p:last-child,
.story-copy > p,
.privacy-grid > div > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}
.feature-section .eyebrow,
.screens-section .eyebrow {
  color: var(--mint);
}
.feature-ledger {
  border-top: 1px solid var(--line);
}
.feature-ledger article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.feature-number {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #78988a;
}
.feature-ledger article > div {
  display: grid;
  grid-template-columns: 160px 280px 1fr;
  gap: 30px;
  align-items: start;
}
.feature-ledger h3 {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
  margin: 0;
}
.feature-ledger article > div > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.status-live {
  margin: 5px 0 0;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  color: var(--mint);
}
.status-live i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #11bd77;
  margin-right: 7px;
}
.walk-story {
  padding-block: 110px;
  background: var(--night);
  color: var(--text);
}
.split-story {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 100px;
  align-items: center;
}
.product-screen {
  width: 410px;
  margin: auto;
}
.paired-walk-screens {
  position: relative;
  width: 470px;
  min-height: 650px;
  margin: 0 auto;
}
.paired-phone {
  width: 340px;
}
.watch-shell {
  overflow: hidden;
  border: 1px solid rgba(174, 238, 204, 0.28);
  border-radius: 28px;
  background: #020b09;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}
.watch-shell img {
  display: block;
  width: 100%;
  height: auto;
}
.paired-watch {
  position: absolute;
  right: 0;
  bottom: 55px;
  width: 215px;
  transform: rotate(2.5deg);
}
.paired-walk-screens figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--muted);
  font-size: 12px;
}
.story-copy > p {
  color: #a9c0b5;
}
.detail-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.detail-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.detail-list dt {
  font-weight: 800;
}
.detail-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.screens-section {
  padding-block: 110px;
  background: var(--night-2);
  color: var(--text);
  border-top: 1px solid var(--line);
}
.screen-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}
.screen-gallery figure {
  margin: 0;
}
.screen-gallery .screen-shell {
  border-radius: 25px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
}
.screen-gallery figcaption {
  padding: 18px 4px 0;
}
.screen-gallery figcaption b,
.screen-gallery figcaption span {
  display: block;
}
.screen-gallery figcaption b {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 24px;
  font-weight: 600;
}
.screen-gallery figcaption span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 7px;
}
.watch-section {
  padding-block: 110px;
  border-top: 1px solid var(--line);
  background: #071c16;
  color: var(--text);
}
.watch-section .eyebrow {
  color: var(--lime);
}
.watch-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}
.watch-gallery figure {
  margin: 0;
}
.watch-gallery .watch-shell {
  border-radius: 42px;
}
.watch-gallery figcaption {
  padding: 20px 8px 0;
}
.watch-gallery figcaption b,
.watch-gallery figcaption span {
  display: block;
}
.watch-gallery figcaption b {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 24px;
  font-weight: 600;
}
.watch-gallery figcaption span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.capabilities {
  padding-block: 92px;
  background: var(--night);
  color: var(--text);
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.capability-grid article {
  padding: 28px;
  border-bottom: 1px solid var(--line);
}
.capability-grid article + article {
  border-left: 1px solid var(--line);
}
.capability-grid article:nth-child(4) {
  border-left: 0;
}
.capability-grid .label {
  color: var(--mint);
}
.capability-grid h3 {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin: 11px 0;
}
.capability-grid article > p:last-child {
  color: var(--muted);
  line-height: 1.55;
}
.privacy-promise {
  padding-block: 105px;
  background: #0d2a21;
  color: var(--text);
  border-block: 1px solid var(--line);
}
.privacy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 85px;
}
.privacy-grid .eyebrow {
  color: var(--mint);
}
.privacy-grid h2 {
  font-size: 56px;
  margin-top: 14px;
}
.privacy-grid > div > p:not(.eyebrow) {
  color: var(--muted);
}
.privacy-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
}
.privacy-facts p {
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.privacy-facts p:nth-child(odd) {
  padding-right: 20px;
}
.privacy-facts p:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}
.privacy-facts strong,
.privacy-facts span {
  display: block;
}
.privacy-facts strong {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 23px;
  font-weight: 600;
}
.privacy-facts span {
  margin-top: 6px;
  color: var(--muted);
}
.dark-link {
  display: inline-block;
  margin-top: 25px;
  color: var(--text);
}
.contact-section {
  padding-block: 105px;
  background: var(--night);
  color: var(--text);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 80px;
  align-items: start;
}
.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
}
.contact-notes {
  margin-top: 38px;
}
.contact-notes p {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact-notes strong,
.contact-notes span {
  display: block;
}
.contact-notes span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}
.contact-form {
  padding: 34px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.field label {
  font-weight: 750;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #587368;
  border-radius: 5px;
  background: #071d17;
  color: var(--text);
  padding: 12px;
  font: inherit;
}
.field textarea {
  resize: vertical;
  min-height: 150px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--mint);
}
.field-hint,
.field-error {
  font-size: 12px;
  line-height: 1.4;
}
.field-hint {
  color: var(--muted);
}
.field-error {
  color: #ffb1a2;
  min-height: 1px;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.cf-turnstile {
  min-height: 65px;
  margin: 5px 0 12px;
}
.form-privacy {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}
.form-status {
  margin: 0;
  color: #c4d7ce;
  font-size: 14px;
  line-height: 1.4;
}
.final-cta {
  padding-block: 96px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0, rgba(88, 237, 170, 0.16), transparent 55%),
    var(--night-2);
}
.final-cta-inner {
  max-width: 760px;
  text-align: center;
}
.final-cta .eyebrow {
  color: var(--mint);
}
.final-cta h2 {
  margin: 14px 0 18px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.final-cta p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.final-cta .button {
  min-width: 220px;
}

.site-footer {
  padding-block: 34px;
  border-top: 1px solid var(--line);
  background: #04110e;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}
.footer-grid p {
  text-align: center;
}
.footer-grid nav {
  display: flex;
  gap: 18px;
}
.footer-grid nav a {
  text-decoration: none;
}
.copyright {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  text-align: center;
}
.legal-page {
  background: var(--night-2);
  color: var(--text);
}
.legal-page .site-header {
  background: var(--night);
  color: var(--text);
}
.legal {
  max-width: 850px;
  padding-block: 76px 105px;
}
.legal .eyebrow {
  color: var(--mint);
}
.legal h1 {
  font-size: 60px;
  line-height: 1.02;
  margin: 15px 0;
}
.legal-lede {
  font-size: 18px;
  color: var(--muted);
}
.legal section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.legal section:first-of-type {
  margin-top: 52px;
}
.legal h2 {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 29px;
  font-weight: 600;
  margin: 0 0 12px;
}
.legal p,
.legal li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}
.legal a {
  color: var(--mint);
}
.legal-page .site-footer {
  color: var(--muted);
}
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr 0.78fr;
    gap: 45px;
  }
  .hero-screen {
    width: 320px;
  }
  .feature-ledger article > div {
    grid-template-columns: 140px 1fr;
  }
  .feature-ledger article > div > p:last-child {
    grid-column: 1/-1;
  }
  .split-story {
    gap: 55px;
  }
  .screen-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 28px;
  }
  .screen-gallery figure {
    max-width: 340px;
    margin: auto;
  }
  .paired-walk-screens {
    width: 410px;
  }
  .paired-phone {
    width: 300px;
  }
  .paired-watch {
    width: 185px;
  }
  .contact-grid {
    gap: 50px;
  }
  .signal-strip .wrap {
    overflow: auto;
    justify-content: flex-start;
  }
  .signal-strip span {
    white-space: nowrap;
  }
}
@media (max-width: 760px) {
  .wrap {
    padding-inline: 19px;
  }
  .nav {
    height: 66px;
  }
  .nav-links > a:not(.button) {
    display: none;
  }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 52px 76px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .lede {
    font-size: 17px;
  }
  .hero-screen {
    width: min(330px, 88vw);
    margin-top: 25px;
    transform: none;
  }
  .signal-strip .wrap {
    min-height: 58px;
  }
  .section-intro h2,
  .story-copy h2,
  .contact-copy h2 {
    font-size: 41px;
  }
  .privacy-grid h2 {
    font-size: 44px;
  }
  .feature-section,
  .walk-story,
  .screens-section,
  .watch-section,
  .privacy-promise,
  .contact-section,
  .final-cta {
    padding-block: 78px;
  }
  .feature-ledger article {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }
  .feature-ledger article > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .feature-ledger article > div > p:last-child {
    grid-column: auto;
  }
  .split-story,
  .privacy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .product-screen,
  .paired-walk-screens {
    width: min(390px, 92vw);
  }
  .paired-walk-screens {
    min-height: 585px;
  }
  .paired-phone {
    width: min(310px, 73vw);
  }
  .paired-watch {
    right: 0;
    bottom: 48px;
    width: min(180px, 44vw);
  }
  .story-copy {
    order: -1;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .capability-grid article + article {
    border-left: 0;
  }
  .privacy-grid {
    gap: 35px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-grid p {
    text-align: center;
  }
  .footer-grid nav {
    justify-content: center;
  }
  .legal h1 {
    font-size: 46px;
  }
  .watch-gallery {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .watch-gallery figure {
    width: min(330px, 88vw);
    margin: auto;
  }
}
@media (max-width: 520px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .text-link {
    text-align: center;
  }
  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .screen-gallery {
    grid-template-columns: 1fr;
  }
  .screen-gallery figure {
    max-width: 310px;
  }
  .watch-gallery figure {
    width: min(310px, 88vw);
  }
  .privacy-facts {
    grid-template-columns: 1fr;
  }
  .privacy-facts p:nth-child(odd),
  .privacy-facts p:nth-child(even) {
    padding-inline: 0;
    border-left: 0;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px 17px;
  }
  .final-cta .button {
    width: 100%;
  }
  .submit-row {
    align-items: stretch;
    flex-direction: column;
  }
  .form-status {
    min-height: 20px;
  }
  .legal {
    padding-top: 52px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
