:root {
  color-scheme: dark;
  --bg: #050607;
  --ink: #f7fafc;
  --muted: #a8b3bd;
  --dim: #6f7d89;
  --surface: #101418;
  --surface-2: #171d22;
  --border: #26323c;
  --cyan: #00d1ff;
  --green: #00e676;
  --purple: #7c4dff;
  --yellow: #ffd166;
  --danger: #ff4d6d;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 14px;
  left: 50%;
  width: min(calc(100% - 28px), var(--max));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(247, 250, 252, 0.1);
  border-radius: 16px;
  background: rgba(5, 6, 7, 0.76);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav,
.hero-actions,
.form-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
}

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

.site-header nav {
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.site-header nav a:hover {
  color: var(--ink);
}

.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 10px;
  color: #031015;
  background: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.hero {
  min-height: 88svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px max(24px, calc((100vw - var(--max)) / 2)) 72px;
  border-bottom: 1px solid rgba(247, 250, 252, 0.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 34%, rgba(0, 209, 255, 0.14), transparent 28%),
    radial-gradient(circle at 12% 76%, rgba(124, 77, 255, 0.12), transparent 34%),
    #050607;
}

.scene-phone,
.scene-ticket,
.mini-ui,
.steps article,
.path-cards article,
.fi-grid div,
.proof-grid article {
  border: 1px solid rgba(247, 250, 252, 0.1);
  background: rgba(16, 20, 24, 0.86);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.scene-phone {
  position: absolute;
  width: clamp(250px, 28vw, 360px);
  min-height: 610px;
  right: max(24px, calc((100vw - var(--max)) / 2));
  top: 50%;
  transform: translateY(-43%) rotate(3deg);
  border-radius: 38px;
  padding: 24px;
}

.phone-brandbar {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.phone-wordmark {
  width: 44px;
  height: 28px;
  object-fit: fill;
  object-position: center;
}

.phone-signal {
  color: var(--green);
  font-size: 8px;
}

.phone-balance {
  padding: 20px;
  border-radius: 20px;
  background: #080b0d;
  border: 1px solid var(--border);
}

.phone-balance p,
.phone-balance span,
.section-kicker,
.trust-note,
.mini-balance span,
.mini-grid span,
.form-status,
.site-footer p {
  color: var(--muted);
}

.phone-balance p {
  margin: 0 0 8px;
  font-size: 13px;
}

.phone-balance strong {
  display: block;
  font-size: 58px;
  line-height: 0.94;
  letter-spacing: 0;
  transition: color 180ms ease, transform 180ms ease;
}

.phone-balance span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.balance-pop {
  color: var(--cyan);
  transform: scale(1.035);
}

.phone-roundup {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 230, 118, 0.28);
  border-radius: 16px;
  background: rgba(0, 230, 118, 0.07);
}

.roundup-purchase,
.roundup-added {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
}

.roundup-purchase {
  color: var(--muted);
  background: rgba(16, 20, 24, 0.86);
}

.roundup-purchase span,
.roundup-added span {
  font-size: 11px;
  font-weight: 800;
}

.roundup-purchase strong,
.roundup-added strong {
  color: var(--ink);
  font-size: 14px;
}

.roundup-purchase small {
  color: var(--muted);
  font-size: 11px;
}

.roundup-added {
  border-top: 1px solid rgba(0, 230, 118, 0.18);
  color: var(--green);
}

.roundup-added strong {
  color: var(--green);
}

.phone-growth {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 2px 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.phone-growth strong {
  color: var(--green);
  font-size: 13px;
}

.phone-card {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  margin-top: 4px;
  padding: 17px;
  border: 1px solid rgba(0, 209, 255, 0.42);
  border-radius: 18px;
  background: #122329;
  box-shadow: 0 16px 34px rgba(0, 209, 255, 0.1);
}

.phone-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -48px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(0, 209, 255, 0.25);
  border-radius: 50%;
}

.phone-card-top,
.phone-card-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.7px;
}

.phone-card-wordmark {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 32px;
  object-fit: fill;
  object-position: center;
}

.phone-card-number {
  position: relative;
  z-index: 1;
  display: block;
  margin: 26px 0 18px;
  color: var(--ink);
  font-size: 17px;
  letter-spacing: 2px;
}

.phone-caption {
  margin: 10px 2px 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.scene-ticket {
  position: absolute;
  display: grid;
  gap: 5px;
  width: 218px;
  padding: 18px;
  border-radius: 18px;
}

.scene-ticket span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.scene-ticket strong {
  font-size: 20px;
}

.ticket-one {
  right: min(43vw, 560px);
  top: 22%;
}

.ticket-two {
  right: min(8vw, 110px);
  bottom: 15%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(64px, 12vw, 138px);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-line {
  margin-bottom: 16px;
  font-size: clamp(30px, 5vw, 60px);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 570px;
  color: #dbe4eb;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.pocket-line {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--green);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 850;
  line-height: 1.22;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  padding: 0 18px;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
}

.button-primary {
  background: var(--cyan);
  color: #031015;
}

.button-secondary {
  background: rgba(247, 250, 252, 0.08);
  color: var(--ink);
  border: 1px solid rgba(247, 250, 252, 0.12);
}

.trust-note {
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.section {
  position: relative;
  padding: 86px 24px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.two-column,
.interface-layout,
.fi-layout,
.about-grid,
.waitlist-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.1;
}

.copy-stack p,
.interface-copy p,
.about-copy p,
.waitlist-layout p {
  color: #c7d0d8;
  font-size: 18px;
  line-height: 1.62;
}

.intro-band,
.about-band {
  background: #080a0c;
}

.product-band,
.path-band,
.fi-band,
.about-proof-band,
.waitlist-band {
  background: #050607;
}

.interface-band {
  background: #0b0e11;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.path-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.path-cards,
.fi-grid,
.proof-grid {
  display: grid;
  gap: 14px;
}

.path-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.path-cards article,
.proof-grid article {
  min-height: 300px;
  border-radius: 8px;
  padding: 24px;
}

.path-cards span,
.proof-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-cards h3,
.proof-grid h3 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.path-cards p,
.proof-grid p,
.fi-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.path-cards a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--cyan);
  font-weight: 850;
}

.fi-layout {
  align-items: center;
}

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

.definition-copy {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 750;
  line-height: 1.45;
}

.definition-copy + .button {
  margin-top: 24px;
}

.fi-grid div {
  min-height: 160px;
  border-radius: 8px;
  padding: 22px;
}

.fi-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.steps article {
  min-height: 210px;
  border-radius: 8px;
  padding: 22px;
}

.steps span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.steps p {
  color: var(--muted);
  line-height: 1.5;
}

.interface-layout {
  align-items: center;
}

.mini-ui {
  width: min(100%, 420px);
  justify-self: end;
  border-radius: 26px;
  padding: 24px;
}

.mini-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 750;
}

.mini-top img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.mini-balance {
  margin-bottom: 20px;
}

.mini-balance strong {
  display: block;
  margin: 6px 0;
  font-size: 70px;
  line-height: 0.95;
  letter-spacing: 0;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.mini-grid div,
.mini-activity div {
  border-radius: 8px;
  padding: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.mini-grid b {
  display: block;
  margin-bottom: 3px;
}

.mini-activity {
  display: grid;
  gap: 10px;
}

.mini-activity div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.mini-activity span {
  color: #dfe7ee;
}

.mini-activity b {
  color: var(--green);
}

.waitlist-layout {
  align-items: center;
}

.waitlist-form {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(16, 20, 24, 0.92);
  border: 1px solid rgba(247, 250, 252, 0.1);
}

.waitlist-form label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-row {
  gap: 10px;
}

input,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
  background: #080b0d;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

select {
  appearance: none;
  background: #080b0d;
  color: var(--ink);
}

input:focus,
select:focus,
.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(0, 209, 255, 0.42);
  outline-offset: 3px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.about-hero {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 124px 0 70px;
}

.about-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.94;
}

.about-copy .about-pocket {
  color: var(--yellow);
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 250, 252, 0.12);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

.about-photo img {
  width: 100%;
  height: min(70vh, 720px);
  object-fit: cover;
  object-position: 50% 18%;
}

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

.about-cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(247, 250, 252, 0.08);
  color: var(--ink);
}

.site-footer span {
  font-weight: 850;
}

.site-footer p {
  max-width: 640px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.site-footer a {
  color: var(--cyan);
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding-top: 108px;
  }

  .hero-scene {
    opacity: 0.5;
  }

  .scene-phone {
    right: -168px;
    top: 57%;
    width: 280px;
    min-height: 545px;
    opacity: 0.48;
  }

  .scene-ticket {
    width: 188px;
  }

  .ticket-one {
    display: none;
  }

  .ticket-two {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .two-column,
  .interface-layout,
  .fi-layout,
  .about-grid,
  .waitlist-layout,
  .steps,
  .path-cards,
  .fi-grid,
  .proof-grid,
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero {
    width: min(100% - 36px, var(--max));
    padding-top: 112px;
  }

  .about-photo img {
    height: 520px;
  }

  .mini-ui {
    justify-self: stretch;
    width: 100%;
  }

  .form-row {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    min-height: 36px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 58px;
  }

  .hero-content {
    padding-top: 24px;
  }

  .hero-line {
    max-width: 11ch;
  }

  .hero-copy {
    max-width: 24rem;
  }

  .pocket-line {
    max-width: 20rem;
  }

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

  .section {
    padding: 66px 18px;
  }

  .steps,
  .path-cards,
  .fi-grid,
  .proof-grid {
    gap: 10px;
  }

  .mini-balance strong {
    font-size: 54px;
  }

  .about-photo img {
    height: 430px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .scene-phone {
    animation: settle 7s ease-in-out infinite alternate;
  }

  .phone-roundup {
    animation: roundup-pulse 3.2s ease-in-out infinite;
  }

  .phone-card {
    animation: card-reveal 3.2s ease-out both;
  }

  .scene-ticket {
    animation: hover 5s ease-in-out infinite alternate;
  }

  .ticket-two {
    animation-delay: 0.7s;
  }

}

@keyframes settle {
  from {
    transform: translateY(-43%) rotate(3deg);
  }
  to {
    transform: translateY(-46%) rotate(1.5deg);
  }
}

@keyframes hover {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

@keyframes roundup-pulse {
  0%,
  12%,
  100% {
    border-color: rgba(0, 230, 118, 0.28);
    transform: translateY(0);
  }
  18% {
    border-color: rgba(0, 230, 118, 0.7);
    transform: translateY(-3px);
  }
  30% {
    border-color: rgba(0, 230, 118, 0.28);
    transform: translateY(0);
  }
}

@keyframes card-reveal {
  0% {
    opacity: 0.82;
    transform: translateY(6px) scale(0.99);
  }
  36%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
