:root {
  --bg: #fff6ea;
  --bg-2: #ffe8c9;
  --ink: #33261f;
  --muted: #765f55;
  --cream: #fffaf1;
  --paper: rgba(255, 252, 245, .76);
  --paper-solid: #fffdf7;
  --line: rgba(80, 49, 35, .14);
  --line-strong: rgba(80, 49, 35, .22);
  --coral: #ff7b6e;
  --rose: #f25f9a;
  --gold: #ffc857;
  --mint: #8ed9b6;
  --sky: #77c9ef;
  --blue: #5d73e6;
  --lavender: #b9a0ff;
  --green: #2b8c67;
  --shadow: 0 30px 80px rgba(115, 72, 43, .20);
  --shadow-strong: 0 42px 110px rgba(115, 72, 43, .27);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1200px;
  --header-h: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 200, 87, .50), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(119, 201, 239, .38), transparent 30%),
    radial-gradient(circle at 72% 42%, rgba(242, 95, 154, .18), transparent 31%),
    linear-gradient(135deg, #fff8ed 0%, #ffeccd 45%, #fff7ef 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -6;
  background-image:
    linear-gradient(rgba(80, 49, 35, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 49, 35, .045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 80%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto 4vw -140px auto;
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(142, 217, 182, .42), transparent 67%);
  filter: blur(18px);
  z-index: -7;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

::selection { background: rgba(255, 123, 110, .25); }

#sparkles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -4;
  opacity: .78;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(64px);
  opacity: .54;
  pointer-events: none;
  z-index: -5;
  animation: drift 18s ease-in-out infinite alternate;
}
.bg-orb-one { width: 38vw; height: 38vw; left: -13vw; top: 12vh; background: rgba(255, 123, 110, .42); }
.bg-orb-two { width: 34vw; height: 34vw; right: -10vw; top: 13vh; background: rgba(119, 201, 239, .45); animation-delay: -6s; }
.bg-orb-three { width: 32vw; height: 32vw; left: 36vw; bottom: -18vw; background: rgba(255, 200, 87, .38); animation-delay: -11s; }

.paper-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: .18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.section-shell {
  width: min(var(--max), calc(100% - 38px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 38px));
  margin: 14px auto 0;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(80, 49, 35, .13);
  border-radius: 999px;
  background: rgba(255, 250, 241, .68);
  backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 16px 50px rgba(115, 72, 43, .12);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-elevated {
  background: rgba(255, 252, 247, .90);
  box-shadow: 0 20px 60px rgba(115, 72, 43, .18);
  border-color: rgba(80, 49, 35, .20);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.03em;
}
.brand-mark {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 12px 18px rgba(255, 123, 110, .22));
}
.brand span { display: grid; line-height: .92; }
.brand strong { font-size: .98rem; }
.brand em { font-size: .82rem; font-style: normal; color: var(--green); letter-spacing: .06em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(80, 49, 35, .08);
  border-radius: 999px;
  background: rgba(255,255,255,.44);
}
.nav-links a {
  color: rgba(51, 38, 31, .72);
  font-size: .91rem;
  font-weight: 760;
  padding: 9px 13px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 200, 87, .18);
  transform: translateY(-1px);
}

.nav-action,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  isolation: isolate;
  white-space: nowrap;
}
.nav-action {
  padding: 11px 17px;
  font-size: .91rem;
  font-weight: 900;
  color: #2d1c14;
  background: linear-gradient(135deg, #fff 0%, #ffd46d 34%, #ff8a76 100%);
  box-shadow: 0 16px 34px rgba(255, 123, 110, .24), inset 0 1px 0 rgba(255,255,255,.78);
}
.nav-action::before,
.button-primary::before {
  content: "";
  position: absolute;
  inset: -140% -50%;
  z-index: -1;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.82), transparent 66%);
  transform: translateX(-62%) rotate(12deg);
  animation: shimmer 5.2s ease-in-out infinite;
}
.menu-button { display: none; }

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  align-items: center;
  gap: 56px;
  padding: 92px 0 70px;
}

.eyebrow,
.eyebrow-pill {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .73rem;
  font-weight: 920;
}
.eyebrow-pill {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(43, 140, 103, .20);
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 14px 36px rgba(43, 140, 103, .08);
}
.eyebrow-pill span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 7px rgba(255, 123, 110, .13), 0 0 18px rgba(255, 123, 110, .66);
}

h1 {
  margin: 22px 0 22px;
  max-width: 780px;
  font-size: clamp(3.25rem, 8vw, 7.25rem);
  line-height: .88;
  letter-spacing: -.085em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.8vw, 5.15rem);
  line-height: .93;
  letter-spacing: -.065em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.hero-lede {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.07rem, 1.5vw, 1.28rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 32px 0 30px;
}
.button {
  min-height: 54px;
  padding: 0 22px;
  font-weight: 920;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  transition: transform .22s ease, box-shadow .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #2c1a12;
  background: linear-gradient(135deg, #ffe27c 0%, #ff9c7b 52%, #f25f9a 100%);
  box-shadow: 0 22px 42px rgba(242, 95, 154, .23), inset 0 1px 0 rgba(255,255,255,.68);
}
.button-soft {
  color: var(--ink);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(80, 49, 35, .12);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
}
.hero-proof div {
  padding: 18px 16px;
  border: 1px solid rgba(80, 49, 35, .12);
  border-radius: 22px;
  background: rgba(255,255,255,.44);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.76);
}
.hero-proof strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.55rem;
  letter-spacing: -.04em;
}
.hero-proof span {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 720;
}

.hero-stage {
  position: relative;
  min-height: 720px;
  perspective: 1200px;
}

.calendar-preview,
.daily-flyer,
.ai-card,
.approval-strip,
.bento-card,
.workflow-card,
.paper,
.trust-card,
.final-card,
.tab-panel {
  border: 1px solid rgba(80, 49, 35, .13);
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(255, 249, 238, .58));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(160%);
}

.calendar-preview {
  position: absolute;
  top: 14px;
  right: 0;
  width: min(610px, 100%);
  border-radius: 34px;
  overflow: hidden;
  transform: rotate(1deg);
}
.preview-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(80, 49, 35, .11);
  background: rgba(255,255,255,.45);
}
.preview-topbar div { display: flex; gap: 7px; }
.preview-topbar span { width: 11px; height: 11px; border-radius: 99px; background: var(--coral); }
.preview-topbar span:nth-child(2) { background: var(--gold); }
.preview-topbar span:nth-child(3) { background: var(--mint); }
.preview-topbar strong { font-size: .96rem; letter-spacing: -.02em; }
.preview-topbar em { justify-self: end; color: var(--green); font-style: normal; font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }

.calendar-art {
  position: relative;
  min-height: 164px;
  padding: 28px 26px;
  overflow: hidden;
  color: #3b281f;
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 200, 87, .52), transparent 20%),
    radial-gradient(circle at 13% 70%, rgba(119, 201, 239, .38), transparent 18%),
    linear-gradient(135deg, rgba(255, 231, 159, .70), rgba(255, 184, 175, .42) 50%, rgba(180, 224, 201, .52));
}
.calendar-art h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  line-height: .85;
}
.calendar-art p {
  position: relative;
  z-index: 2;
  margin: 10px 0 0;
  color: rgba(51, 38, 31, .72);
  font-weight: 850;
}
.sun {
  position: absolute;
  right: 37px;
  top: 25px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #ffd25e;
  box-shadow: 0 0 0 12px rgba(255, 210, 94, .16), 0 0 38px rgba(255, 170, 78, .46);
}
.kite {
  position: absolute;
  right: 150px;
  top: 35px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--sky) 50%, #fff 50%);
  border-radius: 8px;
  transform: rotate(45deg);
  box-shadow: 0 14px 28px rgba(75, 95, 150, .12);
}
.kite::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 54px;
  border-left: 2px dashed rgba(80,49,35,.30);
  border-bottom: 2px dashed rgba(80,49,35,.18);
  left: 28px;
  top: 30px;
  border-radius: 0 0 0 60px;
  transform: rotate(-45deg);
}
.flower {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 99px;
  background: var(--rose);
  box-shadow: 18px 0 0 var(--rose), 9px 15px 0 var(--rose), 9px -15px 0 var(--rose), 9px 0 0 var(--gold);
}
.flower-one { right: 44px; bottom: 28px; transform: scale(.72); }
.flower-two { left: 32px; bottom: 28px; transform: scale(.58) rotate(18deg); }

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  padding: 16px;
  background: rgba(255, 253, 247, .72);
}
.mini-calendar b {
  color: rgba(51, 38, 31, .60);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
}
.mini-calendar > span {
  min-height: 72px;
  border-radius: 14px;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(80,49,35,.08);
}
.mini-calendar .day {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 9px;
  color: rgba(51,38,31,.88);
  font-size: .86rem;
  font-weight: 900;
}
.mini-calendar .day i {
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.1;
  font-style: normal;
  font-weight: 750;
}
.mini-calendar .highlight {
  background: linear-gradient(135deg, rgba(255, 200, 87, .28), rgba(255,255,255,.76));
  border-color: rgba(255, 123, 110, .28);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.62), 0 12px 22px rgba(255, 123, 110, .10);
}

.daily-flyer {
  position: absolute;
  left: 4px;
  top: 92px;
  width: 218px;
  padding: 18px;
  border-radius: 26px;
  transform: rotate(-7deg);
  z-index: 3;
}
.flyer-badge {
  display: inline-flex;
  padding: 7px 10px;
  margin-bottom: 14px;
  border-radius: 99px;
  color: #3a2117;
  background: rgba(255, 200, 87, .55);
  font-size: .73rem;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .08em;
}
.daily-flyer h3 { margin-bottom: 16px; }
.daily-flyer p {
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(80,49,35,.16);
  color: rgba(51,38,31,.72);
  font-size: .84rem;
  font-weight: 750;
}
.daily-flyer strong {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green);
  font-size: .82rem;
}

.ai-card {
  position: absolute;
  right: 30px;
  bottom: 52px;
  width: min(410px, 72%);
  padding: 20px;
  border-radius: 27px;
  z-index: 4;
  transform: rotate(-2deg);
}
.ai-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ai-card-header span {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 14px;
  background: rgba(255, 123, 110, .14);
}
.ai-card p {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
}
.ai-response {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(43, 140, 103, .08);
  color: #235d47;
  font-size: .86rem;
  font-weight: 850;
}
.ai-response i {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(43, 140, 103, .12);
}

.approval-strip {
  position: absolute;
  left: 56px;
  bottom: 128px;
  z-index: 5;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  width: min(450px, calc(100% - 80px));
  padding: 12px;
  border-radius: 999px;
  transform: rotate(2deg);
}
.approval-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 950;
  color: rgba(51,38,31,.76);
  background: rgba(255,255,255,.62);
}
.approval-strip span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--gold);
}
.approval-strip .approved::before,
.approval-strip .clear::before { background: var(--green); }
.approval-strip .pending::before { background: var(--coral); }

.logo-ribbon {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(80,49,35,.10);
  border-bottom: 1px solid rgba(80,49,35,.10);
  background: rgba(255,255,255,.30);
}
.ribbon-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.ribbon-track span {
  color: rgba(51,38,31,.58);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
}
.ribbon-track i {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--coral), var(--gold));
}

.workflow-section,
.feature-section,
.audience-section,
.trust-section,
.final-section { padding: 112px 0; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, .72fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 38px;
}
.section-heading.centered {
  display: block;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}
.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
  font-weight: 650;
}
.section-heading .eyebrow { margin-bottom: 14px; }

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
.workflow-card {
  position: relative;
  min-height: 320px;
  padding: 26px;
  border-radius: 30px;
  overflow: hidden;
}
.workflow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 0%, rgba(255,200,87,.26), transparent 38%);
  opacity: 0;
  transition: opacity .28s ease;
}
.workflow-card:hover::before { opacity: 1; }
.workflow-card span {
  display: inline-flex;
  margin-bottom: 48px;
  color: rgba(51,38,31,.28);
  font-size: 3.2rem;
  line-height: .8;
  letter-spacing: -.08em;
  font-weight: 950;
}
.workflow-card h3,
.workflow-card p { position: relative; z-index: 1; }
.workflow-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
  font-weight: 650;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
.bento-card {
  position: relative;
  min-height: 255px;
  padding: 25px;
  border-radius: 30px;
  overflow: hidden;
}
.bento-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(255, 200, 87, .20);
  transition: transform .3s ease, opacity .3s ease;
}
.bento-card:hover::after { transform: scale(1.45); opacity: .8; }
.bento-large { grid-column: span 2; grid-row: span 2; min-height: 528px; }
.bento-wide { grid-column: span 2; }
.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .56);
  border: 1px solid rgba(80,49,35,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.76);
  font-size: 1.35rem;
}
.bento-card h3 { position: relative; z-index: 1; }
.bento-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
  font-weight: 650;
}
.design-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(255, 248, 236, .64)),
    radial-gradient(circle at 90% 10%, rgba(242, 95, 154, .24), transparent 34%);
}
.design-card h3 { max-width: 470px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.palette-row {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr .8fr 1.2fr;
  gap: 10px;
  height: 94px;
}
.palette-row span {
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.56);
}
.palette-row span:nth-child(1) { background: #ff7b6e; }
.palette-row span:nth-child(2) { background: #ffc857; }
.palette-row span:nth-child(3) { background: #8ed9b6; }
.palette-row span:nth-child(4) { background: #77c9ef; }
.palette-row span:nth-child(5) { background: #b9a0ff; }

.showcase-section {
  padding: 112px 0;
  background:
    linear-gradient(135deg, rgba(51, 38, 31, .90), rgba(69, 44, 34, .86)),
    radial-gradient(circle at 16% 20%, rgba(255, 200, 87, .34), transparent 26%);
  color: #fffaf2;
  overflow: hidden;
}
.showcase-shell {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 52px;
  align-items: center;
}
.showcase-copy .eyebrow { color: #ffd76f; }
.showcase-copy p:not(.eyebrow) {
  color: rgba(255, 250, 242, .74);
  font-size: 1.08rem;
  line-height: 1.74;
  font-weight: 650;
}
.print-stack {
  position: relative;
  min-height: 570px;
}
.paper {
  position: absolute;
  background: #fffdf7;
  color: var(--ink);
  border-radius: 24px;
  border-color: rgba(255,255,255,.36);
  box-shadow: 0 42px 100px rgba(0,0,0,.28);
}
.paper header {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(80,49,35,.10);
  color: var(--green);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .10em;
}
.paper-calendar {
  top: 20px;
  left: 18px;
  width: 470px;
  min-height: 350px;
  transform: rotate(-5deg);
  z-index: 2;
}
.paper-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 20px;
}
.paper-grid span {
  min-height: 76px;
  border: 1px solid rgba(80,49,35,.09);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 200, 87, .20), rgba(255,255,255,.66));
}
.paper-grid span:nth-child(2n) { background: linear-gradient(135deg, rgba(119, 201, 239, .20), rgba(255,255,255,.66)); }
.paper-grid span:nth-child(3n) { background: linear-gradient(135deg, rgba(255, 123, 110, .18), rgba(255,255,255,.66)); }
.paper-flyer {
  top: 120px;
  right: 0;
  width: 280px;
  padding-bottom: 20px;
  transform: rotate(7deg);
  z-index: 3;
}
.paper-flyer h3 { padding: 18px 20px 0; margin-bottom: 14px; font-size: 2.1rem; }
.paper-flyer p { margin: 0 20px 10px; padding: 11px 12px; border-radius: 14px; color: rgba(51,38,31,.70); background: rgba(255, 200, 87, .17); font-weight: 800; }
.paper-approval {
  left: 122px;
  bottom: 34px;
  width: 350px;
  padding-bottom: 22px;
  transform: rotate(2deg);
  z-index: 4;
}
.paper-approval p { display: flex; align-items: center; gap: 10px; margin: 16px 18px 0; font-weight: 850; color: rgba(51,38,31,.72); }
.paper-approval span { width: 11px; height: 11px; border-radius: 99px; background: var(--green); box-shadow: 0 0 0 7px rgba(43,140,103,.10); }

.audience-tabs {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
}
.tab-list {
  display: grid;
  gap: 10px;
  height: fit-content;
  padding: 10px;
  border: 1px solid rgba(80,49,35,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}
.tab-button {
  width: 100%;
  padding: 15px 17px;
  border: 0;
  border-radius: 20px;
  color: rgba(51,38,31,.68);
  background: transparent;
  text-align: left;
  font-weight: 920;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.tab-button:hover { color: var(--ink); background: rgba(255,255,255,.54); }
.tab-button.active {
  color: #2e1b14;
  background: linear-gradient(135deg, rgba(255, 226, 124, .72), rgba(255, 156, 123, .56));
  box-shadow: 0 12px 25px rgba(255,123,110,.14), inset 0 1px 0 rgba(255,255,255,.62);
}
.tab-panels { position: relative; }
.tab-panel {
  display: none;
  min-height: 370px;
  padding: 38px;
  border-radius: 34px;
}
.tab-panel.active { display: block; animation: panelIn .28s ease both; }
.tab-panel h3 { font-size: clamp(2rem, 3vw, 3rem); max-width: 760px; }
.tab-panel p {
  max-width: 790px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
  font-weight: 650;
}
.tab-panel ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}
.tab-panel li {
  position: relative;
  min-height: 96px;
  padding: 18px 18px 18px 44px;
  border-radius: 20px;
  background: rgba(255,255,255,.50);
  color: rgba(51,38,31,.73);
  font-weight: 800;
  line-height: 1.35;
}
.tab-panel li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(43, 140, 103, .09);
}

.trust-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 30px;
  align-items: center;
  min-height: 420px;
  padding: 40px;
  border-radius: 40px;
  overflow: hidden;
}
.trust-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.08rem;
  font-weight: 650;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.trust-grid div {
  min-height: 154px;
  padding: 22px;
  border: 1px solid rgba(80,49,35,.10);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.66), rgba(255,255,255,.32)),
    radial-gradient(circle at 88% 0%, rgba(119,201,239,.24), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.74);
}
.trust-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -.04em;
}
.trust-grid span {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
}

.final-section { padding-top: 40px; }
.final-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: clamp(32px, 6vw, 72px);
  border-radius: 44px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 200, 87, .34), transparent 30%),
    radial-gradient(circle at 80% 16%, rgba(119, 201, 239, .30), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,248,236,.60));
}
.final-card .eyebrow { margin-bottom: 16px; }
.final-card h2 {
  max-width: 900px;
  margin-inline: auto;
}
.final-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
  font-weight: 650;
}
.final-art {
  position: relative;
  width: 118px;
  height: 118px;
  margin: 0 auto 24px;
}
.final-art img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 35px rgba(255, 123, 110, .22));
}
.final-art span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 99px;
  background: var(--gold);
  animation: floaty 4s ease-in-out infinite;
}
.final-art span:nth-child(2) { top: 4px; left: -12px; background: var(--coral); }
.final-art span:nth-child(3) { top: 30px; right: -16px; background: var(--sky); animation-delay: -1.4s; }
.final-art span:nth-child(4) { bottom: 2px; left: 14px; background: var(--mint); animation-delay: -2.5s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.tilt-card { transition: transform .18s ease, box-shadow .25s ease; transform-style: preserve-3d; }
.tilt-card:hover { box-shadow: var(--shadow-strong); }

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(32px, -26px, 0) scale(1.06); }
}
@keyframes shimmer {
  0%, 58% { transform: translateX(-68%) rotate(12deg); }
  78%, 100% { transform: translateX(72%) rotate(12deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1060px) {
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-stage { min-height: 680px; }
  .calendar-preview { left: 0; right: auto; width: min(650px, 100%); }
  .daily-flyer { left: auto; right: 30px; top: 72px; }
  .approval-strip { left: 24px; bottom: 132px; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-large, .bento-wide { grid-column: span 2; }
  .section-heading, .showcase-shell, .trust-card { grid-template-columns: 1fr; }
  .print-stack { min-height: 600px; }
  .audience-tabs { grid-template-columns: 1fr; }
  .tab-list { grid-template-columns: repeat(4, 1fr); }
  .tab-button { text-align: center; }
}

@media (max-width: 860px) {
  .site-header { top: 10px; }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 252, 247, .96);
    box-shadow: 0 22px 50px rgba(115,72,43,.18);
  }
  .nav-links.is-open { display: grid; }
  .nav-links a { padding: 13px 14px; }
  .nav-action { display: none; }
  .menu-button {
    display: inline-grid;
    place-items: center;
    gap: 4px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(80,49,35,.08);
    cursor: pointer;
  }
  .menu-button span { display: block; width: 18px; height: 2px; border-radius: 9px; background: var(--ink); }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-stage { min-height: 760px; }
  .daily-flyer { top: 380px; left: 12px; right: auto; }
  .ai-card { bottom: 80px; right: 0; width: min(420px, 94%); }
  .approval-strip { bottom: 12px; left: 0; width: 100%; border-radius: 24px; }
  .showcase-section { padding: 86px 0; }
  .print-stack { min-height: 720px; }
  .paper-calendar { left: 0; width: min(470px, 100%); }
  .paper-flyer { top: 330px; right: 0; }
  .paper-approval { left: 0; bottom: 0; width: min(350px, 100%); }
  .tab-list { grid-template-columns: 1fr 1fr; }
  .tab-panel ul { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .section-shell, .site-header { width: min(100% - 26px, var(--max)); }
  .hero { padding-top: 54px; gap: 30px; }
  h1 { font-size: clamp(3rem, 18vw, 4.4rem); }
  h2 { font-size: clamp(2.25rem, 12vw, 3.5rem); }
  .eyebrow-pill { width: 100%; justify-content: center; text-align: center; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-stage { min-height: 830px; }
  .calendar-preview { transform: none; }
  .preview-topbar { grid-template-columns: 1fr; justify-items: start; }
  .preview-topbar em { justify-self: start; }
  .mini-calendar { gap: 5px; padding: 10px; }
  .mini-calendar > span { min-height: 56px; border-radius: 10px; }
  .mini-calendar .day { padding: 6px; font-size: .72rem; }
  .mini-calendar .day i { display: none; }
  .daily-flyer { top: 392px; width: 200px; transform: rotate(-3deg); }
  .ai-card { bottom: 88px; width: 100%; transform: none; }
  .approval-strip { transform: none; }
  .workflow-section, .feature-section, .audience-section, .trust-section, .final-section { padding: 82px 0; }
  .workflow-grid, .bento-grid, .trust-grid, .benefits-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
  .bento-large { min-height: 520px; }
  .workflow-card { min-height: 260px; }
  .palette-row { height: 68px; }
  .tab-list { grid-template-columns: 1fr; }
  .tab-panel { padding: 26px; }
  .trust-card { padding: 24px; border-radius: 30px; }
  .final-card { border-radius: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  #sparkles { display: none; }
}


.hero-quote-card {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(80, 49, 35, .12);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.76), rgba(255, 250, 239, .62));
  box-shadow: 0 18px 44px rgba(115, 72, 43, .12);
  max-width: 540px;
}
.hero-quote-card p {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 850;
  color: var(--ink);
}
.hero-quote-card span {
  color: var(--green);
  font-size: .92rem;
  font-weight: 900;
}
.brand em { color: var(--rose); }
.genie-art { position: relative; }
.magic-spark {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 0 8px rgba(255,255,255,.15);
}
.magic-spark::before,
.magic-spark::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(255,255,255,.95);
}
.magic-spark::before { width: 18px; height: 4px; border-radius: 999px; top: 7px; }
.magic-spark::after { width: 4px; height: 18px; border-radius: 999px; left: 7px; }
.spark-one { top: 26px; left: 36px; transform: scale(.65); }
.spark-two { right: 118px; bottom: 26px; transform: scale(.48); }
.benefits-section { padding: 16px 0 112px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
.benefit-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(80, 49, 35, .13);
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(255, 249, 238, .58));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(160%);
}
.benefit-card strong {
  display: block;
  margin-bottom: 16px;
  font-size: 1.18rem;
  letter-spacing: -.03em;
}
.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
}
.showcase-points {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.showcase-points li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 250, 242, .88);
  font-weight: 820;
  line-height: 1.45;
}
.showcase-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(255, 200, 87, .18);
}
.paper-newsletter p { background: rgba(119, 201, 239, .16); }
@media (max-width: 1060px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .benefits-section { padding: 0 0 82px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-quote-card { max-width: none; }
}
