:root {
  --bg: #061531;
  --bg-deep: #041126;
  --panel: rgba(9, 26, 61, .72);
  --panel-deep: rgba(5, 18, 47, .85);
  --panel-light: rgba(31, 43, 102, .7);
  --line: rgba(139, 159, 219, .32);
  --line-soft: rgba(141, 163, 222, .18);
  --text: #f8f8fc;
  --muted: #b7bfd4;
  --muted-2: #8f9ab8;
  --violet: #9f8dfc;
  --violet-soft: #c6bbff;
  --blue: #6677ef;
  --gold: #f2bf60;
  --danger: #ff8c9e;
  --radius: 26px;
  --shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--bg-deep);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button, textarea { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
svg { display: block; }

.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 34%, rgba(87, 89, 184, .22), transparent 22%),
    radial-gradient(circle at 86% 58%, rgba(95, 61, 158, .23), transparent 26%),
    radial-gradient(circle at 16% 80%, rgba(64, 85, 170, .14), transparent 25%),
    linear-gradient(112deg, #06152f 0%, #051733 42%, #0a1640 72%, #111741 100%);
}
.background::before,
.background::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.95) 0 1px, transparent 1.35px),
    radial-gradient(circle, rgba(185,197,255,.84) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,.62) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(188,172,255,.8) 0 1.2px, transparent 1.7px);
  background-size: 151px 137px, 233px 211px, 317px 283px, 421px 367px;
  background-position: 19px 17px, 90px 70px, 40px 120px, 185px 35px;
  opacity: .5;
}
.background::after { transform: rotate(17deg) scale(1.1); opacity: .25; }

.nebula { position: absolute; border-radius: 50%; filter: blur(65px); opacity: .5; }
.nebula-one { width: 530px; height: 400px; right: 5%; top: 18%; background: rgba(92, 70, 180, .34); transform: rotate(-25deg); }
.nebula-two { width: 430px; height: 300px; right: 24%; bottom: 9%; background: rgba(162, 91, 153, .18); }

.crescent {
  position: absolute;
  top: 14.5vh;
  right: 10.8vw;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #fff9e0 0%, #ffe4a0 42%, #e4b66a 78%, #c69042 100%);
  box-shadow: 0 0 28px rgba(255, 221, 150, .28), 0 0 95px rgba(157, 120, 255, .2);
  transform: rotate(-14deg);
}
.crescent::after {
  content: "";
  position: absolute;
  width: 143px;
  height: 143px;
  border-radius: 50%;
  top: -16px;
  left: -39px;
  background: #09183a;
  box-shadow: inset -16px 4px 28px rgba(67, 50, 122, .18);
}
.landscape { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 42vh; min-height: 360px; opacity: .78; }

.site-shell { position: relative; z-index: 1; min-height: 100vh; }
.container { width: min(1310px, calc(100% - 88px)); margin: 0 auto; }

.site-header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 16px; color: var(--text); text-decoration: none; font-size: 33px; font-weight: 350; letter-spacing: -.03em; }
.brand-symbol { width: 57px; height: 57px; color: #f4cd82; display: grid; place-items: center; filter: drop-shadow(0 0 10px rgba(244,205,130,.1)); }
.brand-symbol svg { width: 100%; height: 100%; }
.site-nav { display: flex; align-items: center; gap: clamp(32px, 4vw, 72px); }
.site-nav a { color: #f3f2f8; text-decoration: none; font-size: 19px; font-weight: 400; transition: color .2s ease, opacity .2s ease; }
.site-nav a:hover { color: var(--violet-soft); }

.screen { min-height: calc(100vh - 112px); padding: 56px 0 80px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(380px, .75fr); gap: 84px; align-items: start; }
.hero-copy h1 { margin: 18px 0 22px; max-width: 840px; font-size: clamp(54px, 5.2vw, 78px); line-height: 1.04; letter-spacing: -.048em; font-weight: 760; }
.hero-copy h1 span { color: #bbaeff; text-shadow: 0 0 30px rgba(163, 140, 255, .14); }
.hero-lead { margin: 0 0 28px; max-width: 770px; color: #c3cadc; font-size: 20px; line-height: 1.52; }

.glass-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(9, 29, 67, .78), rgba(8, 22, 55, .7));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.025);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.dream-form { max-width: 760px; border-radius: 28px; padding: 23px; }
.dream-form label { display: block; margin: 0 0 11px; padding-left: 2px; font-size: 17px; font-weight: 650; }
.textarea-wrap { position: relative; }
textarea {
  display: block;
  width: 100%;
  min-height: 145px;
  resize: vertical;
  border: 1px solid rgba(148, 165, 221, .54);
  border-radius: 15px;
  outline: none;
  padding: 17px 18px 38px;
  background: rgba(4, 18, 48, .72);
  color: #f8f8fd;
  font-size: 17px;
  line-height: 1.55;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea::placeholder { color: #8e98b6; }
textarea:focus { border-color: rgba(169, 151, 255, .9); box-shadow: 0 0 0 4px rgba(142, 119, 255, .1); }
textarea.invalid { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(255, 91, 116, .08); }
.counter { position: absolute; bottom: 12px; right: 15px; color: #8f9ab7; font-size: 13px; }
.form-error { min-height: 18px; margin: 7px 0 -4px 2px; color: #ff9bac; font-size: 13px; }

.primary-button {
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(214, 205, 255, .68);
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(104deg, #5d75ed 0%, #7d78ee 47%, #a08df5 100%);
  box-shadow: 0 11px 34px rgba(84, 81, 222, .34), inset 0 1px 0 rgba(255,255,255,.28);
  font-size: 21px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.primary-button:hover { transform: translateY(-2px); filter: brightness(1.045); box-shadow: 0 15px 42px rgba(84, 81, 222, .42), inset 0 1px 0 rgba(255,255,255,.3); }
.primary-button:active { transform: translateY(0); }
.primary-button svg { width: 25px; height: 25px; }
.trust-row { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 14px; color: #929db9; font-size: 13px; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg, .result-trust svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.trust-row i, .result-trust i { width: 4px; height: 4px; border-radius: 50%; background: #6e7997; }

.pricing-strip { display: flex; align-items: center; gap: 22px; margin-top: 31px; color: #e8ebf5; font-size: 17px; }
.pricing-strip > span { display: flex; align-items: center; gap: 14px; }
.pricing-strip b { width: 1px; height: 43px; background: rgba(183, 194, 227, .36); }
.round-icon { width: 46px; height: 46px; border: 1px solid rgba(152, 167, 216, .48); border-radius: 50%; display: grid; place-items: center; }
.sparkle-icon { color: #f3f0ff; font-size: 19px; }
.crown { color: var(--gold); font-size: 32px; line-height: 1; }
.pricing-strip strong { color: var(--gold); font-weight: 650; }

.benefits { margin-top: 214px; border-radius: 28px; padding: 21px 29px; background: linear-gradient(155deg, rgba(26, 41, 93, .58), rgba(23, 35, 82, .45)); }
.benefit-item { display: grid; grid-template-columns: 88px 1fr; gap: 24px; align-items: center; min-height: 158px; padding: 22px 0; }
.benefit-item + .benefit-item { border-top: 1px solid var(--line-soft); }
.benefit-icon { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; color: #bcaaff; border: 1px solid rgba(155, 164, 222, .54); background: radial-gradient(circle at 50% 40%, rgba(95, 87, 196, .26), rgba(27, 39, 93, .3)); box-shadow: inset 0 0 26px rgba(99, 81, 196, .15), 0 0 26px rgba(82, 66, 173, .09); }
.benefit-icon svg { width: 37px; height: 37px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.benefit-item h2 { margin: 0 0 10px; font-size: 23px; line-height: 1.15; font-weight: 690; letter-spacing: -.02em; }
.benefit-item p { margin: 0; color: #b7c0d5; font-size: 16px; line-height: 1.55; }

.loading-screen, .result-screen { display: none; }
.loading-screen.active { display: flex; align-items: center; justify-content: center; }
.result-screen.active { display: block; animation: screen-in .45s ease both; }
.input-screen.hidden { display: none; }
@keyframes screen-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.loading-content { width: min(600px, 100%); margin-top: -56px; text-align: center; }
.dream-orb { position: relative; width: 130px; height: 130px; margin: 0 auto 35px; border-radius: 50%; background: radial-gradient(circle at 36% 28%, #e9e3ff 0%, #b4a4ff 17%, #7169d9 42%, #242f7b 71%, #0c193f 100%); box-shadow: 0 0 34px rgba(154, 135, 255, .72), 0 0 90px rgba(112, 85, 231, .38); animation: orb-breathe 2.1s ease-in-out infinite; }
.dream-orb::before, .dream-orb::after, .dream-orb span { content: ""; position: absolute; inset: -18px; border: 1px solid rgba(187, 173, 255, .24); border-radius: 50%; animation: orbit-ring 3.4s linear infinite; }
.dream-orb::after { inset: -37px; border-color: rgba(111, 129, 227, .18); animation-duration: 5.1s; animation-direction: reverse; }
.dream-orb span { inset: 19px; border-color: rgba(255,255,255,.15); animation-duration: 2.8s; }
@keyframes orb-breathe { 0%,100% { transform: scale(.95); filter: brightness(.92); } 50% { transform: scale(1.045); filter: brightness(1.08); } }
@keyframes orbit-ring { from { transform: rotate(0deg) scaleX(.82); } to { transform: rotate(360deg) scaleX(.82); } }
.loading-kicker { margin: 0 0 12px; color: var(--gold); font-size: 13px; letter-spacing: .13em; text-transform: uppercase; }
.loading-content h2 { margin: 0 0 12px; font-size: clamp(34px, 4vw, 52px); letter-spacing: -.04em; }
.loading-content > p:last-of-type { margin: 0 auto; color: #b6bfd5; font-size: 18px; line-height: 1.55; }
.progress-track { width: min(430px, 88%); height: 3px; margin: 34px auto 0; overflow: hidden; border-radius: 100px; background: rgba(133, 148, 204, .18); }
.progress-track span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #7184f3, #b4a3ff); transition: width 1s ease; box-shadow: 0 0 14px rgba(164, 147, 255, .6); }

.result-screen { padding-top: 42px; }
.result-heading h1 { margin: 0 0 14px; font-size: clamp(50px, 5vw, 68px); line-height: 1.06; letter-spacing: -.045em; }
.result-heading p { margin: 0; color: #bbc3d8; font-size: 19px; line-height: 1.58; }
.dream-summary { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; align-items: center; margin-top: 25px; border-radius: 22px; padding: 17px 22px; max-width: 845px; }
.dream-summary strong { display: block; margin-bottom: 7px; font-size: 16px; }
.dream-summary p { margin: 0; color: #aeb8cf; font-size: 16px; line-height: 1.46; white-space: pre-line; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ghost-button { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; padding: 0 17px; border: 1px solid rgba(142, 159, 216, .34); border-radius: 11px; background: rgba(4, 16, 43, .36); color: #e5e8f4; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.ghost-button:hover { border-color: rgba(173, 155, 255, .65); background: rgba(21, 29, 72, .5); }
.ghost-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.result-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: 18px; margin-top: 18px; }
.short-analysis, .premium-analysis { min-height: 447px; border-radius: 23px; padding: 22px 23px; }
.card-title-row { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; }
.benefit-icon.small { width: 61px; height: 61px; }
.benefit-icon.small svg { width: 31px; height: 31px; }
.card-title-row h2, .premium-title-row h2 { margin: 0; font-size: 24px; font-weight: 620; }
.analysis-box { border: 1px solid rgba(126, 149, 214, .25); border-radius: 14px; overflow: hidden; padding: 5px 15px; }
.analysis-row { display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 14px; align-items: start; padding: 14px 0; }
.analysis-row + .analysis-row { border-top: 1px solid rgba(129, 149, 208, .11); }
.analysis-icon { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #b9a7ff; border: 1px solid rgba(145, 151, 216, .4); background: rgba(58, 62, 145, .18); font-size: 18px; }
.analysis-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.analysis-row h3 { margin: 1px 0 5px; font-size: 15px; line-height: 1.25; }
.analysis-row p { margin: 0; color: #aab4cc; font-size: 14px; line-height: 1.45; }
.short-note { margin: 15px 2px 0; color: #aeb7cc; font-size: 14px; line-height: 1.5; }

.premium-analysis { position: relative; overflow: hidden; padding: 24px 25px 20px; border-color: rgba(179, 156, 255, .9); background: linear-gradient(143deg, rgba(58, 58, 154, .89) 0%, rgba(36, 39, 115, .86) 45%, rgba(20, 28, 79, .86) 100%); box-shadow: 0 0 0 1px rgba(174, 153, 255, .12), 0 0 45px rgba(116, 88, 228, .4), var(--shadow); }
.premium-analysis::before { content: ""; position: absolute; width: 360px; height: 300px; right: -140px; top: -160px; border-radius: 50%; background: rgba(181, 158, 255, .3); filter: blur(50px); }
.premium-title-row { position: relative; display: flex; align-items: center; gap: 17px; }
.premium-title-row p { margin: 5px 0 0; color: #c5c7e0; font-size: 15px; }
.premium-lock { width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; color: #f0ebff; border: 1px solid rgba(208, 197, 255, .45); background: rgba(69, 65, 160, .36); box-shadow: 0 0 23px rgba(170, 148, 255, .14); }
.premium-lock svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.premium-list { position: relative; display: grid; gap: 12px; margin: 22px 0 18px; padding: 0; list-style: none; }
.premium-list li { color: #f0f1fc; font-size: 15px; }
.premium-list li::before { content: "✓"; display: inline-grid; width: 17px; height: 17px; place-items: center; margin-right: 10px; border: 1px solid #ada2ff; border-radius: 50%; color: #c8bfff; font-size: 10px; }
.premium-teaser { position: relative; display: grid; grid-template-columns: 35px 1fr; gap: 13px; align-items: start; margin-bottom: 16px; border: 1px solid rgba(193, 181, 255, .24); border-radius: 12px; padding: 12px 15px; background: rgba(20, 24, 76, .39); }
.premium-teaser span { color: #c6b6ff; font-size: 24px; }
.premium-teaser p { margin: 1px 0 0; color: #c2c7df; font-size: 14px; line-height: 1.45; }
.premium-button { position: relative; min-height: 63px; border-radius: 14px; font-size: 18px; }
.result-trust { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 21px; color: #98a3bd; font-size: 13px; }
.result-trust span { display: inline-flex; align-items: center; gap: 8px; }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 25px 0 32px; color: rgba(165, 175, 200, .72); font-size: 12px; }
.site-footer p { margin: 0; }
.site-footer p:first-child { max-width: 720px; }

.modal-backdrop { position: fixed; inset: 0; z-index: 20; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(1, 7, 21, .72); backdrop-filter: blur(10px); }
.modal-backdrop.open { display: flex; animation: modal-in .22s ease both; }
@keyframes modal-in { from { opacity: 0; } to { opacity: 1; } }
.modal { position: relative; width: min(520px, 100%); border-radius: 26px; padding: 37px; text-align: center; }
.modal-close { position: absolute; top: 12px; right: 16px; border: 0; background: transparent; color: #aeb7cf; font-size: 30px; line-height: 1; cursor: pointer; }
.modal-icon { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%; color: #c2b4ff; border: 1px solid rgba(170, 156, 255, .5); background: rgba(95, 78, 196, .18); font-size: 24px; }
.modal h2 { margin: 0 0 12px; font-size: 28px; letter-spacing: -.03em; }
.modal p { margin: 0 0 24px; color: #b4bdd2; line-height: 1.6; }
.modal .primary-button { min-height: 58px; font-size: 17px; }

@media (max-width: 1120px) {
  .container { width: min(100% - 54px, 1120px); }
  .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); gap: 42px; }
  .benefits { margin-top: 190px; }
  .benefit-item { grid-template-columns: 70px 1fr; gap: 18px; }
  .benefit-icon { width: 64px; height: 64px; }
  .benefit-icon svg { width: 32px; height: 32px; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 36px, 760px); }
  .site-header { height: 86px; }
  .brand { font-size: 25px; }
  .brand-symbol { width: 45px; height: 45px; }
  .site-nav { gap: 24px; }
  .site-nav a { font-size: 15px; }
  .screen { min-height: calc(100vh - 86px); padding-top: 30px; }
  .hero-grid, .result-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(45px, 8vw, 62px); }
  .hero-lead { font-size: 18px; }
  .dream-form { max-width: none; }
  .benefits { margin-top: 12px; }
  .benefit-item { min-height: auto; }
  .crescent { width: 95px; height: 95px; top: 120px; right: 5vw; opacity: .7; }
  .crescent::after { width: 98px; height: 98px; top: -11px; left: -27px; }
  .landscape { height: 34vh; opacity: .5; }
  .dream-summary { max-width: none; }
  .short-analysis, .premium-analysis { min-height: auto; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 580px); }
  .site-header { height: 76px; }
  .brand { font-size: 22px; gap: 10px; }
  .brand-symbol { width: 40px; height: 40px; }
  .site-nav { gap: 13px; }
  .site-nav a { font-size: 12px; }
  .screen { padding: 24px 0 55px; }
  .hero-copy h1 { margin-top: 8px; font-size: 43px; line-height: 1.06; }
  .hero-lead { font-size: 16px; line-height: 1.55; }
  .desktop-only { display: none; }
  .dream-form { padding: 17px; border-radius: 21px; }
  textarea { min-height: 180px; font-size: 16px; }
  .primary-button { min-height: 62px; padding: 10px 16px; font-size: 17px; gap: 10px; }
  .trust-row { justify-content: flex-start; flex-wrap: wrap; gap: 10px 13px; }
  .trust-row i { display: none; }
  .pricing-strip { flex-direction: column; align-items: flex-start; gap: 12px; font-size: 15px; }
  .pricing-strip b { display: none; }
  .round-icon { width: 39px; height: 39px; }
  .benefits { padding: 12px 18px; border-radius: 21px; }
  .benefit-item { grid-template-columns: 59px 1fr; gap: 14px; padding: 20px 0; }
  .benefit-icon { width: 52px; height: 52px; }
  .benefit-icon svg { width: 27px; height: 27px; }
  .benefit-item h2 { font-size: 19px; }
  .benefit-item p { font-size: 14px; }
  .result-heading h1 { font-size: 42px; }
  .result-heading p { font-size: 16px; }
  .dream-summary { grid-template-columns: 1fr; padding: 17px; }
  .ghost-button { justify-content: center; }
  .short-analysis, .premium-analysis { padding: 18px; border-radius: 20px; }
  .analysis-row { grid-template-columns: 42px minmax(0,1fr); gap: 11px; }
  .analysis-icon { width: 38px; height: 38px; }
  .result-trust { justify-content: flex-start; flex-wrap: wrap; gap: 10px 14px; }
  .result-trust i { display: none; }
  .loading-content { margin-top: -20px; }
  .dream-orb { width: 105px; height: 105px; }
  .modal { padding: 30px 22px 24px; }
}

@media (max-width: 430px) {
  .site-nav a:nth-child(2) { display: none; }
  .hero-copy h1 { font-size: 39px; }
  .hero-lead { font-size: 15px; }
  .pricing-strip > span { gap: 10px; }
  .result-heading h1 { font-size: 39px; }
}

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

/* Paid deep-analysis screen */
.deep-result-screen { display: none; padding-top: 42px; }
.deep-result-screen.active { display: block; animation: screen-in .45s ease both; }
.premium-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  margin-bottom: 15px;
  border: 1px solid rgba(190, 175, 255, .42);
  border-radius: 999px;
  color: #d5cbff;
  background: rgba(74, 64, 170, .18);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.deep-heading { max-width: 900px; }
.deep-heading p { max-width: 800px; }
.deep-dream-summary { max-width: 1000px; margin-top: 28px; }
.deep-analysis-card {
  width: min(1000px, 100%);
  margin-top: 20px;
  padding: 30px 34px 38px;
  border-radius: 26px;
  border-color: rgba(177, 159, 255, .58);
  background: linear-gradient(145deg, rgba(27, 35, 91, .88), rgba(8, 23, 58, .8));
  box-shadow: 0 0 40px rgba(102, 82, 218, .18), var(--shadow);
}
.deep-title-row { padding-bottom: 24px; border-bottom: 1px solid rgba(151, 159, 218, .2); }
.deep-ready-icon { color: #d6c9ff; font-size: 26px; }
.deep-analysis-text { padding-top: 5px; }
.deep-analysis-text h2 {
  margin: 29px 0 11px;
  color: #f4f2ff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.015em;
}
.deep-analysis-text h2:first-child { margin-top: 20px; }
.deep-analysis-text p {
  max-width: 900px;
  margin: 0 0 13px;
  color: #c0c7da;
  font-size: 16px;
  line-height: 1.72;
}
.deep-analysis-text .deep-list-item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}
.deep-analysis-text .deep-list-item::before {
  content: "✦";
  position: absolute;
  left: 2px;
  top: 1px;
  color: #aa99ff;
  font-size: 12px;
}
.deep-actions { width: min(1000px, 100%); margin: 22px 0 5px; }
.deep-new-button { width: min(360px, 100%); min-height: 60px; font-size: 17px; }
.deep-actions p { margin: 13px 0 0; color: #8f9ab7; font-size: 13px; line-height: 1.5; }
.primary-button:disabled { cursor: wait; opacity: .72; transform: none; filter: none; }

@media (max-width: 640px) {
  .deep-result-screen { padding-top: 24px; }
  .deep-analysis-card { padding: 22px 18px 28px; border-radius: 20px; }
  .deep-analysis-text h2 { margin-top: 25px; font-size: 18px; }
  .deep-analysis-text p { font-size: 15px; line-height: 1.65; }
  .deep-title-row { align-items: flex-start; }
}


/* Legal and checkout transparency */
.purchase-legal-note {
  margin: 11px 8px 0;
  color: #9da8c2;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}
.purchase-legal-note a,
.footer-links a,
.legal-card a { color: #c9c0ff; text-decoration: none; }
.purchase-legal-note a:hover,
.footer-links a:hover,
.legal-card a:hover { text-decoration: underline; }

.site-footer {
  border-top: 1px solid rgba(151, 163, 207, .16);
  padding-top: 28px;
}
.footer-copy { display: grid; gap: 8px; }
.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 620px;
}
.footer-links a { color: rgba(202, 208, 226, .8); font-size: 12px; }

.legal-shell { position: relative; z-index: 1; min-height: 100vh; }
.legal-main { padding: 34px 0 70px; }
.legal-card {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 38px 44px 44px;
  border-radius: 28px;
}
.legal-kicker {
  margin: 0 0 12px;
  color: #b8adff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.legal-card h1 {
  margin: 0 0 13px;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.legal-updated { margin: 0 0 30px; color: #8f9ab8; font-size: 13px; }
.legal-card h2 { margin: 30px 0 11px; color: #f3f2ff; font-size: 21px; line-height: 1.25; }
.legal-card h2:first-of-type { margin-top: 8px; }
.legal-card p,
.legal-card li { color: #c0c8da; font-size: 15px; line-height: 1.72; }
.legal-card p { margin: 0 0 13px; }
.legal-card ul,
.legal-card ol { margin: 0 0 16px; padding-left: 22px; }
.legal-card li { margin-bottom: 7px; }
.legal-details {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px 20px;
  margin: 22px 0 10px;
  padding: 21px 23px;
  border: 1px solid rgba(166, 157, 232, .24);
  border-radius: 18px;
  background: rgba(19, 29, 72, .36);
}
.legal-details dt { color: #929dbc; font-size: 14px; }
.legal-details dd { margin: 0; color: #edf0fa; font-size: 14px; word-break: break-word; }
.legal-notice {
  margin: 22px 0;
  padding: 17px 19px;
  border: 1px solid rgba(180, 166, 255, .28);
  border-radius: 15px;
  background: rgba(63, 55, 142, .16);
}
.legal-notice p { margin: 0; }
.legal-back { display: inline-flex; margin-top: 25px; color: #cfc7ff; text-decoration: none; font-size: 14px; }
.legal-back:hover { text-decoration: underline; }
.legal-footer { width: min(920px, calc(100% - 88px)); margin: 0 auto; }

@media (max-width: 900px) {
  .footer-links { justify-content: flex-start; }
  .legal-main { padding-top: 18px; }
  .legal-card { padding: 30px 28px 36px; }
}

@media (max-width: 640px) {
  .purchase-legal-note { margin-left: 0; margin-right: 0; font-size: 11px; }
  .footer-links { display: grid; gap: 10px; }
  .legal-card { padding: 24px 19px 30px; border-radius: 20px; }
  .legal-card h1 { font-size: 38px; }
  .legal-card h2 { font-size: 19px; }
  .legal-card p, .legal-card li { font-size: 14px; line-height: 1.66; }
  .legal-details { grid-template-columns: 1fr; gap: 3px; padding: 18px; }
  .legal-details dd { margin-bottom: 9px; }
  .legal-footer { width: min(100% - 28px, 580px); }
}
