:root {
  --paper: #f7f4ea;
  --paper-2: #ede8da;
  --paper-3: #d8d0be;
  --ink: #121915;
  --ink-soft: #26302a;
  --muted: #59645d;
  --line: rgba(18, 25, 21, 0.14);
  --accent: #16865f;
  --accent-dark: #123529;
  --accent-glow: #7ad8a9;
  --accent-2: #dbe9d6;
  --clay: #d8d0be;
  --charcoal: #0d1410;
  --white: #fffdf4;
  --danger: #9b352d;
  --shadow: 0 28px 80px -48px rgba(18, 25, 21, 0.62);
  --soft-shadow: 0 18px 60px -44px rgba(18, 25, 21, 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 8% 12%, rgba(122, 216, 169, 0.2), transparent 24rem),
    radial-gradient(circle at 92% 18%, rgba(18, 25, 21, 0.11), transparent 28rem),
    linear-gradient(135deg, #fffdf4 0%, var(--paper) 48%, #e7dfce 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: 11px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.brand-mark {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  display: inline-flex;
  border-radius: 13px;
  box-shadow: 0 16px 34px -25px rgba(18, 25, 21, 0.74);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.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;
}

.google-signin-slot {
  min-width: 210px;
  min-height: 40px;
  display: inline-grid;
  place-items: center;
}

.google-signin-slot iframe {
  display: block;
}

.google-fallback {
  display: none;
}

.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 art"
    "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: 780px;
  margin: 0 0 12px;
  text-align: left;
}

.hero-art {
  position: relative;
  z-index: 0;
  grid-area: art;
  justify-self: end;
  width: min(100%, 430px);
  min-width: 0;
  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 28% 28%, var(--ink) 0 6px, transparent 7px),
    radial-gradient(circle at 72% 28%, var(--ink) 0 6px, transparent 7px),
    radial-gradient(circle at 28% 72%, var(--ink) 0 6px, transparent 7px),
    radial-gradient(circle at 50% 50%, var(--accent) 0 10px, transparent 11px),
    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: 760px;
  margin: 0 0 22px;
  font-size: clamp(3.15rem, 6.4vw, 6.15rem);
  line-height: 0.91;
  letter-spacing: -0.064em;
  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;
  font-size: clamp(1.1rem, 2vw, 1.36rem);
  text-wrap: balance;
}

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

.hero-primary,
.hero-secondary,
.download-button,
.primary-button,
.inline-form button,
.section-cta {
  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,
.section-cta {
  background: var(--ink);
  color: var(--white);
}

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

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

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

.hero-primary:hover,
.primary-button:hover,
.download-button:hover,
.inline-form button:hover,
.section-cta:hover {
  background: var(--accent);
}

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

.hero-proof {
  width: min(780px, 100%);
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 850;
  line-height: 1.2;
}

.hero-proof span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(28, 139, 99, 0.1);
}

.hero-upgrade-note {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.section-cta {
  min-height: 50px;
  border-radius: 16px;
  font-size: 0.95rem;
}

.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-preview {
  width: min(280px, 72%);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 254, 250, 0.68) center / contain no-repeat;
  box-shadow: inset 0 0 0 1px rgba(23, 28, 24, 0.08), 0 18px 44px -34px rgba(23, 28, 24, 0.75);
}
.upload-preview.has-image .upload-icon {
  opacity: 0;
}

.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-icon span {
  background: var(--ink);
  border-radius: 5px;
}

.upload-icon span:nth-child(4) {
  background: var(--accent);
}

.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;
}

.cleanup-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(22, 134, 95, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(219, 233, 214, 0.72), rgba(255, 253, 244, 0.84));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  cursor: pointer;
}

.cleanup-toggle input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  flex: 0 0 auto;
  accent-color: var(--accent);
}

.cleanup-toggle span {
  display: grid;
  gap: 2px;
}

.cleanup-toggle strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.cleanup-toggle small {
  color: var(--muted);
  line-height: 1.4;
}

.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);
}

.pricing-section {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 92px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(18, 25, 21, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(18, 25, 21, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(18, 25, 21, 0.028) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 254, 250, 0.94), rgba(238, 234, 220, 0.86));
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: 0 28px 80px -58px rgba(18, 25, 21, 0.44);
}

.pricing-section::before {
  content: "";
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  top: clamp(20px, 4vw, 48px);
  width: 132px;
  aspect-ratio: 1;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(18, 25, 21, 0.24) 7px, transparent 7px) 0 0 / 24px 24px,
    linear-gradient(rgba(18, 25, 21, 0.24) 7px, transparent 7px) 0 0 / 24px 24px,
    rgba(22, 134, 95, 0.1);
  opacity: 0.32;
  transform: rotate(5deg);
}

.pricing-section > * {
  position: relative;
  z-index: 1;
}

.pricing-head {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(260px, 0.42fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.pricing-copy {
  max-width: 760px;
}

.pricing-copy h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(2.35rem, 5vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.pricing-copy h2 span {
  color: var(--accent);
}

.pricing-copy p:not(.eyebrow) {
  max-width: 660px;
}

.pricing-proof {
  position: relative;
  border: 1px solid rgba(18, 25, 21, 0.12);
  border-radius: 8px;
  padding: 20px 20px 20px 78px;
  background: rgba(255, 254, 250, 0.72);
  box-shadow: 0 18px 44px -38px rgba(18, 25, 21, 0.42);
}

.proof-icon {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 38px;
  aspect-ratio: 1;
  color: var(--accent);
}

.proof-icon svg,
.plan-symbol svg,
.best-value svg,
.pricing-strip svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-icon svg *,
.plan-symbol svg *,
.best-value svg *,
.pricing-strip svg * {
  fill: none;
  stroke: currentColor;
  vector-effect: non-scaling-stroke;
}

.pricing-proof span,
.plan-kicker,
.best-value {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-proof strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.pricing-proof p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.02fr) minmax(0, 1.34fr);
  gap: 14px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  min-height: 500px;
  padding: clamp(20px, 2.6vw, 30px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  border: 1px solid rgba(18, 25, 21, 0.12);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.82);
  box-shadow: 0 22px 58px -50px rgba(18, 25, 21, 0.5);
}

.pricing-card.featured {
  min-height: 520px;
  margin-top: -20px;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 82% 14%, rgba(122, 216, 169, 0.24), transparent 12rem),
    linear-gradient(145deg, #172c23, #0e1511);
  color: var(--white);
  box-shadow: 0 34px 86px -48px rgba(18, 25, 21, 0.72);
}

.plan-symbol {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 134, 95, 0.18);
  border-radius: 50%;
  background: rgba(22, 134, 95, 0.07);
  color: var(--accent);
  transform: rotate(-8deg);
}

.plan-symbol svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.pricing-card h3 {
  margin: 18px 0 20px;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.plan-price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin-bottom: 14px;
}

.plan-price strong {
  font-size: clamp(3.2rem, 5.2vw, 5.4rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.plan-price span {
  color: var(--muted);
  font-weight: 850;
}

.pricing-card.featured .plan-price span,
.pricing-card.featured .plan-summary,
.pricing-card.featured li {
  color: rgba(255, 253, 244, 0.74);
}

.plan-summary {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.pricing-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  list-style: none;
}

.plan-mid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: center;
}

.business-mid {
  grid-template-columns: minmax(0, 0.9fr) minmax(180px, 0.82fr);
}

.pricing-card li {
  position: relative;
  min-height: 26px;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 760;
  line-height: 1.35;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 18px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 52%, var(--white) 53%) 42% 44% / 8px 8px no-repeat,
    var(--accent);
}

.pricing-card.featured li::before {
  background:
    linear-gradient(135deg, transparent 52%, #102019 53%) 42% 44% / 8px 8px no-repeat,
    var(--accent-glow);
}

.best-value {
  position: absolute;
  right: 18px;
  top: 18px;
  border-radius: 999px;
  padding: 9px 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(122, 216, 169, 0.14);
  color: var(--accent-glow);
}

.best-value svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke-width: 0;
}

.best-value svg * {
  fill: currentColor;
  stroke: none;
}

.plan-kicker.pill {
  width: fit-content;
  border: 1px solid rgba(22, 134, 95, 0.38);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(22, 134, 95, 0.05);
}

.plan-visual {
  position: relative;
  width: 100%;
  max-width: 190px;
  min-height: 168px;
  margin-left: auto;
  overflow: visible;
  isolation: isolate;
}

.mini-phone {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 112px;
  height: 168px;
  border: 1px solid rgba(18, 25, 21, 0.18);
  border-radius: 16px;
  padding: 16px 13px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 9px;
  background:
    linear-gradient(var(--accent) 0 0) 0 0 / 100% 15px no-repeat,
    linear-gradient(rgba(18, 25, 21, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 25, 21, 0.035) 1px, transparent 1px),
    var(--white);
  background-size: auto, 18px 18px, 18px 18px, auto;
  box-shadow: 0 18px 34px -28px rgba(18, 25, 21, 0.58);
}

.mini-phone b {
  width: 26px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  font-size: 0.8rem;
}

.mini-phone i {
  color: var(--ink);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
}

.mini-phone em {
  width: 74px;
  height: 18px;
  border: 1px solid rgba(18, 25, 21, 0.12);
  border-radius: 5px;
  background: rgba(255, 254, 250, 0.9);
}

.mini-qr {
  position: absolute;
  z-index: 2;
  right: 2px;
  bottom: 2px;
  width: 78px;
  aspect-ratio: 1;
  border: 5px solid var(--white);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--accent) 0 11px, var(--white) 12px 20px, transparent 21px),
    linear-gradient(90deg, rgba(18, 25, 21, 0.72) 5px, transparent 5px) 0 0 / 15px 15px,
    linear-gradient(rgba(18, 25, 21, 0.72) 5px, transparent 5px) 0 0 / 15px 15px,
    var(--white);
  box-shadow: 0 18px 32px -22px rgba(18, 25, 21, 0.7);
}

.business-visual {
  max-width: 230px;
  min-height: 240px;
}

.print-card {
  position: absolute;
  right: 34px;
  top: 4px;
  width: 132px;
  height: 192px;
  border: 1px solid rgba(18, 25, 21, 0.18);
  border-radius: 8px;
  padding: 28px 18px;
  display: grid;
  justify-items: center;
  align-content: space-between;
  color: #13211b;
  background:
    radial-gradient(circle at 50% 24%, transparent 0 16px, rgba(18, 25, 21, 0.34) 17px 18px, transparent 19px),
    linear-gradient(145deg, #f3eddf, #cfc7b5);
  box-shadow: 0 22px 42px -24px rgba(0, 0, 0, 0.65);
  transform: rotate(5deg);
}

.print-card b {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.print-card i {
  width: 72px;
  aspect-ratio: 1;
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 50%, var(--accent) 0 10px, var(--white) 11px 18px, transparent 19px),
    linear-gradient(90deg, rgba(18, 25, 21, 0.82) 6px, transparent 6px) 0 0 / 17px 17px,
    linear-gradient(rgba(18, 25, 21, 0.82) 6px, transparent 6px) 0 0 / 17px 17px,
    var(--white);
}

.analytics-chip {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 136px;
  border: 1px solid rgba(18, 25, 21, 0.12);
  border-radius: 8px;
  padding: 15px;
  background: rgba(255, 254, 250, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 36px -24px rgba(0, 0, 0, 0.52);
}

.analytics-chip b {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.analytics-chip i {
  display: block;
  height: 34px;
  margin-top: 12px;
  background:
    linear-gradient(135deg, transparent 0 14%, rgba(22, 134, 95, 0.26) 15% 22%, transparent 23% 37%, rgba(22, 134, 95, 0.3) 38% 45%, transparent 46% 60%, rgba(22, 134, 95, 0.42) 61% 70%, transparent 71%),
    linear-gradient(180deg, transparent 64%, rgba(22, 134, 95, 0.12) 65%);
  border-bottom: 2px solid rgba(22, 134, 95, 0.45);
}

.pricing-card form {
  margin: 0;
}

.pricing-button {
  min-height: 54px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--accent-glow);
  color: #0d1511;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  letter-spacing: -0.01em;
  text-align: center;
  text-decoration: none;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.pricing-button:hover {
  transform: translateY(-2px);
  background: #95e5bf;
}

.pricing-button.secondary {
  border-color: rgba(18, 25, 21, 0.14);
  background: rgba(255, 254, 250, 0.68);
  color: var(--ink);
}

.pricing-button.secondary:hover {
  border-color: rgba(22, 134, 95, 0.32);
  background: var(--white);
}

.pricing-strip {
  margin: 16px auto 0;
  width: fit-content;
  max-width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid rgba(18, 25, 21, 0.1);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.72);
  box-shadow: 0 16px 42px -34px rgba(18, 25, 21, 0.38);
}

.pricing-strip > strong {
  padding: 0 12px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-strip span {
  min-height: 42px;
  padding: 8px 14px 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(18, 25, 21, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 244, 0.72);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

.pricing-strip svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px dashed rgba(22, 134, 95, 0.38);
  border-radius: 50%;
  padding: 5px;
  color: var(--accent);
}

.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;
  }

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

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

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

  .pricing-card.featured {
    min-height: 480px;
    margin-top: 0;
  }

  .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,
  .google-signin-slot {
    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: 188px;
    display: block;
    position: relative;
    margin: 18px 0 0;
    border-radius: 30px;
    background:
      radial-gradient(circle at 20% 16%, rgba(104, 196, 158, 0.2), transparent 9rem),
      linear-gradient(90deg, rgba(23, 28, 24, 0.045) 1px, transparent 1px),
      linear-gradient(rgba(23, 28, 24, 0.035) 1px, transparent 1px),
      linear-gradient(145deg, rgba(255, 254, 250, 0.96), rgba(233, 235, 221, 0.9));
    background-size: auto, 22px 22px, 22px 22px, auto;
    box-shadow: 0 26px 74px -58px rgba(23, 28, 24, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.88);
    overflow: hidden;
  }

  .mobile-hero-art::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 22px;
    width: 148px;
    height: 132px;
    border-radius: 24px;
    background:
      linear-gradient(var(--accent) 0 0) 20px 22px / 54px 10px no-repeat,
      linear-gradient(rgba(23, 28, 24, 0.16) 0 0) 20px 50px / 92px 10px no-repeat,
      linear-gradient(rgba(23, 28, 24, 0.11) 0 0) 20px 76px / 106px 18px no-repeat,
      linear-gradient(rgba(23, 28, 24, 0.11) 0 0) 20px 104px / 84px 12px no-repeat,
      rgba(255, 254, 250, 0.86);
    box-shadow: 0 22px 52px -38px rgba(23, 28, 24, 0.74);
    transform: rotate(-5deg);
  }

  .mobile-hero-art::after {
    content: "";
    position: absolute;
    left: 28px;
    bottom: 20px;
    width: 110px;
    height: 16px;
    border-radius: 999px;
    background: rgba(23, 28, 24, 0.16);
    box-shadow:
      0 26px 0 rgba(23, 28, 24, 0.1),
      0 52px 0 rgba(28, 139, 99, 0.22);
  }

  .mobile-print-card {
    position: absolute;
    right: 20px;
    top: 22px;
    width: 148px;
    height: 148px;
    border-radius: 24px;
    background:
      radial-gradient(circle at 24px 24px, var(--ink) 0 9px, transparent 10px),
      radial-gradient(circle at 52px 24px, var(--ink) 0 9px, transparent 10px),
      radial-gradient(circle at 24px 52px, var(--ink) 0 9px, transparent 10px),
      radial-gradient(circle at calc(100% - 24px) 24px, var(--ink) 0 9px, transparent 10px),
      radial-gradient(circle at calc(100% - 52px) 24px, var(--ink) 0 9px, transparent 10px),
      radial-gradient(circle at calc(100% - 24px) 52px, var(--ink) 0 9px, transparent 10px),
      radial-gradient(circle at 24px calc(100% - 24px), var(--ink) 0 9px, transparent 10px),
      radial-gradient(circle at 52px calc(100% - 24px), var(--ink) 0 9px, transparent 10px),
      radial-gradient(circle at 24px calc(100% - 52px), var(--ink) 0 9px, transparent 10px),
      linear-gradient(90deg, rgba(23, 28, 24, 0.62) 7px, transparent 7px) center / 24px 24px,
      linear-gradient(rgba(23, 28, 24, 0.62) 7px, transparent 7px) center / 24px 24px,
      radial-gradient(circle at 50% 50%, var(--accent) 0 17px, var(--white) 18px 33px, transparent 34px),
      rgba(255, 254, 250, 0.96);
    box-shadow: 0 24px 56px -36px rgba(23, 28, 24, 0.84), inset 0 0 0 10px rgba(255, 254, 250, 0.72);
    transform: rotate(5deg);
  }

  .mobile-material-chip {
    position: absolute;
    left: 76px;
    top: 104px;
    width: 88px;
    height: 88px;
    border-radius: 22px;
    background:
      radial-gradient(circle at 50% 50%, var(--accent) 0 15px, transparent 16px),
      radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.82) 0 5px, transparent 6px),
      radial-gradient(circle at 72% 28%, rgba(23, 28, 24, 0.22) 0 5px, transparent 6px),
      radial-gradient(circle at 28% 72%, rgba(23, 28, 24, 0.22) 0 5px, transparent 6px),
      rgba(255, 254, 250, 0.94);
    box-shadow: 0 18px 42px -30px rgba(23, 28, 24, 0.74), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: rotate(-8deg);
  }

  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,
  .section-cta {
    width: 100%;
    max-width: 100%;
  }

  .hero-proof {
    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,
  .pricing-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;
  }

  .pricing-section {
    padding: 20px;
  }

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

  .pricing-copy h2 {
    font-size: clamp(2.25rem, 13vw, 3.8rem);
  }

  .pricing-card,
  .pricing-card.featured {
    min-height: auto;
  }

  .plan-mid,
  .business-mid {
    grid-template-columns: 1fr;
  }

  .plan-visual {
    display: none;
  }

  .pricing-strip {
    border-radius: 18px;
    justify-content: flex-start;
  }

  .pricing-strip > strong,
  .pricing-strip span {
    white-space: normal;
  }

  .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 .section-cta,
  .feature-analytics .section-cta,
  .bundle-section .section-cta {
    background: var(--white);
    color: var(--ink);
  }

  .feature-linklist .section-cta.secondary,
  .feature-analytics .section-cta.secondary,
  .bundle-section .section-cta.secondary {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .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-proof {
    gap: 10px 14px;
  }

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

.cleanup-toggle.is-disabled {
  opacity: 0.62;
}

.cleanup-toggle.is-ready {
  border-color: rgba(22, 134, 95, 0.32);
  background: rgba(22, 134, 95, 0.1);
}

.logo-edit-button {
  min-height: 52px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border: 1px solid rgba(18, 25, 21, 0.12);
  border-radius: 16px;
  background: rgba(255, 254, 250, 0.86);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(18, 25, 21, 0.08);
}
.logo-edit-button:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 134, 95, 0.28);
  background: var(--white);
}
.logo-editor-open { overflow: hidden; }
.logo-editor-modal[hidden] { display: none; }
.logo-editor-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}
.logo-editor-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 25, 21, 0.42);
  backdrop-filter: blur(10px);
}
.logo-editor-dialog {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(880px, calc(100vh - 32px));
  overflow: auto;
  border: 1px solid rgba(18, 25, 21, 0.14);
  border-radius: 18px;
  background: #fffdf4;
  box-shadow: 0 32px 90px rgba(18, 25, 21, 0.28);
}
.logo-editor-head,
.logo-editor-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(18, 25, 21, 0.1);
}
.logo-editor-head p {
  margin: 0 0 3px;
  color: #16865f;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.logo-editor-head h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.45rem); }
.logo-editor-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(18, 25, 21, 0.12);
  background: #fffaf0;
  color: #121915;
  font-size: 1.6rem;
  line-height: 1;
}
.logo-editor-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 22px;
  padding: 24px;
}
.logo-editor-crop-panel,
.logo-editor-controls {
  border: 1px solid rgba(18, 25, 21, 0.12);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.74), rgba(244,239,224,0.52));
  box-shadow: 0 14px 34px rgba(18, 25, 21, 0.08);
}
.logo-editor-canvas-wrap {
  padding: 14px;
}
.logo-editor-canvas-wrap canvas {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px dashed rgba(18, 25, 21, 0.16);
  cursor: move;
}
.logo-editor-note { margin: 0; padding: 0 16px 16px; color: #66736c; }
.logo-editor-controls { padding: 18px; display: grid; gap: 16px; align-content: start; }
.logo-editor-preview {
  display: grid;
  place-items: center;
  min-height: 250px;
  border-radius: 12px;
  background: #f7f4ea;
}
.logo-editor-qr {
  width: 190px;
  aspect-ratio: 1;
  position: relative;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #121915 12px, transparent 12px) 0 0/24px 24px,
    linear-gradient(#121915 12px, transparent 12px) 0 0/24px 24px,
    #fffdf4;
  box-shadow: inset 0 0 0 16px #fffdf4, 0 16px 34px rgba(18,25,21,0.16);
}
.logo-editor-qr span {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fffdf4;
  box-shadow: 0 0 0 8px #fffdf4;
}
.logo-editor-toggle {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(18, 25, 21, 0.12);
  background: #fffdf4;
}
.logo-editor-toggle span { display: grid; gap: 2px; }
.logo-editor-toggle small { color: #66736c; }
.logo-editor-slider { display: grid; gap: 8px; font-weight: 800; }
.logo-editor-slider span { display: flex; justify-content: space-between; }
.logo-editor-slider input { accent-color: #16865f; }
.logo-editor-safety {
  display: grid;
  gap: 3px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(22, 134, 95, 0.1);
  color: #21463a;
}
.logo-editor-safety.is-warning {
  background: rgba(244, 181, 35, 0.18);
  color: #5c4211;
}
.logo-editor-safety span { color: inherit; opacity: 0.84; }
.logo-editor-actions {
  justify-content: end;
  border-top: 1px solid rgba(18, 25, 21, 0.1);
  border-bottom: 0;
}

.logo-editor-actions .button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(18, 25, 21, 0.14);
  background: rgba(255, 254, 250, 0.82);
  color: #121915;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(18, 25, 21, 0.08);
}
.logo-editor-actions .button.accent {
  border-color: transparent;
  background: #16865f;
  color: #fffdf4;
  box-shadow: 0 14px 28px rgba(22, 134, 95, 0.22);
}
.logo-editor-actions .button:hover { transform: translateY(-1px); }
.logo-editor-actions .button:active { transform: translateY(0); }
@media (max-width: 820px) {
  .logo-editor-body { grid-template-columns: 1fr; }
  .logo-editor-actions { display: grid; grid-template-columns: 1fr; }
}
