:root {
  --paper: #f7f6ef;
  --paper-2: #edece1;
  --paper-3: #dfded0;
  --ink: #171c18;
  --ink-soft: #2d352f;
  --muted: #657066;
  --line: rgba(23, 28, 24, 0.14);
  --accent: #1c8b63;
  --accent-dark: #0d3a2c;
  --accent-glow: #68c49e;
  --accent-2: #d9e7cf;
  --clay: #d7d1c0;
  --charcoal: #101713;
  --white: #fffefa;
  --danger: #9b352d;
  --shadow: 0 28px 80px -48px rgba(23, 28, 24, 0.62);
  --soft-shadow: 0 18px 60px -44px rgba(23, 28, 24, 0.42);
  font-family: "Satoshi", "Outfit", "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(28, 139, 99, 0.16), transparent 23rem),
    radial-gradient(circle at 82% 11%, rgba(13, 58, 44, 0.16), transparent 26rem),
    linear-gradient(135deg, #fffefa 0%, var(--paper) 44%, #e5e7da 100%);
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(23, 28, 24, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(23, 28, 24, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
label:focus-within {
  outline: 3px solid rgba(28, 139, 99, 0.32);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 4;
  transform: translateY(-150%);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image: radial-gradient(rgba(23, 28, 24, 0.18) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
  mix-blend-mode: multiply;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 3;
  width: min(1380px, calc(100% - 32px));
  margin: 10px auto 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 254, 250, 0.9);
  box-shadow: 0 18px 50px -42px rgba(23, 28, 24, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 11px;
  background: rgba(255, 254, 250, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.brand-mark span,
.upload-icon span {
  background: var(--ink);
  border-radius: 3px;
}

.brand-mark span:nth-child(5),
.upload-icon span:nth-child(3) {
  background: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: color 240ms ease, background 240ms ease, transform 240ms ease;
}

.nav-links a:hover,
.login-link {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.nav-links a:active,
button:active,
.download-button:active,
.hero-primary:active,
.hero-secondary:active {
  transform: translateY(1px) scale(0.99);
}

.page-shell {
  width: 100%;
  overflow-x: hidden;
}

.hero-section {
  position: relative;
  isolation: isolate;
  width: min(1320px, calc(100% - 32px));
  min-height: calc(100dvh - 74px);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 74px) 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  grid-template-areas:
    "copy copy"
    "form result";
  gap: 24px;
  align-items: start;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  z-index: -2;
  pointer-events: none;
}

.hero-section::before {
  inset: 56px -58px auto auto;
  width: min(43vw, 520px);
  aspect-ratio: 1.08;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 8px),
    linear-gradient(145deg, #173a2e, #0f1d17 58%, #2f6f55);
  box-shadow: 0 42px 100px -70px rgba(13, 28, 21, 0.82);
  transform: rotate(-5deg);
  opacity: 0.52;
}

.hero-section::after {
  left: -88px;
  top: 172px;
  width: 210px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 32%, rgba(255, 255, 255, 0.82), transparent 0 18%, rgba(255, 255, 255, 0.22) 19% 26%, transparent 27%),
    linear-gradient(145deg, rgba(229, 223, 205, 0.9), rgba(255, 254, 250, 0.72));
  filter: drop-shadow(0 22px 44px rgba(23, 28, 24, 0.12));
}

.hero-copy {
  position: relative;
  z-index: 1;
  grid-area: copy;
  max-width: 1120px;
  margin: 0 auto 12px;
  text-align: center;
}

.hero-art {
  position: absolute;
  z-index: -1;
  top: 138px;
  right: clamp(-42px, -2vw, -18px);
  width: min(32vw, 430px);
  min-width: 310px;
  height: 430px;
  pointer-events: none;
}

.hero-specimen {
  position: absolute;
  right: 14px;
  top: 28px;
  width: 274px;
  aspect-ratio: 0.78;
  border: 1px solid rgba(23, 28, 24, 0.11);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 254, 250, 0.95), rgba(239, 237, 226, 0.92));
  box-shadow: 0 36px 80px -56px rgba(23, 28, 24, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: rotate(5deg);
}

.hero-specimen::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(23, 28, 24, 0.08);
  background:
    linear-gradient(90deg, rgba(23, 28, 24, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(23, 28, 24, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
}

.specimen-mark {
  position: absolute;
  left: 34px;
  top: 34px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 27% 27%, var(--accent) 0 5px, transparent 6px),
    radial-gradient(circle at 73% 27%, var(--ink) 0 5px, transparent 6px),
    radial-gradient(circle at 27% 73%, var(--ink) 0 5px, transparent 6px),
    radial-gradient(circle at 73% 73%, var(--accent) 0 5px, transparent 6px),
    rgba(255, 254, 250, 0.92);
  box-shadow: 0 14px 28px -20px rgba(23, 28, 24, 0.55);
}

.specimen-qr {
  position: absolute;
  right: 32px;
  bottom: 36px;
  width: 154px;
  aspect-ratio: 1;
  border-radius: 16px;
  background:
    conic-gradient(from 90deg, var(--ink) 0 25%, transparent 0 50%, var(--ink) 0 75%, transparent 0) 0 0 / 30px 30px,
    radial-gradient(circle at 50% 50%, var(--accent) 0 16px, var(--white) 17px 33px, transparent 34px),
    var(--white);
  opacity: 0.82;
}

.material-slab {
  position: absolute;
  display: block;
  border-radius: 30px;
  box-shadow: 0 28px 60px -46px rgba(23, 28, 24, 0.7);
}

.material-slab-one {
  left: 4px;
  bottom: 54px;
  width: 188px;
  height: 110px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 9px),
    linear-gradient(145deg, #194737, #0f2119);
  transform: rotate(-13deg);
}

.material-slab-two {
  right: 44px;
  bottom: 0;
  width: 210px;
  height: 86px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.45), transparent 2px),
    linear-gradient(145deg, #dfd8c6, #b8b19f);
  background-size: 12px 12px, auto;
  transform: rotate(7deg);
}

.mobile-hero-art {
  display: none;
}

.eyebrow,
.section-kicker,
.price-label {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1120px;
  margin: 0 auto 22px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.078em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.064em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-lede,
.section-copy p,
.preview-block p,
.result-panel p,
.feature-grid p,
.bundle-section p,
.site-footer p,
.bento-card p,
.trust-strip p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.62;
}

.hero-lede {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2vw, 1.36rem);
  text-wrap: balance;
}

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

.hero-primary,
.hero-secondary,
.download-button,
.primary-button,
.inline-form button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), background 260ms ease, border-color 260ms ease, color 260ms ease, opacity 260ms ease;
}

.hero-primary,
.primary-button,
.download-button,
.inline-form button {
  background: var(--ink);
  color: var(--white);
}

.hero-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.72);
  color: var(--ink);
}

.hero-primary {
  padding: 0 24px;
}

.hero-secondary {
  padding: 0 22px;
}

.hero-primary:hover,
.primary-button:hover,
.download-button:hover,
.inline-form button:hover {
  background: #244238;
}

.hero-secondary:hover {
  border-color: rgba(28, 139, 99, 0.38);
  background: rgba(255, 254, 250, 0.94);
}

.hero-plans {
  width: min(900px, 100%);
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.hero-plans span {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 13px;
  background: linear-gradient(145deg, rgba(255, 254, 250, 0.82), rgba(239, 237, 226, 0.62));
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.25;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-plans b {
  display: block;
  color: var(--ink);
  font-size: 0.94rem;
}

.generator-panel,
.result-panel,
.preview-block,
.bundle-section,
.bento-card {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 34px;
  background: rgba(255, 254, 250, 0.76);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px);
}

.generator-panel {
  position: relative;
  overflow: hidden;
  grid-area: form;
  width: 100%;
  padding: clamp(22px, 3vw, 34px);
}

.generator-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 12px;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0 4px, transparent 4px 10px),
    linear-gradient(180deg, #205342, #0f2a20);
  opacity: 0.9;
}

.generator-panel::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -42px;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(28, 139, 99, 0.08);
}

.generator-panel > * {
  position: relative;
  z-index: 1;
}

.result-panel {
  position: relative;
  overflow: hidden;
  grid-area: result;
  width: 100%;
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  place-items: center;
}

.result-panel::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 35%, rgba(28, 139, 99, 0.08), transparent 13rem),
    linear-gradient(90deg, rgba(23, 28, 24, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(23, 28, 24, 0.035) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
}

.result-panel > * {
  position: relative;
  z-index: 1;
}

.form-heading {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.form-heading p {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.15;
  text-transform: uppercase;
}

.form-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3.8vw, 3.8rem);
  line-height: 0.9;
}

.upload-zone {
  min-height: 220px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 26px;
  border: 1.5px dashed rgba(23, 28, 24, 0.27);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 18%, rgba(28, 139, 99, 0.11), transparent 10rem),
    rgba(255, 254, 250, 0.7);
  cursor: pointer;
  text-align: center;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease, background 260ms ease;
}

.upload-zone:hover,
.upload-zone.is-dragging,
.upload-zone.has-file {
  transform: translateY(-3px);
  border-color: rgba(28, 139, 99, 0.58);
  background: rgba(255, 254, 250, 0.96);
}

.upload-zone input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.upload-icon {
  width: 62px;
  height: 62px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  padding: 8px;
  border-radius: 19px;
  background: var(--white);
  box-shadow: 0 18px 44px -30px rgba(23, 28, 24, 0.75);
  animation: floatCard 5.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.upload-title {
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.upload-help,
.field-hint {
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.46;
}

.field-group {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.field-group label,
.waitlist-form label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.field-group input,
.inline-form input {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 16px;
  background: rgba(255, 254, 250, 0.92);
  color: var(--ink);
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.field-group input:focus,
.inline-form input:focus {
  border-color: rgba(28, 139, 99, 0.64);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(28, 139, 99, 0.12);
}

.field-hint,
.form-error {
  margin: 0;
}

.form-error {
  margin-top: 16px;
  color: var(--danger);
  font-size: 0.92rem;
  line-height: 1.45;
}

.primary-button {
  width: 100%;
  margin-top: 20px;
  padding: 0 18px;
}

.primary-button:disabled {
  opacity: 0.72;
  cursor: progress;
}

.result-empty,
.result-loading,
.result-success {
  width: 100%;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.result-label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-label span:last-child {
  color: var(--accent);
}

.qr-placeholder,
.bento-qr {
  width: min(100%, 280px);
  aspect-ratio: 1;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(23, 28, 24, 0.62) 12px, transparent 12px) 0 0 / 40px 40px,
    linear-gradient(rgba(23, 28, 24, 0.62) 12px, transparent 12px) 0 0 / 40px 40px,
    radial-gradient(circle at 50% 50%, rgba(28, 139, 99, 0.85) 0 22px, var(--white) 23px 42px, transparent 43px),
    var(--white);
  opacity: 0.34;
  box-shadow: inset 0 0 0 14px rgba(255, 254, 250, 0.72), 0 24px 60px -46px rgba(23, 28, 24, 0.75);
}

.result-success img {
  width: min(100%, 300px);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 24px 62px -38px rgba(23, 28, 24, 0.85);
}

.download-button {
  padding: 0 20px;
}

.skeleton {
  overflow: hidden;
  position: relative;
  border-radius: 24px;
  background: rgba(23, 28, 24, 0.08);
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  animation: shimmer 1.35s infinite;
}

.skeleton-qr {
  width: min(100%, 280px);
  aspect-ratio: 1;
}

.skeleton-line {
  width: 72%;
  height: 18px;
}

.skeleton-button {
  width: 54%;
  height: 52px;
}

.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -36px auto 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  padding: 18px;
  background: rgba(255, 254, 250, 0.58);
  box-shadow: var(--soft-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.trust-strip p {
  margin: 0;
  max-width: 760px;
}

.trust-strip span {
  position: relative;
  border-radius: 999px;
  padding: 11px 13px 11px 34px;
  background: rgba(255, 254, 250, 0.86);
  color: var(--ink-soft);
  font-size: 0.9rem;
  white-space: nowrap;
}

.trust-strip span::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--accent);
  transform: translateY(-50%) rotate(12deg);
  box-shadow: 0 0 0 4px rgba(28, 139, 99, 0.12);
}

.upsell-reveal {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 132px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 580ms cubic-bezier(0.16, 1, 0.3, 1), transform 580ms cubic-bezier(0.16, 1, 0.3, 1);
}

.upsell-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.preview-block {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(190px, 0.76fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.preview-block::after {
  content: "";
  position: absolute;
  inset: auto -32px -38px auto;
  width: 190px;
  aspect-ratio: 1;
  border-radius: 34px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 9px),
    linear-gradient(145deg, rgba(28, 139, 99, 0.32), rgba(13, 58, 44, 0.1));
  transform: rotate(-11deg);
}

.preview-block > * {
  position: relative;
  z-index: 1;
}

.preview-block:hover {
  transform: translateY(-4px);
}

.preview-block h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.6vw, 3.65rem);
}

.mini-linklist,
.mini-chart {
  min-height: 292px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 36% 16%, rgba(104, 196, 158, 0.22), transparent 7rem),
    linear-gradient(145deg, var(--accent-dark), var(--charcoal));
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.mini-linklist {
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 12px;
}

.mini-logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--accent);
}

.mini-linklist p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.mini-linklist span {
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-chart {
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: end;
}

.chart-row {
  height: 220px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-align: center;
}

.chart-row b {
  width: 100%;
  align-self: end;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #6bc19d, var(--accent));
  animation: breathe 3.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.chart-mon b { height: 42%; }
.chart-tue b { height: 68%; }
.chart-wed b { height: 51%; }
.chart-thu b { height: 84%; }
.chart-fri b { height: 73%; }

.waitlist-form {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.inline-form button {
  padding: 0 18px;
  white-space: nowrap;
}

.waitlist-message {
  min-height: 20px;
  margin: 0;
  color: var(--accent);
  font-size: 0.9rem;
}

.interest-section,
.feature-section,
.bundle-section,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.interest-section {
  padding: 40px 0 142px;
}

.wide-copy {
  max-width: 980px;
  margin-bottom: 34px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: rgba(255, 254, 250, 0.38);
  box-shadow: var(--soft-shadow);
}

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: clamp(20px, 3vw, 32px);
  display: grid;
  align-content: space-between;
  gap: 18px;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), background 320ms ease;
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: auto 22px 20px auto;
  width: 88px;
  aspect-ratio: 1;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(23, 28, 24, 0.2) 6px, transparent 6px) 0 0 / 22px 22px,
    linear-gradient(rgba(23, 28, 24, 0.2) 6px, transparent 6px) 0 0 / 22px 22px,
    rgba(28, 139, 99, 0.08);
  opacity: 0.42;
  transform: rotate(7deg);
}

.bento-card > * {
  position: relative;
  z-index: 1;
}

.bento-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 254, 250, 0.94);
}

.bento-large:hover,
.bento-large:active {
  background:
    radial-gradient(circle at 80% 18%, rgba(104, 196, 158, 0.22), transparent 12rem),
    linear-gradient(145deg, #173a2f, #0d1511);
}

.bento-card span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bento-large {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  min-height: 304px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(104, 196, 158, 0.22), transparent 12rem),
    linear-gradient(145deg, #173a2f, #0d1511);
}

.bento-large::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -52px;
  width: 238px;
  aspect-ratio: 1;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 10px, transparent 10px) 0 0 / 32px 32px,
    linear-gradient(rgba(255, 255, 255, 0.28) 10px, transparent 10px) 0 0 / 32px 32px,
    rgba(255, 254, 250, 0.09);
  transform: rotate(8deg);
}

.bento-large::before {
  inset: 26px 28px auto auto;
  width: 116px;
  background:
    radial-gradient(circle at 26% 26%, rgba(104, 196, 158, 0.75) 0 8px, transparent 9px),
    radial-gradient(circle at 70% 26%, rgba(255, 255, 255, 0.68) 0 8px, transparent 9px),
    radial-gradient(circle at 26% 70%, rgba(255, 255, 255, 0.68) 0 8px, transparent 9px),
    radial-gradient(circle at 70% 70%, rgba(104, 196, 158, 0.75) 0 8px, transparent 9px),
    rgba(255, 255, 255, 0.08);
  opacity: 1;
  transform: rotate(-7deg);
}

.bento-large span,
.bento-large p {
  color: rgba(255, 255, 255, 0.72);
}

.bento-large h3 {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.bento-visual {
  position: relative;
  overflow: hidden;
  grid-column: span 2;
  justify-items: center;
  align-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(28, 139, 99, 0.2), transparent 13rem),
    rgba(255, 254, 250, 0.74);
}

.bento-visual::before {
  content: "";
  position: absolute;
  inset: 26px auto auto 24px;
  width: 84px;
  height: 52px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 50%, var(--accent) 0 8px, transparent 9px),
    radial-gradient(circle at 64% 50%, var(--ink) 0 8px, transparent 9px),
    rgba(255, 254, 250, 0.9);
  box-shadow: 0 18px 36px -26px rgba(23, 28, 24, 0.6);
}

.bento-grid .bento-card:not(.bento-large):not(.bento-visual):not(.bento-wide) {
  grid-column: span 2;
}

.bento-wide {
  grid-column: span 3;
  min-height: 184px;
}

.feature-section {
  position: relative;
  overflow: hidden;
  padding: 116px 0;
  display: grid;
  grid-template-columns: 0.34fr 0.82fr 0.88fr 0.78fr;
  gap: 34px;
  border-top: 1px solid var(--line);
  align-items: start;
}

.section-copy h2 {
  margin-bottom: 20px;
}

.feature-grid {
  display: grid;
  gap: 14px;
}

.feature-grid p {
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.feature-art {
  min-height: 330px;
  position: relative;
  align-self: stretch;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 36% 18%, rgba(255, 255, 255, 0.26), transparent 9rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 10px),
    linear-gradient(145deg, #184434, #0e1813 72%);
  box-shadow: 0 30px 90px -62px rgba(23, 28, 24, 0.78), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.phone-card,
.analytics-phone {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 150px;
  height: 254px;
  border: 8px solid rgba(255, 254, 250, 0.9);
  border-radius: 32px;
  background:
    linear-gradient(var(--accent) 0 0) 24px 58px / 58px 12px no-repeat,
    linear-gradient(rgba(23, 28, 24, 0.14) 0 0) 24px 90px / 92px 14px no-repeat,
    linear-gradient(rgba(23, 28, 24, 0.12) 0 0) 24px 124px / 104px 22px no-repeat,
    linear-gradient(rgba(23, 28, 24, 0.12) 0 0) 24px 158px / 104px 22px no-repeat,
    linear-gradient(rgba(23, 28, 24, 0.12) 0 0) 24px 192px / 104px 22px no-repeat,
    #f7f6ef;
  box-shadow: 0 28px 54px -38px rgba(0, 0, 0, 0.72);
  transform: translateX(-44%) rotate(-5deg);
}

.paper-qr,
.analytics-ticket {
  position: absolute;
  right: 18px;
  top: 28px;
  width: 122px;
  aspect-ratio: 0.78;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(23, 28, 24, 0.62) 6px, transparent 6px) center 62% / 22px 22px,
    linear-gradient(rgba(23, 28, 24, 0.62) 6px, transparent 6px) center 62% / 22px 22px,
    rgba(255, 254, 250, 0.9);
  box-shadow: 0 22px 46px -34px rgba(0, 0, 0, 0.72);
  transform: rotate(8deg);
}

.feature-analytics {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 69% 32%, rgba(104, 196, 158, 0.22), transparent 25rem),
    linear-gradient(145deg, #121b16, #09100d);
  border-top: 0;
}

.feature-analytics .section-copy p,
.feature-analytics .feature-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.feature-analytics .feature-grid p {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.analytics-art {
  background:
    radial-gradient(circle at 70% 20%, rgba(104, 196, 158, 0.24), transparent 10rem),
    linear-gradient(145deg, #203b31, #101713);
}

.analytics-phone {
  background:
    linear-gradient(var(--accent-glow) 0 0) 24px 170px / 18px 38px no-repeat,
    linear-gradient(var(--accent) 0 0) 52px 132px / 18px 76px no-repeat,
    linear-gradient(#91d1b7 0 0) 80px 154px / 18px 54px no-repeat,
    linear-gradient(rgba(23, 28, 24, 0.16) 0 0) 24px 52px / 86px 13px no-repeat,
    #f7f6ef;
  transform: translateX(-52%) rotate(5deg);
}

.bundle-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 82px;
  padding: clamp(26px, 5vw, 56px);
  display: grid;
  grid-template-columns: 0.78fr 0.9fr 0.62fr;
  gap: 30px;
  align-items: start;
}

.bundle-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 24%, rgba(104, 196, 158, 0.2), transparent 14rem),
    linear-gradient(145deg, rgba(255, 254, 250, 0.78), rgba(232, 230, 217, 0.7));
  z-index: -1;
}

.bundle-section h2 {
  margin-bottom: 18px;
}

.bundle-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bundle-benefits span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.bundle-form {
  grid-column: 2 / 4;
  margin-top: -4px;
}

.bundle-card-art {
  grid-row: 1 / 3;
  grid-column: 3;
  align-self: stretch;
  min-height: 296px;
  position: relative;
  border-radius: 34px;
  background:
    radial-gradient(circle at 24% 18%, rgba(104, 196, 158, 0.2), transparent 8rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 10px),
    linear-gradient(145deg, #173d30, #0e1813);
  box-shadow: 0 28px 70px -50px rgba(23, 28, 24, 0.76), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotate(2deg);
}

.bundle-mini-qr {
  position: absolute;
  left: 24px;
  top: 26px;
  width: 128px;
  aspect-ratio: 1;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76) 8px, transparent 8px) 0 0 / 26px 26px,
    linear-gradient(rgba(255, 255, 255, 0.76) 8px, transparent 8px) 0 0 / 26px 26px,
    rgba(255, 255, 255, 0.08);
}

.bundle-line {
  position: absolute;
  left: 24px;
  bottom: 70px;
  width: 68%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.bundle-line.short {
  bottom: 46px;
  width: 46%;
  background: rgba(104, 196, 158, 0.48);
}

.site-footer {
  width: 100%;
  padding: 36px max(16px, calc((100vw - 1180px) / 2)) 48px;
  display: grid;
  grid-template-columns: 0.7fr 1fr auto;
  gap: 24px;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  background: #0e1511;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .brand-lockup,
.site-footer nav a:hover {
  color: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 12px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

[hidden] {
  display: none !important;
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-7px) rotate(-1.5deg);
  }
}

@keyframes breathe {
  0%, 100% {
    transform: scaleY(0.94);
    opacity: 0.78;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .hero-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form"
      "result";
  }

  .result-panel {
    min-height: auto;
  }

  .hero-plans,
  .trust-strip,
  .upsell-reveal,
  .preview-block,
  .feature-section,
  .bundle-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .bundle-form {
    grid-column: auto;
    margin-top: 0;
  }

  .bundle-card-art {
    grid-column: auto;
    grid-row: auto;
  }

  .trust-strip {
    margin-top: -28px;
  }
}

@media (max-width: 760px) {
  body,
  .page-shell {
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header {
    position: relative;
    width: min(100% - 24px, 1380px);
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
  }

  .nav-links {
    width: 100%;
    overflow: hidden;
    justify-content: space-between;
  }

  .nav-links a {
    flex: 1 1 0;
    padding-inline: 8px;
    text-align: center;
  }

  .nav-links .login-link {
    display: none;
  }

  .hero-section {
    width: min(100% - 24px, 1320px);
    max-width: calc(100% - 24px);
    min-height: auto;
    padding: 24px 0 46px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-art {
    display: none;
  }

  .hero-section::before,
  .hero-section::after {
    display: none;
  }

  .mobile-hero-art {
    min-height: 158px;
    display: block;
    position: relative;
    margin: 18px 0 0;
    border-radius: 30px;
    background:
      radial-gradient(circle at 24% 26%, rgba(255, 255, 255, 0.7), transparent 6rem),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 9px),
      linear-gradient(145deg, #173a2e, #0f1d17 68%, #2f6f55);
    box-shadow: 0 26px 74px -58px rgba(23, 28, 24, 0.82);
    overflow: hidden;
  }

  .mobile-print-card {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 132px;
    height: 132px;
    border-radius: 24px;
    background:
      linear-gradient(90deg, rgba(23, 28, 24, 0.54) 8px, transparent 8px) center / 26px 26px,
      linear-gradient(rgba(23, 28, 24, 0.54) 8px, transparent 8px) center / 26px 26px,
      radial-gradient(circle at 50% 50%, var(--accent) 0 18px, var(--white) 19px 36px, transparent 37px),
      rgba(255, 254, 250, 0.92);
    box-shadow: 0 24px 56px -36px rgba(0, 0, 0, 0.84), inset 0 0 0 12px rgba(255, 254, 250, 0.68);
    transform: rotate(5deg);
  }

  .mobile-material-chip {
    position: absolute;
    left: 22px;
    bottom: 22px;
    width: 120px;
    height: 68px;
    border-radius: 24px;
    background:
      radial-gradient(circle at 26% 50%, var(--accent-glow) 0 10px, transparent 11px),
      radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.7) 0 10px, transparent 11px),
      rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  h1 {
    font-size: clamp(2.82rem, 13.6vw, 4.22rem);
    line-height: 0.9;
    letter-spacing: -0.074em;
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.7rem);
  }

  .hero-lede {
    margin-inline: 0;
  }

  .hero-actions {
    justify-content: flex-start;
    margin-top: 16px;
  }

  .hero-primary,
  .hero-secondary {
    width: 100%;
    max-width: 100%;
  }

  .hero-plans {
    grid-template-columns: 1fr 1fr;
    margin-top: 16px;
  }

  .form-heading {
    grid-template-columns: 1fr;
  }

  .generator-panel,
  .result-panel,
  .preview-block,
  .bundle-section,
  .bento-card {
    max-width: 100%;
    border-radius: 28px;
  }

  .upload-zone {
    min-height: 190px;
    padding: 22px;
  }

  .trust-strip {
    width: min(100% - 24px, 1180px);
    margin-bottom: 36px;
  }

  .trust-strip span {
    white-space: normal;
  }

  .upsell-reveal,
  .interest-section,
  .feature-section,
  .bundle-section,
  .site-footer {
    width: min(100% - 24px, 1180px);
    max-width: calc(100% - 24px);
  }

  .site-footer {
    width: 100%;
    max-width: 100%;
  }

  .interest-section {
    padding: 28px 0 68px;
  }

  .wide-copy {
    margin-bottom: 20px;
  }

  .preview-block {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card {
    min-height: 156px;
    align-content: center;
  }

  .bento-card::before {
    width: 72px;
    opacity: 0.34;
  }

  .bento-grid .bento-card:nth-child(3)::before,
  .bento-grid .bento-card:nth-child(5)::before {
    border-radius: 50%;
    background:
      radial-gradient(circle at 38% 38%, rgba(28, 139, 99, 0.28) 0 18px, transparent 19px),
      linear-gradient(145deg, rgba(215, 209, 192, 0.48), rgba(255, 254, 250, 0.1));
  }

  .bento-large,
  .bento-visual,
  .bento-grid .bento-card:not(.bento-large):not(.bento-visual):not(.bento-wide),
  .bento-wide {
    grid-column: auto;
  }

  .feature-section {
    padding: 76px 0;
  }

  .feature-linklist {
    grid-template-areas:
      "kicker"
      "art"
      "copy"
      "grid";
    padding-top: 62px;
    width: 100%;
    padding-inline: 14px;
    max-width: 100%;
    color: var(--white);
    background:
      radial-gradient(circle at 74% 18%, rgba(104, 196, 158, 0.2), transparent 18rem),
      linear-gradient(145deg, #14251d, #0b120f);
    border-top: 0;
  }

  .feature-linklist .section-copy p,
  .feature-linklist .feature-grid p {
    color: rgba(255, 255, 255, 0.68);
  }

  .feature-linklist .feature-grid p {
    border-top-color: rgba(255, 255, 255, 0.14);
  }

  .feature-linklist .section-kicker {
    grid-area: kicker;
  }

  .feature-linklist .section-copy {
    grid-area: copy;
  }

  .feature-linklist .feature-grid {
    grid-area: grid;
  }

  .feature-linklist .feature-art {
    grid-area: art;
    min-height: 248px;
    margin-top: -8px;
  }

  .bundle-section {
    color: var(--white);
    background:
      radial-gradient(circle at 82% 20%, rgba(104, 196, 158, 0.2), transparent 14rem),
      linear-gradient(145deg, #16241d, #0d1511);
  }

  .bundle-section::before {
    display: none;
  }

  .bundle-section p,
  .bundle-section .eyebrow {
    color: rgba(255, 255, 255, 0.68);
  }

  .bundle-benefits span {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
  }

  .bundle-form label {
    color: var(--white);
  }

  .feature-section .section-copy h2 {
    font-size: clamp(2.65rem, 11.6vw, 4.05rem);
    line-height: 0.92;
    letter-spacing: -0.065em;
  }

  .feature-analytics {
    width: 100%;
    max-width: 100%;
    padding-inline: 14px;
  }

  .feature-analytics .section-copy h2 {
    font-size: clamp(2.45rem, 10.4vw, 3.65rem);
  }

  .feature-art {
    min-height: 282px;
    max-width: 100%;
  }

  .inline-form {
    grid-template-columns: 1fr;
  }

  .inline-form input,
  .inline-form button,
  .field-group input,
  .primary-button {
    min-width: 0;
    max-width: 100%;
  }

  .site-footer {
    justify-items: start;
  }

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

@media (max-width: 430px) {
  .hero-section,
  .site-header,
  .trust-strip,
  .upsell-reveal,
  .interest-section,
  .feature-section,
  .bundle-section,
  .site-footer {
    width: min(100% - 18px, 1320px);
  }

  .site-footer {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.58rem, 12.5vw, 3.3rem);
  }

  .hero-plans {
    grid-template-columns: 1fr 1fr;
  }

  .hero-plans span {
    min-width: 0;
  }

  .generator-panel,
  .result-panel {
    padding: 18px;
  }
}
