@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #d96b3b;
  --primary-hover: #c85e32;
  --primary-active: #b5511f;
  --primary-soft: #f8d9c8;
  --primary-tint: #fbeadf;
  --background: #faf6ef;
  --surface: #fffdf8;
  --surface-muted: #f3ebdd;
  --border: #e8dccb;
  --border-strong: #d8c9b3;
  --text: #2b2118;
  --text-secondary: #6f6256;
  --text-muted: #9a8a7b;
  --success: #4f8a5b;
  --success-soft: #e1efe2;
  --danger: #c94a3a;
  --danger-soft: #f7dbd4;
  --shadow-sm: 0 2px 8px rgb(43 33 24 / .06);
  --shadow-md: 0 14px 36px rgb(43 33 24 / .11);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font: 400 16px/1.65 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img, svg { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(232 220 203 / .8);
  background: rgb(250 246 239 / .88);
  backdrop-filter: blur(18px);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.logo img { width: 132px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; color: var(--text-secondary); font-size: 14px; font-weight: 600; }
.nav-links a:not(.button):hover { color: var(--text); }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; color: var(--text); cursor: pointer; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 11px 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 18px rgb(217 107 59 / .2); }
.button-primary:hover { background: var(--primary-hover); box-shadow: 0 12px 24px rgb(217 107 59 / .25); }
.button-secondary { background: var(--surface); border-color: var(--border-strong); color: var(--text); }
.button-sm { min-height: 42px; padding: 8px 16px; }
.button svg { width: 18px; height: 18px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgb(255 253 248 / .78);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px var(--success-soft); }
.section-kicker { margin: 0 0 12px; color: var(--primary-active); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(42px, 6vw, 76px); line-height: 1.03; letter-spacing: -.055em; font-weight: 800; }
h2 { margin-bottom: 18px; font-size: clamp(32px, 4vw, 50px); line-height: 1.1; letter-spacing: -.04em; }
h3 { margin-bottom: 10px; font-size: 19px; line-height: 1.3; letter-spacing: -.02em; }
.lead { max-width: 650px; color: var(--text-secondary); font-size: clamp(17px, 2vw, 20px); line-height: 1.7; }
.section-heading { max-width: 690px; margin-bottom: 54px; }
.section-heading p:last-child { color: var(--text-secondary); font-size: 17px; }

.hero { position: relative; overflow: hidden; padding: 94px 0 116px; }
.hero::before { content: ''; position: absolute; top: -210px; right: -120px; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle, rgb(248 217 200 / .82), transparent 67%); pointer-events: none; }
.hero::after { content: 'SOLO, NÃO SOZINHO'; position: absolute; left: -32px; bottom: 42px; color: rgb(111 98 86 / .09); font-size: clamp(64px, 9vw, 132px); font-weight: 800; letter-spacing: -.08em; white-space: nowrap; pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.35fr; gap: 28px; align-items: center; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 38px; }
.hero-copy h1 { max-width: 620px; font-size: clamp(45px, 5.4vw, 72px); }
.hero h1 span { color: var(--primary); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border-strong); padding: 10px 0 7px; color: var(--text-secondary); font-size: 13px; font-weight: 700; }
.text-link span { color: var(--primary); font-size: 18px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 16px; margin: 22px 0 0; color: var(--text-muted); font-size: 11px; font-weight: 600; }
.hero-note span { display: inline-flex; align-items: center; gap: 6px; }
.hero-note svg { width: 15px; color: var(--success); }
.platform-choice { display: flex; align-items: center; gap: 9px; margin-top: 22px; }
.platform-choice span { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--border); border-radius: 999px; padding: 7px 10px; background: rgb(255 253 248 / .72); color: var(--text-secondary); font-size: 9px; font-weight: 700; }
.platform-choice svg { width: 14px; height: 14px; color: var(--primary); }
.platform-choice i { color: var(--text-muted); font-size: 8px; font-style: normal; text-transform: uppercase; }

.product-wrap { position: relative; width: 760px; margin-right: -175px; transform: rotate(1.1deg); }
.product-window { overflow: hidden; border: 1px solid var(--border-strong); border-radius: 24px; background: var(--surface); box-shadow: 0 28px 70px rgb(43 33 24 / .16); text-align: left; }
.window-bar { height: 43px; display: flex; align-items: center; gap: 6px; padding: 0 16px; border-bottom: 1px solid var(--border); background: #f9f3e9; }
.window-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); }
.window-title { margin-left: auto; margin-right: auto; color: var(--text-muted); font-size: 10px; font-weight: 700; }
.dashboard { min-height: 500px; display: grid; grid-template-columns: 170px 1fr; }
.sidebar { padding: 22px 16px; border-right: 1px solid var(--border); background: #fffaf3; }
.mini-brand { display: flex; align-items: center; gap: 9px; margin-bottom: 28px; font-size: 15px; font-weight: 800; }
.mini-brand img { width: 28px; height: 28px; }
.side-item { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; border-radius: 9px; padding: 9px 10px; color: var(--text-muted); font-size: 11px; font-weight: 600; }
.side-item.active { background: var(--primary-tint); color: var(--primary-active); }
.side-item svg { width: 15px; height: 15px; }
.dash-main { padding: 30px; background: var(--background); }
.dash-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.dash-head p { margin: 0 0 4px; color: var(--text-muted); font-size: 10px; }
.dash-head h3 { margin: 0; font-size: 21px; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; border-radius: 99px; padding: 7px 10px; background: var(--success-soft); color: var(--success); font-size: 9px; font-weight: 700; }
.status-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.stat-card, .panel { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); }
.stat-card { padding: 16px; }
.stat-card span { color: var(--text-muted); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.stat-card strong { display: block; margin: 7px 0 3px; font-size: 25px; line-height: 1; }
.stat-card small { color: var(--text-secondary); font-size: 9px; }
.panel { padding: 18px; }
.panel-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.panel-title strong { font-size: 12px; }
.panel-title a { color: var(--primary); font-size: 9px; font-weight: 700; }
.appointment { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 11px; padding: 11px 0; border-top: 1px solid var(--border); }
.time { color: var(--text-secondary); font-size: 10px; font-weight: 700; }
.person { display: flex; align-items: center; gap: 9px; }
.avatar { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--primary-soft); color: var(--primary-active); font-size: 9px; font-weight: 800; }
.person strong { display: block; font-size: 10px; }
.person small { display: block; color: var(--text-muted); font-size: 8px; }
.tag { border-radius: 99px; padding: 5px 8px; background: var(--success-soft); color: var(--success); font-size: 8px; font-weight: 700; }
.floating-message { position: absolute; right: 90px; bottom: -34px; width: 245px; border: 1px solid var(--border); border-radius: 18px; padding: 15px; background: var(--surface); box-shadow: var(--shadow-md); text-align: left; transform: rotate(-1.1deg); }
.floating-message .message-head { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; }
.message-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; background: var(--success-soft); color: var(--success); }
.message-icon svg { width: 18px; }
.message-head strong { display: block; font-size: 11px; }
.message-head small { display: block; color: var(--success); font-size: 8px; }
.floating-message p { margin: 0; color: var(--text-secondary); font-size: 10px; line-height: 1.5; }
.availability-note { position: absolute; left: -58px; top: 94px; display: grid; width: 178px; border: 1px solid #eed5c5; border-radius: 16px; padding: 13px 15px; background: #fff9f3; box-shadow: var(--shadow-md); transform: rotate(-3deg); }
.availability-note span { color: var(--primary); font-size: 10px; font-weight: 800; }
.availability-note strong { margin: 2px 0; font-size: 11px; }
.availability-note small { color: var(--text-muted); font-size: 8px; line-height: 1.4; }

.trust-strip { padding: 26px 0; border-block: 1px solid var(--border); background: rgb(255 253 248 / .6); }
.trust-content { display: flex; align-items: center; justify-content: center; gap: 44px; color: var(--text-secondary); font-size: 12px; font-weight: 700; }
.trust-item { display: flex; align-items: center; gap: 9px; }
.trust-item svg { width: 18px; color: var(--primary); }

.section { padding: 108px 0; }
.offset-heading { margin-left: 8.333%; }
.feature-stories { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; align-items: stretch; }
.story { position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: 24px; background: var(--surface); }
.story-number { display: block; margin-bottom: 22px; color: var(--primary-active); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.story h3 { max-width: 510px; font-size: clamp(23px, 3vw, 34px); line-height: 1.16; }
.story p { color: var(--text-secondary); font-size: 14px; }
.story-availability { grid-column: 1 / -1; display: grid; grid-template-columns: .72fr 1.28fr; gap: 38px; padding: 48px; background: #fffaf3; }
.story-copy { align-self: center; }
.story-copy ul { display: grid; gap: 8px; margin: 24px 0 0; padding: 0; color: var(--text-secondary); font-size: 12px; list-style: none; }
.story-copy li::before { content: '↳'; margin-right: 8px; color: var(--primary); }
.calendar-board { align-self: center; overflow: hidden; border: 1px solid var(--border); border-radius: 18px; padding: 20px 22px; background: white; box-shadow: 0 18px 45px rgb(43 33 24 / .09); transform: rotate(1.2deg); }
.calendar-top { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--border); color: var(--text-muted); font-size: 9px; font-weight: 800; letter-spacing: .06em; }
.calendar-top div { display: flex; align-items: center; gap: 5px; letter-spacing: 0; text-transform: none; }
.calendar-top i { width: 7px; height: 7px; border-radius: 50%; }
.google-dot { background: #4a78a8; }
.calendar-row { display: grid; grid-template-columns: 52px 1fr; align-items: stretch; min-height: 62px; border-bottom: 1px solid #f0e8dd; }
.calendar-row time { padding-top: 13px; color: var(--text-muted); font-size: 9px; font-weight: 700; }
.calendar-event { margin: 5px 0; border-left: 3px solid; border-radius: 8px; padding: 8px 11px; }
.calendar-event strong, .available-row strong { display: block; font-size: 11px; }
.calendar-event small, .available-row small { display: block; color: var(--text-muted); font-size: 8px; }
.appointment-event { border-color: var(--primary); background: var(--primary-tint); }
.blocked-event { border-color: #4a78a8; background: #eef4f9; }
.personal-event { border-color: var(--text-muted); background: var(--surface-muted); }
.available-row { border-bottom: 0; }
.available-row > div { align-self: center; color: var(--success); }
.story-always-on { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 38px; background: var(--text); color: #f5eee3; }
.story-always-on::after { content: ''; position: absolute; right: -80px; top: -80px; width: 210px; height: 210px; border: 36px solid rgb(255 255 255 / .035); border-radius: 50%; }
.story-always-on .story-number { color: #efa27e; }
.story-always-on h3 { font-size: 27px; }
.story-always-on p { color: #c3b5a4; }
.always-on-mark { display: flex; width: 92px; height: 92px; flex-direction: column; justify-content: center; border: 1px solid #4a3d2e; border-radius: 50%; text-align: center; }
.always-on-mark span { color: #ec8a60; font-size: 35px; font-weight: 800; line-height: .9; }
.always-on-mark small { color: #c3b5a4; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.night-message { grid-column: 2; margin-top: 15px; border: 1px solid #4a3d2e; border-radius: 15px 15px 4px 15px; padding: 15px; background: #2a2219; }
.night-message small { color: #8a7b6b; font-size: 8px; }
.night-message p { margin: 5px 0 8px; color: #f5eee3; font-size: 12px; }
.night-message span { color: #6bae78; font-size: 8px; font-weight: 700; }
.story-routine { display: flex; flex-direction: column; justify-content: space-between; padding: 38px; background: var(--primary-tint); }
.story-routine h3 { font-size: 27px; }
.routine-list { display: grid; gap: 8px; margin: 24px 0; }
.routine-list span { display: flex; align-items: baseline; gap: 10px; border-bottom: 1px solid #efd8c9; padding-bottom: 8px; color: var(--text-secondary); font-size: 11px; }
.routine-list b { color: var(--primary-active); font-size: 19px; }

.workflow-section { background: var(--text); color: #f8f0e5; }
.workflow-section .section-kicker { color: #efa27e; }
.workflow-section .section-heading p:last-child { color: #c3b5a4; }
.humanization-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 88px; align-items: center; }
.humanization-copy > p:not(.section-kicker):not(.config-note) { max-width: 610px; color: #c3b5a4; font-size: 17px; }
.human-points { display: flex; flex-wrap: wrap; gap: 8px; margin: 35px 0 28px; }
.human-points span { border: 1px solid #4a3d2e; border-radius: 999px; padding: 8px 12px; color: #8a7b6b; font-size: 10px; font-weight: 700; }
.human-points .active { border-color: #7b4932; background: #3a2a20; color: #ec8a60; }
.human-slider { max-width: 500px; }
.human-slider div { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 10px; color: #8a7b6b; font-size: 9px; }
.human-slider strong { color: #f5eee3; font-size: 10px; }
.human-slider i { position: relative; display: block; height: 5px; border-radius: 99px; background: linear-gradient(90deg, #e27a4d 0 78%, #4a3d2e 78%); }
.human-slider i::after { content: ''; position: absolute; left: 78%; top: 50%; width: 16px; height: 16px; border: 3px solid #221c16; border-radius: 50%; background: #ec8a60; transform: translate(-50%, -50%); }
.config-note { max-width: 500px; margin-top: 24px; border-left: 2px solid #7b4932; padding-left: 15px; color: #8a7b6b; font-size: 11px; }
.steps { display: grid; gap: 10px; }
.step { display: grid; grid-template-columns: 40px 1fr; gap: 17px; padding: 18px; border: 1px solid #4a3d2e; border-radius: 16px; background: #221c16; }
.step-number { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 11px; background: #3a2a20; color: #ec8a60; font-size: 12px; font-weight: 800; }
.step h3 { margin-bottom: 4px; color: #f5eee3; font-size: 15px; }
.step p { margin: 0; color: #c3b5a4; font-size: 13px; }
.chat-demo { border: 1px solid #4a3d2e; border-radius: 24px; padding: 20px; background: #221c16; box-shadow: 0 24px 60px rgb(0 0 0 / .22); }
.chat-head { display: flex; align-items: center; gap: 11px; padding-bottom: 15px; border-bottom: 1px solid #392f24; }
.chat-head .avatar { width: 38px; height: 38px; background: #3a2a20; color: #ec8a60; }
.chat-head strong { display: block; font-size: 13px; }
.chat-head small { color: #6bae78; font-size: 10px; }
.tone-label { margin-left: auto; border-radius: 99px; padding: 5px 8px; background: #3a2a20; color: #ec8a60; font-size: 8px; font-weight: 700; }
.chat-body { display: grid; gap: 11px; padding: 20px 0 5px; }
.bubble { width: fit-content; max-width: 82%; border-radius: 14px; padding: 11px 13px; font-size: 12px; line-height: 1.55; }
.bubble.in { border-bottom-left-radius: 4px; background: #2a2219; color: #f5eee3; }
.bubble.out { justify-self: end; border-bottom-right-radius: 4px; background: #3a2a20; color: #f5eee3; }
.bubble small { display: block; margin-top: 3px; color: #8a7b6b; font-size: 8px; text-align: right; }
.notification-layer { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; margin-top: 108px; border-top: 1px solid #4a3d2e; padding-top: 90px; }
.notification-copy h2 { font-size: clamp(31px, 4vw, 48px); }
.notification-copy > p:last-child { max-width: 470px; color: #c3b5a4; }
.push-stack { position: relative; min-height: 345px; }
.push-card { position: absolute; display: grid; width: min(460px, 92%); grid-template-columns: 38px 1fr; gap: 11px; border: 1px solid rgb(255 255 255 / .22); border-radius: 19px; padding: 14px; background: rgb(245 238 227 / .94); color: var(--text); box-shadow: 0 22px 55px rgb(0 0 0 / .26); backdrop-filter: blur(18px); }
.push-card img { width: 38px; height: 38px; border-radius: 10px; }
.push-card span { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2px; }
.push-card span strong { font-size: 10px; }
.push-card time { color: var(--text-muted); font-size: 8px; }
.push-card b { display: block; font-size: 11px; }
.push-card p { margin: 2px 0 0; color: var(--text-secondary); font-size: 9px; }
.push-appointment { top: 0; right: 2%; transform: rotate(1.2deg); }
.push-handoff { top: 108px; left: 0; z-index: 2; transform: rotate(-1.4deg); }
.push-pix { top: 218px; right: 5%; z-index: 3; transform: rotate(.7deg); }

.depth-section { overflow: hidden; background: var(--surface); }
.depth-heading { display: grid; grid-template-columns: 1fr 1.25fr; column-gap: 50px; align-items: end; margin: 0 0 70px 8.333%; }
.depth-heading .section-kicker { grid-column: 1 / -1; }
.depth-heading h2 { margin-bottom: 0; }
.depth-heading > p:last-child { max-width: 430px; margin: 0 0 7px; color: var(--text-secondary); }
.product-rail { display: grid; grid-template-columns: 1.08fr .92fr; gap: 20px; }
.product-module { position: relative; overflow: hidden; border-top: 1px solid var(--border-strong); padding: 38px 0 12px; }
.module-index { position: absolute; top: 43px; left: 0; color: var(--primary); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.module-copy { padding-left: 58px; }
.module-copy > span { display: block; margin-bottom: 14px; color: var(--text-muted); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.module-copy h3 { max-width: 520px; font-size: clamp(24px, 3vw, 36px); line-height: 1.16; }
.module-copy p { max-width: 570px; color: var(--text-secondary); font-size: 14px; }
.catalog-module { grid-column: 1 / -1; display: grid; grid-template-columns: .82fr 1.18fr; gap: 58px; align-items: center; padding-bottom: 48px; }
.catalog-ui, .recorder-ui, .risk-ui { border: 1px solid var(--border); border-radius: 18px; background: var(--background); box-shadow: var(--shadow-sm); }
.catalog-ui { overflow: hidden; transform: rotate(-.8deg); }
.catalog-head { display: flex; align-items: center; justify-content: space-between; padding: 17px 20px; border-bottom: 1px solid var(--border); background: var(--surface); font-size: 11px; }
.catalog-head span { border-radius: 8px; padding: 7px 9px; background: var(--primary); color: white; font-size: 8px; font-weight: 700; }
.service-row { display: grid; grid-template-columns: 8px 1fr 54px 64px; align-items: center; gap: 10px; padding: 13px 20px; border-bottom: 1px solid var(--border); }
.service-status { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px var(--success-soft); }
.service-row strong { display: block; font-size: 10px; }
.service-row small { display: block; color: var(--text-muted); font-size: 8px; }
.service-row > span { color: var(--text-secondary); font-size: 9px; }
.service-row > b { color: var(--text); font-size: 10px; text-align: right; }
.catalog-foot { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 13px 20px; background: var(--success-soft); color: var(--success); font-size: 9px; font-weight: 700; }
.catalog-foot small { color: var(--text-secondary); font-size: 8px; font-weight: 500; }
.voice-module, .risk-module { min-height: 660px; padding-inline: 6px; }
.voice-module { margin-right: 22px; }
.risk-module { margin-top: 72px; margin-left: 22px; }
.recorder-ui, .risk-ui { margin: 34px 0 0 58px; padding: 20px; }
.recorder-top { display: flex; align-items: center; gap: 11px; }
.mic-button { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--danger-soft); color: var(--danger); }
.mic-button svg { width: 18px; }
.recorder-top strong { display: block; font-size: 10px; }
.recorder-top small { display: block; color: var(--text-muted); font-size: 8px; }
.recorder-top > i { margin-left: auto; color: var(--danger); font-size: 8px; font-style: normal; font-weight: 700; }
.waveform { display: flex; height: 62px; align-items: center; justify-content: center; gap: 4px; margin: 14px 0; border-block: 1px solid var(--border); }
.waveform b { width: 3px; border-radius: 99px; background: var(--primary); }
.waveform b:nth-child(3n+1) { height: 17px; }
.waveform b:nth-child(3n+2) { height: 37px; }
.waveform b:nth-child(3n) { height: 25px; }
.waveform b:nth-child(5n) { height: 48px; }
.ai-fields > span { display: inline-block; margin-bottom: 8px; border-radius: 99px; padding: 5px 8px; background: var(--primary-tint); color: var(--primary-active); font-size: 8px; font-weight: 800; }
.ai-fields p { margin: 0; border-top: 1px solid var(--border); padding: 9px 0; color: var(--text-secondary); font-size: 9px; }
.ai-fields strong { display: block; margin-bottom: 2px; color: var(--text); font-size: 8px; text-transform: uppercase; letter-spacing: .04em; }
.privacy-note { display: flex; align-items: center; gap: 7px; margin-top: 8px; border-radius: 9px; padding: 9px; background: var(--success-soft); color: var(--success); font-size: 8px; }
.privacy-note svg { width: 14px; flex: 0 0 auto; }
.risk-ui { overflow: hidden; padding: 0; background: var(--surface); }
.risk-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 17px; border-bottom: 1px solid var(--border); }
.risk-head small, .risk-head strong { display: block; }
.risk-head small { color: var(--text-muted); font-size: 8px; }
.risk-head strong { margin-top: 2px; font-size: 11px; }
.risk-head > span { border-radius: 99px; padding: 5px 8px; background: var(--primary-tint); color: var(--primary-active); font-size: 8px; font-weight: 700; }
.risk-person { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 9px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.risk-person strong { display: block; font-size: 9px; }
.risk-person small { display: block; color: var(--text-muted); font-size: 7px; }
.risk-person > b { border-radius: 99px; padding: 5px 7px; font-size: 7px; }
.risk-high { background: var(--danger-soft); color: var(--danger); }
.risk-medium { background: #f8eccf; color: #9c6e12; }
.risk-low { background: var(--success-soft); color: var(--success); }
.risk-action { display: flex; align-items: center; gap: 10px; margin: 12px; border: 1px solid var(--border); border-radius: 11px; padding: 11px; background: var(--background); }
.risk-action > span { color: var(--primary); font-size: 20px; }
.risk-action strong { display: block; font-size: 8px; }
.risk-action small { display: block; color: var(--text-muted); font-size: 7px; }
.support-disclaimer { display: block; margin: 12px 0 0 58px; color: var(--text-muted); font-size: 8px; }

.who-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.who-copy { position: sticky; top: 120px; }
.who-copy p { color: var(--text-secondary); }
.specialties { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.specialty { display: flex; align-items: center; gap: 13px; border: 1px solid var(--border); border-radius: 15px; padding: 17px; background: var(--surface); font-size: 14px; font-weight: 700; }
.specialty span { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 10px; background: var(--surface-muted); color: var(--primary); }
.specialty svg { width: 18px; height: 18px; }

.download-section { background: var(--surface-muted); }
.download-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.download-copy > p:not(.section-kicker):not(.store-pending-note) { max-width: 650px; color: var(--text-secondary); font-size: 17px; }
.store-links { display: flex; flex-wrap: wrap; gap: 11px; margin: 30px 0 13px; }
.store-link { display: inline-flex; min-width: 184px; align-items: center; gap: 11px; border: 1px solid var(--text); border-radius: 13px; padding: 10px 15px; background: var(--text); color: white; }
.store-link svg { width: 27px; height: 27px; flex: 0 0 auto; }
.store-link small, .store-link strong { display: block; line-height: 1.2; }
.store-link small { color: #c3b5a4; font-size: 8px; text-transform: uppercase; letter-spacing: .05em; }
.store-link strong { margin-top: 3px; font-size: 16px; }
.store-link.is-pending { cursor: not-allowed; opacity: .82; }
.store-pending-note { display: flex; align-items: center; gap: 7px; color: var(--text-muted); font-size: 9px; }
.store-pending-note span { width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: var(--warning); }
.app-steps { display: grid; counter-reset: steps; }
.app-step { display: grid; grid-template-columns: 44px 1fr; gap: 18px; border-top: 1px solid var(--border-strong); padding: 23px 0; }
.app-step:last-child { border-bottom: 1px solid var(--border-strong); }
.app-step > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--surface); color: var(--primary); font-size: 9px; font-weight: 800; }
.app-step strong { display: block; margin-bottom: 4px; font-size: 14px; }
.app-step small { display: block; color: var(--text-secondary); font-size: 11px; }

.pricing-section { padding-top: 80px; }
.pricing-wrap { display: grid; grid-template-columns: 1fr 470px; gap: 70px; align-items: center; border: 1px solid var(--border); border-radius: 28px; padding: 54px; background: var(--surface); box-shadow: var(--shadow-md); }
.price-card { border: 1px solid var(--border-strong); border-radius: 22px; padding: 30px; background: var(--background); }
.plan-label { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.plan-label strong { font-size: 18px; }
.popular { border-radius: 99px; padding: 6px 9px; background: var(--primary-tint); color: var(--primary-active); font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.price { display: flex; align-items: flex-end; gap: 7px; margin: 25px 0 5px; }
.price strong { font-size: 46px; line-height: 1; letter-spacing: -.05em; }
.price span { color: var(--text-secondary); font-size: 12px; }
.price-detail { margin-bottom: 23px; color: var(--text-muted); font-size: 11px; }
.price-card ul { display: grid; gap: 11px; margin: 0 0 25px; padding: 0; list-style: none; color: var(--text-secondary); font-size: 13px; }
.price-card li { display: flex; align-items: center; gap: 9px; }
.price-card li svg { width: 17px; color: var(--success); }
.price-card .button { width: 100%; }
.pricing-copy .lead { font-size: 17px; }
.pricing-highlights { display: flex; gap: 22px; margin-top: 28px; }
.pricing-highlights strong { display: block; font-size: 17px; }
.pricing-highlights span { color: var(--text-muted); font-size: 11px; }

.faq-list { max-width: 800px; margin: auto; border-top: 1px solid var(--border); }
details { border-bottom: 1px solid var(--border); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; cursor: pointer; font-weight: 700; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--primary); font-size: 25px; font-weight: 400; }
details[open] summary::after { content: '−'; }
details p { max-width: 700px; margin: -8px 0 23px; color: var(--text-secondary); font-size: 14px; }

.final-cta { padding: 38px 0 100px; }
.cta-box { position: relative; overflow: hidden; border-radius: 28px; padding: 72px 40px; background: var(--primary); color: white; text-align: center; }
.cta-box::before, .cta-box::after { content: ''; position: absolute; width: 300px; height: 300px; border: 50px solid rgb(255 255 255 / .08); border-radius: 50%; }
.cta-box::before { left: -180px; bottom: -180px; }
.cta-box::after { top: -210px; right: -160px; }
.cta-box h2 { position: relative; max-width: 680px; margin: 0 auto 16px; }
.cta-box p { position: relative; max-width: 580px; margin: 0 auto 28px; color: rgb(255 255 255 / .82); }
.cta-box .button { position: relative; background: white; color: var(--primary-active); box-shadow: 0 10px 25px rgb(101 42 19 / .22); }

.site-footer { border-top: 1px solid var(--border); padding: 52px 0 26px; background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .6fr; gap: 40px; padding-bottom: 44px; }
.footer-brand img { width: 130px; margin-bottom: 17px; }
.footer-brand p { max-width: 390px; color: var(--text-secondary); font-size: 13px; }
.footer-col strong { display: block; margin-bottom: 14px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.footer-col a { display: block; margin-bottom: 9px; color: var(--text-secondary); font-size: 13px; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 11px; }

.legal { padding: 80px 0 110px; }
.legal article { max-width: 800px; margin: auto; }
.legal h1 { font-size: clamp(38px, 6vw, 60px); }
.legal .updated { margin-bottom: 44px; color: var(--text-muted); font-size: 13px; }
.legal h2 { margin-top: 40px; font-size: 23px; letter-spacing: -.02em; }
.legal p, .legal li { color: var(--text-secondary); font-size: 15px; }
.legal a { color: var(--primary-active); text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 900px) {
  .menu-button { display: block; }
  .nav-links { position: fixed; inset: 76px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 20px 25px; border-bottom: 1px solid var(--border); background: var(--background); box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 5px; }
  .nav-links .button { margin-top: 10px; }
  .hero { padding-top: 66px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .product-wrap { width: 780px; margin: 12px -12% 0 auto; }
  .availability-note { left: 20px; }
  .feature-stories, .humanization-layout, .who-grid, .download-layout, .pricing-wrap { grid-template-columns: 1fr; }
  .story-availability { grid-template-columns: 1fr; }
  .humanization-layout { gap: 45px; }
  .notification-layer { grid-template-columns: 1fr; gap: 45px; }
  .push-stack { max-width: 620px; width: 100%; }
  .depth-heading { grid-template-columns: 1fr; margin-left: 0; }
  .depth-heading h2 { margin-bottom: 18px; }
  .catalog-module { grid-template-columns: 1fr; gap: 28px; }
  .product-rail { grid-template-columns: 1fr 1fr; }
  .voice-module, .risk-module { margin-inline: 0; }
  .who-copy { position: static; }
  .download-layout { gap: 46px; }
  .pricing-wrap { padding: 38px; }
  .price-card { max-width: 520px; }
  .dashboard { grid-template-columns: 155px 1fr; }
  .floating-message { right: 24px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, 1160px); }
  .section { padding: 80px 0; }
  .section-heading { margin-bottom: 38px; }
  .hero { padding: 52px 0 82px; }
  .hero::after { bottom: 10px; font-size: 61px; }
  .hero h1 { font-size: 42px; }
  .hero .lead { font-size: 16px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { margin-inline: auto; }
  .hero-note { gap: 8px 14px; }
  .product-wrap { width: 100%; margin: 32px 0 0; transform: none; }
  .availability-note { display: none; }
  .dashboard { min-height: 430px; grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .dash-main { padding: 18px; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .stat-card { padding: 11px; }
  .stat-card strong { font-size: 18px; }
  .appointment { grid-template-columns: 40px 1fr; }
  .appointment .tag { display: none; }
  .floating-message { display: none; }
  .trust-content { flex-wrap: wrap; gap: 16px 25px; }
  .offset-heading { margin-left: 0; }
  .feature-stories, .specialties { grid-template-columns: 1fr; }
  .story-availability, .story-always-on, .story-routine { padding: 26px 22px; }
  .calendar-board { margin-inline: -7px; padding: 16px 13px; transform: none; }
  .calendar-top { align-items: flex-start; flex-direction: column; }
  .story-always-on { grid-template-columns: 1fr; }
  .always-on-mark { width: 78px; height: 78px; }
  .night-message { grid-column: 1; }
  .humanization-layout { gap: 34px; }
  .human-points { margin-top: 26px; }
  .notification-layer { margin-top: 75px; padding-top: 65px; }
  .push-stack { min-height: 330px; }
  .push-card { width: 96%; }
  .push-appointment { right: 0; }
  .push-pix { right: 0; }
  .depth-heading { margin-bottom: 46px; }
  .product-rail { grid-template-columns: 1fr; }
  .catalog-module { grid-column: 1; }
  .product-module { min-height: auto; padding: 28px 0 38px; }
  .risk-module { margin-top: 0; }
  .module-index { top: 33px; }
  .module-copy { padding-left: 45px; }
  .catalog-ui { margin-left: 0; transform: none; }
  .catalog-foot { align-items: flex-start; flex-direction: column; }
  .service-row { grid-template-columns: 8px 1fr 52px; padding-inline: 13px; }
  .service-row > span { display: none; }
  .recorder-ui, .risk-ui { margin-left: 0; }
  .support-disclaimer { margin-left: 0; }
  .download-layout { gap: 38px; }
  .store-links { display: grid; grid-template-columns: 1fr; }
  .store-link { width: 100%; }
  .pricing-wrap { gap: 36px; padding: 26px 20px; }
  .pricing-highlights { flex-wrap: wrap; }
  .price-card { padding: 23px; }
  .price strong { font-size: 38px; }
  .cta-box { padding: 54px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
