:root {
    --pink: #ed4f9a;
    --pink-dark: #c82f78;
    --pink-pale: #fff0f7;
    --ink: #12121a;
    --ink-soft: #24232d;
    --text: #33313a;
    --muted: #6d6974;
    --line: #e8e1e5;
    --paper: #fffdfd;
    --soft: #faf5f7;
    --white: #fff;
    --green: #20b66f;
    --shadow: 0 22px 70px rgba(45, 19, 33, .12);
    --radius: 24px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; background: var(--paper); color: var(--text); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open, body.chat-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.05; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 10vw, 5.9rem); }
h2 { font-size: clamp(2rem, 7vw, 4rem); }
h3 { font-size: 1.48rem; }
p:last-child { margin-bottom: 0; }
address { font-style: normal; }
.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.narrow { max-width: 810px; }
.center { text-align: center; }
.section { padding: 84px 0; }
.section-dark { position: relative; overflow: hidden; background: var(--ink); color: rgba(255,255,255,.78); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-soft { background: var(--soft); }
.eyebrow { margin-bottom: 16px; color: var(--pink-dark); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-light { color: #ff84bc; }
.large-text { color: var(--muted); font-size: clamp(1.1rem, 2.4vw, 1.35rem); line-height: 1.6; }
.sr-only { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; padding: 10px 14px; transform: translateY(-150%); background: var(--white); color: var(--ink); border-radius: 8px; }
.skip-link:focus { transform: none; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 13px 22px; border: 1px solid var(--pink); border-radius: 999px; background: var(--pink); color: var(--white); font-weight: 800; line-height: 1.2; text-align: center; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--pink-dark); box-shadow: 0 12px 30px rgba(237,79,154,.25); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid rgba(237,79,154,.42); outline-offset: 3px; }
.button-small { min-height: 42px; padding: 10px 18px; font-size: .86rem; }
.button-ghost { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
.button-ghost:hover { border-color: var(--pink); background: rgba(237,79,154,.13); }
.button-white { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-white:hover { background: var(--pink-pale); color: var(--ink); }
.button-full { width: 100%; border: 0; }
.text-link, .text-link-light { display: inline-flex; align-items: center; gap: 8px; color: var(--pink-dark); font-weight: 800; text-decoration: none; }
.text-link::after, .text-link-light::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after, .text-link-light:hover::after { transform: translateX(4px); }
.text-link-light { color: var(--white); }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(18,18,26,.94); color: var(--white); backdrop-filter: blur(18px); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--white); text-decoration: none; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand span { display: none; line-height: 1; }
.brand strong { display: block; font-size: .9rem; }
.brand small { color: #d9d6db; font-size: .69rem; letter-spacing: .14em; text-transform: uppercase; }
.menu-toggle { width: 46px; height: 46px; display: grid; place-content: center; gap: 5px; border: 0; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--white); cursor: pointer; }
.menu-toggle > span:not(.sr-only) { width: 20px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.main-nav { position: fixed; inset: 76px 0 auto; display: none; padding: 20px 18px 28px; background: var(--ink); box-shadow: var(--shadow); }
.main-nav.open { display: grid; }
.main-nav a { padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.75); font-weight: 700; text-decoration: none; }
.main-nav a[aria-current="page"] { color: var(--pink); }
.main-nav .nav-private { color: rgba(255,255,255,.5); }
.header-cta { display: none; }

.hero { isolation: isolate; padding: 76px 0 64px; background: radial-gradient(circle at 78% 32%, #30202d 0, var(--ink) 42%, #0b0b11 100%); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(to bottom, #000, transparent 82%); }
.hero-glow { position: absolute; z-index: -1; width: 520px; height: 520px; right: -300px; top: -170px; border-radius: 50%; background: rgba(237,79,154,.24); filter: blur(30px); animation: heroGlow 7s ease-in-out infinite alternate; }
.hero-orbits { position: absolute; z-index: -1; width: min(74vw, 760px); aspect-ratio: 1; right: -33vw; top: 9%; pointer-events: none; }
.hero-orbits span { position: absolute; inset: calc(var(--i, 0) * 10%); border: 1px solid rgba(255,255,255,.09); border-radius: 50%; animation: orbitSpin 24s linear infinite; }
.hero-orbits span:nth-child(1) { --i: 0; border-color: rgba(237,79,154,.22); }
.hero-orbits span:nth-child(2) { --i: 1; animation-direction: reverse; animation-duration: 31s; }
.hero-orbits span:nth-child(3) { --i: 2; border-style: dashed; animation-duration: 18s; }
.hero-orbits span::after { content: ""; position: absolute; width: 9px; height: 9px; left: 12%; top: 18%; border-radius: 50%; background: var(--pink); box-shadow: 0 0 28px rgba(237,79,154,.8); }
.hero-grid { position: relative; display: grid; gap: 48px; }
.hero h1 { max-width: 900px; margin-bottom: 24px; }
.hero h1, .product-hero h1, .page-hero h1 { font-size: clamp(2.2rem, 5.8vw, 4rem); }
.hero-lead { max-width: 690px; color: rgba(255,255,255,.72); font-size: clamp(1.1rem, 3.6vw, 1.35rem); line-height: 1.6; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; margin: 30px 0 42px; }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding: 0; margin: 0; list-style: none; }
.hero-trust li { padding: 0 10px; border-left: 1px solid rgba(255,255,255,.14); }
.hero-trust li:first-child { padding-left: 0; border-left: 0; }
.hero-trust strong, .hero-trust span { display: block; }
.hero-trust strong { color: var(--white); font-size: clamp(1rem, 4vw, 1.35rem); }
.hero-trust span { margin-top: 4px; color: rgba(255,255,255,.48); font-size: .69rem; line-height: 1.35; }
.hero-media { position: relative; transform-style: preserve-3d; }
.hero-product-halo { position: absolute; inset: 7% -14% 2%; border-radius: 50%; background: radial-gradient(circle, rgba(237,79,154,.28), transparent 66%); filter: blur(18px); pointer-events: none; }
.video-card { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: #050509; box-shadow: 0 34px 90px rgba(0,0,0,.44); transition: transform .18s ease-out; }
.video-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, transparent 15%, rgba(255,255,255,.1) 45%, transparent 70%); transform: translateX(-120%); animation: heroShine 7s ease-in-out infinite 1.2s; }
.video-card video { width: 100%; aspect-ratio: 16 / 9; object-fit: contain; background: #000; }
.video-caption { display: flex; align-items: center; gap: 8px; padding: 14px 18px; color: rgba(255,255,255,.62); font-size: .8rem; }
.video-caption span { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 5px rgba(237,79,154,.15); }
.floating-note { position: absolute; right: -6px; bottom: 42px; max-width: 210px; padding: 14px 17px; border-radius: 15px; background: var(--white); color: var(--ink); box-shadow: var(--shadow); font-size: .82rem; transform: rotate(-2deg); animation: noteFloat 4.8s ease-in-out infinite; transition: transform .18s ease-out; }
.hero-time-chip { position: absolute; left: -14px; top: 9%; width: 92px; aspect-ratio: 1; display: grid; place-content: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(18,18,26,.76); color: var(--white); text-align: center; box-shadow: 0 18px 45px rgba(0,0,0,.3); backdrop-filter: blur(14px); animation: noteFloat 5.6s ease-in-out infinite reverse; transition: transform .18s ease-out; }
.hero-time-chip span { color: rgba(255,255,255,.54); font-size: .58rem; text-transform: uppercase; }
.hero-time-chip strong { font-family: Georgia, serif; font-size: 1.55rem; font-weight: 500; }
.hero-scroll-cue { display: none; }
@keyframes heroGlow { to { transform: translate3d(-70px, 60px, 0) scale(1.18); opacity: .72; } }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes heroShine { 0%, 62% { transform: translateX(-120%); } 84%, 100% { transform: translateX(120%); } }
@keyframes noteFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -9px; } }

.split-heading { display: grid; gap: 8px; margin-bottom: 48px; }
.split-heading h2 { margin-bottom: 20px; }
.time-journey { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.time-journey article { padding: 28px; background: var(--paper); }
.time-journey span, .benefit-number { color: var(--pink-dark); font-size: .72rem; font-weight: 900; letter-spacing: .16em; }
.time-journey h3 { margin: 34px 0 12px; }
.time-journey p { color: var(--muted); }
.benefits-grid { display: grid; gap: 16px; }
.benefit-card { min-height: 360px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.benefit-card h2 { margin: auto 0 16px; font-size: clamp(2rem, 7vw, 3.2rem); }
.benefit-card p { color: var(--muted); }
.benefit-card .text-link { margin-top: 18px; }
.benefit-featured { background: var(--pink); color: rgba(255,255,255,.82); }
.benefit-featured h2, .benefit-featured .benefit-number, .benefit-featured .text-link { color: var(--white); }
.benefit-featured p { color: rgba(255,255,255,.78); }
.result-grid, .mechanics-grid, .stories-grid, .visual-proof-grid, .specs-grid, .careers-grid { display: grid; gap: 44px; align-items: center; }
.result-copy blockquote { margin: 30px 0 0; padding-left: 20px; border-left: 3px solid var(--pink); color: var(--ink); font-family: Georgia, serif; font-size: 1.2rem; line-height: 1.5; }
.result-gallery { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10px; align-items: stretch; }
.result-gallery figure { min-width: 0; margin: 0; overflow: hidden; border-radius: 18px; background: var(--soft); }
.result-gallery img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; }
.result-gallery figcaption { position: absolute; width: 1px; height: 1px; overflow: hidden; }
.mechanics-image { position: relative; }
.mechanics-image img { width: 100%; min-height: 340px; object-fit: cover; border-radius: var(--radius); }
.image-label { position: absolute; left: 16px; bottom: 16px; padding: 9px 13px; border-radius: 99px; background: rgba(18,18,26,.86); color: var(--white); font-size: .76rem; font-weight: 800; backdrop-filter: blur(10px); }
.mechanics-copy p { color: rgba(255,255,255,.62); }
.check-list { display: grid; gap: 10px; padding: 0; margin: 26px 0 32px; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: var(--white); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--pink); font-weight: 900; }
.comparison-section { background: var(--white); }
.comparison-table { margin-top: 42px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.comparison-row { display: grid; grid-template-columns: 1fr; }
.comparison-row > div { padding: 14px 18px; border-top: 1px solid var(--line); }
.comparison-row > div:first-child { background: var(--soft); color: var(--muted); font-size: .77rem; font-weight: 800; text-transform: uppercase; }
.comparison-head { display: none; }
.comparison-row strong { color: var(--pink-dark); }
.table-note { margin-top: 14px; color: var(--muted); font-size: .76rem; }
.stories-image img { width: 100%; max-height: 520px; object-fit: cover; border-radius: var(--radius); }
.mini-proof { margin-top: 30px; padding: 20px 0; border-block: 1px solid var(--line); }
.mini-proof strong, .mini-proof span { display: block; }
.mini-proof span { color: var(--muted); }
.customer-voices { overflow: hidden; background: var(--ink); color: rgba(255,255,255,.68); }
.customer-voices h2 { color: var(--white); }
.voices-heading { display: grid; gap: 22px; margin-bottom: 44px; }
.voices-heading .large-text { color: rgba(255,255,255,.57); }
.voices-grid { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(82%, 1fr); gap: 15px; overflow-x: auto; padding-bottom: 22px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--pink) rgba(255,255,255,.08); }
.voice-card { scroll-snap-align: center; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.055); }
.voice-card figure { height: 360px; margin: 0; overflow: hidden; }
.voice-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.voice-card:hover img { transform: scale(1.035); }
.voice-card-copy { padding: 25px; }
.voice-card-copy > span { color: #ff83bc; font-size: .69rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.voice-card blockquote { margin: 15px 0; color: var(--white); font-family: Georgia, serif; font-size: clamp(1.35rem, 5vw, 2rem); line-height: 1.22; }
.voice-card p { color: rgba(255,255,255,.55); font-size: .86rem; }
.voices-note { margin-top: 18px; color: rgba(255,255,255,.38); font-size: .68rem; }
.faq-grid { display: grid; gap: 36px; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-of-type { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 20px 38px 20px 0; color: var(--ink); font-weight: 800; list-style: none; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 5px; top: 17px; color: var(--pink-dark); font-size: 1.5rem; transition: transform .2s ease; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion details p { padding-right: 30px; color: var(--muted); }
.accordion .text-link { margin-top: 24px; }

.product-hero, .page-hero { padding: 72px 0; }
.product-hero-grid { display: grid; gap: 38px; align-items: center; }
.product-shot { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.product-shot img { width: 100%; height: auto; object-fit: contain; object-position: center; background: #f4f1ef; }
.product-shot figcaption { padding: 12px 18px; color: var(--muted); font-size: .78rem; }
.product-subnav { position: sticky; top: 76px; z-index: 80; overflow-x: auto; border-bottom: 1px solid var(--line); background: rgba(255,253,253,.94); backdrop-filter: blur(12px); }
.product-subnav .container { display: flex; gap: 26px; }
.product-subnav a { flex: 0 0 auto; padding: 14px 0; color: var(--muted); font-size: .78rem; font-weight: 800; text-decoration: none; }
.process-grid { display: grid; gap: 14px; margin-top: 46px; }
.process-grid article { padding: 25px; border: 1px solid var(--line); border-radius: 18px; }
.process-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 46px; border-radius: 50%; background: var(--pink-pale); color: var(--pink-dark); font-weight: 900; }
.process-grid p { color: var(--muted); }
.feature-list { border-top: 1px solid var(--line); }
.feature-row { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.feature-row > span { color: var(--pink-dark); font-size: .75rem; font-weight: 900; }
.feature-row h3 { margin-bottom: 8px; }
.feature-row p { color: var(--muted); }
.feature-row > strong { grid-column: 2; color: var(--pink-dark); font-size: .71rem; letter-spacing: .12em; text-transform: uppercase; }
.proof-main img { width: 100%; border-radius: var(--radius); }
.proof-main p { margin: 10px 0 0; color: var(--muted); font-size: .78rem; }
.specs { margin: 0; }
.specs div { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.specs dt { color: rgba(255,255,255,.5); }
.specs dd { margin: 0; color: var(--white); font-weight: 800; text-align: right; }

.contact-grid { display: grid; gap: 44px; align-items: start; }
.contact-methods { display: grid; gap: 12px; margin-top: 28px; }
.contact-method { display: grid; padding: 20px; border: 1px solid var(--line); border-radius: 16px; text-decoration: none; transition: border .2s ease, transform .2s ease; }
.contact-method:hover { border-color: var(--pink); transform: translateY(-2px); }
.contact-method span { color: var(--pink-dark); font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-method strong { margin: 5px 0; color: var(--ink); font-size: 1.15rem; }
.contact-method small { color: var(--muted); }
.form-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 17px; margin-top: 28px; }
.contact-form label { display: grid; gap: 6px; color: var(--ink); font-size: .83rem; font-weight: 800; }
.contact-form label small { color: var(--muted); font-weight: 500; }
.contact-form input:not([type="checkbox"]), .contact-form textarea, .contact-form select { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #d9d3d7; border-radius: 10px; background: var(--paper); color: var(--ink); }
.contact-form textarea { resize: vertical; }
.form-row { display: grid; gap: 17px; }
.checkbox-label { grid-template-columns: 20px 1fr!important; align-items: start; font-weight: 500!important; line-height: 1.45; }
.checkbox-label input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--pink-dark); }
.checkbox-label a { color: var(--pink-dark); }
.honeypot { position: absolute!important; left: -10000px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }
.form-security { color: var(--muted); font-size: .7rem; text-align: center; }
.form-notice { margin: 18px 0; padding: 14px 16px; border-radius: 12px; font-size: .88rem; }
.form-notice.success { background: #e8f8ef; color: #12643d; }
.form-notice.error { background: #fff0f3; color: #982340; }
.careers-values { display: grid; gap: 14px; }
.careers-values article { padding: 26px; border: 1px solid var(--line); border-radius: 18px; }
.careers-values span { color: var(--pink-dark); font-size: .75rem; font-weight: 900; }
.careers-values h3 { margin-top: 40px; }
.careers-list { display: grid; gap: 0; padding: 0; margin: 0; list-style: none; }
.careers-list li { position: relative; padding: 18px 0 18px 32px; border-bottom: 1px solid var(--line); }
.careers-list li::before { content: "•"; position: absolute; left: 4px; color: var(--pink); font-size: 1.6rem; line-height: 1; }
.section-action { margin-top: 46px; }
.section-action p { margin-top: 12px; color: var(--muted); font-size: .84rem; }

.policy-layout { display: grid; gap: 34px; align-items: start; }
.policy-index { display: none; }
.policy-content { max-width: 790px; }
.policy-content section { padding-top: 26px; margin-top: 26px; border-top: 1px solid var(--line); }
.policy-content h2 { font-size: clamp(1.7rem, 5vw, 2.4rem); }
.policy-content h3 { margin: 24px 0 8px; font-family: inherit; font-size: 1rem; font-weight: 800; letter-spacing: 0; }
.policy-content li { margin-bottom: 10px; }
.policy-content a { color: var(--pink-dark); }
.policy-note { margin-top: 40px; padding: 22px; border-radius: 16px; background: var(--soft); }

.closing-cta { padding: 60px 0; background: var(--pink); color: rgba(255,255,255,.82); }
.closing-cta h2 { max-width: 720px; color: var(--white); }
.closing-grid { display: grid; gap: 30px; }
.closing-actions { display: grid; gap: 14px; align-content: center; justify-items: start; }
.site-footer { padding: 56px 0 24px; background: var(--ink); color: rgba(255,255,255,.58); }
.footer-grid { display: grid; gap: 34px; }
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img { width: 54px; height: 54px; object-fit: contain; }
.footer-brand strong, .footer-title { color: var(--white); }
.footer-title { margin-bottom: 12px; font-family: inherit; font-size: .75rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.site-footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-links { display: grid; gap: 7px; padding: 0; margin: 0; list-style: none; }
.footer-bottom { display: flex; flex-direction: column; gap: 4px; padding-top: 24px; margin-top: 38px; border-top: 1px solid rgba(255,255,255,.1); font-size: .7rem; }

.chat-launcher { position: fixed; right: 14px; bottom: 14px; z-index: 150; display: flex; align-items: center; gap: 9px; min-height: 50px; padding: 12px 17px; border: 0; border-radius: 999px; background: #138f57; color: var(--white); box-shadow: 0 14px 35px rgba(5,65,38,.3); font-weight: 800; cursor: pointer; }
.chat-dot { width: 10px; height: 10px; border-radius: 50%; background: #75f0b2; box-shadow: 0 0 0 5px rgba(117,240,178,.16); }
.chat-panel { position: fixed; right: 10px; bottom: 76px; z-index: 160; width: min(calc(100% - 20px), 370px); overflow: hidden; border: 1px solid #dcd6d9; border-radius: 20px; background: #f4efe9; box-shadow: 0 24px 80px rgba(18,18,26,.28); }
.chat-header { display: flex; align-items: center; gap: 11px; padding: 15px; background: #075e54; color: var(--white); }
.chat-avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--pink); font-family: Georgia,serif; font-size: 1.2rem; }
.chat-header > div:nth-child(2) { flex: 1; }
.chat-header strong, .chat-header small { display: block; }
.chat-header strong { font-size: .86rem; }
.chat-header small { color: rgba(255,255,255,.7); font-size: .68rem; }
.chat-header small span { display: inline-block; width: 6px; height: 6px; margin-right: 3px; border-radius: 50%; background: #64df99; }
.chat-header button { border: 0; background: transparent; color: var(--white); font-size: 1.7rem; cursor: pointer; }
.chat-messages { height: min(310px, 42vh); display: flex; flex-direction: column; gap: 9px; overflow-y: auto; padding: 16px; background: radial-gradient(circle at 10% 10%, rgba(255,255,255,.65), transparent 28%), #efe8df; }
.chat-message { max-width: 86%; padding: 9px 11px; border-radius: 10px; font-size: .79rem; line-height: 1.45; box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.chat-message.bot { align-self: flex-start; border-top-left-radius: 2px; background: var(--white); }
.chat-message.user { align-self: flex-end; border-top-right-radius: 2px; background: #d9fdd3; }
.chat-message a { color: #087d50; font-weight: 800; }
.chat-suggestions { display: flex; gap: 6px; overflow-x: auto; padding: 9px 10px; background: var(--white); }
.chat-suggestions button { flex: 0 0 auto; padding: 7px 10px; border: 1px solid #cfc8cb; border-radius: 999px; background: var(--white); color: #176a4c; font-size: .68rem; cursor: pointer; }
.chat-form { display: grid; grid-template-columns: 1fr 42px; gap: 7px; padding: 9px; background: var(--white); }
.chat-form input { min-width: 0; padding: 9px 11px; border: 1px solid #d7d1d4; border-radius: 999px; font-size: .8rem; }
.chat-form button { border: 0; border-radius: 50%; background: #128c7e; color: var(--white); cursor: pointer; }
.chat-disclaimer { padding: 0 12px 9px; margin: 0; background: var(--white); color: var(--muted); font-size: .58rem; text-align: center; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
.js .reveal-delay { transition-delay: .12s; }

@media (min-width: 620px) {
    .container { width: min(calc(100% - 56px), var(--container)); }
    .brand span { display: block; }
    .hero-actions { flex-direction: row; align-items: center; }
    .time-journey, .process-grid, .careers-values { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit-featured { grid-column: span 2; }
    .comparison-row { grid-template-columns: 1.1fr 1fr 1fr; }
    .comparison-row > div { border-top: 1px solid var(--line); }
    .comparison-row > div:not(:first-child) { border-left: 1px solid var(--line); }
    .comparison-head { display: grid; background: var(--ink); color: var(--white); }
    .comparison-head > div, .comparison-head > div:first-child { border-top: 0; background: transparent; color: var(--white); font-size: .75rem; font-weight: 900; text-transform: uppercase; }
    .form-row { grid-template-columns: repeat(2, 1fr); }
    .form-card { padding: 34px; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-bottom { flex-direction: row; justify-content: space-between; }
    .voices-grid { grid-auto-columns: minmax(360px, 54%); }
}

@media (min-width: 900px) {
    body.menu-open, body.chat-open { overflow: auto; }
    .section { padding: 118px 0; }
    .menu-toggle { display: none; }
    .main-nav { position: static; display: flex; align-items: center; gap: 24px; padding: 0; background: transparent; box-shadow: none; }
    .main-nav a { padding: 27px 0 24px; border: 0; font-size: .79rem; }
    .main-nav a[aria-current="page"] { box-shadow: inset 0 -2px var(--pink); }
    .header-cta { display: inline-flex; }
    .hero { min-height: 790px; display: flex; align-items: center; padding: 88px 0; }
    .hero-grid { grid-template-columns: 1fr .9fr; align-items: center; }
    .hero h1, .product-hero h1, .page-hero h1 { font-size: clamp(3.25rem, 4.7vw, 4rem); }
    .hero-media { width: 100%; max-width: 560px; justify-self: end; }
    .video-card video { aspect-ratio: 16 / 9; }
    .split-heading { grid-template-columns: .7fr 1.4fr; gap: 70px; align-items: start; }
    .time-journey { grid-template-columns: repeat(3, 1fr); }
    .benefits-grid { grid-template-columns: 1.12fr .88fr .88fr; }
    .benefit-featured { grid-column: auto; }
    .result-grid, .mechanics-grid, .stories-grid, .visual-proof-grid, .specs-grid, .careers-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
    .mechanics-grid { grid-template-columns: 1.05fr .95fr; }
    .faq-grid { grid-template-columns: .75fr 1.25fr; gap: 90px; }
    .product-hero { min-height: 680px; display: flex; align-items: center; }
    .product-hero-grid { grid-template-columns: 1fr .72fr; gap: 80px; }
    .product-shot { max-width: 510px; justify-self: end; }
    .process-grid { grid-template-columns: repeat(4, 1fr); }
    .feature-row { grid-template-columns: 70px 1fr 140px; gap: 22px; align-items: start; padding: 35px 0; }
    .feature-row > strong { grid-column: auto; text-align: right; }
    .contact-grid { grid-template-columns: .8fr 1.2fr; gap: 80px; }
    .careers-values { grid-template-columns: repeat(3, 1fr); }
    .policy-layout { grid-template-columns: 190px 1fr; gap: 70px; }
    .policy-index { position: sticky; top: 110px; display: grid; gap: 9px; }
    .policy-index a { color: var(--muted); font-size: .8rem; text-decoration: none; }
    .closing-grid { grid-template-columns: 1fr auto; align-items: center; }
    .chat-panel { right: 22px; bottom: 88px; }
    .chat-launcher { right: 22px; bottom: 22px; }
    .hero-orbits { right: -230px; }
    .voices-heading { grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
    .voices-grid { grid-auto-flow: initial; grid-template-columns: repeat(3, 1fr); overflow: visible; }
    .voice-card:nth-child(2) { transform: translateY(34px); }
    .voice-card figure { height: 430px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
    .js .reveal { opacity: 1; transform: none; }
}
