/* shared.css — CocoaHead v3 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-edge:         #0D0808;
  --surface-base:    #1E1A38;
  --surface-elev:    #2C2650;
  --card-fill:       rgba(23,15,41,0.72);
  --card-border:     rgba(140,107,242,0.20);
  --card-border-hov: rgba(140,107,242,0.45);
  --accent:          #8C6BF2;
  --accent-deep:     #6B52EB;
  --accent-light:    #806BF7;
  --accent-glow:     rgba(140,107,242,0.18);
  --accent-dim:      rgba(140,107,242,0.10);
  --soft:            #B8A8FF;
  --soft-dim:        #7C6ABF;
  --text:            #E8E4FF;
  --text-2:          #9C96C8;
  --text-3:          #5A5480;
  --warm:            #C4A882;
  --red:    #FF5A6A;
  --orange: #FF8C52;
  --yellow: #FFD060;
  --blue:   #6AB0FF;
  --mono:    'Space Mono', monospace;
  --display: 'Space Grotesk', sans-serif;
  --body:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-edge);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image: radial-gradient(ellipse 80% 50% at 50% -5%, var(--accent-glow), transparent 70%);
  background-attachment: fixed;
}

/* ── SYS BAR ── */
.sys-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 46px;
  background: rgba(13,8,8,0.75);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.sys-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.sys-logo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}
.sys-bar-right { display: flex; align-items: center; gap: 20px; }
.sys-back {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.sys-back:hover { color: var(--soft); }
.book-btn-sm {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  border: none;
  padding: 7px 15px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 16px rgba(140,107,242,0.35);
  transition: opacity 0.15s, box-shadow 0.15s;
}
.book-btn-sm:hover { opacity: 0.88; box-shadow: 0 0 24px rgba(140,107,242,0.55); }

/* ── LAYOUT ── */
main { padding-top: 46px; }
.page-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 32px 100px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.06em;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--text-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--soft); }
.breadcrumb span { color: var(--soft-dim); }

/* ── PAGE HEADER ── */
.page-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.page-title {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 20px;
}
.page-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-lead {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 56px;
  max-width: 600px;
}
.page-lead strong { color: var(--text); font-weight: 500; }

/* ── SECTION LABEL ── */
.section-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}

/* ── BLOCK CARD ── */
.block-card {
  background: var(--card-fill);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 24px 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 12px;
}
.block-card-title {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}
.block-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

/* ── DETAIL LIST ── */
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.detail-list li::before {
  content: '→';
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
@media (max-width: 560px) { .two-col { grid-template-columns: 1fr; } }

/* ── SPACERS ── */
.spacer { margin-bottom: 48px; }
.spacer-sm { margin-bottom: 24px; }

/* ── OUTPUT CARD ── */
.output-card {
  background: rgba(140,107,242,0.07);
  border: 1px solid rgba(140,107,242,0.25);
  border-radius: 12px;
  padding: 24px 22px;
  margin-bottom: 12px;
}
.output-card-title {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--soft);
  margin-bottom: 8px;
}
.output-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }

/* ── PRICE PILL ── */
.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(140,107,242,0.10);
  border: 1px solid rgba(140,107,242,0.30);
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 48px;
}
.price-pill-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-pill-val {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--soft) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-pill-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
}

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--card-fill);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-top: 56px;
}
.cta-block-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--soft-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-block-title {
  font-family: var(--display);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.cta-block-sub {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.book-btn-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  border: none;
  padding: 14px 28px;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 32px rgba(140,107,242,0.40);
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.2s;
}
.book-btn-lg:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 0 48px rgba(140,107,242,0.60); }
.book-note { margin-top: 14px; font-family: var(--mono); font-size: 11px; color: var(--text-3); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--card-border);
  padding: 24px 32px;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--text-3); }
.footer-copy  { font-family: var(--mono); font-size: 11px; color: var(--text-3); }

@media (max-width: 480px) {
  .sys-bar { padding: 0 18px; }
  .page-wrap { padding: 56px 18px 80px; }
  footer { padding: 20px 18px; flex-direction: column; gap: 8px; text-align: center; }
  .cta-block { padding: 28px 20px; }
}