﻿:root {
  color-scheme: light;
  --ink: #191817;
  --muted: #67615a;
  --paper: #fffdf8;
  --surface: #ffffff;
  --line: #e7ded0;
  --green: #1f6f5b;
  --green-dark: #174f43;
  --rose: #b84f63;
  --gold: #b9892d;
  --blue: #335c9b;
  --shadow: 0 18px 45px rgba(31, 36, 31, .12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(31,111,91,.12), transparent 34%),
    linear-gradient(300deg, rgba(184,79,99,.10), transparent 32%),
    var(--paper);
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(255,253,248,.88);
  border-bottom: 1px solid rgba(231,222,208,.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 12px; margin-top: 2px; }

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.top-nav a:hover { color: var(--green-dark); }

.home-hero, .dream-workspace {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(28px, 6vw, 72px) clamp(16px, 4vw, 56px) 28px;
}

.home-copy, .dream-intro {
  position: sticky;
  top: 96px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; max-width: 760px; font-size: clamp(42px, 7vw, 86px); line-height: .96; letter-spacing: 0; }
h2 { margin: 0; font-size: clamp(26px, 4vw, 42px); line-height: 1.05; letter-spacing: 0; }
h3 { margin: 8px 0; font-size: 18px; }

.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.primary-link, .primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  border: 0;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
}

.primary-link, .primary-button {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(31,111,91,.22);
}

.secondary-button {
  color: var(--green-dark);
  background: #edf6f2;
  border: 1px solid #cfe4db;
}

.feature-panel, .dream-form, .report-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}

.feature-panel {
  min-height: 360px;
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(rgba(255,255,255,.82), rgba(255,255,255,.92)),
    repeating-linear-gradient(135deg, rgba(31,111,91,.10) 0 12px, transparent 12px 24px);
}

.panel-kicker { color: var(--gold); font-weight: 800; font-size: 13px; }
.feature-panel p { color: var(--muted); line-height: 1.6; }

.mini-price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
}

.mini-price-row span {
  padding: 12px;
  border-radius: 8px;
  background: #f8f2e8;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
}

.section {
  padding: 42px clamp(16px, 4vw, 56px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
}

.service-card.active {
  background: #eff8f4;
  border-color: #bcded1;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #f4ecdc;
  color: var(--green-dark);
  font-weight: 800;
}

.service-card strong, .service-card small { display: block; }
.service-card small { color: var(--muted); margin-top: 8px; }

.disclaimer-band {
  display: grid;
  grid-template-columns: .6fr 1fr;
  gap: 24px;
  align-items: center;
  background: #172c27;
  color: #fff;
}

.disclaimer-band p:last-child { color: rgba(255,255,255,.78); line-height: 1.7; }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 26px clamp(16px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.dream-form {
  padding: clamp(18px, 3vw, 28px);
}

.form-row {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.form-row.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

label span, legend {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

input[type="text"], select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

textarea { resize: vertical; min-height: 160px; }

fieldset {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.tier-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tier-picker legend, .input-mode legend { grid-column: 1 / -1; }

.tier-explainer {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.tier-card {
  display: flex;
  min-height: 112px;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.tier-card.selected {
  border-color: var(--green);
  background: #eff8f4;
}

.tier-card input { margin-top: 4px; }
.tier-card small { display: block; margin-top: 8px; color: var(--muted); line-height: 1.35; }

.input-mode {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.input-mode legend { width: 100%; }

.input-mode label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.input-panel { margin-bottom: 18px; }
.hidden { display: none !important; }
.hint, .fine-print { color: var(--muted); font-size: 13px; }

.recorder-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
  cursor: pointer;
}

.icon-button.recording { background: #9a2536; animation: pulse 1.2s infinite; }

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.channel-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.channel-strip span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.code-preview {
  overflow: auto;
  max-height: 280px;
  padding: 16px;
  border-radius: 8px;
  background: #161c1a;
  color: #e9fff7;
  font-size: 13px;
  line-height: 1.5;
}

.report-preview {
  margin-top: 16px;
  padding: clamp(20px, 4vw, 36px);
}

.report-preview h3 { color: var(--green-dark); font-size: 26px; }
.report-preview p { color: #36322e; line-height: 1.7; }
.symbol-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 18px 0; }
.symbol-list div { padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: #fffaf1; }

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-grid > div {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
}

.step-grid strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}

.step-grid p { color: var(--muted); line-height: 1.55; }

@media (max-width: 920px) {
  .home-hero, .dream-workspace, .disclaimer-band { grid-template-columns: 1fr; }
  .home-copy, .dream-intro { position: static; }
  .service-grid, .step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tier-picker { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .top-nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .form-row.two, .service-grid, .step-grid, .symbol-list { grid-template-columns: 1fr; }
  h1 { font-size: 42px; }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ LEGAL SECTIONS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.legal-section { background: var(--surface); border-top: 1px solid var(--line); }
.legal-section.legal-alt { background: #faf7f2; }
.legal-content { max-width: 720px; }
.legal-title { margin: 0 0 4px; font-size: clamp(28px, 4vw, 44px); line-height: 1.05; }
.legal-meta { color: var(--muted); font-size: 13px; margin: 0 0 20px; }
.legal-section h2 { margin-bottom: 4px; font-size: clamp(22px, 3vw, 32px); }
.legal-section h3 {
  margin: 22px 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
}
.legal-section p { color: #36322e; line-height: 1.75; font-size: 15px; }
.legal-section ul { padding-left: 20px; margin: 6px 0 14px; }
.legal-section li { color: #36322e; line-height: 1.7; font-size: 15px; margin-bottom: 5px; }
.legal-section a { color: var(--green-dark); text-decoration: underline; }

.contact-card {
  display: grid;
  gap: 12px;
  margin: 20px 0 16px;
}
.contact-card > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.contact-card strong {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
}
.contact-card a,
.contact-card span { font-size: 15px; font-weight: 600; color: var(--ink); }
.contact-card a { color: var(--green-dark); text-decoration: underline; }

@media (min-width: 560px) {
  .contact-card { grid-template-columns: repeat(3, 1fr); }
}

.transcript-box {
  width: 100%;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  font: inherit;
  resize: vertical;
  background: #fffef9;
}
.download-report-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.download-report-wrap.hidden {
  display: none;
}

#download-report-link {
  min-width: 260px;
}
/* DREAM STUDIO REDESIGN */
.dream-page {
  --dream-ink: #f5f0e7;
  --dream-muted: #c3b9aa;
  --dream-panel: rgba(24, 27, 39, .78);
  --dream-panel-strong: rgba(17, 20, 31, .92);
  --dream-line: rgba(231, 217, 190, .22);
  --dream-teal: #8bd3c7;
  --dream-gold: #d8b46a;
  --dream-rose: #d69aac;
  color: var(--dream-ink);
  background:
    linear-gradient(180deg, rgba(10, 13, 24, .98), rgba(22, 17, 30, .98) 54%, rgba(15, 18, 26, 1)),
    #10141f;
}

.dream-page .site-header {
  background: rgba(12, 15, 25, .76);
  border-bottom-color: rgba(231, 217, 190, .14);
  backdrop-filter: blur(18px);
}

.dream-page .brand small,
.dream-page .top-nav,
.dream-page .lead,
.dream-page .hint,
.dream-page .fine-print,
.dream-page .section-note {
  color: var(--dream-muted);
}

.dream-page .brand-mark {
  background: linear-gradient(135deg, #1f6f5b, #8bd3c7);
  color: #07120f;
}

.dream-page .top-nav a:hover { color: var(--dream-teal); }

.dream-studio-hero {
  position: relative;
  min-height: calc(100vh - 70px);
  padding-top: clamp(34px, 5vw, 70px);
  padding-bottom: clamp(28px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(10, 13, 24, .98) 0%, rgba(10, 13, 24, .72) 45%, rgba(10, 13, 24, .34) 100%),
    url("../img/dream-wide.jpeg") center / cover no-repeat;
  isolation: isolate;
}

.dream-studio-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, #10141f);
  pointer-events: none;
  z-index: -1;
}

.dream-page .dream-intro {
  top: 98px;
  max-width: 690px;
}

.dream-page .eyebrow {
  color: var(--dream-gold);
}

.dream-page h1 {
  max-width: 780px;
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(46px, 7vw, 88px);
  line-height: .95;
}

.dream-page h2 {
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", serif;
}

.dream-page .lead {
  max-width: 640px;
}

.dream-page .channel-strip span,
.dream-trust-notes span {
  border-color: rgba(231, 217, 190, .18);
  background: rgba(12, 15, 25, .58);
  color: var(--dream-muted);
}

.dream-trust-notes {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  max-width: 560px;
}

.dream-trust-notes span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(231, 217, 190, .18);
  border-radius: 8px;
}

.dream-trust-notes strong {
  color: var(--dream-teal);
}

.dream-studio-card {
  border-color: rgba(231, 217, 190, .2);
  background:
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    rgba(18, 21, 32, .78);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .38);
  backdrop-filter: blur(22px);
}

.studio-card-head {
  margin-bottom: 18px;
}

.studio-card-head h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
}

.studio-card-head p:last-child {
  margin: 0;
  color: var(--dream-muted);
  line-height: 1.55;
}

.dream-page label span,
.dream-page legend {
  color: #fff8ec;
}

.dream-page input[type="text"],
.dream-page select,
.dream-page textarea {
  border-color: rgba(231, 217, 190, .22);
  background: rgba(255, 253, 248, .94);
  color: #151820;
}

.dream-page .tier-card,
.dream-page .input-mode label,
.dream-page .recorder-box {
  border-color: rgba(231, 217, 190, .2);
  background: rgba(255, 253, 248, .08);
  color: var(--dream-ink);
}

.dream-page .tier-card.selected {
  border-color: rgba(139, 211, 199, .86);
  background: rgba(139, 211, 199, .14);
}

.dream-page .tier-card small,
.dream-page .tier-explainer {
  color: var(--dream-muted);
}

.dream-page .primary-button {
  background: linear-gradient(135deg, #2f7e6e, #d8b46a);
  color: #07120f;
}

.dream-page .result-section,
.dream-symbols-section,
.dream-journal-section,
.dream-steps {
  background: rgba(8, 5, 19, 0.06);
}

.dream-page .report-preview {
  border-color: rgba(231, 217, 190, .18);
  background: rgba(17, 20, 31, .78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.dream-report-shell h3 {
  margin: 0;
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
}

.dream-report-summary {
  max-width: 980px;
  color: var(--dream-muted);
  font-size: 18px;
  line-height: 1.75;
}

.report-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.report-chip-row span {
  padding: 8px 10px;
  border: 1px solid rgba(139, 211, 199, .32);
  border-radius: 999px;
  background: rgba(139, 211, 199, .1);
  color: #d9fff7;
  font-size: 13px;
  font-weight: 800;
}

.report-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.insight-card,
.symbol-orbit-grid article,
.journal-prompt-grid article,
.dream-page .step-grid > div {
  border: 1px solid rgba(231, 217, 190, .16);
  border-radius: 8px;
  background: rgba(255, 253, 248, .07);
}

.insight-card {
  padding: clamp(16px, 2.5vw, 22px);
}

.insight-card.wide {
  grid-column: 1 / -1;
}

.insight-card h4 {
  margin: 0 0 10px;
  color: var(--dream-gold);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.insight-card p,
.dream-page .report-preview p {
  color: #e7ded0;
}

.insight-card.symbol-card strong {
  display: block;
  color: #fff8ec;
  margin-bottom: 8px;
}

.dream-symbols-section .section-heading,
.dream-steps .section-heading {
  align-items: start;
}

.section-note {
  max-width: 430px;
  line-height: 1.6;
}

.symbol-orbit-grid,
.journal-prompt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.symbol-orbit-grid article,
.journal-prompt-grid article {
  padding: 18px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.symbol-orbit-grid article:hover,
.journal-prompt-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 211, 199, .45);
  background: rgba(139, 211, 199, .09);
}

.symbol-orbit-grid span,
.journal-prompt-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #fff8ec;
  font-weight: 900;
}

.symbol-orbit-grid p,
.journal-prompt-grid p,
.dream-page .step-grid p {
  color: var(--dream-muted);
}

.dream-journal-section {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.dream-page .step-grid strong {
  background: rgba(139, 211, 199, .18);
  color: var(--dream-teal);
}

.dream-disclaimer {
  background: rgba(13, 10, 26, 0.30);
  color: #f7f2e8;
}

.dream-disclaimer h2 {
  color: #f7f2e8;
}

.dream-disclaimer p:last-child {
  color: rgba(247, 242, 232, 0.78);
}

.dream-page .site-footer {
  background: rgba(8, 5, 19, 0.46);
  border-top-color: rgba(231, 217, 190, .14);
}


.lucid-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 18px;
}

.lucid-stat-strip span {
  padding: 12px;
  border: 1px solid rgba(231, 217, 190, .16);
  border-radius: 8px;
  background: rgba(255, 253, 248, .07);
  color: var(--dream-muted);
  line-height: 1.35;
}

.lucid-stat-strip strong {
  display: block;
  color: #fff8ec;
  margin-bottom: 4px;
}

.lucid-practice-section {
  background: rgba(8, 5, 19, 0.06);
}

.lucid-cue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lucid-cue-grid article {
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(231, 217, 190, .16);
  border-radius: 8px;
  background: rgba(255, 253, 248, .07);
}

.lucid-cue-grid span {
  color: var(--dream-teal);
  font-weight: 900;
}

.lucid-cue-grid h3 {
  color: #fff8ec;
}

.lucid-cue-grid p {
  color: var(--dream-muted);
  line-height: 1.6;
}

@media (prefers-reduced-motion: no-preference) {
  .dream-studio-card,
  .dream-page .report-preview,
  .symbol-orbit-grid article,
  .journal-prompt-grid article {
    animation: dreamFadeIn .55s ease both;
  }

  @keyframes dreamFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 920px) {
  .dream-studio-hero {
    background:
      linear-gradient(180deg, rgba(10, 13, 24, .96), rgba(10, 13, 24, .82)),
      url("../img/dream-wide.jpeg") center / cover no-repeat;
  }
  .report-card-grid,
  .symbol-orbit-grid,
  .journal-prompt-grid,
  .dream-journal-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .dream-page .dream-studio-hero {
    padding-top: 28px;
  }
  .dream-trust-notes span {
    display: block;
  }
  .dream-page h1 {
    font-size: 44px;
  }
}
.telegram-banner {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid rgba(139, 211, 199, .34);
  border-radius: 8px;
  background: rgba(139, 211, 199, .10);
}
.telegram-banner-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.telegram-banner-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dream-teal, #1f6f5b);
  color: #07120f;
  font-weight: 900;
}
.telegram-banner-text { flex: 1 1 260px; min-width: 220px; }
.telegram-banner-text strong { display: block; color: #fff8ec; margin-bottom: 4px; }
.telegram-banner-text p { margin: 0; color: var(--dream-muted, #67615a); line-height: 1.55; }
.telegram-banner-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--dream-teal, #1f6f5b);
  color: #07120f;
  font-weight: 900;
}
.telegram-banner-fine {
  margin: 10px 0 0;
  color: var(--dream-muted, #67615a);
  font-size: 12px;
}

.dream-page .nav-telegram-link {
  color: var(--dream-teal);
  font-weight: 900;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 8px;
}

.telegram-hero-button {
  min-width: 210px;
  background: linear-gradient(135deg, var(--dream-teal), var(--dream-gold));
  color: #07120f;
  box-shadow: 0 18px 38px rgba(139, 211, 199, .22);
}

.web-hero-button {
  min-width: 180px;
  border-color: rgba(231, 217, 190, .24);
  background: rgba(255, 253, 248, .10);
  color: #fff8ec;
}

.telegram-banner {
  border-width: 2px;
  background:
    linear-gradient(135deg, rgba(139, 211, 199, .16), rgba(216, 180, 106, .10)),
    rgba(12, 15, 25, .62);
  box-shadow: 0 20px 42px rgba(0, 0, 0, .22);
}

.telegram-banner-cta {
  background: linear-gradient(135deg, var(--dream-teal, #8bd3c7), var(--dream-gold, #d8b46a));
  box-shadow: 0 12px 26px rgba(139, 211, 199, .22);
}

@media (max-width: 620px) {
  .hero-action-row a {
    width: 100%;
  }
}

/* Palm Reading MVP - 2026-05-07 */
.palm-page {
  --palm-bg: #090916;
  --palm-panel: rgba(18, 15, 34, .88);
  --palm-line: rgba(240, 213, 155, .24);
  --palm-gold: #f0d59b;
  --palm-rose: #e8c48a;
  --palm-violet: #7b56c4;
  --palm-text: #fff8e8;
  --palm-muted: #d8cfbd;
  background: radial-gradient(circle at 18% 10%, rgba(123, 86, 196, .24), transparent 34%), radial-gradient(circle at 92% 26%, rgba(240, 213, 155, .14), transparent 30%), linear-gradient(160deg, #080916 0%, #17102c 48%, #080916 100%);
  color: var(--palm-text);
}
.palm-workspace {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 520px);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  padding: clamp(34px, 6vw, 78px);
}
.palm-intro { position: sticky; top: 96px; min-height: 60vh; display: flex; flex-direction: column; justify-content: center; }
.palm-intro h1 { max-width: 820px; margin: 0; color: #fff8df; font-family: Georgia, "Times New Roman", serif; font-size: clamp(46px, 7vw, 90px); line-height: .98; letter-spacing: 0; }
.palm-intro .lead { max-width: 760px; color: var(--palm-muted); font-size: clamp(17px, 2vw, 22px); line-height: 1.7; }
.palm-trust-strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; max-width: 740px; margin-top: 26px; }
.palm-trust-strip span, .palm-photo-guidance, .consent-panel { border: 1px solid var(--palm-line); border-radius: 8px; background: rgba(255, 248, 232, .06); }
.palm-trust-strip span { min-height: 58px; display: flex; align-items: center; padding: 12px 14px; color: var(--palm-muted); }
.palm-form { border: 1px solid var(--palm-line); border-radius: 8px; background: var(--palm-panel); box-shadow: 0 28px 90px rgba(0, 0, 0, .34); }
.palm-page .studio-card-head h2, .palm-page label span, .palm-page legend, .palm-page .eyebrow { color: var(--palm-gold); }
.palm-page input, .palm-page textarea, .palm-page select { background: rgba(255, 248, 232, .08); border-color: rgba(240, 213, 155, .28); color: var(--palm-text); }
.palm-page option { color: #17102c; }
.photo-drop { display: grid; gap: 10px; place-items: center; min-height: 260px; padding: 18px; border: 1px dashed rgba(240, 213, 155, .42); border-radius: 8px; background: rgba(255, 248, 232, .045); text-align: center; cursor: pointer; }
.photo-drop input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.photo-drop strong { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 16px; border-radius: 999px; background: var(--palm-gold); color: #110d20; }
.photo-drop small, .palm-photo-guidance, .palm-page .fine-print, .palm-page .section-note { color: var(--palm-muted); }
.photo-drop img { width: min(100%, 320px); max-height: 320px; object-fit: contain; border-radius: 8px; border: 1px solid var(--palm-line); }
.palm-sample-preview { margin-top: 2px; opacity: .92; box-shadow: 0 14px 34px rgba(0, 0, 0, .24); }
#photo-preview:not(.hidden) { box-shadow: 0 14px 34px rgba(0, 0, 0, .28); }
.palm-photo-guidance { padding: 14px 16px; }
.palm-photo-guidance ul { margin: 10px 0 0 18px; padding: 0; color: var(--palm-muted); line-height: 1.65; }
.palm-page .input-mode label, .palm-page .palm-choice label { border-color: rgba(240, 213, 155, .24); background: rgba(255, 248, 232, .06); color: var(--palm-text); }
.consent-panel { display: flex; gap: 12px; align-items: flex-start; padding: 14px; line-height: 1.55; }
.consent-panel input { width: auto; margin-top: 4px; }
.palm-page .result-section, .palm-sections { background: #0d0c1d; }
.palm-page .report-preview { border-color: var(--palm-line); background: rgba(14, 11, 28, .86); }
.palm-report-shell h3 { margin: 0; color: #fff8df; font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 4vw, 52px); }
.palm-quality-warning { margin-bottom: 18px; padding: 14px 16px; border: 1px solid rgba(248, 185, 112, .38); border-radius: 8px; background: rgba(248, 185, 112, .12); color: #ffe1b6; }
.palm-info-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.palm-info-grid article { min-height: 168px; padding: 18px; border: 1px solid var(--palm-line); border-radius: 8px; background: rgba(255, 248, 232, .045); }
.palm-info-grid strong { color: var(--palm-gold); }
.palm-info-grid p { color: var(--palm-muted); line-height: 1.6; }
@media (max-width: 920px) {
  .palm-workspace { grid-template-columns: 1fr; padding: 24px; }
  .palm-intro { position: static; min-height: auto; }
  .palm-trust-strip, .palm-info-grid { grid-template-columns: 1fr; }
}


.dream-page select,
.dream-page select:focus {
  color: #f7f2e8;
  background-color: #080513 !important;
}
.dream-page select option {
  color: #f7f2e8;
  background: #080513;
}
