/* Bunny Craft · design tokens */
:root {
  --bg: #0c0e0d;
  --surface: #131614;
  --surface-raised: #1a1e1b;
  --surface-hover: #202521;
  --text: #f0f2ed;
  --muted: #a1a89f;
  --subtle: #7f897e;
  --accent: #b9ed7c;
  --accent-hover: #c9f497;
  --accent-text: #b9ed7c;
  --accent-ink: #1a2712;
  --accent-wash: rgba(185, 237, 124, .045);
  --secondary: #b5a2e7;
  --secondary-wash: rgba(181, 162, 231, .075);
  --hairline: rgba(226, 237, 224, .09);
  --hairline-strong: rgba(226, 237, 224, .15);
  --glass: rgba(25, 30, 26, .73);
  --glass-highlight: rgba(240, 255, 235, .05);
  --photo-ink: #f6f5ee;
  --logo-cutout: #0c0e0d;
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --site-width: 880px;
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px;
  --s5: 20px; --s6: 24px; --s7: 28px; --s8: 32px;
  --s10: 40px; --s12: 48px; --s14: 56px; --s16: 64px;
  --s20: 80px; --s24: 96px; --s28: 112px;
  --text-xs: 11px; --text-sm: 12px; --text-base: 14px;
  --text-md: 15px; --text-lg: 17px;
  --heading-sm: 19px;
  --heading-md: clamp(27px, 3.5vw, 34px);
  --heading-lg: clamp(39px, 5.2vw, 56px);
  --weight-normal: 400; --weight-medium: 500; --weight-semibold: 600; --weight-bold: 700;
  --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px; --radius-pill: 250px;
  --header-height: 68px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --duration-fast: 180ms; --duration: 350ms; --duration-slow: 750ms;
}
:root[data-theme='light'] {
  --bg: #f4f5f0;
  --surface: #eaede6;
  --surface-raised: #fffefa;
  --surface-hover: #e1e7dc;
  --text: #20291f;
  --muted: #5c6659;
  --subtle: #697365;
  --accent: #b2e774;
  --accent-hover: #beeF88;
  --accent-text: #416222;
  --accent-wash: rgba(120, 159, 77, .09);
  --secondary: #796294;
  --secondary-wash: rgba(158, 134, 189, .08);
  --hairline: rgba(35, 51, 26, .10);
  --hairline-strong: rgba(35, 51, 26, .18);
  --glass: rgba(246, 248, 242, .78);
  --glass-highlight: rgba(255, 255, 255, .7);
  --logo-cutout: #f4f5f0;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-padding-top: 108px; -webkit-text-size-adjust: 100%; scrollbar-gutter: stable; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font); font-size: var(--text-base); font-weight: var(--weight-normal); line-height: 1.6; -webkit-font-smoothing: antialiased; transition: background-color var(--duration), color var(--duration); }
::selection { color: var(--accent-ink); background: var(--accent); }
button, input, textarea { font: inherit; }
button, a, input, textarea { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; color: inherit; }
button { padding: 0; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
button:disabled { cursor: not-allowed; }
button:focus-visible, a:focus-visible, textarea:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 5px; }
button, a { touch-action: manipulation; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-weight: var(--weight-medium); }
h2 { font-size: var(--heading-md); letter-spacing: -.045em; line-height: 1.25; text-wrap: balance; }
h3 { font-size: var(--heading-sm); line-height: 1.4; letter-spacing: -.035em; }
img { display: block; max-width: 100%; object-fit: cover; }
svg { display: block; }
[hidden] { display: none !important; }
.svg-library { width: 0; height: 0; position: absolute; overflow: hidden; }
.icon, .feature-icon { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(var(--site-width), calc(100% - var(--s12))); margin-inline: auto; }
.section-space { margin-top: var(--s28); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; clip: rect(0,0,0,0); clip-path: inset(50%); overflow: hidden; white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; background: var(--accent); color: var(--accent-ink); padding: 12px 20px; border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.accent-secondary { color: var(--secondary) !important; }

/* Header: transparent at rest; one glass capsule after scrolling. */
.site-header { position: fixed; top: var(--s5); left: 50%; z-index: 90; width: min(var(--site-width), calc(100% - var(--s8))); transform: translateX(-50%); transition: width var(--duration-slow) var(--ease), top var(--duration) var(--ease); }
.header-shell { position: relative; min-height: var(--header-height); padding: var(--s3) var(--s2); display: flex; align-items: center; justify-content: space-between; gap: var(--s5); border: 1px solid transparent; border-radius: var(--radius-pill); transition: background var(--duration), border-color var(--duration), padding var(--duration-slow) var(--ease), min-height var(--duration-slow) var(--ease); }
.site-header.is-scrolled { top: var(--s3); width: min(848px, calc(100% - var(--s8))); }
.site-header.is-scrolled .header-shell { min-height: 58px; padding: var(--s2) var(--s5); border-color: var(--hairline); background: linear-gradient(155deg, var(--glass-highlight), transparent 45%), var(--glass); backdrop-filter: blur(22px) saturate(145%); -webkit-backdrop-filter: blur(22px) saturate(145%); box-shadow: 0 4px 20px rgba(0,0,0,.04); }
.brand { display: inline-flex; align-items: center; gap: var(--s2); flex-shrink: 0; }
.brand-mark { width: 28px; height: 28px; }
.brand-name { font-size: 20px; font-weight: 650; letter-spacing: -.8px; line-height: 1; }
.brand-light { font-weight: var(--weight-medium); }
.brand-dot { color: var(--accent-text); }
.desktop-nav { position: relative; display: flex; align-items: center; justify-content: center; gap: 2px; }
.desktop-nav a { position: relative; padding: var(--s2) 11px; font-size: var(--text-sm); font-weight: var(--weight-medium); color: var(--muted); transition: color var(--duration); z-index: 1; white-space: nowrap; }
.desktop-nav a:hover, .desktop-nav a[aria-current] { color: var(--text); }
.nav-indicator { position: absolute; top: 3px; left: 0; width: 0; height: calc(100% - 6px); border-radius: var(--radius-pill); background: var(--hairline); opacity: 0; transition: transform var(--duration) var(--ease), width var(--duration) var(--ease), opacity var(--duration); }
.header-actions { display: flex; align-items: center; gap: var(--s4); }
.theme-toggle { position: relative; width: 52px; height: 30px; display: flex; align-items: center; justify-content: space-around; border-radius: var(--radius-pill); background: var(--surface); color: var(--subtle); }
.theme-toggle .icon { width: 14px; height: 14px; z-index: 1; stroke-width: 1.4; }
.theme-thumb { position: absolute; width: 24px; height: 24px; top: 3px; left: 3px; background: var(--surface-hover); border-radius: 50%; transform: translateX(22px); transition: transform var(--duration) var(--ease), background var(--duration); }
[data-theme='dark'] .theme-toggle .moon-icon { color: var(--text); }
[data-theme='light'] .theme-thumb { transform: translateX(0); background: var(--surface-raised); }
[data-theme='light'] .theme-toggle .sun-icon { color: var(--text); }
.login-button { display: flex; align-items: center; gap: var(--s2); font-size: var(--text-sm); font-weight: var(--weight-semibold); white-space: nowrap; }
.login-button .icon { width: 14px; height: 14px; transition: transform var(--duration) var(--ease); }
.login-button:hover .icon { transform: translate(2px, -2px); }
.icon-button { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; color: var(--muted); transition: background var(--duration), color var(--duration), transform var(--duration) var(--ease); }
.icon-button .icon { width: 17px; height: 17px; }
.icon-button:hover { background: var(--surface-hover); color: var(--text); }
.menu-toggle, .mobile-nav { display: none; }

/* Hero */
.hero { position: relative; padding-top: 147px; text-align: center; }
.hero::before { content: ''; position: absolute; z-index: -1; top: 64px; left: 50%; width: 620px; max-width: 100%; height: 390px; transform: translateX(-50%); background: radial-gradient(ellipse, var(--accent-wash) 0%, transparent 67%); pointer-events: none; }
.app-icon { position: relative; display: grid; place-items: center; width: 78px; height: 78px; margin: 0 auto var(--s7); border: 1px solid var(--hairline-strong); border-radius: 20px; background: linear-gradient(145deg, var(--surface-hover), var(--surface) 65%); overflow: hidden; --logo-cutout: #161b16; }
[data-theme='light'] .app-icon { --logo-cutout: #e5ebdf; }
.app-icon > svg { width: 48px; height: 48px; transform: rotate(-8deg); color: var(--text); transition: transform 700ms var(--ease); }
.app-icon:hover > svg { transform: rotate(1deg) translateY(-2px); }
.app-icon-glint { position: absolute; width: 64px; height: 2px; top: 0; left: 7px; background: linear-gradient(90deg, transparent, var(--text), transparent); opacity: .2; }
h1 { font-size: var(--heading-lg); font-weight: var(--weight-medium); line-height: 1.12; letter-spacing: -.055em; }
h1 > span { color: var(--accent-text); }
.hero-description { font-size: var(--text-md); line-height: 1.75; color: var(--muted); margin-top: var(--s6); }
.hero-cta { margin-top: var(--s7); }
.button { min-height: 48px; display: inline-flex; gap: var(--s3); align-items: center; justify-content: center; padding: 13px var(--s5); border-radius: var(--radius-sm); font-size: 13px; font-weight: var(--weight-semibold); line-height: 1.5; transition: background var(--duration), transform var(--duration) var(--ease), border-color var(--duration); }
.button-primary { background: var(--accent); color: var(--accent-ink); }
.button-primary:hover { background: var(--accent-hover); transform: translateY(-1px) scale(1.015); }
.button:active { transform: translateY(0) scale(.985); }
.button .icon { width: 17px; height: 17px; }
.button-arrow { margin-left: var(--s2); transition: transform var(--duration) var(--ease); }
.button:hover .button-arrow { transform: translateX(3px); }
.button-caption { color: var(--subtle); font-size: var(--text-xs); margin-top: var(--s3); }
.button-caption > span[aria-hidden] { margin: 0 6px; }
.hero-proof { display: flex; align-items: center; justify-content: center; gap: var(--s5); margin-top: var(--s7); }
.social-proof { display: flex; align-items: center; gap: var(--s3); }
.avatar-stack { display: flex; padding-left: 6px; }
.avatar-stack img { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -6px; background: var(--surface-hover); transition: transform var(--duration) var(--ease); }
.avatar-stack img:nth-child(2) { background: #465448; }
.avatar-stack img:nth-child(3) { background: #625b71; }
.avatar-stack img:nth-child(4) { background: #6d6352; }
.social-proof:hover .avatar-stack img:nth-child(even) { transform: translateY(-3px); }
.proof-copy { display: flex; flex-direction: column; align-items: flex-start; font-size: 10px; line-height: 1.5; color: var(--muted); }
.proof-copy strong { color: var(--text); font-weight: var(--weight-semibold); }
.stars { color: var(--accent-text); font-size: 11px; letter-spacing: 2px; }
.demo-inline { color: var(--subtle); }
.proof-divider { height: 28px; width: 1px; background: var(--hairline); }
.product-hunt { display: flex; align-items: center; gap: 7px; text-align: left; color: var(--muted); }
.ph-symbol { display: grid; place-items: center; width: 25px; height: 25px; font-size: 16px; font-weight: var(--weight-bold); line-height: 1; border-radius: 50%; border: 1.4px solid var(--muted); }
.product-hunt small { display: block; font-size: 6.8px; letter-spacing: 1px; line-height: 1.6; }
.product-hunt strong { display: block; font-size: var(--text-sm); line-height: 1.4; font-weight: var(--weight-semibold); }
.product-hunt > .icon { width: 12px; height: 12px; margin-left: 2px; }
.product-hunt:hover { color: var(--text); }

/* Two seamless, opposing 3:4 photo ribbons. */
.inspiration { margin-top: var(--s16); }
.gallery-toolbar { display: flex; align-items: center; justify-content: space-between; gap: var(--s2); margin-bottom: var(--s4); }
.gallery-filters { display: flex; align-items: center; gap: var(--s2); }
.filter-button { min-height: 32px; padding: 6px var(--s3); color: var(--subtle); font-size: var(--text-xs); font-weight: var(--weight-medium); border-radius: var(--radius-pill); transition: background var(--duration), color var(--duration); }
.filter-button.active { background: var(--surface-hover); color: var(--text); }
.filter-button:hover { color: var(--text); }
.gallery-mask { position: relative; overflow: hidden; border-radius: var(--radius-md); mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent); }
.marquee-row { width: 100%; overflow: hidden; }
.marquee-row + .marquee-row { margin-top: var(--s3); }
.marquee-track { display: flex; width: max-content; animation: gallery-marquee 64s linear infinite; }
.marquee-row.reverse .marquee-track { animation-direction: reverse; animation-duration: 73s; }
.marquee-group { display: flex; gap: var(--s3); padding-right: var(--s3); }
.gallery-card { display: block; position: relative; flex: 0 0 auto; width: 160px; aspect-ratio: 3 / 4; border-radius: var(--radius-sm); overflow: hidden; isolation: isolate; background: var(--surface-raised); text-align: left; }
.gallery-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.55), transparent 48%); pointer-events: none; }
.gallery-card img { width: 100%; height: 100%; transition: transform 800ms var(--ease), filter 800ms var(--ease); }
.gallery-card:hover img { transform: scale(1.045); }
.gallery-card:focus-visible { outline-offset: -3px; outline-width: 2px; }
.gallery-card .gallery-label { position: absolute; bottom: var(--s3); left: var(--s3); right: var(--s3); z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: var(--s2); color: var(--photo-ink); font-size: 10px; font-weight: var(--weight-medium); }
.gallery-label .icon { width: 13px; height: 13px; opacity: 0; transform: translate(-3px, 3px); transition: opacity var(--duration), transform var(--duration) var(--ease); }
.gallery-card:hover .gallery-label .icon, .gallery-card:focus-visible .gallery-label .icon { opacity: 1; transform: translate(0); }
.gallery-bottom { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); margin-top: var(--s4); font-size: 10px; color: var(--subtle); }
.gallery-bottom > span:first-child { display: flex; align-items: center; gap: var(--s2); }
.tiny-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent-text); }
.gallery-mask:hover .marquee-track, .gallery-mask:focus-within .marquee-track,
.gallery-mask.is-paused .marquee-track, .is-away .marquee-track { animation-play-state: paused; }
@keyframes gallery-marquee { to { transform: translateX(-50%); } }
.noscript-note { text-align: center; color: var(--muted); padding: var(--s6); }

/* Feature grid: surfaces, not a collection of outlined boxes. */
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: var(--s8); margin-bottom: var(--s8); }
.section-heading > p { color: var(--muted); font-size: var(--text-sm); line-height: 1.8; padding-bottom: 3px; }
.features-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s3); }
.feature-tile { position: relative; aspect-ratio: 1 / 1; display: flex; flex-direction: column; justify-content: space-between; padding: var(--s7); background: var(--surface); border-radius: var(--radius-md); transition: background var(--duration), transform var(--duration-slow) var(--ease); }
.feature-tile:nth-child(2), .feature-tile:nth-child(6) { background: linear-gradient(135deg, var(--secondary-wash), transparent 100%), var(--surface); }
.feature-tile:nth-child(3), .feature-tile:nth-child(5) { background: linear-gradient(150deg, var(--accent-wash), transparent 100%), var(--surface); }
.feature-tile:hover { background-color: var(--surface-raised); transform: translateY(-3px); }
.feature-icon { width: 29px; height: 29px; color: var(--accent-text); stroke-width: 1.15; }
.feature-tile > div { min-height: 80px; }
.feature-tile h3 { font-size: var(--text-lg); letter-spacing: -.035em; margin-bottom: var(--s2); }
.feature-tile p { font-size: var(--text-sm); color: var(--muted); line-height: 1.8; }
.tile-number { position: absolute; right: var(--s6); top: var(--s7); color: var(--subtle); opacity: .65; font-size: 9px; font-variant-numeric: tabular-nums; }

/* Sticky story stack. The next section comes over the previous one. */
.story-stack { position: relative; padding-bottom: var(--s3); }
.story-card { position: sticky; top: 104px; display: grid; grid-template-columns: 1fr 1fr; min-height: 434px; border-radius: var(--radius-lg); overflow: hidden; transform-origin: center top; isolation: isolate; will-change: transform; }
.story-card + .story-card { margin-top: var(--s8); }
.story-one { background: #171e18; z-index: 1; }
.story-two { background: #1d1a23; z-index: 2; }
.story-three { background: #151c19; z-index: 3; }
[data-theme='light'] .story-one { background: #e5ecdf; }
[data-theme='light'] .story-two { background: #ebe6ef; }
[data-theme='light'] .story-three { background: #e2ebe5; }
.story-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: var(--s10); }
.story-index { font-size: var(--text-xs); color: var(--muted); letter-spacing: .05em; margin-bottom: var(--s6); }
.story-index > span { color: var(--subtle); opacity: .55; margin-left: var(--s1); }
.story-copy h2 { font-size: clamp(26px, 3vw, 31px); letter-spacing: -.045em; line-height: 1.3; margin-bottom: var(--s5); }
.story-copy h2 span { color: var(--accent-text); }
.story-two .story-copy h2 span { color: var(--secondary); }
.story-copy p { color: var(--muted); font-size: 13px; line-height: 1.9; max-width: 315px; }
.text-button { display: inline-flex; align-items: center; gap: var(--s3); font-size: var(--text-sm); color: var(--accent-text); font-weight: var(--weight-medium); transition: gap var(--duration) var(--ease), color var(--duration); }
.text-button .icon { width: 17px; height: 17px; }
.text-button:hover { gap: var(--s4); }
.story-copy .text-button { margin-top: var(--s7); }
.story-two .text-button { color: var(--secondary); }
.story-visual { position: relative; min-width: 0; }
.photo-stage { display: flex; justify-content: center; align-items: center; min-height: 434px; }
.stage-orbit { position: absolute; width: 330px; height: 330px; border-radius: 50%; border: 1px solid rgba(185,237,124,.055); }
.photo-back, .photo-front { position: absolute; width: 200px; height: 280px; overflow: hidden; border-radius: var(--radius-sm); background: #504657; }
.photo-back img, .photo-front img { width: 100%; height: 100%; }
.photo-back { right: 29px; top: 59px; transform: rotate(9deg); }
.photo-front { left: 42px; top: 86px; transform: rotate(-7deg); background: #394639; }
.photo-back::after, .photo-front::after { content: ''; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.4)); }
.photo-back > span, .photo-front > span { position: absolute; display: flex; justify-content: space-between; bottom: var(--s4); left: var(--s4); right: var(--s4); font-size: 7px; letter-spacing: .12em; color: var(--photo-ink); z-index: 1; }
.photo-front i { font-style: normal; }
.floating-label { position: absolute; bottom: 49px; right: 40px; display: flex; align-items: center; gap: var(--s2); padding: 10px 13px; border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-sm); color: var(--photo-ink); font-size: 9px; background: rgba(31,39,30,.9); backdrop-filter: blur(12px); box-shadow: 0 10px 30px rgba(0,0,0,.06); transform: rotate(2deg); }
.floating-label .icon { width: 14px; height: 14px; color: #b9ed7c; }
.prompt-stage { display: grid; align-items: center; justify-items: center; padding: var(--s10) var(--s8) var(--s8) 0; }
.prompt-preview { position: relative; width: 285px; max-width: 92%; height: 297px; border-radius: var(--radius-md); overflow: hidden; margin-top: -50px; background: #61586f; }
.prompt-preview img { width: 100%; height: 100%; object-position: center 26%; }
.preview-corner { position: absolute; top: 15px; left: 14px; right: 14px; font-size: 7px; letter-spacing: 1.7px; color: var(--photo-ink); text-shadow: 0 1px 10px rgba(0,0,0,.25); }
.prompt-composer { position: absolute; left: 20px; right: var(--s8); bottom: var(--s10); padding: var(--s4); border-radius: var(--radius-md); border: 1px solid var(--hairline-strong); background: var(--surface-raised); box-shadow: 0 12px 36px rgba(0,0,0,.08); }
.composer-label { display: flex; justify-content: space-between; align-items: center; gap: var(--s2); font-size: 9px; color: var(--subtle); margin-bottom: var(--s3); }
.composer-label > span:first-child { display: flex; align-items: center; gap: var(--s2); color: var(--secondary); }
.composer-label .icon { width: 12px; height: 12px; }
.prompt-composer textarea { border: 0; background: transparent; color: var(--text); width: 100%; font-size: var(--text-xs); line-height: 1.8; padding: 0; resize: vertical; min-height: 57px; max-height: 100px; border-radius: 2px; }
.prompt-composer textarea:focus-visible { outline-offset: 3px; outline-width: 1px; outline-color: var(--secondary); }
.composer-footer { margin-top: var(--s2); display: flex; justify-content: space-between; align-items: center; }
.prompt-format { font-size: 9px; color: var(--muted); }
.prompt-format > span { color: var(--subtle); padding-left: var(--s2); }
.copy-prompt { width: 27px; height: 27px; background: var(--secondary-wash); border-radius: 6px; color: var(--secondary); }
.copy-prompt .icon { width: 13px; height: 13px; }
.telegram-stage { display: grid; place-items: center; padding-top: 42px; overflow: hidden; }
.telegram-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(185,237,124,.065); }
.orbit-1 { width: 315px; height: 315px; }
.orbit-2 { width: 415px; height: 415px; }
.phone-preview { position: relative; width: 228px; padding: 9px 6px; border-radius: 29px; background: #0f1210; border: 1px solid rgba(244,255,242,.18); color: #eff1eb; margin-bottom: -54px; transform: rotate(5deg); box-shadow: 8px 18px 34px rgba(0,0,0,.08); }
.phone-status { padding: 2px 13px 11px; display: flex; justify-content: space-between; align-items: center; font-size: 9px; font-weight: var(--weight-semibold); }
.phone-hardware { font-size: 7px; display: flex; align-items: center; gap: 5px; }
.battery { display: inline-block; width: 14px; height: 7px; border-radius: 2px; border: 1px solid currentColor; position: relative; }
.battery::before { content: ''; position: absolute; inset: 1px 3px 1px 1px; background: currentColor; }
.phone-appbar { display: flex; align-items: center; justify-content: space-between; padding: 4px 7px 14px; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 8px; }
.phone-appbar > span { color: #b9ed7c; }
.phone-appbar b { display: flex; align-items: center; gap: 3px; font-size: 10px; font-weight: var(--weight-semibold); }
.phone-appbar .icon { width: 10px; height: 10px; color: #b9ed7c; }
.phone-content { padding: 14px 8px 6px; }
.phone-welcome { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; font-size: 12px; font-weight: var(--weight-medium); }
.phone-balance { display: flex; align-items: center; gap: 4px; color: #b9ed7c; font-size: 9px; background: rgba(185,237,124,.09); padding: 3px 6px; border-radius: var(--radius-pill); }
.phone-balance .icon { width: 10px; height: 10px; }
.phone-photo { position: relative; height: 209px; border-radius: var(--radius-sm); overflow: hidden; background: #465345; }
.phone-photo img { width: 100%; height: 100%; }
.phone-photo > div { position: absolute; inset: 50% 0 0; padding: 10px; display: flex; flex-direction: column; justify-content: end; background: linear-gradient(transparent, rgba(0,0,0,.65)); }
.phone-photo span { font-size: 12px; }
.phone-photo small { font-size: 8px; margin-top: 2px; color: #c4c8c1; }
.phone-cta { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 9px; width: 100%; padding: 9px 5px; background: #b9ed7c; color: #1a2712; font-size: 9px; font-weight: var(--weight-semibold); border-radius: 6px; transition: background var(--duration); }
.phone-cta:hover { background: #c9f497; }
.phone-cta .icon { width: 12px; height: 12px; }
.phone-nav { display: flex; align-items: center; justify-content: space-around; margin-top: 13px; color: #a1a89f; font-size: 7px; }
.phone-nav span { display: flex; align-items: center; flex-direction: column; gap: 3px; }
.phone-nav .icon { width: 14px; height: 14px; }
.phone-nav .selected { color: #b9ed7c; }
.phone-home { height: 3px; width: 72px; margin: 14px auto 0; background: #f0f2ed; border-radius: 3px; }
.telegram-float { position: absolute; width: 53px; height: 53px; left: 37px; top: 91px; border-radius: 13px; display: grid; place-items: center; background: #b9ed7c; color: #1a2712; transform: rotate(-11deg); }
.telegram-float .icon { width: 27px; height: 27px; stroke-width: 1.2; }
.concept-label { position: absolute; bottom: 14px; right: 16px; font-size: 8px; color: var(--subtle); writing-mode: vertical-rl; }

/* One-off carrot packages */
.pricing-heading { text-align: center; margin-bottom: var(--s10); }
.section-symbol { display: grid; place-items: center; margin: 0 auto var(--s5); color: var(--accent-text); }
.section-symbol .icon { width: 28px; height: 28px; stroke-width: 1.25; }
.pricing-heading p { font-size: var(--text-sm); color: var(--muted); line-height: 1.85; margin-top: var(--s5); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s3); }
.price-card { position: relative; padding: var(--s7); background: var(--surface); border-radius: var(--radius-md); border: 1px solid transparent; display: flex; flex-direction: column; transition: background var(--duration), transform var(--duration) var(--ease); }
.price-card:hover { transform: translateY(-3px); background-color: var(--surface-raised); }
.price-card.featured { background: linear-gradient(140deg, var(--accent-wash), transparent 90%), var(--surface); border-color: rgba(185,237,124,.25); }
[data-theme='light'] .price-card.featured { border-color: rgba(85,117,48,.35); }
.package-carrots { display: flex; align-items: center; gap: var(--s2); font-size: var(--text-base); font-weight: var(--weight-medium); }
.package-carrots .icon { width: 21px; height: 21px; color: var(--accent-text); }
.package-caption { color: var(--subtle); font-size: 10px; margin-top: var(--s2); }
.package-price { font-size: 35px; font-weight: var(--weight-medium); letter-spacing: -.05em; line-height: 1.3; margin-top: var(--s8); font-variant-numeric: tabular-nums; }
.package-price > span { font-size: 21px; color: var(--muted); font-weight: var(--weight-normal); padding-left: 2px; }
.package-unit { color: var(--subtle); font-size: var(--text-xs); margin-top: 5px; }
.package-buy { display: flex; align-items: center; justify-content: space-between; gap: var(--s2); padding: var(--s3) var(--s4); margin-top: var(--s7); border-radius: var(--radius-sm); background: var(--surface-hover); font-size: var(--text-sm); font-weight: var(--weight-medium); transition: background var(--duration), transform var(--duration) var(--ease); }
.package-buy .icon { width: 15px; height: 15px; transition: transform var(--duration) var(--ease); }
.package-buy:hover .icon { transform: translateX(3px); }
.featured .package-buy { background: var(--accent); color: var(--accent-ink); }
.featured .package-buy:hover { background: var(--accent-hover); }
.package-buy:active { transform: scale(.985); }
.pricing-assurance { display: flex; align-items: center; justify-content: center; gap: var(--s7); margin-top: var(--s6); color: var(--muted); font-size: var(--text-xs); }
.pricing-assurance > span { display: flex; align-items: center; gap: var(--s2); }
.pricing-assurance .icon { width: 14px; height: 14px; color: var(--accent-text); }
.trial-banner { display: flex; align-items: center; justify-content: space-between; gap: var(--s5); padding: var(--s7); margin-top: var(--s8); background: var(--accent-wash); border-radius: var(--radius-md); }
.trial-banner h3 { font-size: 17px; }
.trial-banner p { font-size: var(--text-xs); color: var(--muted); margin-top: 6px; }
.trial-banner .button { white-space: nowrap; min-height: 42px; font-size: var(--text-xs); padding: var(--s3) var(--s4); }

/* Four vertical, alternating, continuously moving review columns. */
.reviews .section-heading { align-items: center; }
.reviews-demo-note { color: var(--subtle); font-size: 10px; line-height: 1.8; margin-top: var(--s3); }
.reviews-mask { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s3); height: 488px; overflow: hidden; mask-image: linear-gradient(transparent, black 9%, black 87%, transparent); -webkit-mask-image: linear-gradient(transparent, black 9%, black 87%, transparent); }
.reviews-column { overflow: hidden; min-width: 0; }
.reviews-track { display: flex; flex-direction: column; animation: reviews-marquee 53s linear infinite; }
.reviews-column:nth-child(2n) .reviews-track { animation-direction: reverse; animation-duration: 62s; }
.reviews-column:nth-child(3) .reviews-track { animation-duration: 69s; }
.reviews-group { display: flex; flex-direction: column; gap: var(--s3); padding-bottom: var(--s3); }
.review-card { padding: var(--s5); background: var(--surface); border-radius: var(--radius-md); }
.review-person { display: flex; align-items: center; gap: var(--s2); }
.review-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--surface-hover); }
.review-name { font-size: var(--text-xs); font-weight: var(--weight-medium); }
.review-handle { font-size: 8px; color: var(--subtle); display: block; }
.review-card .stars { font-size: 9px; letter-spacing: 2px; margin-top: var(--s3); }
.review-card blockquote { margin: var(--s2) 0 0; font-size: var(--text-xs); line-height: 1.9; color: var(--muted); }
.review-image { width: 100%; height: 130px; border-radius: 5px; margin-top: var(--s3); background: var(--surface-hover); }
.review-tag { display: inline-block; font-size: 8px; color: var(--secondary); margin-top: var(--s3); }
.reviews-mask:hover .reviews-track, .reviews-mask.is-paused .reviews-track, .is-away .reviews-track { animation-play-state: paused; }
@keyframes reviews-marquee { to { transform: translateY(-50%); } }

/* FAQ */
.faq { margin-top: var(--s20); }
.faq-aside { color: var(--subtle); font-size: var(--text-xs); padding-bottom: 5px; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: var(--s6); width: 100%; text-align: left; font-size: 13px; font-weight: var(--weight-medium); line-height: 1.7; letter-spacing: -.012em; min-height: 68px; padding: var(--s5) 0; }
.faq-question .icon { width: 16px; height: 16px; color: var(--subtle); transition: transform var(--duration) var(--ease), color var(--duration); }
.faq-question:hover { color: var(--accent-text); }
.faq-question[aria-expanded='true'] .icon { transform: rotate(45deg); color: var(--accent-text); }
.faq-answer { overflow: hidden; }
.faq-answer p { padding: 0 var(--s12) var(--s6) 0; max-width: 720px; font-size: 13px; line-height: 1.9; color: var(--muted); }

/* Footer */
.footer { margin-top: var(--s24); padding-bottom: var(--s8); }
.footer-main { display: flex; justify-content: space-between; align-items: center; gap: var(--s6); padding-bottom: var(--s8); }
.footer-main > p { margin-right: auto; margin-left: var(--s6); font-size: var(--text-xs); line-height: 1.7; color: var(--subtle); }
.footer-bottom { padding-top: var(--s6); border-top: 1px solid var(--hairline); display: flex; align-items: center; gap: var(--s6); font-size: 10px; color: var(--subtle); }
.footer-bottom > div { display: flex; align-items: center; gap: var(--s5); margin-left: auto; }
.footer-bottom button:hover { color: var(--text); }
.back-top { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--surface); }
.back-top .icon { transform: rotate(-90deg); width: 14px; height: 14px; }

/* Modal, feedback & progressive enhancements */
.detail-dialog { position: fixed; width: min(700px, calc(100% - 32px)); max-height: min(90dvh, 900px); padding: 0; border: 1px solid var(--hairline-strong); border-radius: var(--radius-lg); background: var(--surface); color: var(--text); overflow: auto; box-shadow: 0 24px 90px rgba(0,0,0,.25); }
.detail-dialog::backdrop { background: rgba(4,8,5,.77); backdrop-filter: blur(10px); }
.dialog-close { position: absolute; top: var(--s3); right: var(--s3); z-index: 2; background: var(--glass); color: var(--text); }
.dialog-body { padding: var(--s12); }
.dialog-body h2 { margin-bottom: var(--s5); font-size: 27px; padding-right: var(--s5); }
.dialog-body > p { font-size: var(--text-base); line-height: 1.9; color: var(--muted); }
.dialog-body > p + p { margin-top: var(--s4); }
.dialog-body .button { margin-top: var(--s6); }
.dialog-body code { color: var(--accent-text); padding: 2px 5px; background: var(--accent-wash); border-radius: 3px; font-size: .9em; overflow-wrap: anywhere; }
.dialog-kicker { font-size: 10px; color: var(--secondary); margin-bottom: var(--s4); }
.dialog-package { display: flex; align-items: center; justify-content: space-between; padding: var(--s5) 0; margin: var(--s5) 0; border-block: 1px solid var(--hairline); }
.dialog-package span { color: var(--muted); }
.dialog-photo-layout { display: grid; grid-template-columns: .9fr 1fr; }
.dialog-photo { width: 100%; height: 100%; min-height: 460px; background: var(--surface-hover); }
.dialog-photo-layout .dialog-body { padding: var(--s12) var(--s7) var(--s7); display: flex; flex-direction: column; align-items: flex-start; }
.dialog-photo-layout h2 { font-size: 24px; }
.dialog-photo-layout p { font-size: var(--text-sm); }
.dialog-prompt { font-size: var(--text-xs); color: var(--muted); padding: var(--s4) 0; border-block: 1px solid var(--hairline); margin-top: var(--s5); line-height: 1.9; }
.dialog-prompt strong { display: block; color: var(--secondary); font-size: 10px; font-weight: var(--weight-medium); margin-bottom: var(--s2); }
.dialog-photo-layout .text-button { margin-top: var(--s4); }
.dialog-photo-layout .button { width: 100%; font-size: var(--text-xs); margin-top: var(--s6); }
.toast { position: fixed; z-index: 150; left: 50%; bottom: var(--s6); max-width: calc(100% - 32px); padding: 11px var(--s5); border-radius: var(--radius-sm); background: var(--surface-raised); color: var(--text); border: 1px solid var(--hairline-strong); font-size: var(--text-sm); box-shadow: 0 8px 30px rgba(0,0,0,.1); transform: translate(-50%, 20px); opacity: 0; pointer-events: none; transition: opacity var(--duration), transform var(--duration) var(--ease); }
.toast.visible { transform: translate(-50%, 0); opacity: 1; }
/* JS adds the pending class only to off-screen content: never a blank page if JS/CDN fails. */
.reveal.is-pending { opacity: 0; transform: translateY(18px); }
.reveal { transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease); }
body.is-away .marquee-track, body.is-away .reviews-track, .is-outside .marquee-track, .is-outside .reviews-track { animation-play-state: paused; }
.image-offline { position: relative; }
img.is-unavailable { font-size: 0; color: transparent; opacity: 0; }

/* Medium screens */
@media (max-width: 900px) {
  .header-shell { gap: var(--s3); }
  .desktop-nav a { padding-inline: var(--s2); font-size: 11px; }
  .header-actions { gap: var(--s3); }
  .story-copy { padding: var(--s8); }
  .story-copy p { font-size: var(--text-sm); }
  .photo-back { right: 25px; width: 177px; height: 253px; top: 74px; }
  .photo-front { left: 20px; width: 184px; height: 261px; top: 98px; }
  .floating-label { right: 22px; bottom: 51px; font-size: 8px; }
  .prompt-composer { left: 6px; right: var(--s6); }
  .feature-tile { padding: var(--s6); }
  .feature-tile p { font-size: 11px; }
  .feature-tile h3 { font-size: var(--text-md); }
  .tile-number { top: var(--s6); right: var(--s6); }
}
@media (max-width: 760px) {
  .desktop-nav { display: none; }
  .site-header { width: calc(100% - var(--s8)); top: var(--s3); }
  .site-header.is-scrolled { width: calc(100% - var(--s8)); }
  .header-shell { padding-inline: var(--s2); }
  .site-header.is-scrolled .header-shell { padding-inline: var(--s4); }
  .menu-toggle { display: inline-flex; width: 30px; height: 30px; }
  .mobile-nav { display: grid; padding: var(--s4) var(--s6); margin-top: var(--s2); border: 1px solid var(--hairline); border-radius: var(--radius-lg); background: var(--glass); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
  .mobile-nav > a { padding: var(--s3) 0; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
  .mobile-nav > a > span { color: var(--subtle); font-size: 9px; }
  .hero { padding-top: 130px; }
  .hero-description { font-size: var(--text-base); }
  .features-grid { gap: var(--s2); }
  .feature-tile { padding: var(--s5); }
  .feature-tile p br { display: none; }
  .feature-tile p { font-size: 10px; }
  .feature-tile h3 { font-size: var(--text-base); }
  .feature-icon { width: 24px; height: 24px; }
  .section-space { margin-top: var(--s20); }
  .story-card { grid-template-columns: 1fr 1fr; min-height: 400px; }
  .story-copy { padding: var(--s6); }
  .story-copy h2 { font-size: 25px; }
  .story-copy p { font-size: 11px; }
  .story-copy .text-button { font-size: 10px; }
  .story-visual { min-height: 400px; }
  .photo-back { width: 153px; height: 220px; right: 20px; top: 84px; }
  .photo-front { width: 158px; height: 231px; left: 4px; top: 112px; }
  .floating-label { font-size: 7px; padding: var(--s2); bottom: 35px; right: 10px; }
  .prompt-preview { height: 260px; }
  .prompt-stage { padding-right: var(--s6); }
  .prompt-composer { bottom: var(--s7); padding: var(--s3); right: var(--s5); }
  .prompt-composer textarea { font-size: 10px; }
  .phone-preview { transform: rotate(5deg) scale(.9); margin-left: -8px; margin-bottom: -57px; }
  .telegram-stage { padding-top: 0; }
  .telegram-float { left: 5px; width: 45px; height: 45px; top: 70px; }
  .price-card { padding: var(--s5); }
  .package-carrots { font-size: var(--text-sm); }
  .package-caption { font-size: 9px; }
  .package-price { font-size: 30px; }
  .trial-banner { padding: var(--s6); }
  .trial-banner h3 { font-size: var(--text-base); }
  .trial-banner p { font-size: var(--text-xs); }
  .trial-banner .button { font-size: 10px; padding-inline: var(--s3); }
  .reviews-mask { gap: var(--s2); }
  .review-card { padding: var(--s3); }
  .review-card blockquote { font-size: 10px; }
  .review-name { font-size: 10px; }
  .review-avatar { width: 24px; height: 24px; }
  .footer-main > p { margin-left: 0; }
}

/* Mobile: no tall pinned cards; preserve the reading order and native touch scroll. */
@media (max-width: 600px) {
  :root { --heading-lg: 42px; --heading-md: 29px; }
  html { scroll-padding-top: 90px; scrollbar-gutter: auto; }
  .container { width: calc(100% - var(--s10)); }
  .header-shell { min-height: 54px; }
  .brand-mark { width: 25px; height: 25px; }
  .brand-name { font-size: 19px; }
  .header-actions { gap: var(--s3); }
  .login-button { font-size: 11px; }
  .login-button .icon { display: none; }
  .theme-toggle { width: 46px; height: 27px; }
  .theme-toggle .icon { width: 12px; height: 12px; }
  .theme-thumb { width: 21px; height: 21px; transform: translateX(19px); }
  .site-header.is-scrolled .header-shell { min-height: 54px; padding: var(--s2) var(--s3); }
  .hero { padding-top: 123px; }
  .app-icon { width: 68px; height: 68px; border-radius: 17px; margin-bottom: var(--s6); }
  .app-icon > svg { width: 42px; height: 42px; }
  .hero-description { font-size: 13px; margin-top: var(--s5); }
  .hero-cta { margin-top: var(--s6); }
  .hero-cta .button { font-size: var(--text-sm); padding-inline: var(--s4); }
  .hero-cta .button-arrow { margin-left: 0; }
  .hero-proof { gap: var(--s3); margin-top: var(--s6); }
  .social-proof { gap: var(--s2); }
  .avatar-stack img { width: 27px; height: 27px; }
  .proof-copy { font-size: 8px; }
  .proof-copy .stars { font-size: 9px; letter-spacing: 1px; }
  .ph-symbol { width: 22px; height: 22px; font-size: 14px; }
  .product-hunt small { font-size: 6px; letter-spacing: .6px; }
  .product-hunt strong { font-size: 10px; }
  .product-hunt { gap: 5px; }
  .product-hunt > .icon { display: none; }
  .proof-divider { height: 24px; }
  .inspiration { margin-top: var(--s12); }
  .gallery-toolbar { margin-bottom: var(--s3); }
  .gallery-filters { gap: 2px; }
  .filter-button { font-size: 10px; padding-inline: var(--s2); }
  .motion-control { width: 30px; height: 30px; }
  .gallery-card { width: 130px; }
  .marquee-group { gap: var(--s2); padding-right: var(--s2); }
  .marquee-row + .marquee-row { margin-top: var(--s2); }
  .gallery-mask { mask-image: linear-gradient(90deg, transparent, black 2%, black 98%, transparent); }
  .gallery-bottom { font-size: 8px; margin-top: var(--s3); }
  .gallery-label { font-size: 9px !important; }
  .section-space { margin-top: var(--s20); }
  .section-heading { align-items: flex-start; margin-bottom: var(--s6); gap: var(--s4); }
  .section-heading > p { font-size: 10px; padding-top: 4px; }
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-tile { padding: var(--s5); aspect-ratio: 1 / 1.04; }
  .feature-tile h3 { font-size: 13px; }
  .feature-tile p { font-size: 11px; line-height: 1.65; }
  .tile-number { font-size: 8px; top: var(--s5); right: var(--s5); }
  .feature-icon { width: 25px; height: 25px; }
  .story-card { position: relative; top: auto; grid-template-columns: 1fr; min-height: 0; transform: none !important; opacity: 1 !important; }
  .story-card + .story-card { margin-top: var(--s4); }
  .story-copy { padding: var(--s8) var(--s7) 0; }
  .story-index { margin-bottom: var(--s4); font-size: 10px; }
  .story-copy h2 { font-size: 29px; margin-bottom: var(--s4); }
  .story-copy p { max-width: 100%; font-size: var(--text-sm); line-height: 1.9; }
  .story-copy .text-button { font-size: var(--text-xs); margin-top: var(--s5); }
  .story-visual { min-height: 343px; margin-top: var(--s3); }
  .photo-stage { min-height: 360px; }
  .photo-back { right: calc(50% - 136px); width: 163px; height: 231px; top: 30px; }
  .photo-front { left: calc(50% - 133px); width: 177px; height: 245px; top: 54px; }
  .floating-label { font-size: 8px; bottom: 34px; right: calc(50% - 137px); padding: 10px; }
  .stage-orbit { width: 285px; height: 285px; }
  .prompt-stage { padding: var(--s6); min-height: 345px; }
  .prompt-preview { width: 254px; height: 253px; margin-top: -30px; }
  .prompt-composer { left: var(--s6); right: var(--s6); bottom: var(--s6); padding: var(--s4); }
  .prompt-composer textarea { font-size: var(--text-xs); }
  .telegram-stage { min-height: 375px; padding-top: 0; }
  .phone-preview { transform: rotate(5deg) scale(.93); margin-bottom: -44px; }
  .telegram-float { left: calc(50% - 132px); top: 70px; width: 47px; height: 47px; }
  .concept-label { writing-mode: horizontal-tb; font-size: 7px; }
  .pricing-heading h2 { max-width: 280px; margin-inline: auto; }
  .pricing-heading { margin-bottom: var(--s7); }
  .pricing-heading p { font-size: var(--text-xs); }
  .pricing-grid { grid-template-columns: 1fr; gap: var(--s3); }
  .price-card { display: grid; grid-template-columns: 1fr auto; grid-template-areas: 'carrots price' 'caption unit' 'button button'; gap: 0 var(--s4); padding: var(--s6); align-items: center; }
  .package-carrots { grid-area: carrots; font-size: var(--text-base); }
  .package-caption { grid-area: caption; margin-top: 4px; font-size: 10px; }
  .package-price { grid-area: price; margin: 0; font-size: 28px; text-align: right; line-height: 1.3; }
  .package-price > span { font-size: 19px; }
  .package-unit { grid-area: unit; margin-top: 4px; text-align: right; font-size: 10px; }
  .package-buy { grid-area: button; margin-top: var(--s5); padding: 10px var(--s4); }
  .pricing-assurance { gap: var(--s4); font-size: 9px; margin-top: var(--s5); }
  .pricing-assurance > span { gap: 5px; }
  .pricing-assurance .icon { width: 13px; height: 13px; }
  .trial-banner { text-align: center; flex-direction: column; gap: var(--s5); margin-top: var(--s6); padding: var(--s6); }
  .trial-banner h3 { font-size: 16px; max-width: 220px; }
  .trial-banner .button { font-size: 11px; width: 100%; }
  .reviews .section-heading { align-items: center; }
  .reviews h2 { font-size: 27px; }
  .reviews-demo-note { font-size: 8px; max-width: 250px; }
  .reviews-mask { grid-template-columns: repeat(2, minmax(0, 1fr)); height: 450px; }
  .reviews-column:nth-child(n+3) { display: none; }
  .review-card { padding: var(--s4); }
  .review-card blockquote { font-size: var(--text-xs); }
  .review-name { font-size: var(--text-xs); }
  .review-avatar { width: 28px; height: 28px; }
  .faq-aside { display: none; }
  .faq-question { font-size: var(--text-sm); min-height: 64px; padding-block: var(--s5); gap: var(--s4); }
  .faq-answer p { font-size: var(--text-sm); padding-right: var(--s5); }
  .footer { margin-top: var(--s20); }
  .footer-main { flex-wrap: wrap; justify-content: space-between; gap: var(--s6); }
  .footer-main > p { display: none; }
  .footer-main .text-button { font-size: 10px; gap: 6px; }
  .footer-main .text-button .icon { width: 14px; height: 14px; }
  .footer-bottom { flex-wrap: wrap; justify-content: space-between; gap: var(--s5) 10px; font-size: 9px; }
  .footer-bottom > div { order: 3; margin-left: 0; width: 100%; justify-content: flex-start; }
  .back-top { margin-left: auto; }
  .detail-dialog { max-height: calc(100dvh - 40px); }
  .dialog-body { padding: var(--s12) var(--s6) var(--s7); }
  .dialog-body h2 { font-size: 25px; }
  .dialog-body > p { font-size: 13px; }
  .dialog-photo-layout { grid-template-columns: 1fr; }
  .dialog-photo { height: 290px; min-height: 0; object-position: center 30%; }
  .dialog-photo-layout .dialog-body { padding: var(--s6); }
  .dialog-photo-layout h2 { font-size: 23px; }
}
@media (max-width: 360px) {
  :root { --heading-lg: 37px; }
  .container { width: calc(100% - var(--s8)); }
  .header-actions { gap: var(--s2); }
  .brand-name { font-size: 17px; }
  .brand-mark { width: 22px; height: 22px; }
  .hero-proof { gap: 9px; }
  .avatar-stack img { width: 24px; height: 24px; }
  .feature-tile { padding: var(--s4); }
  .feature-tile h3 { font-size: var(--text-sm); }
  .feature-tile p { font-size: 10px; }
  .section-heading > p { font-size: 9px; }
  .tile-number { top: var(--s4); right: var(--s4); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .marquee-track, .reviews-track { animation: none !important; }
  .gallery-mask { overflow-x: auto; mask-image: none; }
  .marquee-row { overflow: visible; }
  .marquee-group[aria-hidden='true'], .reviews-group[aria-hidden='true'] { display: none; }
  .reviews-mask { overflow-y: auto; mask-image: none; }
  .reviews-column { overflow: visible; }
  .story-card { position: relative; top: auto; transform: none !important; opacity: 1 !important; will-change: auto; }
  .reveal.is-pending { opacity: 1; transform: none; }
}
