:root {
  --ink: #10202a;
  --body: #4e5d66;
  --muted: #7a8a93;
  --paper: #f7faf9;
  --surface: #ffffff;
  --surface-2: #eef7f4;
  --line: #dce7e4;
  --teal: #12a88a;
  --teal-dark: #087462;
  --blue: #2678d9;
  --navy: #102f4a;
  --lime: #b8f06a;
  --warning: #fff3d6;
  --shadow: 0 24px 70px rgba(16, 32, 42, 0.12);
  --soft-shadow: 0 16px 45px rgba(16, 32, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(18, 168, 138, 0.1), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 44%, #ffffff 100%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.58;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 14px clamp(18px, 6vw, 96px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 231, 228, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.trust-row {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  border-radius: 13px;
  filter: drop-shadow(0 10px 18px rgba(18, 168, 138, 0.16));
}

.brand-lockup {
  display: grid;
  line-height: 1.02;
}

.brand-lockup strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand-lockup span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  justify-self: center;
  gap: clamp(22px, 4vw, 44px);
  color: var(--body);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a,
.nav-cta,
.floating-waitlist {
  transition: transform 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover {
  color: var(--teal-dark);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
}

.nav-cta:hover,
.floating-waitlist:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(16, 32, 42, 0.18);
}

.floating-waitlist {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 60;
  display: grid;
  min-width: 164px;
  padding: 12px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink), var(--navy));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(16, 32, 42, 0.22);
}

.floating-waitlist span {
  font-size: 0.78rem;
  opacity: 0.78;
}

.floating-waitlist strong {
  font-size: 0.95rem;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 440px);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 108px) clamp(18px, 5vw, 54px) 64px;
}

.hero-copy-block {
  max-width: 690px;
}

.eyebrow,
.form-eyebrow,
.small-label {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 7.4vw, 6.4rem);
  font-weight: 900;
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--body);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink), var(--navy));
  box-shadow: 0 16px 32px rgba(16, 32, 42, 0.16);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: rgba(18, 168, 138, 0.45);
  box-shadow: var(--soft-shadow);
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: var(--body);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.waitlist-form {
  position: relative;
  display: grid;
  gap: 15px;
  padding: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 231, 228, 0.9);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.waitlist-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(18, 168, 138, 0.12), transparent 38%);
}

.waitlist-form > * {
  position: relative;
}

.waitlist-form h2 {
  font-size: 2.05rem;
}

.form-intro {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-grid,
.form-field {
  display: grid;
}

.form-grid {
  gap: 14px;
}

.form-field {
  gap: 7px;
}

label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

label span {
  color: var(--muted);
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(18, 168, 138, 0.14);
}

.phone-field {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
}

.phone-field input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.country-code-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 48px;
  padding: 0 11px;
  color: var(--ink);
  background: #f4faf8;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  cursor: pointer;
  font-weight: 900;
  transition: background 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.country-code-button:hover,
.country-code-button:focus {
  background: #ffffff;
  border-color: var(--teal);
  outline: none;
}

.country-flag {
  width: 22px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1;
}

.country-code {
  color: var(--navy);
  font-size: 0.9rem;
}

.country-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 80;
  width: min(360px, 92vw);
  max-height: 330px;
  overflow: hidden;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

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

#country-search {
  min-height: 42px;
  margin-bottom: 8px;
  border-radius: 12px;
}

.country-list {
  display: grid;
  max-height: 252px;
  overflow-y: auto;
  padding-right: 4px;
}

.country-option {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 40px;
  padding: 8px 9px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  text-align: left;
}

.country-option:hover,
.country-option[aria-selected="true"] {
  background: #eef7f4;
}

.country-option-flag {
  font-size: 1.05rem;
  text-align: center;
}

.country-option-name {
  overflow: hidden;
  font-size: 0.88rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-option-code {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.field-error {
  min-height: 17px;
  color: #9a4200;
  font-size: 0.78rem;
  font-weight: 800;
}

.form-button {
  width: 100%;
}

.form-button.is-loading {
  cursor: wait;
  opacity: 0.74;
}

.form-status {
  display: none;
  padding: 12px 13px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 850;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #164c35;
  background: #e7f7ef;
  border: 1px solid #bfe8d3;
}

.form-status.is-error {
  color: #7c2d12;
  background: #fff3e8;
  border: 1px solid #f2cfb2;
}

.product-section,
.section,
.final-cta,
.disclaimer-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 76px clamp(18px, 5vw, 54px);
}

.product-section {
  padding-top: 28px;
}

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

.section-heading.centered {
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p,
.final-cta p,
.copy-stack p,
.privacy-copy p,
.step-card p,
.feature-grid p,
.disclaimer-section p {
  margin: 16px 0 0;
  color: var(--body);
}

.product-showcase {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.app-window {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.app-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  background: #fbfdfc;
  border-bottom: 1px solid var(--line);
}

.app-topbar strong {
  margin-left: 12px;
  color: var(--body);
  font-size: 0.86rem;
}

.window-dot {
  width: 11px;
  height: 11px;
  background: #c8d5d1;
  border-radius: 999px;
}

.window-dot:first-child {
  background: #ff725f;
}

.window-dot:nth-child(2) {
  background: #ffc34d;
}

.window-dot:nth-child(3) {
  background: #36c971;
}

.app-body {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  min-height: 520px;
}

.app-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  background: #f3f8f6;
  border-right: 1px solid var(--line);
}

.sidebar-logo {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(16, 32, 42, 0.12);
}

.app-sidebar a {
  padding: 10px 12px;
  color: var(--body);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 850;
}

.app-sidebar a.is-active {
  color: var(--teal-dark);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 32, 42, 0.06);
}

.app-main {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.app-header,
.timeline-header,
.review-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.app-header h3 {
  margin-top: 2px;
  font-size: 1.7rem;
}

.health-pill,
.timeline-header span {
  padding: 7px 11px;
  color: var(--teal-dark);
  background: #e5f8f1;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

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

.metric-card,
.timeline-card,
.review-row,
.feature-grid article,
.step-card,
.privacy-list,
.stats-strip div {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.metric-card {
  padding: 16px;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.metric-card strong {
  display: block;
  margin-top: 6px;
  font-size: 2rem;
  line-height: 1;
}

.timeline-card {
  padding: 18px;
}

.timeline-header strong {
  display: block;
  font-size: 1.08rem;
}

.chart-area {
  position: relative;
  height: 170px;
  margin-top: 16px;
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(220, 231, 228, 0.82) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(220, 231, 228, 0.82) 1px, transparent 1px);
  background-size: 25% 50%;
  border-radius: 16px;
}

.range-band {
  position: absolute;
  inset: 55px 0 56px;
  background: rgba(18, 168, 138, 0.12);
}

.chart-line {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 84px;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 999px;
  transform: rotate(-6deg);
  transform-origin: left center;
  animation: chartPulse 4.5s ease-in-out infinite;
}

.point {
  position: absolute;
  width: 15px;
  height: 15px;
  background: #ffffff;
  border: 4px solid var(--teal);
  border-radius: 999px;
}

.point-one {
  left: 11%;
  top: 94px;
}

.point-two {
  left: 36%;
  top: 82px;
}

.point-three {
  left: 63%;
  top: 72px;
}

.point-four {
  left: 86%;
  top: 62px;
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-row {
  grid-template-columns: minmax(0, 1fr) auto auto;
  padding: 13px 14px;
}

.review-row span {
  font-weight: 900;
}

.review-row strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.review-row em {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.review-row.needs-review {
  background: var(--warning);
}

.mobile-card {
  position: absolute;
  right: -18px;
  bottom: 42px;
  width: min(280px, 42vw);
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  animation: floatCard 5s ease-in-out infinite;
}

.mobile-card span {
  display: block;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.1rem;
}

.mobile-card p {
  margin: 8px 0 0;
  color: var(--body);
  font-size: 0.9rem;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.stats-strip div {
  padding: 20px;
}

.stats-strip strong {
  display: block;
  color: var(--teal-dark);
  font-size: 2.15rem;
  line-height: 1;
}

.stats-strip span {
  display: block;
  margin-top: 8px;
  color: var(--body);
  font-weight: 800;
}

.split-section,
.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.workflow-grid,
.feature-grid {
  display: grid;
  gap: 16px;
}

.workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.step-card {
  min-height: 225px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--soft-shadow);
}

.step-number {
  display: inline-grid;
  width: 44px;
  height: 34px;
  place-items: center;
  margin-bottom: 26px;
  color: var(--teal-dark);
  background: #e8f7f2;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.feature-band {
  padding-top: 52px;
  padding-bottom: 52px;
}

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

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

.feature-icon {
  display: inline-grid;
  min-width: 54px;
  height: 38px;
  place-items: center;
  margin-bottom: 28px;
  padding: 0 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.privacy-copy p {
  max-width: 520px;
}

.privacy-list {
  display: grid;
  overflow: hidden;
}

.privacy-list div {
  display: grid;
  gap: 5px;
  padding: 20px;
}

.privacy-list div + div {
  border-top: 1px solid var(--line);
}

.privacy-list strong {
  color: var(--ink);
}

.privacy-list span {
  color: var(--body);
}

.final-cta {
  margin-top: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 15% 10%, rgba(184, 240, 106, 0.26), transparent 21rem),
    linear-gradient(135deg, #10314c, #0c7562);
  border-radius: 32px;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.final-cta .eyebrow,
.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta .button {
  margin-top: 24px;
  color: var(--ink);
  background: #ffffff;
}

.disclaimer-section {
  margin-top: 42px;
  padding-top: 28px;
  padding-bottom: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.disclaimer-section h2 {
  font-size: 1.06rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px clamp(18px, 5vw, 54px) 78px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes chartPulse {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.35);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-section,
  .split-section,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding-inline: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-lockup strong {
    font-size: 0.95rem;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 14px;
  }

  .floating-waitlist {
    right: 14px;
    bottom: 14px;
    min-width: 148px;
    padding: 10px 13px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.55rem);
  }

  .hero-section,
  .product-section,
  .section,
  .final-cta,
  .disclaimer-section {
    padding-inline: 16px;
  }

  .waitlist-form {
    padding: 20px;
  }

  .app-body {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

  .app-main {
    padding: 16px;
  }

  .app-header,
  .timeline-header,
  .review-row {
    grid-template-columns: 1fr;
  }

  .metric-grid,
  .workflow-grid,
  .feature-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .mobile-card {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .step-card,
  .feature-grid article {
    min-height: auto;
  }

  .final-cta {
    border-radius: 24px;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 96px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
