:root {
  --green: #22C1A1;
  --green-hover: #159A80;
  --green-light: #E8FAF4;
  --green-soft: #F1FBF8;
  --ink: #07111F;
  --navy: #0B132B;
  --navy-medium: #1C2541;
  --slate: #334155;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --border: #E2E8F0;
  --text: #0B132B;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --warning: #F59E0B;
  --blue: #3B82F6;
  --shadow: 0 24px 60px -34px rgba(11, 19, 43, 0.34);
  --shadow-strong: 0 34px 100px -48px rgba(34, 193, 161, 0.74);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; margin: 0; padding: 0; }
body {
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', Arial, sans-serif;
  background:
    radial-gradient(circle at 12% -8%, rgba(34, 193, 161, 0.16), transparent 30rem),
    radial-gradient(circle at 92% 12%, rgba(59, 130, 246, 0.08), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 43%, #f8fafc 100%);
  color: var(--text);
}
main { flex: 1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.06; letter-spacing: 0; color: var(--navy); }
p { color: var(--text-secondary); line-height: 1.68; }
ul { margin: 0; padding: 0; }

.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; }
.brand { display: inline-flex; align-items: center; gap: .78rem; font-weight: 800; font-size: 1.15rem; color: var(--navy); }
.brand-mark { width: 28px; height: 28px; object-fit: contain; }
.nav-links, .nav-actions { display: flex; align-items: center; gap: 1.35rem; }
.nav-links a, .ghost-link { color: var(--text-secondary); font-size: .96rem; font-weight: 700; transition: color .2s ease; }
.nav-links a:hover, .ghost-link:hover,
.nav-links a.active { color: var(--green-hover); }
.nav-links a.active { font-weight: 850; }
.nav-toggle { display: none; border: 0; background: transparent; padding: .3rem; cursor: pointer; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: var(--ink); box-shadow: 0 18px 38px -20px rgba(34, 193, 161, .95); }
.btn-primary:hover { background: var(--green-hover); color: #fff; }
.btn-secondary { background: #fff; border-color: rgba(11, 19, 43, .12); color: var(--navy); box-shadow: var(--shadow); }
.btn-light { background: #fff; color: var(--navy); box-shadow: 0 18px 42px -28px rgba(255,255,255,.7); }

.hero { position: relative; padding: 5.4rem 0 6.4rem; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
  pointer-events: none;
}
.section { padding: 6rem 0; background: var(--bg-alt); }
.section-soft { background: var(--bg-alt); border-block: 1px solid rgba(226, 232, 240, .78); }
.mint-section { background: linear-gradient(180deg, #fff, var(--green-soft)); }
.hero-inner, .section-head { text-align: center; }
.hero-inner { position: relative; z-index: 1; display: grid; justify-items: center; gap: 1.05rem; }
.section-head { max-width: 760px; margin: 0 auto 2.55rem; }
.section-head h1 { font-size: clamp(2.35rem, 5vw, 4.45rem); max-width: 920px; margin-bottom: .3rem; }
.hero h1 { font-size: clamp(2.8rem, 5.8vw, 5.25rem); max-width: 960px; margin-bottom: .15rem; }
.section-head h2 { font-size: clamp(2.15rem, 4.6vw, 3.65rem); margin-bottom: .8rem; }
.lead { max-width: 760px; font-size: clamp(1.04rem, 2vw, 1.2rem); margin-bottom: 0; }
.brand-highlight {
  color: var(--green-hover);
  background: linear-gradient(135deg, var(--green), var(--green-hover));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 28px rgba(34, 193, 161, .34);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .52rem .82rem;
  border: 1px solid rgba(34, 193, 161, .35);
  border-radius: 999px;
  background: rgba(232, 250, 244, .9);
  color: var(--navy-medium);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 900;
}
.dark-eyebrow { background: rgba(255,255,255,.12); color: #DFFCF4; border-color: rgba(255,255,255,.22); }
.cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .85rem; margin-top: .45rem; }
.cta-row.left { justify-content: flex-start; }

.hero-visual {
  position: relative;
  width: min(1120px, 100%);
  margin-top: 2.2rem;
  padding: clamp(1rem, 3.2vw, 2.4rem);
  perspective: 1600px;
}
.green-glow {
  position: absolute;
  inset: 5% 5% -4%;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 52%, rgba(34, 193, 161, .42), transparent 42%),
    radial-gradient(circle at 76% 20%, rgba(59, 130, 246, .14), transparent 30%);
  filter: blur(18px);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero-accent {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 5px;
  width: 48px;
  min-height: 42px;
  padding: 10px;
  border: 1px solid rgba(34, 193, 161, .3);
  border-radius: 8px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 18px 44px -28px rgba(11, 19, 43, .52);
  backdrop-filter: blur(12px);
  pointer-events: none;
}
.hero-accent span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: rgba(34, 193, 161, .5);
}
.hero-accent span:nth-child(2) { width: 72%; background: rgba(59, 130, 246, .32); }
.hero-accent span:nth-child(3) { width: 44%; }
.hero-accent-1 {
  top: 2%;
  left: 19%;
  animation: accentDrift 7.5s ease-in-out infinite;
}
.hero-accent-2 {
  right: 17%;
  bottom: 5%;
  width: 42px;
  animation: accentDrift 8.5s ease-in-out 1.2s infinite reverse;
}
.browser-mockup {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .32);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.browser-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  pointer-events: none;
}
.browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: 0 .95rem;
  border-bottom: 1px solid rgba(226, 232, 240, .9);
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.browser-bar span { width: 10px; height: 10px; border-radius: 50%; background: #CBD5E1; }
.browser-bar span:first-child { background: #FB7185; }
.browser-bar span:nth-child(2) { background: #FBBF24; }
.browser-bar span:nth-child(3) { background: var(--green); }
.browser-bar strong { margin-left: .55rem; color: var(--text-muted); font-size: .78rem; font-weight: 800; letter-spacing: .02em; }
.browser-mockup img { width: 100%; height: auto; }
.hero-mockup {
  z-index: 1;
  width: 100%;
  transform: rotateX(2deg) rotateY(-3deg) rotateZ(.3deg);
  transform-origin: center;
  box-shadow: 0 42px 120px -58px rgba(11, 19, 43, .7), var(--shadow-strong);
  animation: mockupFloat 9s ease-in-out infinite;
}
.floating-card {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .82rem .98rem;
  border: 1px solid rgba(34, 193, 161, .36);
  border-radius: 16px;
  background: rgba(241, 251, 248, .96);
  box-shadow: 0 24px 64px -28px rgba(11, 19, 43, .58);
  backdrop-filter: blur(16px);
  color: var(--navy);
  font-weight: 900;
  font-size: .92rem;
  white-space: nowrap;
  animation: cardFloat 6.5s ease-in-out infinite;
}
.mini-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green-hover);
  font-size: .8rem;
  font-weight: 900;
}
.mini-icon svg {
  width: 17px;
  height: 17px;
}
.float-1 { left: 0; top: 11%; animation-delay: -.8s; }
.float-2 { right: 0; top: 14%; animation-delay: -2.4s; }
.float-3 { left: 4%; bottom: 21%; animation-delay: -3.6s; }
.float-4 { right: 6%; bottom: 18%; animation-delay: -1.7s; }
.float-5 { left: 38%; bottom: -2%; animation-delay: -4.2s; }
.founder-float {
  display: grid;
  min-width: 218px;
  gap: .42rem;
  border-color: rgba(34, 193, 161, .42);
  background: rgba(255, 255, 255, .96);
}
.founder-float strong { font-size: .95rem; }
.founder-kicker {
  width: fit-content;
  padding: .28rem .5rem;
  border-radius: 999px;
  background: rgba(34, 193, 161, .14);
  color: var(--green-hover);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.founder-mini-progress {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(11, 19, 43, .1);
}
.founder-mini-progress span {
  display: block;
  width: 94%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--green-hover));
}

.story-section { background: #fff; }
.story-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 5rem; align-items: center; }
.story-grid h2 { font-size: clamp(2.15rem, 4.5vw, 4rem); margin: 1rem 0 0; }
.story-copy { display: grid; gap: 1rem; padding-top: 0; }
.story-copy p { margin-bottom: 0; font-size: 1.08rem; }

.icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 15px;
  background: var(--green-light);
  color: var(--navy);
  font-weight: 900;
}
.card, .price-card, .form-card, .info-panel, .roadmap-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 64px -36px rgba(11, 19, 43, .32);
}
.card { padding: 1.7rem; }
.lift-card {
  min-height: 210px;
  background:
    radial-gradient(circle at 82% 8%, rgba(34, 193, 161, .14), transparent 9rem),
    linear-gradient(180deg, #fff, #fbfdff);
}
.audience-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 193, 161, .1), transparent 24rem),
    var(--bg-alt);
  border-block: 1px solid rgba(226, 232, 240, .72);
}
.compact-card { min-height: 178px; }
.audience-card {
  display: grid;
  align-content: start;
  background:
    radial-gradient(circle at 80% 5%, rgba(34, 193, 161, .15), transparent 8rem),
    #fff;
}
.use-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 15px;
  background: var(--green-light);
  color: var(--green-hover);
  box-shadow: inset 0 0 0 1px rgba(34, 193, 161, .16);
}
.use-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 { margin: 1.1rem 0 .5rem; font-size: 1.2rem; }
.card p { margin-bottom: 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.product-feature-grid .card { min-height: 225px; }
.use-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.use-grid .card { padding: 1.25rem; }
.use-grid .icon { width: 38px; height: 38px; font-size: .78rem; }

.product-showcase {
  background:
    linear-gradient(180deg, #fff 0%, #F8FAFC 42%, #F8FAFC 100%);
  border-block: 1px solid rgba(226, 232, 240, .72);
}
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  margin-top: 6rem;
}
.split-section:first-child { margin-top: 0; }
.split-section.reverse { grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); }
.split-section.reverse .browser-mockup { order: 2; }
.product-shot {
  box-shadow: 0 34px 95px -54px rgba(11, 19, 43, .58);
}
.product-shot img {
  min-height: 320px;
  object-fit: cover;
  object-position: top left;
}
.feature-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: .5rem .72rem;
  border: 1px solid rgba(34, 193, 161, .28);
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-hover);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.split-copy h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 0 0 .85rem; }
.split-copy p { font-size: 1.04rem; }
.check-list { display: grid; gap: .75rem; margin-top: 1.45rem; list-style: none; }
.check-list li { display: flex; align-items: center; gap: .68rem; color: var(--text-secondary); font-weight: 750; }
.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--green), var(--green-hover));
  box-shadow: inset 0 0 0 6px var(--green-light);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at 85% 15%, rgba(34, 193, 161, .34), transparent 22rem),
    linear-gradient(135deg, var(--ink), var(--navy-medium));
  box-shadow: var(--shadow);
  color: #fff;
}
.cta-panel h2 { color: #fff; font-size: clamp(2.15rem, 5vw, 3.9rem); margin: 1rem 0 .8rem; }
.cta-panel p { max-width: 620px; color: #D7E6F4; }
.light-panel {
  background:
    radial-gradient(circle at 82% 8%, rgba(34, 193, 161, .24), transparent 20rem),
    #fff;
  border: 1px solid rgba(34,193,161,.2);
}
.light-panel h2 { color: var(--navy); }
.light-panel p { color: var(--text-secondary); }

.product-hero { background: linear-gradient(180deg, #fff, #F8FAFC); padding-block: 4.6rem; }
.product-hero-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 4rem;
  align-items: center;
}
.product-hero h1 { font-size: clamp(2.35rem, 4.5vw, 4.1rem); margin: 1rem 0 .9rem; }
.product-hero-shot { box-shadow: var(--shadow-strong); }
.product-hero-shot img { min-height: 430px; object-fit: cover; object-position: top left; }

.pricing-shell {
  background:
    radial-gradient(circle at 50% 18%, rgba(34, 193, 161, .12), transparent 32rem),
    linear-gradient(180deg, #f8fafc, #fff);
}
.pricing-shell .section { padding-top: 4.2rem; }
.pricing-shell .section-head { margin-bottom: 1.6rem; }
.pricing-head { max-width: 980px; text-align: center; }
.pricing-head h1 { white-space: nowrap; margin-inline: auto; }
.pricing-head .lead { margin-inline: auto; text-align: center; }
.pricing-shell .section-head h1 { font-size: clamp(2.25rem, 4.6vw, 4rem); }
.toggle {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  border: 1px solid rgba(11, 19, 43, .1);
  border-radius: 999px;
  padding: .32rem;
  background: #fff;
  box-shadow: var(--shadow);
  margin: 0 auto 3.25rem;
}
.toggle button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: .75rem 1.35rem;
  transition: background .22s ease, color .22s ease, box-shadow .22s ease;
}
.toggle button.active { background: var(--green-hover); color: #fff; }
.toggle[data-animating="true"] button { cursor: default; }
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.35rem; align-items: stretch; }
.price-grid-two { max-width: 920px; }
.founder-soldout-note {
  width: fit-content;
  margin: -1.2rem auto 2rem;
  padding: .72rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 18px 44px -32px rgba(11, 19, 43, .34);
  color: var(--text-secondary);
  font-weight: 800;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: linear-gradient(180deg, #fff, #fbfdff);
}
.price-card:not(.featured) {
  box-shadow: 0 22px 58px -38px rgba(11, 19, 43, .28);
}
.price-card.featured {
  border-color: rgba(34, 193, 161, .5);
  background:
    radial-gradient(circle at 80% 0%, rgba(34, 193, 161, .22), transparent 15rem),
    linear-gradient(180deg, #F1FBF8, #fff 62%);
  box-shadow: 0 36px 110px -54px rgba(34, 193, 161, .82);
  transform: translateY(-18px);
}
.founder-ribbon {
  position: absolute;
  top: -15px;
  left: 2rem;
  padding: .5rem .8rem;
  border-radius: 999px;
  background: var(--green-hover);
  color: #fff;
  font-size: .76rem;
  font-weight: 900;
  box-shadow: 0 14px 30px -22px rgba(21, 154, 128, .85);
}
.plan-switch-label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  width: fit-content;
  margin: .1rem 0 1rem;
  padding: .48rem .68rem;
  border: 1px solid rgba(34, 193, 161, .26);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--text-secondary);
  font-size: .84rem;
  font-weight: 900;
}
.plan-switch-label span { text-decoration: line-through; color: var(--text-muted); }
.plan-switch-label strong { color: var(--green-hover); }
.price-card h3 { font-size: 1.55rem; margin-bottom: .55rem; }
.price {
  display: none;
  align-items: end;
  gap: .35rem;
  margin: 1.25rem 0 .35rem;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  will-change: transform, opacity;
}
.price.is-active { display: flex; }
.price span { padding-bottom: .42rem; color: var(--text-muted); font-size: .92rem; font-weight: 800; }
.price-subline {
  margin: 0 0 1.05rem;
  color: var(--text-secondary);
  font-size: .93rem;
  font-weight: 800;
}
.price-subline[data-monthly],
.price-subline[data-yearly] { display: none; }
.price-subline.is-active { display: block; }
.badge-row { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  width: fit-content;
  padding: .43rem .66rem;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--navy-medium);
  font-size: .78rem;
  font-weight: 900;
}
.founder-counter {
  margin: .9rem 0 1.2rem;
  padding: .78rem .86rem;
  border: 1px solid rgba(34, 193, 161, .22);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
}
.founder-mini-meter {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(11, 19, 43, .08);
}
.founder-mini-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--green-hover));
}
.founder-spots-line {
  margin: 0 0 .55rem;
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 800;
}
.price-card .check-list { margin-top: .4rem; }
.highlight-feature { color: var(--green-hover); font-weight: 900; }
.price-card .btn { width: 100%; margin-top: 2rem; }
.roadmap-shell {
  background:
    radial-gradient(circle at 12% 16%, rgba(34, 193, 161, .14), transparent 26rem),
    linear-gradient(180deg, #F8FAFC, #fff);
}
.roadmap-shell { padding-top: 4.2rem; }
.roadmap-shell .section-head { margin-bottom: 2.2rem; }
.roadmap-shell .section-head h1 { font-size: clamp(2.25rem, 4.6vw, 4rem); }
.roadmap-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.roadmap-grid::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 55px;
  height: 2px;
  background: linear-gradient(90deg, rgba(34,193,161,.7), rgba(245,158,11,.5), rgba(59,130,246,.5));
}
.roadmap-card {
  position: relative;
  padding: 2rem;
  min-height: 310px;
  background: linear-gradient(180deg, #fff, #fbfdff);
}
.roadmap-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: var(--green-light);
  color: var(--green-hover);
  font-weight: 900;
  box-shadow: 0 16px 36px -28px rgba(11,19,43,.6);
}
.roadmap-icon svg { width: 25px; height: 25px; }
.roadmap-card.progress-state .roadmap-icon { background: rgba(245, 158, 11, .14); color: #B45309; }
.roadmap-card.planned .roadmap-icon { background: rgba(59, 130, 246, .12); color: #1D4ED8; }
.status-pill {
  display: inline-flex;
  padding: .44rem .68rem;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--navy-medium);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.status-pill.amber { background: rgba(245, 158, 11, .14); color: #92400E; }
.status-pill.blue { background: rgba(59, 130, 246, .12); color: #1D4ED8; }
.roadmap-card h3 { margin: 1.2rem 0 .65rem; font-size: 1.45rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.tag-list span { padding: .45rem .65rem; border-radius: 999px; background: #fff; border: 1px solid var(--border); color: var(--text-secondary); font-weight: 750; font-size: .86rem; }


.site-footer {
  margin-top: auto;
  padding: 3.6rem 0;
  background:
    radial-gradient(circle at 88% 0%, rgba(34, 193, 161, .22), transparent 20rem),
    var(--ink);
  color: #fff;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr 1fr .8fr; gap: 2rem; }
.footer-brand { display: inline-flex; margin-bottom: 1rem; color: #fff; }
.site-footer h4 { margin: 0 0 .9rem; color: #fff; font-size: .98rem; }
.site-footer a:not(.brand) { display: block; width: fit-content; margin-bottom: .55rem; color: #dbeafe; font-weight: 600; }
.site-footer a:not(.brand):hover { color: var(--green); }
.site-footer .muted { max-width: 360px; color: #cbd5e1; }
.footer-support-copy { margin: 0 0 .55rem; color: #cbd5e1; line-height: 1.55; }

@keyframes cardFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -7px, 0); }
}
@keyframes mockupFloat {
  0%, 100% { transform: rotateX(2deg) rotateY(-3deg) rotateZ(.3deg) translateY(0); }
  50% { transform: rotateX(1.5deg) rotateY(-2.4deg) rotateZ(.15deg) translateY(-5px); }
}
@keyframes heroGlow {
  0% { opacity: .78; transform: scale(.985); }
  100% { opacity: 1; transform: scale(1.015); }
}
@keyframes accentDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(5px, -8px, 0); }
}
.footer-copyright {
  margin: 1.15rem 0 .3rem;
  color: #e2e8f0;
  font-size: .84rem;
  font-weight: 700;
}
.footer-business-note {
  max-width: 390px;
  margin: 0;
  color: #94a3b8;
  font-size: .78rem;
  line-height: 1.5;
}
.footer-product-note {
  max-width: 390px;
  margin: .2rem 0 0;
  color: #94a3b8;
  font-size: .78rem;
  line-height: 1.5;
}
.registration-note {
  max-width: 660px;
  margin: .15rem auto 0;
  color: var(--text-muted);
  font-size: .76rem;
  line-height: 1.5;
  text-align: center;
}
.registration-note a {
  color: var(--green-hover);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.registration-note-light {
  margin: .8rem 0 0;
  color: #cbd5e1;
  text-align: left;
}
.registration-note-light a { color: #dffcf4; }
.pricing-registration-note { margin-top: 1.4rem; }
.footer-link-button {
  display: block;
  width: fit-content;
  margin: 0 0 .55rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #dbeafe;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}
.footer-link-button:hover { color: var(--green); }

.legal-page { max-width: 820px; }
.legal-page > h1 {
  margin: 1rem 0 .8rem;
  font-size: clamp(2.35rem, 5vw, 4rem);
}
.legal-page > .lead { margin-bottom: 1.8rem; }
.legal-notice {
  margin: 1.75rem 0 2.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(245, 158, 11, .35);
  border-radius: 8px;
  background: #FFFBEB;
}
.legal-notice strong { color: #92400E; }
.legal-notice p { margin: .35rem 0 0; }
.legal-sections { display: grid; gap: 1rem; }
.legal-sections section {
  padding: 1.35rem 0;
  border-top: 1px solid var(--border);
}
.legal-sections h2 { margin-bottom: .75rem; font-size: 1.35rem; }
.legal-sections p { margin-bottom: .45rem; }
.legal-document { gap: 0; }
.legal-document section { padding: 1.65rem 0; }
.legal-document h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.3rem, 2.5vw, 1.55rem);
  line-height: 1.25;
}
.legal-document h3 {
  margin: 1.4rem 0 .65rem;
  font-size: 1.08rem;
  line-height: 1.35;
}
.legal-document p { margin-bottom: .85rem; }
.legal-document address {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  font-style: normal;
  line-height: 1.68;
}
.legal-list {
  display: grid;
  gap: .45rem;
  margin: .25rem 0 1rem 1.25rem;
  padding: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}
.legal-list li { padding-left: .25rem; }
.legal-sections a {
  color: var(--green-hover);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-info-panel {
  margin-top: 2rem;
  padding: 1.4rem;
  border: 1px solid rgba(34, 193, 161, .3);
  border-radius: 8px;
  background: var(--green-soft);
  box-shadow: 0 20px 54px -38px rgba(11, 19, 43, .38);
}
.legal-info-panel p {
  margin: 0;
  color: var(--navy-medium);
  font-size: 1.02rem;
  line-height: 1.7;
}
.withdrawal-content section { padding-bottom: .4rem; }

.consent-banner {
  position: fixed;
  z-index: 100;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.35rem;
  border: 1px solid rgba(34, 193, 161, .35);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 28px 80px -28px rgba(7, 17, 31, .55);
}
.consent-banner__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}
.consent-banner h2 { margin-bottom: .45rem; font-size: 1.25rem; }
.consent-banner p { max-width: 720px; margin-bottom: .55rem; font-size: .92rem; line-height: 1.55; }
.consent-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.consent-links a { color: var(--green-hover); font-size: .86rem; font-weight: 800; text-decoration: underline; }
.consent-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .65rem; }
.consent-actions .btn { min-height: 42px; padding: .75rem 1rem; }
.consent-settings-button {
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
}
.consent-modal {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.consent-modal__backdrop { position: absolute; inset: 0; background: rgba(7, 17, 31, .62); }
.consent-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: 1.6rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 90px -30px rgba(7, 17, 31, .7);
}
.consent-modal__dialog h2 { margin-bottom: .55rem; font-size: 1.55rem; }
.consent-modal__close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.5rem;
}
.consent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .9rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.consent-option div { display: grid; gap: .25rem; }
.consent-option span { color: var(--text-secondary); font-size: .86rem; line-height: 1.45; }
.consent-option input { width: 22px; height: 22px; accent-color: var(--green-hover); }
.consent-always-on { flex: 0 0 auto; color: var(--green-hover) !important; font-weight: 800; }
.consent-modal__actions { display: flex; justify-content: flex-end; margin-top: 1.2rem; }
[hidden] { display: none !important; }


@media (max-width: 1180px) {
  .use-grid { grid-template-columns: repeat(3, 1fr); }
  .floating-card { font-size: .84rem; }
  .float-1 { left: .2rem; }
  .float-2 { right: .2rem; }
}
@media (max-width: 980px) {
  .feature-grid, .price-grid, .footer-grid, .roadmap-grid, .product-hero-grid, .story-grid { grid-template-columns: 1fr 1fr; }
  .split-section, .split-section.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .split-section.reverse .browser-mockup { order: 0; }
  .roadmap-grid::before { display: none; }
  .product-hero-grid, .story-grid { grid-template-columns: 1fr; }
  .cta-row.left { justify-content: center; }
  .product-hero { text-align: center; }
}
@media (max-width: 840px) {
  .hero-visual .floating-card,
  .hero-visual .green-glow,
  .hero-visual .hero-accent { display: none; }
  .nav { gap: 1rem; }
  .nav-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(11, 19, 43, .09);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px -24px rgba(11, 19, 43, .6);
  }
  .nav-links, .nav-actions { display: none; }
  .nav.open { flex-wrap: wrap; row-gap: 0; padding-bottom: .8rem; }
  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: .35rem;
    border-inline: 1px solid rgba(11, 19, 43, .1);
    background: rgba(255, 255, 255, .98);
  }
  .nav.open .nav-links {
    order: 3;
    margin-top: .75rem;
    padding: .65rem .65rem .35rem;
    border-top: 1px solid rgba(11, 19, 43, .1);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 24px 52px -34px rgba(11, 19, 43, .5);
  }
  .nav.open .nav-actions {
    order: 4;
    padding: .35rem .65rem .65rem;
    border-bottom: 1px solid rgba(11, 19, 43, .1);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 28px 54px -36px rgba(11, 19, 43, .5);
  }
  .nav.open .nav-links a,
  .nav.open .ghost-link {
    width: 100%;
    padding: .72rem .8rem;
    border-radius: 6px;
  }
  .nav.open .nav-links a:hover,
  .nav.open .nav-links a.active,
  .nav.open .ghost-link:hover {
    background: var(--green-light);
    color: var(--green-hover);
  }
  .nav.open .nav-actions .btn { width: 100%; margin-top: .15rem; }
  .hero { padding: 4.8rem 0 5.8rem; }
  .section { padding: 4.2rem 0; }
  .feature-grid, .price-grid, .footer-grid, .form-grid, .use-grid, .roadmap-grid { grid-template-columns: 1fr; }
  .section-head h1 { font-size: clamp(2.25rem, 11vw, 3.5rem); }
  .pricing-head h1 { white-space: normal; }
  .hero h1 { font-size: clamp(2.35rem, 11vw, 3.6rem); }
  .price-card.featured { transform: none; }
  .hero-visual { display: grid; gap: .65rem; padding-inline: 0; }
  .hero-mockup { transform: none; order: 1; border-radius: 18px; animation: none; }
    .browser-bar strong { max-width: 68%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .product-shot img, .product-hero-shot img { min-height: 250px; }
  .meter-top { align-items: flex-start; flex-direction: column; gap: .35rem; }
  .consent-banner__content { grid-template-columns: 1fr; }
  .consent-actions { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 2rem, 1180px); }
  .site-header { background: rgba(255, 255, 255, .96); }
  .nav { min-height: 66px; padding-inline: .1rem; }
  .brand { font-size: 1.05rem; }
  .brand-mark { width: 26px; height: 26px; }
  .hero { padding: 3.25rem 0 3.4rem; }
  .hero-inner { gap: .9rem; }
  .hero h1 { font-size: clamp(2.15rem, 10vw, 3rem); max-width: 100%; }
  .lead { font-size: 1rem; line-height: 1.58; }
  .hero-visual { margin-top: 1.25rem; padding: 0; perspective: none; }
  .hero-visual .floating-card,
  .hero-visual .green-glow { display: none; }
  .hero-mockup { transform: none; box-shadow: 0 24px 60px -38px rgba(11, 19, 43, .52); }
  .hero-mockup { animation: none; }
  .hero-mockup img { max-height: 310px; object-fit: cover; object-position: top left; }
  .browser-bar { height: 34px; padding-inline: .72rem; }
  .browser-bar span { width: 8px; height: 8px; }
  .browser-bar strong { max-width: 62%; font-size: .68rem; }
  .section { padding: 3.3rem 0; }
  .section-head { margin-bottom: 1.65rem; }
  .section-head h1,
  .section-head h2,
  .story-grid h2,
  .pricing-shell .section-head h1,
  .roadmap-shell .section-head h1 { font-size: clamp(2rem, 9vw, 2.7rem); }
  .eyebrow { font-size: .66rem; letter-spacing: .11em; padding: .45rem .68rem; }
  .cta-row { width: 100%; gap: .7rem; }
  .cta-row .btn { width: 100%; }
  .story-grid { gap: 1.4rem; }
  .use-grid { gap: .85rem; }
  .compact-card { min-height: auto; }
  .split-section,
  .split-section.reverse { gap: 1.45rem; margin-top: 3rem; }
  .split-section.reverse .browser-mockup { order: 0; }
  .product-shot img,
  .product-hero-shot img { min-height: 0; max-height: 280px; object-fit: cover; object-position: top left; }
  .pricing-shell .section { padding-top: 3.25rem; }
  .pricing-head h1 { white-space: normal; }
  .toggle { margin-bottom: 2rem; width: 100%; max-width: 320px; }
  .toggle button { flex: 1; padding: .72rem .85rem; }
  .price-card.featured { transform: none; }
  .price-card { padding: 1.35rem; }
  .price { font-size: 2.35rem; }
  .founder-ribbon { position: static; width: fit-content; margin-bottom: 1rem; }
  .founder-counter { padding: .7rem .75rem; }
  .roadmap-card { min-height: auto; }
  .roadmap-icon { width: 46px; height: 46px; }
  .cta-panel { padding: 1.5rem; }
  .cta-panel h2 { font-size: clamp(2rem, 9vw, 2.65rem); }
  .footer-grid { gap: 1.45rem; }
  .consent-banner { right: .5rem; bottom: .5rem; left: .5rem; padding: 1rem; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .consent-actions .consent-settings-button { grid-column: 1 / -1; min-height: 40px; }
  .consent-modal__dialog { padding: 1.25rem; }
  .consent-option { align-items: flex-start; }
  .legal-document section { padding: 1.35rem 0; }
  .legal-document h2 { overflow-wrap: anywhere; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 2rem, 1180px); }
  .btn { width: 100%; }
  .nav-actions .btn { width: auto; }
  .card, .price-card, .form-card, .info-panel, .roadmap-card { border-radius: 18px; padding: 1.35rem; }
  .cta-panel { border-radius: 24px; }
  .browser-mockup { border-radius: 16px; }
  .browser-bar { height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .floating-card,
  .hero-mockup,
  .green-glow,
  .hero-accent {
    animation: none !important;
  }
}






