/* ============================================================
   Alert Me! — marketing site stylesheet v2
   Brand-forward, energetic, urgency-driven.
   Inspired by STOQ's confident presentation.
   ============================================================ */

:root {
  /* Brand */
  --brand: #FF4D17;          /* energetic orange */
  --brand-2: #FF7A47;
  --brand-deep: #B5310A;
  --brand-soft: #FFF1EB;
  --brand-ink: #1F0F08;

  /* Surfaces */
  --bg: #FBFAF7;             /* warm off-white */
  --bg-2: #F5F2EC;
  --ink: #0C0A09;
  --ink-2: #1A1714;
  --text: #1A1714;
  --text-2: #4A413B;
  --text-3: #75695F;
  --text-4: #A89D90;
  --line: #E8E2D7;
  --line-2: #F0EAE0;
  --surface: #ffffff;

  /* Semantic */
  --success: #1B8C5A;
  --success-soft: #E3F3EB;
  --warning: #B54708;
  --info: #155EEF;

  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 1px 2px rgba(15,10,5,0.04), 0 0 0 1px rgba(15,10,5,0.04);
  --shadow-pop: 0 24px 60px rgba(15,10,5,0.12), 0 0 0 1px rgba(15,10,5,0.04);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: clip; background: var(--bg); color: var(--text); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* Container */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: 880px; }

/* Typography */
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.025em; color: var(--ink); font-weight: 650; }
h1 { font-size: clamp(38px, 4.4vw, 60px); line-height: 1.04; letter-spacing: -0.035em; font-weight: 700; }
.display { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.08; letter-spacing: -0.03em; font-weight: 650; }
h3 { font-size: 24px; line-height: 1.2; }
h4 { font-size: 18px; line-height: 1.3; }
p { margin: 0; color: var(--text-2); }
.lead { font-size: 19px; line-height: 1.55; color: var(--text-2); }
.center { text-align: center; }
.ink-brand { color: var(--brand); }
.ink-white { color: #fff; }

/* Eyebrow tag */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--brand); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; padding: 6px 14px; background: var(--brand-soft); border-radius: 999px; border: 1px solid #FFE0D0; }
.eyebrow.dark { background: rgba(255,255,255,0.08); color: var(--brand-2); border-color: rgba(255,255,255,0.1); }
.eyebrow.center { display: inline-flex; }
.eyebrow-wrap { text-align: center; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border-radius: 999px; font-size: 15px; font-weight: 600; line-height: 1; border: 1.5px solid transparent; transition: transform .12s, background .12s, border-color .12s, color .12s, box-shadow .12s; cursor: pointer; white-space: nowrap; }
.btn .arrow { transition: transform .12s; font-weight: 400; font-size: 16px; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: 0 4px 12px rgba(255,77,23,0.25); }
.btn-primary:hover { background: var(--brand-deep); border-color: var(--brand-deep); box-shadow: 0 8px 20px rgba(255,77,23,0.35); transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--text); border-color: transparent; }
.btn-ghost:hover { background: rgba(0,0,0,0.05); }
.btn-on-dark { color: #fff; border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }
.btn-on-dark:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251,250,247,0.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-2); }
.site-header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 32px; max-width: 1240px; margin: 0 auto; gap: 24px; }
.brand-mark { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); flex: 0 0 auto; }
.brand-mark .mark { width: 30px; height: 30px; border-radius: 8px; background: var(--brand); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(255,77,23,0.3); }
.brand-mark .mark svg { width: 16px; height: 16px; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links > a, .nav-links > .nav-drop > a { font-size: 14.5px; font-weight: 500; color: var(--text); padding: 8px 14px; border-radius: 8px; transition: background .12s; display: inline-flex; align-items: center; gap: 4px; }
.nav-links > a:hover, .nav-links > .nav-drop > a:hover { background: rgba(0,0,0,0.04); }
.nav-links a.active { color: var(--brand); font-weight: 600; }
.nav-drop { position: relative; }
.nav-drop:hover .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu { position: absolute; top: 100%; left: 0; min-width: 280px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px; box-shadow: var(--shadow-pop); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s, transform .15s, visibility .15s; }
.nav-menu a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px; }
.nav-menu a:hover { background: var(--bg-2); }
.nm-ico { width: 32px; height: 32px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; font-size: 14px; font-weight: 700; }
.nm-text .nm-title { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.nm-text .nm-sub { font-size: 12px; color: var(--text-3); margin-top: 1px; }
.header-cta { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

/* BFCM Banner */
.bfcm-banner { background: linear-gradient(95deg, #0C0A09 0%, #1f1611 100%); color: #fff; padding: 10px 0; position: relative; overflow: hidden; }
.bfcm-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,77,23,0.15), transparent); animation: shimmer 4s linear infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.bfcm-inner { display: flex; align-items: center; justify-content: center; gap: 16px; font-size: 13.5px; font-weight: 500; flex-wrap: wrap; position: relative; z-index: 1; }
.bfcm-tag { background: var(--brand); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 999px; letter-spacing: 0.08em; text-transform: uppercase; }
.bfcm-text { color: rgba(255,255,255,0.9); }
.bfcm-text strong { color: #fff; font-weight: 700; }
.bfcm-cta { color: var(--brand-2); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; padding-left: 4px; border-left: 1px solid rgba(255,255,255,0.15); }
.bfcm-cta:hover { color: #fff; }
.bfcm-countdown { display: inline-flex; gap: 6px; font-variant-numeric: tabular-nums; font-weight: 700; }
.bfcm-countdown span { background: rgba(255,255,255,0.1); padding: 2px 8px; border-radius: 6px; min-width: 30px; text-align: center; font-size: 12px; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(255,77,23,0.2); } 50% { box-shadow: 0 0 0 8px rgba(255,77,23,0.05); } }

/* HERO */
.hero { padding: 64px 0 100px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-bg::before { content: ''; position: absolute; top: -200px; right: -100px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(255,77,23,0.08) 0%, transparent 60%); }
.hero-bg::after { content: ''; position: absolute; top: 100px; left: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,122,71,0.06) 0%, transparent 60%); }
.hero-inner { position: relative; z-index: 1; }
.hero-headline { text-align: center; max-width: 860px; margin: 0 auto 36px; }
.hero-headline h1 { color: var(--ink); }
.hero-headline h1 .underline-brand { position: relative; display: inline-block; color: var(--brand); }
.hero-headline h1 .underline-brand::after { content: ''; position: absolute; bottom: 6px; left: 0; right: 0; height: 12px; background: rgba(255,77,23,0.18); z-index: -1; border-radius: 4px; }
.hero-sub { font-size: 18px; line-height: 1.55; color: var(--text-2); max-width: 660px; margin: 22px auto 34px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; align-items: center; gap: 14px; justify-content: center; font-size: 13.5px; color: var(--text-3); flex-wrap: wrap; }
.hero-trust .stars { color: #F59E0B; letter-spacing: 1px; font-size: 16px; }
.hero-trust strong { color: var(--ink); font-weight: 600; }

/* Hero showcase: horizontal scrolling marquee of feature mock cards (STOQ-style) */
.showcase { position: relative; margin: 56px 0 0; padding: 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.showcase-track { display: flex; gap: 20px; animation: showcase-scroll 60s linear infinite; width: max-content; padding: 16px 0; }
.showcase:hover .showcase-track { animation-play-state: paused; }
@keyframes showcase-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.shc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; flex-shrink: 0; box-shadow: 0 8px 24px rgba(15,10,5,0.06); transition: transform .2s; }
.shc:hover { transform: translateY(-4px); }
.shc-head { font-size: 11px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.shc-title { font-size: 17px; font-weight: 650; color: var(--ink); margin-bottom: 14px; letter-spacing: -0.01em; }

/* Showcase card variants */
.shc-bis { width: 320px; }
.shc-bis .shc-img { aspect-ratio: 4/3; background: linear-gradient(155deg,#f3eee8,#ece4d8); border-radius: 12px; margin-bottom: 14px; position: relative; }
.shc-bis .shc-img::before { content: 'OUT OF STOCK'; position: absolute; top: 10px; left: 10px; background: #FDE4E0; color: #C0341E; font-size: 10px; font-weight: 800; padding: 4px 9px; border-radius: 999px; letter-spacing: 0.5px; }
.shc-bis .shc-price { font-size: 14px; color: var(--text-3); margin-bottom: 10px; }
.shc-bis .shc-btn { width: 100%; padding: 12px; background: var(--ink); color: #fff; border-radius: 10px; text-align: center; font-size: 13.5px; font-weight: 600; }

.shc-analytics { width: 360px; }
.shc-chart { height: 160px; padding: 12px 0; position: relative; }
.shc-chart svg { width: 100%; height: 100%; }
.shc-chart-bubble { position: absolute; top: 4px; left: 35%; background: var(--ink); color: #fff; font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 6px; }
.shc-chart-bubble::after { content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid var(--ink); transform: translateX(-50%); }
.shc-meta { display: flex; gap: 20px; padding-top: 12px; border-top: 1px solid var(--line-2); }
.shc-meta .v { font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.shc-meta .l { font-size: 11px; color: var(--text-3); }

.shc-table { width: 420px; }
.shc-table-row { display: grid; grid-template-columns: 28px 1fr 60px 60px 60px; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line-2); font-size: 12px; }
.shc-table-row:last-child { border-bottom: none; }
.shc-table-row .av { width: 24px; height: 24px; border-radius: 50%; background: var(--bg-2); }
.shc-table-row .nm { height: 8px; background: var(--bg-2); border-radius: 4px; }
.shc-table-row .num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); }
.shc-table-row .num.neg { color: #C0341E; }
.shc-table-head { display: grid; grid-template-columns: 28px 1fr 60px 60px 60px; gap: 10px; padding: 8px 12px; background: var(--brand-soft); color: var(--brand); border-radius: 8px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }

.shc-lis { width: 280px; background: linear-gradient(155deg, #FFF4EB, #fff); }
.shc-lis .shc-img { aspect-ratio: 4/3; background: linear-gradient(155deg,#f3eee8,#ece4d8); border-radius: 12px; margin-bottom: 14px; }
.shc-lis .shc-pill { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 8px; background: #FEF0F0; border: 1px solid #FDE0E0; color: #C0341E; font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.shc-lis .shc-bar { height: 4px; background: var(--line-2); border-radius: 2px; overflow: hidden; margin-bottom: 6px; }
.shc-lis .shc-bar > div { width: 18%; height: 100%; background: #C0341E; }
.shc-lis .shc-fast { font-size: 11px; color: var(--text-3); }

.shc-revenue { width: 240px; background: linear-gradient(160deg, var(--brand-soft), #fff); }
.shc-revenue .shc-big { font-size: 36px; font-weight: 700; letter-spacing: -0.04em; color: var(--brand); margin-bottom: 6px; }
.shc-revenue .shc-delta { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--success); font-weight: 600; background: var(--success-soft); padding: 2px 8px; border-radius: 999px; }

.shc-channels { width: 300px; }
.shc-channel-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line-2); }
.shc-channel-row:last-child { border-bottom: none; }
.shc-channel-ico { width: 32px; height: 32px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; flex: 0 0 auto; }
.shc-channel-text { flex: 1; }
.shc-channel-title { font-size: 13px; font-weight: 600; }
.shc-channel-sub { font-size: 11px; color: var(--text-3); }
.shc-channel-tag { font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 999px; }

.shc-preorder { width: 280px; background: linear-gradient(155deg, #F0EBFF, #fff); }
.shc-preorder .shc-img { aspect-ratio: 4/3; background: linear-gradient(155deg,#f3eee8,#ece4d8); border-radius: 12px; margin-bottom: 14px; position: relative; }
.shc-preorder .shc-img::before { content: 'SHIPS JUNE 15'; position: absolute; top: 10px; left: 10px; background: #F0EBFF; color: #6028C1; font-size: 10px; font-weight: 800; padding: 4px 9px; border-radius: 999px; letter-spacing: 0.5px; }
.shc-preorder .shc-btn { width: 100%; padding: 12px; background: #6028C1; color: #fff; border-radius: 10px; text-align: center; font-size: 13.5px; font-weight: 600; }

.shc-widget { width: 320px; }
.shc-widget input { width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; font-size: 13px; margin-bottom: 8px; pointer-events: none; }
.shc-widget .shc-cta { width: 100%; padding: 11px; background: var(--brand); color: #fff; border-radius: 8px; text-align: center; font-size: 13.5px; font-weight: 600; }

/* Trusted logos strip */
.trusted { padding: 72px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); background: var(--bg); }
.trusted-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.trusted-title { font-size: clamp(24px, 3vw, 34px); font-weight: 650; letter-spacing: -0.03em; line-height: 1.15; color: var(--ink); }
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1080px; margin: 0 auto; }
.logo-cell { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 5px; padding: 26px 16px 22px; background: #fff; border: 1px solid var(--line); border-radius: 16px; text-align: center; transition: box-shadow .15s, transform .15s; min-height: 150px; }
.logo-cell:hover { box-shadow: 0 8px 24px rgba(15,10,5,0.07); transform: translateY(-3px); }
.logo-name { font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.logo-tag { font-size: 10.5px; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.logo-tag.plus { color: var(--brand); }
.logo-meta { font-size: 11.5px; color: var(--text-4); }
.logo-img { height: 46px; max-width: 130px; width: auto; object-fit: contain; margin: 0 auto 14px; display: block; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* Sections */
.section { padding: 120px 0; }
.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head .display { margin-bottom: 18px; }

/* Big numbers / metrics section */
.metrics { background: var(--ink); color: #fff; padding: 100px 0; position: relative; overflow: hidden; }
.metrics::before { content: ''; position: absolute; top: -300px; right: -300px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(255,77,23,0.15) 0%, transparent 60%); }
.metrics .section-head { position: relative; z-index: 1; }
.metrics .display { color: #fff; }
.metrics .lead { color: rgba(255,255,255,0.65); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; z-index: 1; }
.metric { padding: 20px; text-align: center; position: relative; }
.metric + .metric::before { content: ''; position: absolute; left: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.1); }
.metric-num { font-size: clamp(48px, 6vw, 80px); font-weight: 700; letter-spacing: -0.04em; color: #fff; line-height: 1; background: linear-gradient(135deg, #fff 0%, var(--brand-2) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.metric-label { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 14px; }

/* Modules — feature blocks alternating */
.module-block { padding: 96px 0; border-top: 1px solid var(--line-2); }
.module-block:first-of-type { border-top: none; padding-top: 64px; }
.module-block-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.module-block.reverse .module-block-inner > div:first-child { order: 2; }
.mod-num { font-size: 13px; font-weight: 700; color: var(--brand); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 8px; }
.mod-num::before { content: ''; width: 24px; height: 1px; background: var(--brand); }
.module-block h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 18px; }
.module-block p { font-size: 17px; line-height: 1.6; margin-bottom: 28px; max-width: 460px; }
.mod-bullets { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; }
.mod-bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-2); }
.mod-bullets li::before { content: ''; flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--brand-soft); margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Cpath d='M6 11l3 3 7-7' fill='none' stroke='%23FF4D17' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.mod-link { font-size: 14.5px; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; }
.mod-link:hover .arrow { transform: translateX(4px); }
.mod-link .arrow { transition: transform .12s; }

.module-visual { background: linear-gradient(155deg, var(--brand-soft) 0%, #fff 100%); border-radius: var(--radius-xl); padding: 48px 40px; min-height: 420px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border: 1px solid var(--line); }
.module-visual.lis-grad { background: linear-gradient(155deg, #FFF4EB 0%, #fff 100%); }
.module-visual.pre-grad { background: linear-gradient(155deg, #F0EBFF 0%, #fff 100%); }

/* Why us — feature grid bento */
.why-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(180px, auto); gap: 16px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; position: relative; overflow: hidden; transition: transform .15s, border-color .15s; display: flex; flex-direction: column; gap: 14px; }
.why-card:hover { border-color: #cbc5b9; transform: translateY(-2px); }
.why-card-ico { font-size: 26px; }
.why-card h4 { font-size: 18px; letter-spacing: -0.01em; }
.why-card p { font-size: 14px; color: var(--text-3); line-height: 1.55; }
/* bento spans */
.why-card.span-3 { grid-column: span 3; }
.why-card.span-2 { grid-column: span 2; }
.why-card.span-4 { grid-column: span 4; }

/* How it works — steps */
.steps-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 14px; position: relative; }
.step-card .step-n { font-size: 36px; font-weight: 700; color: var(--brand); letter-spacing: -0.04em; line-height: 1; }
.step-card h4 { font-size: 17px; }
.step-card p { font-size: 14px; color: var(--text-3); line-height: 1.55; }

/* Testimonials */
.testimonials { background: var(--bg-2); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.t-card .stars { color: #F59E0B; letter-spacing: 1px; font-size: 14px; }
.t-card p { font-size: 15.5px; line-height: 1.6; color: var(--text); flex: 1; }
.t-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line-2); }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--brand); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex: 0 0 auto; }
.t-author .name { font-size: 14px; font-weight: 600; }
.t-author .role { font-size: 12.5px; color: var(--text-3); }

.t-featured { background: var(--ink); color: #fff; border-color: var(--ink); grid-column: span 2; padding: 40px; display: flex; flex-direction: column; gap: 20px; }
.t-featured p { color: rgba(255,255,255,0.92); font-size: 22px; line-height: 1.4; font-weight: 500; letter-spacing: -0.01em; }
.t-featured .t-author { border-color: rgba(255,255,255,0.1); }
.t-featured .t-author .name { color: #fff; }
.t-featured .t-author .role { color: rgba(255,255,255,0.6); }
.t-featured .stars { color: var(--brand-2); }
.t-featured .t-metric-row { display: flex; gap: 36px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); margin: 4px 0; }
.t-featured .t-metric-num { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; color: var(--brand-2); }
.t-featured .t-metric-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1180px; margin: 0 auto; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; gap: 20px; position: relative; }
.price-card.highlight { background: var(--ink); color: #fff; border-color: var(--ink); transform: scale(1.02); }
.price-card.highlight .price-name, .price-card.highlight h3 { color: #fff; }
.price-card.highlight .price-sub { color: rgba(255,255,255,0.6); }
.price-card.highlight ul li { color: rgba(255,255,255,0.85); }
.price-card.highlight ul li::before { background: var(--brand); }
.price-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.08em; }
.price-name { font-size: 14px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; }
.price-amount { font-size: 48px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.price-amount span { font-size: 16px; font-weight: 500; color: var(--text-3); margin-left: 4px; }
.price-card.highlight .price-amount span { color: rgba(255,255,255,0.5); }
.price-sub { font-size: 13.5px; color: var(--text-3); margin-top: -8px; }
.price-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price-card li { font-size: 14px; padding-left: 26px; position: relative; color: var(--text-2); line-height: 1.45; }
.price-card li::before { content: ''; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--brand-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='%23FF4D17' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.faq details { padding: 22px 28px; border-bottom: 1px solid var(--line-2); }
.faq details:last-child { border-bottom: none; }
.faq summary { font-size: 17px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--ink); }
.faq summary::after { content: '+'; font-size: 24px; font-weight: 300; color: var(--text-3); transition: transform .15s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin-top: 14px; font-size: 15px; color: var(--text-2); line-height: 1.6; max-width: 700px; }

/* Final CTA */
.final-cta { background: var(--ink); color: #fff; padding: 120px 0; position: relative; overflow: hidden; text-align: center; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center top, rgba(255,77,23,0.2) 0%, transparent 60%); }
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; max-width: 800px; margin: 0 auto 18px; }
.final-cta .lead { color: rgba(255,255,255,0.7); max-width: 580px; margin: 0 auto 36px; }

/* Footer */
.site-footer { background: var(--ink); color: #fff; padding: 64px 0 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.footer-brand .brand-mark { color: #fff; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.55; }
.footer-col h5 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.8); transition: color .12s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 13px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 16px; }

/* Long-form prose pages (privacy, pricing tables) */
.prose-wrap { max-width: 820px; margin: 0 auto; padding: 56px 0 96px; }
.prose-wrap h2 { font-size: 24px; letter-spacing: -0.02em; margin: 40px 0 14px; }
.prose-wrap h2:first-child { margin-top: 0; }
.prose-wrap h3 { font-size: 18px; margin: 28px 0 10px; }
.prose-wrap p { font-size: 15.5px; line-height: 1.7; color: var(--text-2); margin-bottom: 16px; }
.prose-wrap ul { margin: 0 0 18px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.prose-wrap ul li { position: relative; padding-left: 26px; font-size: 15px; color: var(--text-2); line-height: 1.6; }
.prose-wrap ul li::before { content: ''; position: absolute; left: 2px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.prose-wrap a { color: var(--brand); font-weight: 500; }
.prose-meta { font-size: 13.5px; color: var(--text-4); margin-bottom: 32px; }
.price-table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.price-table th, .price-table td { padding: 13px 16px; text-align: left; font-size: 14px; border-top: 1px solid var(--line-2); }
.price-table thead th { background: var(--bg-2); font-weight: 700; color: var(--ink); border-top: none; font-size: 13px; }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.price-note { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; font-size: 13.5px; color: var(--text-3); line-height: 1.6; margin-top: 8px; }

/* Page hero (inner pages) */
.page-hero { padding: 80px 0 64px; position: relative; }
.page-hero h1 { font-size: clamp(34px, 4vw, 54px); margin-bottom: 18px; line-height: 1.06; }
.page-hero .lead { max-width: 680px; margin: 0 auto 28px; }
.page-hero.center { text-align: center; }
.page-hero.center .lead { margin-left: auto; margin-right: auto; }

/* Compare table for pricing */
.compare-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.compare { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 16px 20px; text-align: left; font-size: 14px; }
.compare thead th { background: var(--bg-2); font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line); font-size: 13px; }
.compare thead th:not(:first-child) { text-align: center; }
.compare tbody td { border-top: 1px solid var(--line-2); }
.compare tbody td:not(:first-child) { text-align: center; color: var(--text-2); }
.compare tbody td .yes { color: var(--brand); font-weight: 700; font-size: 16px; }
.compare tbody tr.group td { background: var(--bg-2); font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; font-size: 11.5px; padding: 12px 20px; }

/* Module visual: in-page widget mocks */
.widget-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; box-shadow: var(--shadow-pop); }
.notify-btn { width: 100%; padding: 14px; background: var(--ink); color: #fff; border: none; border-radius: 10px; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.stock-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: #FDE4E0; color: #C0341E; font-size: 11px; font-weight: 700; letter-spacing: 0.4px; }
.low-stock-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 8px; background: #FEF0F0; border: 1px solid #FDE0E0; color: #C0341E; font-size: 14px; font-weight: 600; }

/* Pre-order waitlist */
.waitlist-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; max-width: 600px; margin: 40px auto 0; }
.waitlist-form { display: flex; gap: 8px; margin-top: 20px; }
.waitlist-form input { flex: 1; padding: 14px 18px; border: 1px solid var(--line); border-radius: 999px; font-size: 14.5px; outline: none; transition: border-color .12s; }
.waitlist-form input:focus { border-color: var(--brand); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; padding: 64px 0; align-items: start; }
.contact-info { padding-top: 12px; }
.contact-info h3 { margin-bottom: 18px; }
.contact-block { display: flex; align-items: flex-start; gap: 16px; padding: 22px 0; border-top: 1px solid var(--line-2); }
.contact-block:first-of-type { border-top: none; padding-top: 0; }
.contact-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; flex: 0 0 auto; }
.contact-block h5 { margin: 0 0 4px; font-size: 15px; font-weight: 600; color: var(--ink); }
.contact-block p { font-size: 14px; color: var(--text-3); margin-bottom: 6px; }
.contact-block a { font-size: 14px; color: var(--brand); font-weight: 600; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; }
.form-row { display: grid; gap: 6px; margin-bottom: 20px; }
.form-row label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-row input, .form-row textarea, .form-row select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font-size: 14px; font-family: inherit; outline: none; transition: border-color .12s; background: #fff; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: var(--brand); }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Roadmap (pre-order page) */
.roadmap { max-width: 760px; margin: 0 auto; }
.roadmap-row { display: grid; grid-template-columns: 140px 1fr; gap: 32px; padding: 28px 0; border-top: 1px solid var(--line-2); }
.roadmap-row:first-of-type { border-top: none; }
.roadmap-date { font-size: 14px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: 0.06em; }
.roadmap-row h4 { margin-bottom: 6px; font-size: 18px; }

/* Setup guide */
.guide-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; padding: 56px 0 96px; }
.guide-toc { position: sticky; top: 88px; align-self: start; max-height: calc(100vh - 100px); overflow-y: auto; }
.guide-toc-title { font-size: 12px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.guide-toc a { display: block; padding: 8px 12px; font-size: 14px; color: var(--text-2); border-radius: 8px; border-left: 2px solid transparent; transition: background .12s, color .12s; }
.guide-toc a:hover { background: var(--bg-2); color: var(--ink); }
.guide-toc a.active { color: var(--brand); border-left-color: var(--brand); font-weight: 600; }
.guide-step { padding: 0 0 56px; scroll-margin-top: 88px; }
.guide-step-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.guide-step-num { width: 38px; height: 38px; border-radius: 11px; background: var(--brand); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; flex: 0 0 auto; box-shadow: 0 4px 12px rgba(255,77,23,0.25); }
.guide-step-head h2 { font-size: 26px; letter-spacing: -0.02em; }
.guide-step p { font-size: 15.5px; line-height: 1.6; margin-bottom: 16px; }
.guide-step ul { margin: 0 0 18px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.guide-step ul li { position: relative; padding-left: 30px; font-size: 15px; color: var(--text-2); line-height: 1.5; }
.guide-step ul li::before { content: ''; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: var(--brand-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M5 10l3 3 6-6' fill='none' stroke='%23FF4D17' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.guide-shot { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-card); margin: 8px 0 8px; background: var(--bg-2); }
.guide-shot img { width: 100%; display: block; }
.guide-shot-ph { aspect-ratio: 16/9; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; padding: 20px; color: var(--text-3); background: repeating-linear-gradient(45deg, #f5f2ec, #f5f2ec 12px, #efeae0 12px, #efeae0 24px); }
.guide-shot-ph strong { font-size: 13px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: 0.06em; }
.guide-shot-ph .ph-file { font-size: 12.5px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: var(--text-2); background: #fff; border: 1px solid var(--line); padding: 3px 10px; border-radius: 6px; }
.guide-shot-ph .ph-desc { font-size: 12.5px; color: var(--text-3); max-width: 420px; }
.guide-note { display: flex; gap: 12px; padding: 16px 18px; background: var(--brand-soft); border: 1px solid #FFE0D0; border-radius: 12px; margin: 4px 0 8px; }
.guide-note-ico { color: var(--brand); flex: 0 0 auto; font-weight: 700; }
.guide-note p { font-size: 14px; margin: 0; color: var(--brand-deep); }
.guide-divider { height: 1px; background: var(--line-2); margin: 0 0 56px; }
.plan-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase; vertical-align: middle; }
.plan-tag.free { background: var(--success-soft); color: var(--success); }
.plan-tag.paid { background: var(--brand-soft); color: var(--brand); }
.guide-substep { padding: 14px 0; border-top: 1px dashed var(--line); }
.guide-substep:first-child { border-top: none; padding-top: 0; }
.guide-substep h4 { font-size: 16px; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.guide-substep p { font-size: 14.5px; margin-bottom: 0; }
@media (max-width: 880px) { .guide-layout { grid-template-columns: 1fr; gap: 0; } .guide-toc { display: none; } }

/* Responsive */
@media (max-width: 1080px) {
  .hero-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .module-block-inner { grid-template-columns: 1fr; gap: 40px; }
  .module-block.reverse .module-block-inner > div:first-child { order: 0; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .why-card.span-3, .why-card.span-2, .why-card.span-4 { grid-column: span 1; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid, .steps-wrap, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.highlight { transform: none; }
  .t-featured { grid-column: span 2; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .metric + .metric::before { display: none; }
  .footer-grid, .contact-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; }
  .section { padding: 80px 0; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .pricing-grid, .testimonial-grid, .steps-wrap, .why-grid { grid-template-columns: 1fr; }
  .t-featured { grid-column: span 1; }
  .footer-grid, .contact-grid { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 64px; }
  .section { padding: 64px 0; }
}
