:root {
  --bg: #fff9f7;
  --surface: #ffffff;
  --surface-soft: #fbf3f4;
  --surface-lavender: #f1eef8;
  --surface-sage: #edf3ee;
  --ink: #2f2832;
  --muted: #746c76;
  --line: rgba(96, 72, 88, 0.16);
  --line-strong: rgba(96, 72, 88, 0.28);
  --berry: #8a3f62;
  --berry-dark: #6f2f4d;
  --berry-soft: #e9cbd7;
  --lavender: #8175ad;
  --lavender-dark: #62578e;
  --sage: #7b927e;
  --peach: #e4a77e;
  --white: #ffffff;
  --shadow-soft: 0 24px 70px rgba(92, 62, 77, 0.10);
  --shadow-card: 0 14px 38px rgba(92, 62, 77, 0.08);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1200px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { color: inherit; }

::selection { background: var(--berry-soft); color: var(--ink); }
:focus-visible { outline: 3px solid rgba(129,117,173,.35); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 2px;
  background: transparent;
}
.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--berry), var(--lavender));
}

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255,249,247,.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255,249,247,.94);
  box-shadow: 0 10px 30px rgba(74,51,65,.05);
}
.header-row { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-sign { position: relative; width: 38px; height: 38px; border: 1px solid var(--line-strong); border-radius: 50%; background: rgba(255,255,255,.75); }
.brand-sign i { position: absolute; display: block; border-radius: 999px; background: var(--berry); }
.brand-sign i:nth-child(1) { width: 14px; height: 6px; left: 7px; top: 9px; transform: rotate(-24deg); }
.brand-sign i:nth-child(2) { width: 18px; height: 6px; right: 5px; top: 16px; transform: rotate(22deg); background: var(--lavender); }
.brand-sign i:nth-child(3) { width: 10px; height: 6px; left: 12px; bottom: 7px; transform: rotate(-8deg); background: var(--sage); }
.brand-copy { display: grid; line-height: 1.12; }
.brand-copy b { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: -.02em; }
.brand-copy small { margin-top: 3px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { position: relative; color: #5f5761; font-size: 14px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--berry); transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-button span { width: 18px; height: 1px; background: var(--ink); transition: transform .2s ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu { border-top: 1px solid var(--line); padding: 14px 20px 20px; background: rgba(255,249,247,.98); }
.mobile-menu a { display: block; padding: 12px 4px; border-bottom: 1px solid var(--line); font-weight: 600; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--berry); color: var(--white); box-shadow: 0 12px 28px rgba(138,63,98,.22); }
.button-primary:hover { background: var(--berry-dark); box-shadow: 0 16px 34px rgba(138,63,98,.28); }
.button-secondary { border-color: var(--line-strong); background: rgba(255,255,255,.7); color: var(--ink); }
.button-secondary:hover { border-color: rgba(138,63,98,.45); background: var(--surface); }
.button-light { background: var(--white); color: var(--berry-dark); }
.button-outline-light { border-color: rgba(255,255,255,.5); color: var(--white); background: rgba(255,255,255,.05); }
.button-compact { min-height: 44px; padding-inline: 19px; font-size: 14px; }
.button-full { width: 100%; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--berry); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 1px; background: currentColor; }
.eyebrow-light { color: rgba(255,255,255,.78); }

.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading-center { margin-inline: auto; text-align: center; }
.section-heading h2, .product-copy h2, .principles-copy h2, .fit-card h2, .final-copy h2, .diagnostic-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.08;
}
.section-heading h2 { font-size: clamp(38px, 4.8vw, 62px); }
.section-heading p { max-width: 680px; margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.section-heading-center p { margin-inline: auto; }

.hero { overflow: hidden; padding-top: 92px; padding-bottom: 72px; }
.hero-wash { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-wash-one { width: 520px; height: 520px; right: -170px; top: 10px; background: radial-gradient(circle at 35% 35%, rgba(232,199,210,.6), rgba(232,199,210,0) 72%); }
.hero-wash-two { width: 440px; height: 440px; left: -220px; bottom: -80px; background: radial-gradient(circle at 60% 45%, rgba(193,187,223,.35), rgba(193,187,223,0) 74%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr); gap: 70px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 760px; margin: 0; font-family: var(--font-display); font-size: clamp(48px, 6vw, 78px); font-weight: 500; letter-spacing: -.048em; line-height: .98; }
.hero h1 em { display: block; margin-top: 14px; color: var(--berry); font-style: italic; font-weight: 500; }
.hero-lead { max-width: 680px; margin: 28px 0 0; color: var(--muted); font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 30px; color: #5f5761; font-size: 14px; font-weight: 600; }
.hero-assurances span { display: inline-flex; align-items: center; gap: 8px; }
.hero-assurances i { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 5px rgba(123,146,126,.12); }

.hero-visual { position: relative; min-height: 650px; display: grid; place-items: center; }
.soft-shape { position: absolute; border-radius: 46% 54% 63% 37% / 41% 42% 58% 59%; pointer-events: none; }
.soft-shape-rose { width: 430px; height: 500px; background: linear-gradient(160deg, #f3dfe5 0%, #edd2dc 100%); transform: rotate(-7deg); }
.soft-shape-lavender { width: 350px; height: 390px; right: 4%; bottom: 4%; background: linear-gradient(160deg, #e4def2 0%, #d6cfea 100%); transform: rotate(19deg); opacity: .86; }
.insight-card { position: absolute; z-index: 4; width: 210px; padding: 16px 18px; border: 1px solid rgba(93,70,83,.14); border-radius: 18px; background: rgba(255,255,255,.88); box-shadow: var(--shadow-card); backdrop-filter: blur(14px); }
.insight-card span { display: block; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.insight-card strong { display: block; margin-top: 5px; font-family: var(--font-display); font-size: 18px; line-height: 1.18; }
.insight-card-top { top: 68px; left: 0; }
.insight-card-bottom { right: 0; bottom: 70px; }
.proof-strip { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.65); overflow: hidden; }
.proof-strip div { display: flex; align-items: center; gap: 14px; min-height: 86px; padding: 18px 24px; }
.proof-strip div + div { border-left: 1px solid var(--line); }
.proof-strip b { display: grid; min-width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--surface-soft); color: var(--berry); font-size: 12px; }
.proof-strip span { font-size: 14px; font-weight: 650; line-height: 1.4; }

.recognition { background: var(--surface); border-block: 1px solid rgba(96,72,88,.10); }
.recognition-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.recognition-card { position: relative; min-height: 330px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(180deg, #fff 0%, #fdf9fa 100%); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.recognition-card:hover { transform: translateY(-5px); border-color: rgba(138,63,98,.24); box-shadow: var(--shadow-card); }
.card-number { position: absolute; right: 22px; top: 18px; color: rgba(138,63,98,.45); font-size: 12px; font-weight: 800; }
.line-icon { position: relative; width: 66px; height: 66px; margin-bottom: 62px; border: 1px solid rgba(138,63,98,.18); border-radius: 50%; background: var(--surface-soft); }
.line-icon i { position: absolute; display: block; height: 1px; background: var(--berry); transform-origin: left center; }
.line-icon i:nth-child(1) { width: 24px; left: 20px; top: 24px; transform: rotate(25deg); }
.line-icon i:nth-child(2) { width: 18px; left: 21px; top: 38px; transform: rotate(-35deg); }
.line-icon i:nth-child(3) { width: 7px; height: 7px; left: 37px; top: 28px; border-radius: 50%; }
.line-icon-choice i:nth-child(1) { width: 28px; left: 18px; top: 20px; transform: none; }
.line-icon-choice i:nth-child(2) { width: 28px; left: 18px; top: 32px; transform: none; }
.line-icon-choice i:nth-child(3) { width: 28px; height: 1px; left: 18px; top: 44px; border-radius: 0; }
.line-icon-dialog i:nth-child(1) { width: 29px; height: 19px; left: 13px; top: 18px; border: 1px solid var(--berry); background: transparent; border-radius: 7px; }
.line-icon-dialog i:nth-child(2) { width: 22px; height: 15px; left: 30px; top: 34px; border: 1px solid var(--lavender); background: transparent; border-radius: 6px; }
.line-icon-dialog i:nth-child(3) { display: none; }
.recognition-card h3 { margin: 0; font-family: var(--font-display); font-size: 28px; font-weight: 500; line-height: 1.1; }
.recognition-card p { margin: 16px 0 0; color: var(--muted); }
.recognition-note { display: grid; grid-template-columns: 210px 1fr; align-items: center; gap: 30px; margin-top: 18px; padding: 24px 28px; border: 1px solid rgba(123,146,126,.23); border-radius: var(--radius-md); background: var(--surface-sage); }
.recognition-note span { color: #536b56; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.recognition-note p { margin: 0; color: #435146; font-family: var(--font-display); font-size: 22px; line-height: 1.35; }

.product-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.product-copy h2 { font-size: clamp(40px, 5vw, 64px); }
.product-copy > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); font-size: 18px; }
.check-list { display: grid; gap: 18px; margin: 36px 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; }
.check-list li > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--surface-sage); color: #57705a; font-weight: 800; }
.check-list p { display: grid; margin: 0; }
.check-list b { font-size: 16px; }
.check-list small { margin-top: 3px; color: var(--muted); font-size: 14px; }
.product-map { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-soft); }
.map-title { display: flex; justify-content: space-between; gap: 16px; align-items: flex-end; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.map-title span { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.map-title b { font-family: var(--font-display); font-size: 20px; font-weight: 500; }
.product-map ol { margin: 14px 0 0; padding: 0; list-style: none; }
.product-map li { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: center; min-height: 92px; padding: 14px 14px; border-radius: 18px; }
.product-map li + li::before { content: ""; position: absolute; left: 37px; top: -14px; width: 1px; height: 28px; background: var(--line-strong); }
.product-map li > span { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface-soft); color: var(--berry); font-size: 12px; font-weight: 800; }
.product-map li div { display: grid; }
.product-map li b { font-size: 16px; }
.product-map li small { margin-top: 3px; color: var(--muted); }
.product-map li.is-accent { background: linear-gradient(90deg, #f8ecf1 0%, #f4eff9 100%); }
.product-map li.is-accent > span { border-color: transparent; background: var(--berry); color: #fff; }

.diagnostic { padding-block: 78px; }
.diagnostic-shell { display: grid; grid-template-columns: .88fr 1.12fr; gap: 48px; padding: 54px; border-radius: var(--radius-lg); background: linear-gradient(135deg, #4a3041 0%, #69425a 55%, #62578e 100%); color: #fff; box-shadow: 0 34px 86px rgba(88,51,72,.20); overflow: hidden; }
.diagnostic-copy h2 { font-size: clamp(38px, 4.6vw, 60px); }
.diagnostic-copy > p:not(.eyebrow) { margin: 22px 0 0; color: rgba(255,255,255,.72); font-size: 17px; }
.diagnostic-result { margin-top: 34px; padding: 22px 24px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(255,255,255,.08); }
.diagnostic-result span { color: #e8d4df; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.diagnostic-result strong { display: block; margin-top: 9px; font-family: var(--font-display); font-size: 25px; font-weight: 500; line-height: 1.2; }
.diagnostic-result p { margin: 10px 0 0; color: rgba(255,255,255,.7); font-size: 14px; }
.diagnostic-options { display: grid; gap: 10px; }
.diagnostic-options button { display: grid; grid-template-columns: 40px 1fr 30px; gap: 14px; align-items: center; width: 100%; padding: 17px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(255,255,255,.075); color: #fff; text-align: left; cursor: pointer; transition: background .2s ease, transform .2s ease, border-color .2s ease; }
.diagnostic-options button:hover, .diagnostic-options button.is-active { transform: translateX(4px); border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.14); }
.diagnostic-options button > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); font-size: 11px; font-weight: 800; }
.diagnostic-options p { display: grid; margin: 0; }
.diagnostic-options b { font-size: 14px; }
.diagnostic-options small { margin-top: 2px; color: rgba(255,255,255,.62); font-size: 12px; }
.diagnostic-options i { font-style: normal; color: rgba(255,255,255,.75); }

.demo { background: var(--surface); border-block: 1px solid rgba(96,72,88,.10); }
.demo-layout { display: grid; grid-template-columns: 230px 1fr 410px; gap: 24px; align-items: stretch; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fdfafa; }
.demo-sidebar { display: grid; align-content: start; gap: 8px; }
.demo-sidebar button { width: 100%; padding: 16px; border: 1px solid transparent; border-radius: 16px; background: transparent; text-align: left; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.demo-sidebar button span, .demo-sidebar button small { display: block; }
.demo-sidebar button span { font-weight: 750; }
.demo-sidebar button small { margin-top: 3px; color: var(--muted); }
.demo-sidebar button:hover { background: #fff; }
.demo-sidebar button.is-active { border-color: var(--line); background: #fff; box-shadow: 0 10px 24px rgba(86,61,75,.06); }
.demo-sidebar button.is-active span { color: var(--berry); }
.demo-copy-panel { display: flex; flex-direction: column; justify-content: center; padding: 22px 18px; }
.demo-copy-panel > span { color: var(--berry); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.demo-copy-panel h3 { margin: 13px 0 0; font-family: var(--font-display); font-size: clamp(30px, 3.5vw, 46px); font-weight: 500; line-height: 1.08; }
.demo-copy-panel > p { margin: 18px 0 0; color: var(--muted); }
.demo-copy-panel ul { display: grid; gap: 10px; margin: 24px 0 30px; padding: 0; list-style: none; }
.demo-copy-panel li { position: relative; padding-left: 24px; font-size: 14px; }
.demo-copy-panel li::before { content: ""; position: absolute; left: 0; top: .7em; width: 10px; height: 1px; background: var(--berry); }
.demo-copy-panel .button { align-self: flex-start; }
.demo-phone-wrap { position: relative; min-height: 600px; display: grid; place-items: center; border-radius: 28px; background: linear-gradient(145deg, #f4e8ed 0%, #e8e3f3 100%); overflow: hidden; }
.demo-decoration { position: absolute; border-radius: 50%; }
.demo-decoration-one { width: 240px; height: 240px; right: -80px; top: -50px; background: rgba(255,255,255,.5); }
.demo-decoration-two { width: 180px; height: 180px; left: -80px; bottom: -60px; border: 1px solid rgba(138,63,98,.15); }
.demo-phone { position: relative; z-index: 2; width: 300px; overflow: hidden; border: 1px solid rgba(84,60,74,.16); border-radius: 34px; background: #fff; box-shadow: 0 30px 64px rgba(84,54,72,.18); }
.demo-phone-head { display: grid; grid-template-columns: 40px 1fr 30px; gap: 10px; align-items: center; padding: 16px 16px 13px; border-bottom: 1px solid var(--line); }
.demo-phone-head > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--berry), var(--lavender)); color: #fff; font-weight: 800; }
.demo-phone-head div { display: grid; line-height: 1.15; }
.demo-phone-head b { font-size: 13px; }
.demo-phone-head small { margin-top: 3px; color: var(--sage); font-size: 10px; }
.demo-phone-head i { font-style: normal; color: var(--muted); }
.demo-phone-body { padding: 22px 18px; }
.demo-label { color: var(--berry); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.demo-phone-body h4 { margin: 10px 0 0; font-family: var(--font-display); font-size: 24px; font-weight: 500; line-height: 1.1; }
.demo-phone-body > p { margin: 10px 0 17px; color: var(--muted); font-size: 12px; }
.demo-phone-body [data-phone-buttons] { display: grid; gap: 8px; }
.demo-phone-body [data-phone-buttons] button { min-height: 44px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 13px; background: #fff; text-align: left; font-size: 11px; font-weight: 700; }
.demo-phone-body [data-phone-buttons] button:first-child { border-color: rgba(138,63,98,.3); background: var(--surface-soft); }
.demo-result-card { margin-top: 14px; padding: 13px; border-radius: 14px; background: var(--surface-sage); }
.demo-result-card span { color: #66806a; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.demo-result-card b { display: block; margin-top: 6px; color: #405342; font-size: 11px; line-height: 1.35; }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-grid::before { content: ""; position: absolute; left: 16.7%; right: 16.7%; top: 45px; height: 1px; background: var(--line-strong); }
.process-card { position: relative; z-index: 1; min-height: 320px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--bg); }
.process-card > span { display: grid; width: 56px; height: 56px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: var(--surface); color: var(--berry); font-size: 12px; font-weight: 800; }
.process-card h3 { margin: 58px 0 0; font-family: var(--font-display); font-size: 30px; font-weight: 500; line-height: 1.12; }
.process-card p { margin: 15px 0 0; color: var(--muted); }
.process-card small { display: inline-block; margin-top: 22px; padding: 7px 10px; border-radius: 999px; background: var(--surface-lavender); color: var(--lavender-dark); font-size: 11px; font-weight: 700; }

.inside { background: var(--surface); border-block: 1px solid rgba(96,72,88,.10); }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bento-card { position: relative; min-height: 260px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; overflow: hidden; }
.bento-large { grid-column: span 2; display: grid; grid-template-columns: 1fr 230px; gap: 20px; }
.bento-accent { grid-column: span 2; display: grid; grid-template-columns: 1fr 280px; gap: 20px; background: linear-gradient(135deg, #f8ecf1 0%, #f1eef8 100%); }
.bento-index { color: rgba(138,63,98,.55); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.bento-card h3 { margin: 42px 0 0; font-family: var(--font-display); font-size: 29px; font-weight: 500; line-height: 1.12; }
.bento-large h3, .bento-accent h3 { margin-top: 26px; font-size: 36px; }
.bento-card p { margin: 14px 0 0; color: var(--muted); }
.mini-preview { align-self: end; justify-self: end; width: 210px; height: 210px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface-soft); box-shadow: inset 0 0 0 12px rgba(255,255,255,.55); }
.mini-preview-hero { position: relative; padding: 44px 24px; }
.mini-preview-hero span { display: block; width: 62%; height: 9px; border-radius: 9px; background: var(--berry-soft); }
.mini-preview-hero b { display: block; width: 84%; height: 48px; margin-top: 14px; border-radius: 12px; background: #fff; }
.mini-preview-hero i { display: block; height: 28px; margin-top: 10px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.action-pill { align-self: end; padding: 20px; border: 1px solid rgba(138,63,98,.18); border-radius: 18px; background: rgba(255,255,255,.72); font-size: 14px; font-weight: 700; }
.action-pill span { float: right; color: var(--berry); }

.principles-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.principles-copy { position: sticky; top: 118px; }
.principles-copy h2 { font-size: clamp(40px, 5vw, 64px); }
.principles-copy > p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.principles-list { display: grid; }
.principles-list article { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.principles-list article:first-child { border-top: 1px solid var(--line); }
.principles-list span { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: var(--surface-soft); color: var(--berry); font-size: 11px; font-weight: 900; }
.principles-list h3 { margin: 2px 0 0; font-family: var(--font-display); font-size: 28px; font-weight: 500; }
.principles-list p { margin: 8px 0 0; color: var(--muted); }

.use-cases { background: var(--surface-lavender); }
.use-case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.use-card { position: relative; min-height: 300px; padding: 24px; border: 1px solid rgba(98,85,142,.16); border-radius: var(--radius-md); background: rgba(255,255,255,.62); transition: transform .2s ease, background .2s ease; }
.use-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.86); }
.use-card > span { color: var(--lavender-dark); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.use-card h3 { margin: 72px 0 0; font-family: var(--font-display); font-size: 28px; font-weight: 500; line-height: 1.12; }
.use-card p { margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.use-card i { position: absolute; right: 22px; top: 20px; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(98,85,142,.2); border-radius: 50%; color: var(--lavender-dark); font-style: normal; }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fit-card { min-height: 500px; padding: 38px; border-radius: var(--radius-lg); }
.fit-card > span { display: inline-flex; padding: 7px 11px; border-radius: 999px; font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.fit-card h2 { margin-top: 28px; font-size: clamp(35px, 4vw, 50px); }
.fit-card ul { display: grid; gap: 13px; margin: 42px 0 0; padding: 0; list-style: none; }
.fit-card li { position: relative; padding-left: 28px; }
.fit-card li::before { position: absolute; left: 0; top: 0; font-weight: 900; }
.fit-positive { border: 1px solid rgba(123,146,126,.22); background: var(--surface-sage); }
.fit-positive > span { background: rgba(123,146,126,.14); color: #506653; }
.fit-positive li::before { content: "✓"; color: #55715a; }
.fit-neutral { border: 1px solid var(--line); background: var(--surface-soft); }
.fit-neutral > span { background: rgba(138,63,98,.08); color: var(--berry); }
.fit-neutral li::before { content: "—"; color: var(--berry); }

.pricing { background: var(--surface); border-block: 1px solid rgba(96,72,88,.10); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 520px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.price-card.is-featured { border-color: rgba(138,63,98,.35); background: linear-gradient(180deg, #fff 0%, #fbf1f5 100%); box-shadow: 0 22px 60px rgba(138,63,98,.13); }
.price-badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); padding: 7px 13px; border-radius: 999px; background: var(--berry); color: #fff; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.price-head { display: grid; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.price-head span { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.price-head b { margin-top: 16px; font-family: var(--font-display); font-size: 42px; font-weight: 500; letter-spacing: -.03em; line-height: 1; }
.price-head small { margin-top: 8px; color: var(--muted); }
.price-card > p { margin: 22px 0 0; color: var(--muted); }
.price-card ul { display: grid; gap: 10px; margin: 24px 0 28px; padding: 0; list-style: none; font-size: 14px; }
.price-card li { position: relative; padding-left: 19px; }
.price-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 1px; background: var(--berry); }
.price-card .button { margin-top: auto; }
.price-clarity { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 18px; padding: 24px 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--bg); }
.price-clarity div { max-width: 780px; }
.price-clarity span { font-weight: 800; }
.price-clarity p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.text-button { display: inline-flex; align-items: center; gap: 10px; padding: 0; border: 0; background: transparent; color: var(--berry); font-weight: 800; cursor: pointer; white-space: nowrap; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.faq .section-heading { position: sticky; top: 118px; margin-bottom: 0; }
.faq .section-heading h2 { font-size: clamp(40px, 5vw, 62px); }
.faq .section-heading .button { margin-top: 28px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; font-weight: 750; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { display: grid; flex: 0 0 auto; width: 28px; height: 28px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--berry); transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -6px 44px 24px 0; color: var(--muted); }

.final { padding-top: 20px; padding-bottom: 72px; }
.final-card { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; padding: 64px; border-radius: 40px; background: linear-gradient(135deg, #6e3653 0%, #874766 48%, #6c5c96 100%); color: #fff; overflow: hidden; box-shadow: 0 30px 80px rgba(95,54,79,.22); }
.final-decoration { position: absolute; border-radius: 50%; pointer-events: none; }
.final-decoration-one { width: 420px; height: 420px; right: -160px; top: -170px; border: 1px solid rgba(255,255,255,.15); }
.final-decoration-two { width: 240px; height: 240px; left: 38%; bottom: -150px; background: rgba(255,255,255,.06); }
.final-copy { position: relative; z-index: 2; }
.final-copy h2 { font-size: clamp(42px, 5vw, 65px); }
.final-copy > p:not(.eyebrow) { margin: 22px 0 0; color: rgba(255,255,255,.75); font-size: 18px; }
.final-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.final-copy small { display: block; margin-top: 24px; color: rgba(255,255,255,.58); }
.final-copy code { font-size: .92em; }
.final-route { position: relative; z-index: 2; display: grid; align-content: center; gap: 14px; }
.final-route div { padding: 20px 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.final-route span { color: rgba(255,255,255,.6); font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.final-route b, .final-route small { display: block; }
.final-route b { margin-top: 5px; font-family: var(--font-display); font-size: 27px; font-weight: 500; }
.final-route small { margin-top: 2px; color: rgba(255,255,255,.65); }
.final-route > i { width: 1px; height: 18px; margin-left: 28px; background: rgba(255,255,255,.25); }

.site-footer { padding: 28px 0 38px; }
.footer-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer-row > p { margin: 0; color: var(--muted); font-size: 13px; }
.footer-row > a:last-child { justify-self: end; color: var(--berry); font-weight: 800; font-size: 13px; }

.sticky-cta { position: fixed; right: 20px; bottom: 20px; z-index: 80; display: none; align-items: center; gap: 12px; min-height: 48px; padding: 0 8px 0 18px; border-radius: 999px; background: var(--berry); color: #fff; box-shadow: 0 14px 34px rgba(138,63,98,.28); font-size: 13px; font-weight: 800; }
.sticky-cta b { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.15); }

.brief-dialog { width: min(660px, calc(100% - 28px)); max-height: calc(100vh - 32px); margin: auto; padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: var(--bg); color: var(--ink); box-shadow: 0 30px 90px rgba(52,35,46,.28); overflow: auto; }
.brief-dialog::backdrop { background: rgba(45,32,41,.52); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; top: 16px; right: 16px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; font-size: 24px; cursor: pointer; }
.brief-dialog h2 { margin: 0; padding-right: 44px; font-family: var(--font-display); font-size: 42px; font-weight: 500; line-height: 1.05; }
.brief-dialog > p:not(.eyebrow) { color: var(--muted); }
.brief-dialog form { display: grid; gap: 14px; margin-top: 24px; }
.brief-dialog label { display: grid; gap: 7px; font-size: 13px; font-weight: 750; }
.brief-dialog input, .brief-dialog select, .brief-dialog textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 13px; background: #fff; color: var(--ink); }
.brief-dialog input, .brief-dialog select { min-height: 50px; padding: 0 14px; }
.brief-dialog textarea { padding: 14px; resize: vertical; }
.brief-output { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.brief-actions { display: flex; gap: 10px; margin-top: 12px; }
.brief-status { min-height: 24px; margin: 10px 0 0; color: var(--sage); font-size: 13px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .desktop-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr 430px; gap: 40px; }
  .hero h1 { font-size: clamp(46px, 5.8vw, 68px); }
  .insight-card-top { left: -20px; }
  .insight-card-bottom { right: -10px; }
  .demo-layout { grid-template-columns: 190px 1fr 340px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .price-card { min-height: 480px; }
}

@media (max-width: 960px) {
  .section { padding: 88px 0; }
  .desktop-nav, .header-button { display: none; }
  .menu-button { display: inline-flex; }
  .hero { padding-top: 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 610px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip div + div { border-left: 0; border-top: 1px solid var(--line); }
  .recognition-grid { grid-template-columns: 1fr; }
  .recognition-card { min-height: auto; }
  .line-icon { margin-bottom: 44px; }
  .product-grid, .principles-grid, .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .principles-copy, .faq .section-heading { position: static; }
  .diagnostic-shell { grid-template-columns: 1fr; padding: 42px; }
  .demo-layout { grid-template-columns: 1fr; }
  .demo-sidebar { grid-template-columns: repeat(4, 1fr); }
  .demo-sidebar button { text-align: center; }
  .demo-phone-wrap { min-height: 560px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .process-card { min-height: auto; }
  .process-card h3 { margin-top: 34px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-large, .bento-accent { grid-column: span 2; }
  .use-case-grid { grid-template-columns: repeat(2, 1fr); }
  .final-card { grid-template-columns: 1fr; gap: 50px; padding: 48px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .header-row { min-height: 68px; }
  .brand-copy small { display: none; }
  .hero { padding-top: 54px; padding-bottom: 54px; }
  .hero h1 { font-size: clamp(42px, 13vw, 60px); line-height: 1.02; }
  .hero h1 em { margin-top: 10px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-assurances { display: grid; gap: 12px; }
  .hero-visual { min-height: 540px; }
  .soft-shape-rose { width: 340px; height: 400px; }
  .soft-shape-lavender { width: 280px; height: 310px; }
  .insight-card { width: 178px; padding: 13px 14px; }
  .insight-card strong { font-size: 15px; }
  .insight-card-top { top: 25px; left: -2px; }
  .insight-card-bottom { right: -2px; bottom: 20px; }
  .phone-frame { width: 290px; }
  .proof-strip div { padding: 16px 18px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2 { font-size: clamp(36px, 11vw, 50px); }
  .section-heading p { font-size: 16px; }
  .recognition-card { padding: 24px; }
  .recognition-note { grid-template-columns: 1fr; gap: 8px; padding: 22px; }
  .recognition-note p { font-size: 20px; }
  .product-copy h2, .principles-copy h2 { font-size: clamp(38px, 11vw, 52px); }
  .product-map { padding: 20px; }
  .map-title { align-items: flex-start; flex-direction: column; }
  .product-map li { grid-template-columns: 42px 1fr; gap: 13px; padding-inline: 6px; }
  .product-map li > span { width: 40px; height: 40px; }
  .product-map li + li::before { left: 26px; }
  .diagnostic { padding-block: 48px; }
  .diagnostic-shell { gap: 32px; padding: 28px 20px; border-radius: 26px; }
  .diagnostic-copy h2 { font-size: clamp(36px, 10vw, 48px); }
  .diagnostic-options button { grid-template-columns: 36px 1fr 20px; gap: 10px; padding: 15px 12px; }
  .diagnostic-options button > span { width: 34px; height: 34px; }
  .demo-layout { padding: 14px; }
  .demo-sidebar { grid-template-columns: repeat(2, 1fr); }
  .demo-copy-panel { padding: 20px 8px; }
  .demo-copy-panel .button { width: 100%; }
  .demo-phone-wrap { min-height: 510px; }
  .demo-phone { width: 278px; }
  .process-card { padding: 24px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-accent { grid-column: auto; grid-template-columns: 1fr; }
  .mini-preview { justify-self: stretch; width: 100%; height: 180px; }
  .bento-accent .action-pill { margin-top: 20px; }
  .use-case-grid { grid-template-columns: 1fr; }
  .use-card { min-height: 250px; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-card { min-height: auto; padding: 28px 24px; }
  .fit-card h2 { font-size: clamp(34px, 10vw, 46px); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .price-card .button { margin-top: 14px; }
  .price-clarity { align-items: flex-start; flex-direction: column; }
  .faq-grid { gap: 36px; }
  .final { padding-top: 0; }
  .final-card { padding: 36px 22px; border-radius: 28px; }
  .final-copy h2 { font-size: clamp(38px, 11vw, 52px); }
  .final-actions { flex-direction: column; }
  .final-actions .button { width: 100%; }
  .footer-row { grid-template-columns: 1fr auto; }
  .footer-row > p { display: none; }
  .sticky-cta { display: inline-flex; }
  .brief-dialog { padding: 28px 20px; }
  .brief-dialog h2 { font-size: 36px; }
  .brief-actions { flex-direction: column; }
  .brief-actions .button { width: 100%; }
}

@media (max-width: 420px) {
  .brand-copy b { font-size: 18px; }
  .brand-sign { width: 34px; height: 34px; }
  .hero-visual { min-height: 500px; }
  .phone-frame { width: 270px; padding: 11px; }
  .insight-card { width: 155px; }
  .insight-card-top { top: 8px; }
  .insight-card-bottom { bottom: 4px; }
  .choice-button { font-size: 11px; }
  .demo-phone { width: 258px; }
  .sticky-cta span { display: none; }
  .sticky-cta { padding-left: 8px; }
}

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

/* Mobile refinements */
.sticky-cta { opacity: 0; transform: translateY(14px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.sticky-cta.is-shown { opacity: 1; transform: translateY(0); pointer-events: auto; }

@media (max-width: 720px) {
  .eyebrow { display: flex; align-items: flex-start; max-width: 100%; line-height: 1.45; white-space: normal; }
  .eyebrow span { flex: 0 0 26px; margin-top: .68em; }
}

/* Exact phone component transferred from LA_mobile_v_15.8.html.
   The source cover image was extracted unchanged from the embedded WebP in 15.8.
   Only sizing and the outer shadow are adapted to this landing's responsive grid. */
.phone-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  place-items: center;
  perspective: 1000px;
}

.phone {
  width: min(336px, 100%);
  max-width: 100%;
  padding: 10px;
  border: 1px solid rgba(138,63,98,.24);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,229,236,.92));
  box-shadow: 0 30px 80px rgba(91,59,78,.24), 0 0 72px rgba(129,117,173,.13);
  transform: none;
  transition: transform .22s ease, box-shadow .3s ease;
  will-change: transform;
}

.phone-screen {
  display: flex;
  min-height: 548px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background: radial-gradient(circle at 30% 0%, rgba(138,63,98,.22), transparent 35%), linear-gradient(180deg,#10182a 0%,#07101e 100%);
}

.phone-top {
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  padding: 10px 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.18);
  color: rgba(247,251,255,.76);
  font-size: 12px;
}
.phone-top span:first-child { order: 1; opacity: .72; }
.phone-top span:last-child { order: 2; color: rgba(247,251,255,.88); font-weight: 850; }

.phone-live-date {
  width: max-content;
  margin: 0 auto 9px;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  color: rgba(247,251,255,.72);
  font-size: 11.5px;
  font-weight: 750;
  line-height: 1;
}

.tg-message-card {
  margin: 0 12px 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(17,21,31,.94);
  box-shadow: 0 16px 42px rgba(0,0,0,.34);
}

.tg-cover-photo {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-image: url('../images/phone-cover-pastel.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.tg-cover-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.02));
  pointer-events: none;
}
.tg-cover-photo .tg-cover-badge,
.tg-cover-photo .tg-cover-title,
.tg-cover-photo .tg-cover-subtitle,
.tg-cover-photo .tg-cover-meta,
.tg-cover-photo .tg-portrait { display: none !important; }

.tg-copy { padding: 12px 13px 10px; }
.tg-copy-title { color: #fff; font-size: 14px; font-weight: 850; line-height: 1.28; }
.tg-copy-subtitle { margin-top: 6px; color: rgba(247,251,255,.78); font-size: 11.8px; line-height: 1.32; }
.tg-check-list { display: grid; gap: 6px; margin: 9px 0 0; padding: 0; list-style: none; }
.tg-check-list li { position: relative; padding-left: 17px; color: rgba(247,251,255,.84); font-size: 11.6px; line-height: 1.28; }
.tg-check-list li::before { content: '✓'; position: absolute; top: 0; left: 0; color: #d9b6cb; font-weight: 950; }

.tg-personalize-note,
.phone-cta { display: none; }

.tg-menu-wrap {
  display: grid;
  gap: 7px;
  padding: 0 12px 12px;
}
.menu-grid { display: grid; gap: 7px; margin-top: 4px; }
.menu-item {
  display: flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  color: rgba(247,251,255,.92);
  font-size: 12.4px;
  line-height: 1.25;
  text-align: center;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  animation: phoneMenuSoft 3.8s ease-in-out infinite;
}
.menu-item span:first-child { display: block; width: 100%; max-width: 100%; text-align: center; }
.menu-item:nth-child(2) { animation-delay: .22s; }
.menu-item:nth-child(3) { animation-delay: .44s; }
.menu-item:nth-child(4) { animation-delay: .66s; }
.menu-item:nth-child(5) { animation-delay: .88s; }
.menu-item:active {
  transform: scale(.97) translateX(3px);
  border-color: rgba(217,182,203,.42);
  background: rgba(138,63,98,.16);
  box-shadow: 0 0 18px rgba(138,63,98,.16);
}
@keyframes phoneMenuSoft {
  0%, 72%, 100% { transform: translateX(0); border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.055); }
  80% { transform: translateX(2px); border-color: rgba(217,182,203,.22); background: rgba(138,63,98,.11); }
  88% { transform: translateX(0); }
}

@media (max-width: 960px) {
  .hero-visual { min-height: 610px; }
  .phone { width: min(336px, 100%); }
}

@media (max-width: 720px) {
  .hero-visual { min-height: auto; padding: 30px 0 8px; }
  .phone-wrap { width: min(318px, 100%); margin-inline: auto; }
  .phone { width: 100%; }
  .phone-screen { min-height: 548px; }
}

@media (max-width: 420px) {
  .hero-visual { padding-top: 22px; }
  .phone-wrap { width: min(304px, 100%); }
  .phone { padding: 9px; border-radius: 35px; }
  .phone-screen { border-radius: 28px; }
  .tg-message-card { margin-inline: 10px; }
  .tg-menu-wrap { padding-inline: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .menu-item { animation: none !important; }
}

/* v4: light phone theme matched to the new pastel cover */
.phone {
  border-color: rgba(196, 91, 132, .22);
  background:
    linear-gradient(145deg, rgba(255,255,255,.99), rgba(255,241,246,.98) 52%, rgba(242,238,253,.96));
  box-shadow:
    0 28px 72px rgba(112, 70, 92, .16),
    0 0 0 7px rgba(255,255,255,.62),
    0 0 64px rgba(143, 127, 194, .13);
}

.phone-screen {
  border-color: rgba(168, 91, 128, .13);
  background:
    radial-gradient(circle at 18% -5%, rgba(255, 175, 199, .32), transparent 34%),
    radial-gradient(circle at 95% 32%, rgba(174, 164, 224, .23), transparent 36%),
    linear-gradient(180deg, #fff8f8 0%, #fff5f7 46%, #f8f3fb 100%);
}

.phone-top {
  border-bottom-color: rgba(166, 91, 126, .12);
  background: linear-gradient(90deg, rgba(255,221,229,.88), rgba(248,229,242,.92));
  color: #6f5967;
}
.phone-top span:first-child { color: #786470; opacity: .9; }
.phone-top span:last-child { color: #392f38; }

.phone-live-date {
  border-color: rgba(217, 103, 146, .22);
  background: rgba(255, 246, 249, .94);
  color: #a34e73;
  box-shadow: 0 5px 14px rgba(148, 79, 107, .08);
}

.tg-message-card {
  border-color: rgba(180, 97, 135, .15);
  background: rgba(255, 253, 253, .96);
  box-shadow: 0 16px 38px rgba(101, 71, 88, .12);
}

.tg-cover-photo {
  background-image: url('../images/phone-cover-pastel.webp');
  background-color: #fff3ef;
}
.tg-cover-photo::before {
  background: linear-gradient(180deg, rgba(255,255,255,.01), rgba(128, 76, 106, .015));
}

.tg-copy { background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,248,250,.98)); }
.tg-copy-title { color: #352d36; }
.tg-copy-subtitle { color: #6f6470; }
.tg-check-list li { color: #5f5560; }
.tg-check-list li::before { color: #e56f9c; }

.tg-menu-wrap { padding-top: 2px; }
.menu-item {
  border-color: rgba(159, 95, 127, .16);
  background: rgba(255,255,255,.74);
  color: #625468;
  box-shadow: 0 5px 14px rgba(105, 73, 91, .045);
}
.menu-item:nth-child(1) { background: linear-gradient(90deg, rgba(255,247,242,.96), rgba(255,251,248,.96)); }
.menu-item:nth-child(2) { background: linear-gradient(90deg, rgba(255,241,247,.98), rgba(255,248,251,.96)); }
.menu-item:nth-child(3) { background: linear-gradient(90deg, rgba(246,243,255,.98), rgba(252,250,255,.96)); }
.menu-item:nth-child(4) { background: linear-gradient(90deg, rgba(240,247,243,.98), rgba(250,253,251,.96)); }
.menu-item:nth-child(5) {
  border-color: rgba(142, 59, 98, .32);
  background: linear-gradient(135deg, #a64b76, #8a3f62 58%, #7765a7);
  color: #fff;
  box-shadow: 0 10px 24px rgba(138,63,98,.22);
}
.menu-item:active {
  border-color: rgba(166,75,118,.4);
  background: rgba(255,231,240,.94);
  box-shadow: 0 0 18px rgba(166,75,118,.13);
}
.menu-item:nth-child(5):active {
  background: linear-gradient(135deg, #934166, #73324f 60%, #65538f);
  color: #fff;
}
@keyframes phoneMenuSoft {
  0%, 72%, 100% { transform: translateX(0); border-color: rgba(159,95,127,.16); filter: none; }
  80% { transform: translateX(2px); border-color: rgba(213,111,153,.28); filter: brightness(1.012); }
  88% { transform: translateX(0); }
}


/* Production legal footer */
.footer-legal { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; margin-top: 18px; border-top: 1px solid var(--line); }
.legal-nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.legal-nav a { color: var(--muted); font-size: 13px; font-weight: 700; }
.legal-nav a:hover { color: var(--berry); }
.footer-legal small { color: var(--muted); font-size: 12px; white-space: nowrap; }
@media (max-width: 720px) {
  .footer-legal { align-items: flex-start; flex-direction: column; padding-bottom: 56px; }
  .legal-nav { display: grid; gap: 12px; }
}
