/* gommies — brand site stylesheet */

:root {
  --teal: #0D9488;
  --teal-deep: #0B7269;
  --teal-soft: #CDEEEA;
  --orange: #C2410C;
  --orange-soft: #FBE4D4;
  --cream: #FEF3EC;
  --cream-deep: #F8E3D2;
  --ink: #1A1A1A;
  --ink-soft: #4A4A48;
  --paper: #F7F7F5;
  --line: #E7E1D8;
  --shadow: 0 14px 40px -18px rgba(26,26,26,0.20);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.display {
  font-family: "Fredoka", "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.02;
  color: var(--ink);
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
}
h2.display { font-size: clamp(2rem, 4.4vw, 3.8rem); }
h3 { font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 1.35rem; margin: 0 0 8px; letter-spacing: -0.01em; }
p { margin: 0 0 14px; color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.25vw, 1.2rem); color: var(--ink); max-width: 56ch; }
.lead-strong { color: var(--ink); font-weight: 500; }
.sub { font-size: 1.05rem; color: var(--ink-soft); max-width: 60ch; }
strong { color: var(--ink); }
em { font-style: normal; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); position: relative; z-index: 2; }

/* ---------- preloader ---------- */
#preloader {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 999;
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { width: min(420px, 80vw); text-align: center; position: relative; }
#preloader-canvas { position: absolute; inset: -120px; width: calc(100% + 240px); height: calc(100% + 240px); pointer-events: none; opacity: 0.7; }
.preloader-bear { width: 96px; height: 96px; margin: 0 auto 14px; position: relative; animation: bob 2.4s ease-in-out infinite; }
.preloader-word { font-family: "Fredoka", sans-serif; font-weight: 700; font-size: 2.2rem; color: var(--teal); letter-spacing: -0.02em; }
.preloader-bar { margin: 20px auto 8px; height: 4px; width: 240px; background: var(--cream-deep); border-radius: 99px; overflow: hidden; }
.preloader-bar span { display: block; height: 100%; width: 0%; background: var(--teal); border-radius: 99px; transition: width .25s ease; }
.preloader-meta { display: flex; justify-content: space-between; width: 240px; margin: 0 auto; font-size: .82rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; letter-spacing: 0.04em; text-transform: uppercase; }

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

/* ---------- topbar ---------- */
.topbar {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 28px;
  background: rgba(254,243,236,0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid var(--line);
  padding: 8px 8px 8px 16px;
  border-radius: 99px;
  z-index: 50;
  font-size: .92rem;
  box-shadow: var(--shadow);
}
.brand { display: inline-flex; align-items: center; gap: 8px; font-family: "Fredoka", sans-serif; font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.brand img { width: 26px; height: 26px; }
.topnav { display: flex; align-items: center; gap: 22px; }
.topnav a { color: var(--ink-soft); transition: color .2s; }
.topnav a:hover { color: var(--ink); }
.cta-mini {
  background: var(--ink); color: var(--cream) !important;
  padding: 8px 14px; border-radius: 99px; font-weight: 500;
}
.cta-mini:hover { background: var(--teal); }

/* ---------- left dot nav ---------- */
.dotnav { position: fixed; left: 22px; top: 50%; transform: translateY(-50%); z-index: 40; display: flex; flex-direction: column; gap: 14px; }
.dotnav a { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: .78rem; }
.dotnav a span { width: 8px; height: 8px; border-radius: 50%; background: transparent; border: 1.5px solid var(--ink-soft); transition: all .25s ease; }
.dotnav a em { opacity: 0; transform: translateX(-6px); transition: all .25s ease; font-size: .76rem; letter-spacing: 0.03em; text-transform: lowercase; }
.dotnav a:hover em { opacity: 1; transform: translateX(0); }
.dotnav a.active span { background: var(--teal); border-color: var(--teal); transform: scale(1.25); }
.dotnav a.active em { opacity: 1; transform: translateX(0); color: var(--teal); font-weight: 500; }

@media (max-width: 900px) { .dotnav { display: none; } .topbar { gap: 10px; padding: 6px 8px 6px 12px; font-size: .85rem; } .topnav a:not(.cta-mini) { display: none; } }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border-radius: 99px; font-weight: 500; font-size: .98rem; transition: transform .2s, background .2s, box-shadow .2s; cursor: pointer; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px -10px rgba(194,65,12,.55); }
.btn-primary:hover { background: #a93709; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

/* ---------- section base ---------- */
.section { position: relative; min-height: 100vh; padding: 110px 0 90px; display: flex; flex-direction: column; justify-content: center; isolation: isolate; overflow: hidden; }
.section-tall { min-height: 110vh; }
.section-xtall { min-height: 120vh; }
.canvas-wrap { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.canvas-wrap canvas { width: 100% !important; height: 100% !important; display: block; }
.section-head { max-width: 760px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .sub { margin-left: auto; margin-right: auto; }
.kicker { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 99px; background: var(--teal-soft); color: var(--teal-deep); font-weight: 500; font-size: .78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.kicker-orange { background: var(--orange-soft); color: var(--orange); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--ink-soft); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px; }
.eyebrow .dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- HERO ---------- */
.hero { background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 60%, var(--paper) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 60px; align-items: center; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 38px; }
.hero-trust { display: flex; gap: 36px; flex-wrap: wrap; border-top: 1px dashed var(--line); padding-top: 22px; }
.hero-trust > div { display: flex; flex-direction: column; }
.hero-trust strong { font-family: "Fredoka", sans-serif; font-size: 1.7rem; color: var(--ink); font-weight: 700; line-height: 1; }
.hero-trust span { font-size: .82rem; color: var(--ink-soft); margin-top: 4px; }
.hero-bear { position: relative; text-align: center; }
.hero-bear img { width: min(360px, 80%); margin: 0 auto; animation: bob 4s ease-in-out infinite; filter: drop-shadow(0 30px 30px rgba(0,0,0,0.12)); }
.hero-bubble { position: absolute; top: 10%; right: -10px; max-width: 230px; background: #fff; border: 1px solid var(--line); padding: 14px 16px; border-radius: 14px 14px 14px 4px; font-size: .92rem; color: var(--ink); box-shadow: var(--shadow); transform: rotate(2deg); }
.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); color: var(--ink-soft); font-size: .78rem; letter-spacing: 0.18em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.scroll-hint span { animation: bob 2s ease-in-out infinite; }

@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } .hero-bear { order: -1; } .hero-bear img { width: 200px; } .hero-bubble { display: none; } }

/* ---------- PROBLEM ---------- */
.problem { background: var(--paper); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 12px; }
.prob-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); position: relative; overflow: hidden; transition: transform .35s; }
.prob-card:hover { transform: translateY(-4px); }
.prob-num { font-family: "Fredoka", sans-serif; font-weight: 700; color: var(--orange); font-size: 2.4rem; line-height: 1; margin-bottom: 6px; }
.prob-card p { margin-bottom: 18px; }
.prob-stat { background: var(--cream); border-radius: var(--radius-sm); padding: 12px 14px; display: flex; flex-direction: column; }
.prob-stat strong { font-family: "Fredoka", sans-serif; font-size: 1.25rem; color: var(--teal-deep); }
.prob-stat span { font-size: .8rem; color: var(--ink-soft); }
.pull-quote { font-family: "Fredoka", sans-serif; font-weight: 500; font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.3; color: var(--ink); max-width: 900px; margin: 70px auto 0; text-align: center; position: relative; padding: 0 30px; }
.pull-quote cite { display: block; margin-top: 16px; font-family: "DM Sans", sans-serif; font-style: normal; font-weight: 400; font-size: .95rem; color: var(--ink-soft); }
@media (max-width: 800px) { .problem-grid { grid-template-columns: 1fr; } }

/* ---------- two-col ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col.reverse > div:first-child { order: 2; }
@media (max-width: 900px) { .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 40px; } .two-col.reverse > div:first-child { order: 0; } }
.check-list { list-style: none; padding: 0; margin: 22px 0 28px; }
.check-list li { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--line); color: var(--ink); font-size: 1rem; }
.check-list li span { color: var(--teal); font-weight: 700; }
.metric-row { display: flex; gap: 30px; flex-wrap: wrap; }
.metric-row > div { display: flex; flex-direction: column; }
.metric-row strong { font-family: "Fredoka", sans-serif; font-size: 1.7rem; color: var(--orange); line-height: 1; }
.metric-row span { font-size: .82rem; color: var(--ink-soft); margin-top: 4px; }

/* ---------- CIRCLES mock ---------- */
.circles { background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%); }
.circles-mock { display: flex; justify-content: center; }
.circle-room { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 22px; width: min(380px, 100%); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.25); position: relative; }
.circle-room-head { display: flex; align-items: center; gap: 8px; padding-bottom: 14px; border-bottom: 1px solid var(--line); font-weight: 500; font-size: .92rem; }
.circle-room-head em { margin-left: auto; color: var(--ink-soft); font-size: .82rem; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(194,65,12,0.45); animation: live 1.6s ease-out infinite; }
@keyframes live { 0% { box-shadow: 0 0 0 0 rgba(194,65,12,0.45); } 100% { box-shadow: 0 0 0 10px rgba(194,65,12,0); } }
.circle-avatars { display: flex; gap: 8px; padding: 18px 0; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: "Fredoka", sans-serif; font-weight: 600; color: #fff; font-size: .9rem; border: 2px solid #fff; box-shadow: 0 4px 8px rgba(0,0,0,0.08); }
.avatar.a1 { background: #0D9488; }
.avatar.a2 { background: #C2410C; }
.avatar.a3 { background: #1A1A1A; }
.avatar.me { background: var(--cream-deep); color: var(--ink); font-size: .7rem; font-weight: 700; border: 2px dashed var(--orange); }
.circle-timer { text-align: center; padding: 18px 0 8px; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); }
.timer-digits { font-family: "Fredoka", sans-serif; font-weight: 700; font-size: 3.2rem; color: var(--ink); letter-spacing: -0.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.timer-digits b { color: var(--teal); animation: blink 1s steps(2) infinite; font-weight: 700; }
@keyframes blink { 50% { opacity: 0.2; } }
.timer-label { font-size: .82rem; color: var(--ink-soft); margin: 6px 0 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.timer-bar { height: 4px; background: var(--cream-deep); border-radius: 99px; overflow: hidden; }
.timer-bar span { display: block; height: 100%; background: var(--teal); width: 0; animation: tb 8s ease-in-out infinite; }
@keyframes tb { 0% { width: 4%; } 100% { width: 96%; } }
.circle-feed { padding-top: 14px; display: flex; flex-direction: column; gap: 8px; font-size: .88rem; color: var(--ink-soft); }
.feed-row strong { color: var(--ink); }

/* ---------- PRIORITY mock ---------- */
.priority { background: var(--cream); }
.priority-mock { display: flex; justify-content: center; }
.prio-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 22px; width: min(440px, 100%); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.25); }
.prio-head { display: flex; justify-content: space-between; font-size: .85rem; color: var(--ink-soft); margin-bottom: 14px; }
.prio-head em { font-weight: 500; color: var(--ink); }
.prio-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.prio-list li { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 12px; background: var(--paper); border-radius: var(--radius-sm); transition: background .2s; }
.prio-list li.muted { opacity: 0.55; }
.prio-rank { font-family: "Fredoka", sans-serif; font-weight: 700; color: var(--ink-soft); font-size: 1rem; min-width: 24px; }
.prio-list strong { display: block; font-size: .98rem; font-weight: 500; color: var(--ink); }
.prio-list em { font-size: .78rem; color: var(--ink-soft); }
.prio-pill { background: var(--teal); color: #fff; font-size: .72rem; padding: 5px 10px; border-radius: 99px; font-weight: 500; white-space: nowrap; }
.prio-pill.pill-warm { background: var(--orange); }
.prio-pill.pill-mute { background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }
.prio-foot { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: .85rem; color: var(--ink-soft); }
.prio-foot strong { font-family: "Fredoka", sans-serif; font-size: 1.3rem; color: var(--teal-deep); }

/* ---------- SHOWCASE phones ---------- */
.showcase { background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%); }
.phones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 30px; align-items: end; }
.phone { display: flex; flex-direction: column; align-items: center; gap: 14px; transition: transform .4s; }
.phone:hover { transform: translateY(-8px); }
.phone-mid { transform: translateY(-30px); }
.phone-mid:hover { transform: translateY(-38px); }
.phone-screen { width: 100%; max-width: 280px; aspect-ratio: 9/19; background: var(--cream); border: 12px solid var(--ink); border-radius: 36px; padding: 22px 18px; display: flex; flex-direction: column; gap: 10px; box-shadow: 0 40px 60px -30px rgba(0,0,0,0.4); font-size: .8rem; position: relative; }
.phone-screen::before { content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 80px; height: 18px; background: var(--ink); border-radius: 99px; }
.ps-status { display: flex; justify-content: space-between; font-size: .68rem; color: var(--ink-soft); padding: 0 6px 6px; margin-top: 12px; }
.ps-title { font-family: "Fredoka", sans-serif; font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.ps-card { background: #fff; border-radius: 10px; padding: 10px 12px; }
.ps-card.mute { opacity: 0.6; }
.ps-card strong { display: block; font-size: .82rem; }
.ps-card em { font-size: .68rem; color: var(--ink-soft); }
.ps-bar { height: 3px; background: var(--cream-deep); border-radius: 99px; margin-top: 6px; overflow: hidden; }
.ps-bar span { display: block; height: 100%; background: var(--orange); border-radius: 99px; }
.ps-cta { margin-top: auto; text-align: center; background: var(--ink); color: var(--cream); padding: 10px; border-radius: 99px; font-size: .8rem; font-weight: 500; }
.ps-room { background: #fff; border-radius: 12px; padding: 14px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ps-avs { display: flex; gap: 4px; margin-bottom: 6px; }
.ps-avs b { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: .65rem; color: #fff; font-weight: 700; }
.ps-avs b:nth-child(1) { background: var(--teal); }
.ps-avs b:nth-child(2) { background: var(--orange); }
.ps-avs b:nth-child(3) { background: var(--ink); }
.ps-avs b.me { background: var(--cream-deep); color: var(--ink); font-size: .55rem; }
.ps-timer { font-family: "Fredoka", sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.ps-sub { font-size: .68rem; color: var(--ink-soft); }
.ps-feed { display: flex; flex-direction: column; gap: 6px; font-size: .72rem; color: var(--ink-soft); padding: 0 4px; }
.ps-feed strong { color: var(--ink); }
.ps-pp { display: flex; justify-content: space-between; background: #fff; padding: 8px 12px; border-radius: 8px; font-size: .76rem; }
.ps-pp em { color: var(--ink-soft); }
.ps-pp.pp-new { background: var(--cream-deep); }
.ps-pp.pp-new em { color: var(--orange); font-weight: 500; }
.ps-syn { background: #fff; padding: 10px; border-radius: 10px; margin-top: 4px; }
.ps-syn strong { font-size: .72rem; display: block; margin-bottom: 6px; }
.ps-bars { display: flex; align-items: end; gap: 4px; height: 38px; }
.ps-bars i { flex: 1; background: var(--teal); border-radius: 3px; display: block; }
.ps-bars i:nth-child(2) { background: var(--teal); opacity: 0.8; }
.ps-bars i:nth-child(3) { background: var(--orange); opacity: 0.8; }
.ps-bars i:nth-child(4) { background: var(--orange); opacity: 0.6; }
.ps-bars i:nth-child(5) { background: var(--ink-soft); opacity: 0.4; }
.phone-tag { font-size: .78rem; color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; }
@media (max-width: 820px) { .phones { grid-template-columns: 1fr; gap: 50px; } .phone-mid { transform: none; } .phone-mid:hover { transform: translateY(-8px); } }

/* ---------- VALIDATION ---------- */
.validation { background: var(--paper); }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 50px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.stat strong { display: block; font-family: "Fredoka", sans-serif; font-size: 3rem; font-weight: 700; color: var(--teal-deep); line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.stat span { display: block; font-size: .92rem; color: var(--ink); margin: 8px 0 6px; font-weight: 500; }
.stat em { font-size: .78rem; color: var(--ink-soft); display: block; }
.stat:nth-child(2) strong, .stat:nth-child(4) strong { color: var(--orange); }
@media (max-width: 900px) { .stat-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .stat-row { grid-template-columns: 1fr; } }
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.quotes blockquote { margin: 0; padding: 28px; background: var(--cream); border-left: 3px solid var(--orange); border-radius: var(--radius); font-family: "Fredoka", sans-serif; font-weight: 500; font-size: 1.1rem; line-height: 1.45; color: var(--ink); }
.quotes cite { display: block; margin-top: 12px; font-family: "DM Sans", sans-serif; font-style: normal; font-weight: 400; font-size: .85rem; color: var(--ink-soft); }
@media (max-width: 800px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- MARKET ---------- */
.market { background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%); }
.market-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px; }
.market-ring { position: relative; aspect-ratio: 1; max-width: 360px; margin: 0 auto; width: 100%; border-radius: 50%; display: grid; place-items: center; text-align: center; padding: 28px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .4s; }
.market-ring:hover { transform: translateY(-6px) scale(1.02); }
.market-ring em { display: block; font-size: .8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; font-weight: 500; }
.market-ring strong { display: block; font-family: "Fredoka", sans-serif; font-size: 3.4rem; font-weight: 700; line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.market-ring span { display: block; font-size: .88rem; color: var(--ink-soft); margin-top: 10px; }
.ring-tam { background: #fff; }
.ring-sam { background: var(--cream-deep); }
.ring-sam strong { color: var(--teal-deep); }
.ring-som { background: var(--ink); }
.ring-som strong, .ring-som em, .ring-som span { color: var(--cream); }
.ring-som strong { color: var(--orange); }
.market-note { margin-top: 40px; max-width: 760px; font-style: italic; color: var(--ink-soft); border-top: 1px dashed var(--line); padding-top: 22px; font-size: 1rem; }
@media (max-width: 800px) { .market-grid { grid-template-columns: 1fr; gap: 18px; } .market-ring { max-width: 260px; } }

/* ---------- BUSINESS ---------- */
.business { background: var(--cream); }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 50px; }
.tier { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; position: relative; display: flex; flex-direction: column; transition: transform .35s, box-shadow .35s; }
.tier:hover { transform: translateY(-4px); }
.tier h3 { margin-bottom: 6px; }
.price { font-family: "Fredoka", sans-serif; font-weight: 700; font-size: 2.4rem; color: var(--ink); line-height: 1; margin-bottom: 18px; letter-spacing: -0.02em; }
.price em { font-size: .9rem; font-weight: 500; color: var(--ink-soft); font-family: "DM Sans", sans-serif; margin-left: 4px; }
.tier ul { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.tier ul li { padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: .94rem; color: var(--ink); }
.tier ul li::before { content: "✓"; color: var(--teal); font-weight: 700; margin-right: 8px; }
.tier-foot { font-size: .82rem; color: var(--ink-soft); padding-top: 16px; border-top: 1px solid var(--line); }
.tier-pro { background: var(--ink); border-color: var(--ink); transform: scale(1.03); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.4); }
.tier-pro:hover { transform: scale(1.03) translateY(-4px); }
.tier-pro h3, .tier-pro .price { color: var(--cream); }
.tier-pro .price em { color: var(--cream-deep); }
.tier-pro ul li { color: var(--cream); border-bottom-color: rgba(254,243,236,0.15); }
.tier-pro ul li::before { color: var(--orange); }
.tier-pro .tier-foot { color: var(--cream-deep); border-top-color: rgba(254,243,236,0.15); }
.ribbon { position: absolute; top: -12px; left: 24px; background: var(--orange); color: #fff; padding: 5px 12px; border-radius: 99px; font-size: .72rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
@media (max-width: 820px) { .tiers { grid-template-columns: 1fr; gap: 18px; } .tier-pro { transform: none; } }
.unit-econ { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.unit-econ > div { display: flex; flex-direction: column; gap: 4px; }
.unit-econ span { font-size: .78rem; color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; }
.unit-econ strong { font-family: "Fredoka", sans-serif; font-size: 1.6rem; color: var(--teal-deep); font-weight: 700; line-height: 1; }
.unit-econ em { font-size: .78rem; color: var(--ink-soft); }
@media (max-width: 820px) { .unit-econ { grid-template-columns: 1fr 1fr; } }

/* ---------- CLOSING ---------- */
.closing { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); padding-bottom: 30px; }
.closing-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.closing-bear { width: min(280px, 70%); margin: 0 auto; animation: bob 3s ease-in-out infinite; filter: drop-shadow(0 30px 30px rgba(0,0,0,0.18)); }
.join { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0 18px; position: relative; max-width: 480px; }
.join input { flex: 1; min-width: 220px; padding: 13px 18px; border-radius: 99px; border: 1px solid var(--line); background: #fff; font-size: .98rem; font-family: inherit; color: var(--ink); }
.join input:focus { outline: 2px solid var(--teal); outline-offset: 2px; }
.join-done { display: none; position: absolute; inset: 0; background: var(--ink); color: var(--cream); border-radius: 99px; align-items: center; justify-content: center; font-weight: 500; padding: 0 22px; }
.join.done .join-done { display: flex; }
.join.done input, .join.done button { visibility: hidden; }
.closing-meta { font-size: .9rem; color: var(--ink-soft); display: flex; gap: 12px; flex-wrap: wrap; }
.closing-meta a { color: var(--teal-deep); }
.closing-meta a:hover { text-decoration: underline; }
@media (max-width: 800px) { .closing-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; } .join { margin-left: auto; margin-right: auto; } .closing-meta { justify-content: center; } }

.foot { max-width: var(--maxw); margin: 80px auto 0; padding: 24px var(--pad); border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; font-size: .82rem; color: var(--ink-soft); flex-wrap: wrap; }

/* ---------- entrance ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
