:root {
  --bg: #f7f4ec;
  --surface: #ffffff;
  --surface-soft: #f1f7f2;
  --green: #3fae49;
  --green-dark: #1f6e43;
  --green-soft: #ddf3e0;
  --ink: #17212b;
  --ink-soft: #61707a;
  --pasta-soft: #ffe2a8;
  --divider: #e3e7e1;
  --shadow-soft: 0 18px 48px rgba(31, 110, 67, 0.12);
  --shadow-card: 0 14px 30px rgba(23, 33, 43, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: Aptos, "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 226, 168, 0.75), transparent 32%),
    radial-gradient(circle at top right, rgba(221, 243, 224, 0.9), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #f7f4ec 42%, #f3efe5 100%);
}

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

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

p {
  margin: 0;
  line-height: 1.7;
  color: var(--ink-soft);
}

h1,
h2,
h3,
strong,
.button,
.eyebrow,
.step-number {
  font-family: "Arial Rounded MT Bold", Aptos, "Trebuchet MS", sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.page-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 248, 0.78);
  border-bottom: 1px solid rgba(227, 231, 225, 0.7);
}

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

.brand {
  flex-shrink: 0;
}

.brand img {
  width: 168px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--surface);
  box-shadow: 0 14px 24px rgba(63, 174, 73, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--green-soft);
  color: var(--green-dark);
}

.button-full {
  width: 100%;
}

.hero-section {
  padding: 48px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.hero-copy {
  padding: 18px 0;
}

.eyebrow-group,
.hero-actions,
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(31, 110, 67, 0.12);
  color: var(--green-dark);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.eyebrow-soft {
  background: rgba(255, 226, 168, 0.92);
  color: #7f5500;
}

.hero-copy h1 {
  max-width: 12ch;
  margin-top: 18px;
  font-size: clamp(2.6rem, 4.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 58ch;
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 28px;
}

.hero-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.97rem;
}

.hero-points li::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 0 0 6px rgba(221, 243, 224, 0.7);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
}

.orb-left {
  width: 180px;
  height: 180px;
  top: 90px;
  left: 24px;
  background: rgba(255, 176, 32, 0.24);
}

.orb-right {
  width: 260px;
  height: 260px;
  right: -28px;
  bottom: 52px;
  background: rgba(63, 174, 73, 0.16);
}

.phone-shot {
  position: absolute;
  overflow: visible;
}

.phone-shot-main {
  inset: 42px 84px 24px 32px;
  transform: rotate(-4deg);
}

.phone-shot-side {
  width: 230px;
  right: 0;
  top: 138px;
  bottom: 88px;
  transform: rotate(8deg);
}

.phone-shot-surface {
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  place-items: center;
}

.phone-shot-surface-warm {
  background: transparent;
}

.phone-shot-surface-green {
  background: transparent;
}

.hero-device {
  width: 100%;
}

.hero-device-main {
  max-width: 332px;
}

.hero-device-side {
  max-width: 210px;
}

.proof-strip {
  padding: 18px 0 26px;
}

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

.proof-grid > div {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(227, 231, 225, 0.9);
  box-shadow: var(--shadow-card);
}

.proof-grid strong,
.benefit-card h3,
.showcase-card h3,
.step-card h3,
.cta-copy h2,
.waitlist-form label,
.footer-note span,
.footer-links a {
  display: block;
}

.proof-grid strong {
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 0.98rem;
}

.proof-grid span {
  font-size: 0.95rem;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.36);
}

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

.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.section-heading p {
  margin-top: 14px;
  font-size: 0.98rem;
}

.benefit-grid,
.showcase-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

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

.benefit-card,
.showcase-card,
.step-card,
.waitlist-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(227, 231, 225, 0.92);
  box-shadow: var(--shadow-card);
}

.benefit-card {
  padding: 26px;
}

.benefit-card-accent {
  background: linear-gradient(180deg, rgba(255, 250, 239, 0.96), rgba(255, 255, 255, 0.96));
}

.benefit-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 700;
}

.benefit-card h3,
.showcase-card h3,
.step-card h3 {
  font-size: 1.06rem;
  line-height: 1.2;
}

.benefit-card p,
.showcase-card p,
.step-card p {
  margin-top: 8px;
  font-size: 0.96rem;
  line-height: 1.68;
}

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

.showcase-card {
  padding: 18px;
}

.showcase-panel {
  margin-top: 36px;
  padding: 30px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 253, 248, 0.74));
  border: 1px solid rgba(227, 231, 225, 0.9);
  box-shadow: 0 18px 44px rgba(23, 33, 43, 0.06);
}

.showcase-grid-phones {
  align-items: start;
  gap: 26px;
}

.showcase-frame {
  min-height: 320px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(247, 244, 236, 0.95), rgba(255, 255, 255, 0.95));
  display: grid;
  place-items: center;
}

.showcase-frame.warm,
.showcase-frame.green {
  background: linear-gradient(180deg, rgba(247, 244, 236, 0.95), rgba(255, 255, 255, 0.95));
}

.showcase-frame-phone {
  min-height: 500px;
  padding: 20px 16px;
}

.showcase-card-phone {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.showcase-card-phone-left {
  transform: none;
}

.showcase-card-phone-center {
  transform: none;
}

.showcase-card-phone-right {
  transform: none;
}

.iphone-mockup {
  position: relative;
  width: min(100%, 281px);
  margin: 0 auto;
  padding: 9px;
  border-radius: 40px;
  background: linear-gradient(180deg, #444d5d, #232b36);
  box-shadow:
    0 22px 44px rgba(23, 33, 43, 0.14),
    0 8px 18px rgba(23, 33, 43, 0.08);
}

.iphone-mockup::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 33px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.showcase-shot {
  width: 100%;
  aspect-ratio: 9 / 21.5;
  object-fit: contain;
  border-radius: 32px;
  background: #f7f4ec;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.showcase-copy {
  max-width: 284px;
  margin: 18px auto 0;
  text-align: left;
}

.showcase-copy h3 {
  font-size: 1.02rem;
}

.showcase-copy p {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.steps-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
}

.steps-list {
  display: grid;
  gap: 16px;
}

.step-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 24px;
}

.step-number {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--surface);
  font-size: 1.2rem;
}

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

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 24px;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(31, 110, 67, 0.94), rgba(63, 174, 73, 0.96));
  color: var(--surface);
  box-shadow: var(--shadow-soft);
}

.cta-copy h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.cta-copy p,
.waitlist-form p {
  color: rgba(255, 255, 255, 0.82);
}

.store-row {
  margin-top: 28px;
}

.store-badge {
  min-width: 156px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.store-badge-live {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 24px rgba(10, 20, 30, 0.12);
}

.store-badge-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.store-badge span {
  display: block;
  font-weight: 700;
}

.store-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.store-badge small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
}

.store-badge-disabled {
  opacity: 0.68;
}

.store-badge-disabled .store-icon,
.store-badge-disabled span,
.store-badge-disabled small {
  color: rgba(255, 255, 255, 0.72);
}

.waitlist-card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.waitlist-form {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.waitlist-form label {
  font-size: 1.05rem;
  font-weight: 700;
}

.form-message {
  min-height: 24px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  padding: 34px 0 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(140px, 0.55fr) minmax(180px, 0.7fr);
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(227, 231, 225, 0.9);
}

.footer-logo {
  width: 154px;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: var(--green-dark);
  font-weight: 700;
}

.footer-note {
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
}

@media (max-width: 1080px) {
  .hero-grid,
  .steps-layout,
  .cta-grid,
  .benefit-grid,
  .showcase-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

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

  .phone-shot-main {
    inset: 24px 80px 20px 10px;
  }

  .phone-shot-side {
    width: 220px;
    top: 94px;
    bottom: 52px;
  }

  .showcase-card-phone-left,
  .showcase-card-phone-center,
  .showcase-card-phone-right {
    transform: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
  }

  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero-section,
  .section {
    padding: 56px 0;
  }

  .hero-grid {
    gap: 24px;
  }

  .showcase-panel {
    padding: 18px;
    border-radius: 28px;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .phone-shot,
  .phone-shot-main,
  .phone-shot-side {
    position: relative;
    inset: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .phone-shot-surface {
    padding: 20px 16px;
  }

  .phone-shot-side {
    max-width: 340px;
    margin-left: auto;
  }

  .showcase-frame-phone {
    min-height: auto;
  }

  .iphone-mockup {
    width: min(100%, 320px);
  }

  .showcase-copy {
    max-width: 320px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img {
    width: 148px;
  }

  .button,
  .store-badge {
    width: 100%;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .proof-grid > div,
  .benefit-card,
  .showcase-card,
  .step-card,
  .cta-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .step-number {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .cta-grid {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
