﻿:root {
  color-scheme: light;
  --navy: #091821;
  --navy-2: #102c3a;
  --ink: #10242f;
  --muted: #667782;
  --line: #dce8e3;
  --green: #16a36f;
  --green-dark: #08764f;
  --mint: #e8f8ef;
  --aqua: #c9f3e3;
  --bg: #f6fbf8;
  --white: #ffffff;
  --gold: #f5c65b;
  --shadow: 0 26px 80px rgba(9, 24, 33, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(22, 163, 111, 0.18), transparent 34rem),
    linear-gradient(180deg, #f7fcf9 0%, #eef8f2 46%, #f8fbf9 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; }

.ambient {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(42px);
  opacity: 0.25;
  z-index: -2;
}

.ambient-one {
  top: -12rem;
  right: -7rem;
  background: var(--green);
  animation: drift 14s ease-in-out infinite alternate;
}

.ambient-two {
  bottom: -14rem;
  left: -9rem;
  background: #7bd4ff;
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 42px;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(220, 232, 227, 0.8);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 23px;
  text-decoration: none;
  color: var(--navy);
}

.brand-icon {
  width: 36px;
  height: 36px;
  display: inline-block;
  border-radius: 10px;
  object-fit: cover;
  background: transparent;
  box-shadow: none;
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #536673;
  font-weight: 750;
  font-size: 15px;
}

nav a:hover { color: var(--green-dark); }

.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 92px 32px 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: 54px;
}

.demo-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.video-stage {
  padding: 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(22, 163, 111, 0.26), transparent 22rem),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.video-frame {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 30% 24%, rgba(22, 163, 111, 0.42), transparent 14rem);
  background-size: 28px 28px, 28px 28px, auto;
  color: var(--white);
}

.video-frame h2 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
}

.video-frame p {
  color: #d9eae3;
}

.play-mark {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  border-radius: 999px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 28px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.demo-reel {
  position: relative;
  overflow: hidden;
}

.demo-reel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(22, 163, 111, 0.3), transparent 16rem),
    radial-gradient(circle at 84% 28%, rgba(123, 212, 255, 0.18), transparent 14rem);
  pointer-events: none;
}

.reel-window {
  position: relative;
  min-height: 490px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #07151e, #123141);
  background-size: 30px 30px, 30px 30px, auto;
}

.reel-progress {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 22px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
  z-index: 4;
}

.reel-progress span {
  display: block;
  height: 100%;
  width: 38%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #83f0bd);
  animation: reelProgress 13s ease-in-out infinite;
}

.reel-scene {
  position: absolute;
  inset: 46px 24px 24px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  animation: sceneCycle 24s infinite;
}

.reel-scene:nth-of-type(2) { animation-delay: 4s; }
.reel-scene:nth-of-type(3) { animation-delay: 8s; }
.reel-scene:nth-of-type(4) { animation-delay: 12s; }
.reel-scene:nth-of-type(5) { animation-delay: 16s; }
.reel-scene:nth-of-type(6) { animation-delay: 20s; }

.reel-copy h2,
.reel-copy h3 {
  color: var(--white);
}

.reel-copy h3 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.04;
}

.reel-copy p {
  color: #d8e8e1;
  font-size: 18px;
}

.reel-visual {
  min-height: 300px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.reel-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 163, 111, 0.12), transparent);
}

.reel-product,
.reel-widget,
.reel-cart,
.reel-dashboard,
.reel-cta {
  position: absolute;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(9, 24, 33, 0.12);
}

.reel-product {
  left: 24px;
  top: 28px;
  width: 42%;
  height: 170px;
  background:
    radial-gradient(circle at 36% 30%, #fff 0 8%, transparent 9%),
    linear-gradient(135deg, #dff6e9, #a3ebcc);
}

.reel-widget {
  left: 44%;
  right: 24px;
  top: 70px;
  padding: 18px;
}

.reel-widget strong,
.reel-cart strong,
.reel-dashboard strong,
.reel-cta strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 8px;
}

.reel-widget button,
.reel-cta button {
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.reel-cart {
  left: 38px;
  right: 38px;
  top: 58px;
  padding: 22px;
}

.reel-cart::after {
  content: "Cart verified";
  display: inline-flex;
  margin-top: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 900;
}

.reel-dashboard {
  inset: 40px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.reel-dashboard .metric {
  padding: 18px;
  border-radius: 14px;
  background: #f1faf5;
}

.reel-dashboard .metric span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.reel-cta {
  inset: 44px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.demo-summary-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.demo-summary-grid article {
  padding: 18px;
}

.demo-summary-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 78px 32px;
}

.hero h1,
.page h1 {
  margin: 0 0 22px;
  max-width: 900px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.page h1 { font-size: clamp(38px, 5vw, 62px); }

h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -0.025em;
}

h3 {
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

p { margin-top: 0; }

.lead {
  max-width: 820px;
  color: #526672;
  font-size: clamp(19px, 2.2vw, 24px);
}

.eyebrow,
.tiny-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin-bottom: 14px;
  border: 1px solid rgba(22, 163, 111, 0.24);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tiny-pill {
  padding: 5px 9px;
  font-size: 11px;
}

.tiny-pill.green { background: var(--mint); }

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), #2bd98e);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(22, 163, 111, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(22, 163, 111, 0.32);
}

.button.secondary {
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(9, 24, 33, 0.18);
}

.trust-note {
  color: #617480;
  font-weight: 750;
}

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

.grid-glow {
  position: absolute;
  inset: 18px 0 0 18px;
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(135deg, rgba(22, 163, 111, 0.28), rgba(9, 24, 33, 0.1));
  background-size: 34px 34px, 34px 34px, auto;
  animation: gridShift 14s linear infinite;
  box-shadow: var(--shadow);
}

.mock {
  position: relative;
  border: 1px solid rgba(220, 232, 227, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.browser-mock {
  padding-bottom: 22px;
  overflow: hidden;
}

.mock-top {
  display: flex;
  gap: 7px;
  padding: 16px 18px;
  background: var(--navy);
}

.mock-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #dfeae4;
}

.product-layout {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 24px;
}

.product-image,
.widget-image {
  border-radius: 18px;
  background:
    radial-gradient(circle at 34% 30%, #ffffff 0 9%, transparent 10%),
    linear-gradient(135deg, #dff6e9, #9be5c6);
}

.product-image { min-height: 132px; }

.product-copy h2 {
  font-size: 26px;
  margin: 0 0 8px;
}

.widget-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  margin: 0 24px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfefc;
}

.widget-card button {
  grid-column: 1 / -1;
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.widget-image { height: 76px; }

.cart-mock {
  position: absolute;
  right: -8px;
  bottom: 128px;
  width: 220px;
  padding: 20px;
}

.metric-mock {
  position: absolute;
  left: -16px;
  bottom: 36px;
  width: 300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
}

.metric-mock div {
  padding: 20px;
  background: var(--white);
}

.metric-mock strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
}

.metric-mock span {
  color: var(--muted);
  font-weight: 750;
}

.floating-card { animation: floatCard 6.5s ease-in-out infinite; }
.delay-one { animation-delay: 0.8s; }
.delay-two { animation-delay: 1.5s; }

.problem-section,
.how-section,
.proof-section,
.why-section,
.roadmap-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 32px;
}

.problem-section,
.proof-section {
  border-top: 1px solid rgba(220, 232, 227, 0.8);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

.section-heading p {
  color: #526672;
  font-size: 19px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.five { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

article,
.note,
.info-card,
.lift-card,
.proof-card,
.roadmap-card,
.story-card {
  border: 1px solid rgba(220, 232, 227, 0.95);
  border-radius: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(9, 24, 33, 0.07);
}

.lift-card,
.proof-card,
.roadmap-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.lift-card:hover,
.proof-card:hover,
.roadmap-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 163, 111, 0.32);
  box-shadow: 0 24px 70px rgba(9, 24, 33, 0.12);
}

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

.steps article {
  position: relative;
  overflow: hidden;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.screen {
  min-height: 210px;
  margin-bottom: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--mint);
  position: relative;
  overflow: hidden;
}

.product-screen::before,
.cart-screen::before,
.dashboard-screen::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 55px rgba(9, 24, 33, 0.09);
}

.product-screen::after {
  content: "Product page upsell";
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 42px;
  padding: 18px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.cart-screen::after {
  content: "Added to cart";
  position: absolute;
  left: 42px;
  top: 52px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.dashboard-screen::after {
  content: "Views + verified accepts";
  position: absolute;
  left: 42px;
  right: 42px;
  top: 52px;
  padding: 18px;
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  border: 1px solid var(--line);
}

.beta-panel {
  max-width: 1180px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 44px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(22, 163, 111, 0.24), transparent 24rem),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  box-shadow: var(--shadow);
}

.beta-panel h2,
.beta-panel .eyebrow {
  color: var(--white);
}

.beta-panel p { color: #d8e8e1; }

.beta-list {
  display: grid;
  gap: 14px;
}

.beta-list p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.roadmap-section {
  padding-bottom: 92px;
}

.roadmap-card {
  background: linear-gradient(180deg, #ffffff, #f0faf4);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 42px;
  background: var(--navy);
  color: var(--white);
}

.site-footer p {
  margin: 10px 0 0;
  color: #cfe0d9;
}

.site-footer nav {
  justify-content: flex-end;
}

.site-footer nav a { color: var(--white); }

.footer-brand { color: var(--white); }

.cards,
.check-list,
.plain-list {
  padding-left: 20px;
}

.cards {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 14px;
}

.cards li,
.note {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: var(--white);
}

.check-list li,
.plain-list li {
  margin-bottom: 10px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.mailto {
  color: var(--green-dark);
  font-weight: 900;
}

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

@keyframes gridShift {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 34px 34px, 34px 34px, 0 0; }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(28px, 18px, 0) scale(1.08); }
}

@keyframes reelProgress {
  0% { width: 8%; }
  45% { width: 68%; }
  100% { width: 100%; }
}

@keyframes sceneCycle {
  0% { opacity: 0; transform: translateY(20px) scale(0.98); }
  4% { opacity: 1; transform: translateY(0) scale(1); }
  15% { opacity: 1; transform: translateY(0) scale(1); }
  20% { opacity: 0; transform: translateY(-16px) scale(0.99); }
  100% { opacity: 0; transform: translateY(-16px) scale(0.99); }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 24px;
  }

  .hero,
  .demo-hero,
  .split,
  .beta-panel,
  .proof-grid {
    grid-template-columns: 1fr;
  }

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

  .steps,
  .grid.three,
  .demo-summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reel-scene {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .reel-visual {
    min-height: 230px;
  }

  .cart-mock {
    right: 6px;
  }
}

@media (max-width: 640px) {
  .hero,
  .page,
  .problem-section,
  .how-section,
  .proof-section,
  .why-section,
  .roadmap-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 58px;
  }

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

  .grid-glow,
  .cart-mock,
  .metric-mock {
    position: relative;
    inset: auto;
    width: auto;
    margin-top: 16px;
  }

  .grid-glow {
    min-height: 0;
    display: none;
  }

  .product-layout,
  .steps,
  .grid.three,
  .metric-mock,
  .demo-summary-grid {
    grid-template-columns: 1fr;
  }

  .reel-window {
    min-height: 660px;
  }

  .reel-scene {
    inset: 42px 14px 14px;
    padding: 16px;
  }

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

  .beta-panel {
    margin: 30px 20px;
    padding: 28px;
  }

  .site-footer {
    flex-direction: column;
    padding: 32px 24px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
