/* ================================================================
   Drawing Psychodiagnostics — Landing Page
   Palette: deep ink charcoal + warm gold + aged paper cream
   Type: Cormorant Garamond (display) / Inter (text)
   ================================================================ */

:root {
  --ink: #100e0b;
  --ink-2: #17140f;
  --ink-3: #1f1a13;
  --line: rgba(212, 175, 106, 0.16);
  --line-strong: rgba(212, 175, 106, 0.35);
  --gold: #d4af6a;
  --gold-bright: #e8c785;
  --cream: #f2ead9;
  --cream-dim: rgba(242, 234, 217, 0.68);
  --cream-faint: rgba(242, 234, 217, 0.42);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-text: "Inter", -apple-system, sans-serif;
  --container: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

em { font-style: italic; }
.nowrap { white-space: nowrap; }

/* ---------- shared bits ---------- */

.eyebrow {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-head h2 {
  font-size: clamp(34px, 4.6vw, 52px);
  margin-bottom: 22px;
}

.section-sub {
  color: var(--cream-dim);
  font-size: 17px;
}

.btn {
  display: inline-block;
  font-family: var(--font-text);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  background: transparent;
  padding: 13px 30px;
  font-size: 14px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn:hover { background: var(--gold); color: var(--ink); transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover { background: var(--gold-bright); }

.btn-small { padding: 9px 20px; font-size: 13px; }
.btn-large { padding: 17px 54px; font-size: 15px; }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(16, 14, 11, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark { color: var(--gold); font-size: 15px; }

.brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--cream); }
.header-nav a.btn { color: var(--gold-bright); }
.header-nav a.btn:hover { color: var(--ink); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 190px 0 130px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 70% -10%, rgba(212, 175, 106, 0.10), transparent 60%),
    var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-strokes {
  width: 100%;
  height: 100%;
}

.stroke {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  opacity: 0.14;
  stroke-linecap: round;
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: draw 3.2s ease-out forwards;
}

.stroke-2 { animation-delay: 0.5s; opacity: 0.09; }
.stroke-3 { animation-delay: 1s; opacity: 0.18; stroke-width: 1.1; }

@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-inner {
  position: relative;
  max-width: 860px;
}

.hero h1 {
  font-size: clamp(44px, 6.8vw, 84px);
  margin-bottom: 28px;
}

.hero h1 em { color: var(--gold-bright); }

.hero-sub {
  font-size: 19px;
  color: var(--cream-dim);
  max-width: 640px;
  margin-bottom: 36px;
}

.hero-sub strong { color: var(--cream); font-weight: 500; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.badge {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  color: var(--cream-dim);
}

.badge-accent {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(212, 175, 106, 0.07);
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.cta-note {
  font-size: 14px;
  color: var(--cream-faint);
}

.cta-note em { color: var(--cream-dim); }

/* ---------- method / symbols ---------- */

.method {
  padding: 130px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}

.symbols-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.symbol-card {
  border: 1px solid var(--line);
  padding: 34px 26px;
  background: linear-gradient(180deg, rgba(212, 175, 106, 0.03), transparent 55%);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.symbol-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.symbol-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.symbol-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.symbol-icon span {
  font-family: var(--font-display);
  font-size: 30px;
  font-style: italic;
  color: var(--line-strong);
}

.symbol-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.symbol-card p {
  font-size: 14.5px;
  color: var(--cream-dim);
}

.symbol-hidden { border-style: dashed; }
.symbol-hidden p { color: var(--cream-faint); font-style: italic; }

.symbol-note {
  display: flex;
  align-items: center;
  border: none;
  background: rgba(212, 175, 106, 0.05);
}

.symbol-note p {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  color: var(--cream-dim);
  line-height: 1.45;
}

/* ---------- audience ---------- */

.audience {
  padding: 130px 0;
  border-top: 1px solid var(--line);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.audience-card {
  position: relative;
  border: 1px solid var(--line);
  padding: 42px 38px 38px;
  transition: border-color 0.3s ease;
}

.audience-card:hover { border-color: var(--line-strong); }

.card-index {
  position: absolute;
  top: 30px;
  right: 34px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--line-strong);
}

.audience-card h3 {
  font-size: 27px;
  margin-bottom: 14px;
  padding-right: 56px;
}

.audience-card p {
  color: var(--cream-dim);
  font-size: 15.5px;
}

/* ---------- details band ---------- */

.details {
  padding: 0 0 130px;
}

.details-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(212, 175, 106, 0.07), transparent 70%),
    var(--ink-3);
}

.detail {
  padding: 38px 26px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.detail:last-child { border-right: none; }

.detail-label {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 10px;
}

.detail-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-bright);
}

/* ---------- pricing ---------- */

.pricing {
  padding: 0 0 150px;
}

.pricing-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--line-strong);
  padding: 70px 56px 56px;
  background:
    radial-gradient(ellipse 90% 70% at 50% -20%, rgba(212, 175, 106, 0.12), transparent 65%),
    var(--ink-2);
}

.pricing-card h2 {
  font-size: clamp(30px, 4vw, 40px);
  margin-bottom: 16px;
}

.pricing-desc {
  color: var(--cream-dim);
  font-size: 15.5px;
  max-width: 420px;
  margin: 0 auto 40px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 38px;
}

.price-currency {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--gold-bright);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 92px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-bright);
}

.price-period {
  font-size: 14px;
  color: var(--cream-faint);
  margin-left: 8px;
}

.pricing-secure {
  margin-top: 18px;
  font-size: 13px;
  color: var(--cream-faint);
}

.pricing-discount {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px dashed var(--line-strong);
}

.pricing-discount p {
  font-size: 15px;
  color: var(--cream-dim);
}

.pricing-discount strong { color: var(--gold-bright); font-weight: 500; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0;
  background: var(--ink-2);
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-note {
  font-size: 14px;
  color: var(--cream-dim);
}

.footer-legal {
  font-size: 12.5px;
  color: var(--cream-faint);
}

/* ---------- reveal on scroll ----------
   Hidden state applies ONLY when JS has confirmed it will reveal
   (html.dpc-js). Without JS everything stays visible — the page
   never looks broken. */

.dpc-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.dpc-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .symbols-grid { grid-template-columns: repeat(2, 1fr); }
  .details-band { grid-template-columns: repeat(3, 1fr); }
  .detail:nth-child(3) { border-right: none; }
  .detail:nth-child(n+4) { border-top: 1px solid var(--line); }
  .header-nav a:not(.btn) { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { padding: 150px 0 90px; }
  .method, .audience { padding: 90px 0; }
  .details { padding: 0 0 90px; }
  .pricing { padding: 0 0 100px; }
  .symbols-grid, .audience-grid { grid-template-columns: 1fr; }
  .details-band { grid-template-columns: 1fr 1fr; }
  .detail { border-right: none; border-top: 1px solid var(--line); }
  .detail:nth-child(-n+2) { border-top: none; }
  .detail:nth-child(odd) { border-right: 1px solid var(--line); }
  .detail:last-child { grid-column: 1 / -1; border-right: none; }
  .pricing-card { padding: 50px 26px 40px; }
  .price-amount { font-size: 72px; }
  .brand-name { font-size: 15px; }
  .header-inner { gap: 10px; }
  .header-nav .btn-small { padding: 8px 13px; font-size: 12px; white-space: nowrap; }
}

/* ---------- success / cancel status pages ---------- */

.status-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(212, 175, 106, 0.10), transparent 60%),
    var(--ink);
}

.status-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--line-strong);
  padding: 70px 56px;
  background: var(--ink-2);
}

.status-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.status-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.status-card h1 {
  font-size: clamp(34px, 5vw, 48px);
  margin-bottom: 20px;
}

.status-text {
  color: var(--cream-dim);
  margin-bottom: 22px;
}

.status-detail {
  font-size: 14.5px;
  color: var(--cream-faint);
  margin-bottom: 36px;
}

.status-detail strong { color: var(--gold-bright); font-weight: 500; }

/* keep the WP admin bar from overlapping the fixed header when logged in */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

/* ---------- instructor section ---------- */

.instructor {
  padding: 0 0 130px;
}

.instructor-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 56px;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(212, 175, 106, 0.06), transparent 70%),
    var(--ink-2);
}

.instructor-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  filter: saturate(0.85);
}

.instructor-placeholder {
  aspect-ratio: 4 / 5;
  border: 1px dashed var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22%;
}

.instructor-placeholder svg {
  width: 100%;
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 2;
  stroke-linecap: round;
}

.instructor-text h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 10px;
}

.instructor-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.instructor-bio {
  color: var(--cream-dim);
  font-size: 16px;
  max-width: 560px;
}

/* ---------- details band: time under the date ---------- */

.detail-sub {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--cream-faint);
}

/* ---------- shared form styles ---------- */

.field {
  display: block;
  margin-bottom: 20px;
  text-align: left;
}

.field span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 8px;
}

.field input {
  width: 100%;
  padding: 13px 16px;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  color: var(--cream);
  font-family: var(--font-text);
  font-size: 15px;
  transition: border-color 0.2s;
}

.field input:focus {
  outline: none;
  border-color: var(--gold);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-block { display: block; width: 100%; }

.form-notice {
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 26px;
  border: 1px solid;
  text-align: left;
}

.form-notice-success {
  border-color: rgba(140, 190, 120, 0.5);
  background: rgba(140, 190, 120, 0.08);
  color: #cfe3c4;
}

.form-notice-error {
  border-color: rgba(214, 116, 100, 0.5);
  background: rgba(214, 116, 100, 0.08);
  color: #ecc5bc;
}

/* ---------- auth pages (login / reset) ---------- */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 90px 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(212, 175, 106, 0.10), transparent 60%),
    var(--ink);
}

.auth-card {
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  padding: 54px 48px 40px;
  background: var(--ink-2);
  text-align: center;
}

.auth-brand { justify-content: center; margin-bottom: 34px; }

.auth-card h1 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 12px;
}

.auth-sub {
  color: var(--cream-dim);
  font-size: 14.5px;
  margin-bottom: 30px;
}

.auth-alt { margin-top: 24px; font-size: 14px; }

.auth-alt a, .auth-footer a, .footer-link {
  color: var(--cream-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  transition: color 0.2s;
}

.auth-alt a:hover, .auth-footer a:hover, .footer-link:hover { color: var(--gold-bright); }

.auth-footer {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

/* ---------- dashboard ---------- */

.dashboard {
  min-height: 100vh;
  padding: 150px 0 110px;
  background:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(212, 175, 106, 0.08), transparent 60%),
    var(--ink);
}

.dashboard-head { margin-bottom: 36px; }

.dashboard-head h1 { font-size: clamp(34px, 5vw, 52px); }

.header-user {
  font-size: 14px;
  color: var(--cream-dim);
}

.logout-form { display: inline; }

.dash-tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 36px;
}

.dash-tab {
  padding: 13px 26px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-faint);
  text-decoration: none;
  border: 1px solid transparent;
  border-bottom: none;
  transition: color 0.2s;
}

.dash-tab:hover { color: var(--cream); }

.dash-tab.is-active {
  color: var(--gold-bright);
  border-color: var(--line-strong);
  background: var(--ink-2);
  position: relative;
  top: 1px;
}

.dash-panel {
  display: grid;
  gap: 18px;
}

.dash-panel-account {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.dash-card {
  border: 1px solid var(--line);
  background: var(--ink-2);
  padding: 40px;
}

.dash-card h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  margin: 6px 0 28px;
}

.dash-card h3 {
  font-size: 23px;
  margin-bottom: 14px;
}

.dash-text { color: var(--cream-dim); font-size: 15px; margin-bottom: 22px; }

.dash-empty { color: var(--cream-faint); font-style: italic; }

.dash-hint {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  font-size: 13.5px;
  color: var(--cream-faint);
}

.dash-card-zoom { text-align: center; padding: 56px 40px; }

.zoom-fallback { margin-top: 30px; }

.zoom-fallback-label { font-size: 13px; color: var(--cream-faint); margin-bottom: 8px; }

.zoom-raw-link code {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: 13px;
  color: var(--gold-bright);
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 10px 14px;
}

.zoom-credentials { margin-top: 14px; font-size: 14px; color: var(--cream-dim); }
.zoom-credentials strong { color: var(--cream); font-weight: 500; letter-spacing: 0.06em; }

.zoom-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zoom-dl { font-size: 13px; padding: 10px 18px; }

.recording-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.recording-session {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.recording-date { font-size: 13.5px; color: var(--cream-faint); margin-top: 6px; }
.recording-notes { font-size: 14px; color: var(--cream-dim); margin-top: 10px; }

/* ---------- responsive additions ---------- */

@media (max-width: 900px) {
  .instructor-card { grid-template-columns: 1fr; gap: 34px; padding: 34px; }
  .instructor-photo { max-width: 260px; }
  .dash-panel-account { grid-template-columns: 1fr; }
  .recording-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .instructor { padding: 0 0 90px; }
  .dashboard { padding: 120px 0 80px; }
  .dash-card { padding: 26px 20px; }
  .dash-card-zoom { padding: 36px 20px; }
  .auth-card { padding: 40px 24px 30px; }
  .field-row { grid-template-columns: 1fr; }
  /* Tabs wrap into a 2×2 grid on mobile — no horizontal scrolling. */
  .dash-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    border-bottom: none;
  }
  .dash-tab {
    padding: 13px 10px;
    text-align: center;
    border: 1px solid var(--line);
    white-space: nowrap;
  }
  .dash-tab.is-active { border-color: var(--line-strong); top: 0; }
  .header-user { display: none; }
}

/* ================================================================
   PREMIUM LAYER — richer motion, light and depth
   ================================================================ */

/* --- buttons: gold sheen sweep + lift + glow --- */

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease,
              box-shadow 0.35s ease, border-color 0.3s ease;
  will-change: transform;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.btn:hover::after { left: 130%; }

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(212, 175, 106, 0.24);
}

.btn:active { transform: translateY(0); box-shadow: 0 2px 10px rgba(212, 175, 106, 0.18); }

.btn-primary {
  background: linear-gradient(160deg, var(--gold-bright), var(--gold) 60%, #b8934f);
}

.btn-primary:hover {
  background: linear-gradient(160deg, #f0d49a, var(--gold-bright) 60%, var(--gold));
  box-shadow: 0 8px 32px rgba(212, 175, 106, 0.38);
}

.btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* --- cards: lift, border-light and inner glow on hover --- */

.symbol-card, .audience-card, .dash-card, .pricing-card, .instructor-card, .auth-card {
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.4s ease;
}

.symbol-card:hover, .audience-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(212, 175, 106, 0.14);
}

.symbol-card:hover .symbol-icon svg { filter: drop-shadow(0 0 7px rgba(212, 175, 106, 0.55)); }
.symbol-icon svg { transition: filter 0.35s ease; }

.pricing-card {
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(212, 175, 106, 0.65), rgba(212, 175, 106, 0.08) 40%, rgba(212, 175, 106, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.price-amount {
  background: linear-gradient(175deg, #f4dfae, var(--gold-bright) 55%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- header links: animated underline --- */

.header-nav a:not(.btn) {
  position: relative;
  padding-bottom: 4px;
}

.header-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.header-nav a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- badges shimmer softly --- */

.badge { transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease; }
.badge:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(212, 175, 106, 0.06); }

/* --- inputs: focus glow --- */

.field input, .field textarea, .report-panel textarea {
  border-radius: 2px;
  transition: border-color 0.25s ease, box-shadow 0.3s ease;
}

.field input:focus, .field textarea:focus, .report-panel textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 106, 0.14);
}

.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  color: var(--cream);
  font-family: var(--font-text);
  font-size: 15px;
  resize: vertical;
}

/* --- honeypot: invisible to humans --- */

.dpc-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ================================================================
   SPECIMENS — analyzed drawings on paper cards
   ================================================================ */

.specimens { margin-top: 64px; }

.specimens-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--cream-dim);
  margin-bottom: 28px;
  text-align: center;
}

.specimens-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 880px;
  margin: 0 auto;
}

.specimen {
  margin: 0;
  background: linear-gradient(168deg, #f4efe3, #e9e2d0 70%, #ddd4bf);
  border-radius: 2px;
  padding: 14px 12px 10px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 18px 38px rgba(0, 0, 0, 0.5),
    inset 0 0 34px rgba(120, 100, 60, 0.12);
  transform: rotate(-1.4deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.specimen:nth-child(2) { transform: rotate(0.9deg); }
.specimen:nth-child(3) { transform: rotate(-0.6deg); }

.specimen:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.025);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.4),
    0 30px 60px rgba(0, 0, 0, 0.6),
    inset 0 0 34px rgba(120, 100, 60, 0.1);
  z-index: 2;
  position: relative;
}

.specimen svg { display: block; width: 100%; height: auto; }

.specimen-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12.5px;
  fill: #8a3b2e;
}

.specimen figcaption {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6e644f;
  text-align: center;
  padding: 8px 0 4px;
  border-top: 1px solid rgba(110, 100, 79, 0.25);
}

/* ================================================================
   FAQ accordion
   ================================================================ */

.faq {
  padding: 0 0 130px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-bottom: none;
  background: var(--ink-2);
  transition: background 0.3s ease;
}

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-item[open] { background: var(--ink-3); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--gold-bright); }

.faq-marker {
  flex: 0 0 auto;
  width: 12px; height: 12px;
  position: relative;
}

.faq-marker::before, .faq-marker::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s ease;
}

.faq-marker::before { top: 5px; left: 0; width: 12px; height: 2px; }
.faq-marker::after { top: 0; left: 5px; width: 2px; height: 12px; }

.faq-item[open] .faq-marker::after { transform: scaleY(0); }

.faq-answer {
  padding: 0 26px 24px;
  color: var(--cream-dim);
  font-size: 15px;
  max-width: 640px;
}

/* ================================================================
   Legal pages
   ================================================================ */

.legal-page {
  padding: 150px 0 110px;
  background:
    radial-gradient(ellipse 90% 40% at 50% -10%, rgba(212, 175, 106, 0.07), transparent 60%),
    var(--ink);
}

.legal-article {
  max-width: 760px;
  margin: 0 auto;
}

.legal-article h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-strong);
}

.legal-content h2 {
  font-size: 26px;
  margin: 44px 0 14px;
  color: var(--gold-bright);
}

.legal-content p, .legal-content li {
  color: var(--cream-dim);
  font-size: 15.5px;
  margin-bottom: 14px;
}

.legal-content ul { padding-left: 22px; margin-bottom: 18px; }
.legal-content li { margin-bottom: 10px; }

.legal-content a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid var(--line-strong); }
.legal-content a:hover { border-color: var(--gold-bright); }

.legal-content strong { color: var(--cream); font-weight: 500; }

/* ================================================================
   Contact page
   ================================================================ */

.contact-card { max-width: 560px; text-align: left; }
.contact-card .eyebrow, .contact-card h1, .contact-card .auth-sub { text-align: center; }
.contact-page { padding-top: 140px; align-items: flex-start; }

/* ================================================================
   Footer legal nav
   ================================================================ */

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 6px 0 10px;
}

.footer-legal-nav .footer-link { font-size: 13px; }

/* ================================================================
   Report a problem — floating corner widget (dashboard)
   ================================================================ */

.report-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.report-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  background: rgba(23, 20, 15, 0.92);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.report-toggle:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.report-toggle svg { width: 15px; height: 15px; }

.report-panel {
  width: min(320px, calc(100vw - 44px));
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  animation: report-in 0.25s ease;
}

@keyframes report-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.report-panel .report-title {
  font-family: var(--font-display);
  font-size: 19px;
  margin-bottom: 12px;
}

.report-panel textarea {
  width: 100%;
  padding: 11px 13px;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  color: var(--cream);
  font-family: var(--font-text);
  font-size: 13.5px;
  resize: vertical;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .specimens-row { grid-template-columns: 1fr; max-width: 320px; }
}

@media (max-width: 640px) {
  .faq { padding: 0 0 90px; }
  .faq-item summary { font-size: 17px; padding: 18px 18px; }
  .faq-answer { padding: 0 18px 20px; }
  .legal-page { padding: 120px 0 80px; }
  .report-widget { right: 14px; bottom: 14px; }
  .report-toggle span { display: none; }
  .report-toggle { padding: 11px; }
}

/* ================================================================
   Reviews — landing testimonials + dashboard form
   ================================================================ */

.reviews { padding: 0 0 130px; }

.reviews-average {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--cream-dim);
  font-size: 14.5px;
}

.review-stars {
  color: var(--gold-bright);
  letter-spacing: 3px;
  font-size: 17px;
  text-shadow: 0 0 12px rgba(212, 175, 106, 0.35);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  margin: 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(212, 175, 106, 0.04), transparent 50%), var(--ink-2);
  padding: 32px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.4s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.review-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  flex: 1;
}

.review-text::before { content: "“"; color: var(--gold); }
.review-text::after { content: "”"; color: var(--gold); }

.review-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.review-name { font-size: 14px; font-weight: 500; color: var(--cream); }
.review-origin { font-size: 12.5px; color: var(--cream-faint); }

.review-verified {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

/* dashboard review form */

.review-form-card { max-width: 640px; }

.star-input {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 4px;
  margin-bottom: 20px;
}

.star-input input { position: absolute; opacity: 0; pointer-events: none; }

.star-input label {
  font-size: 34px;
  line-height: 1;
  color: rgba(212, 175, 106, 0.25);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease, text-shadow 0.2s ease;
}

.star-input label:hover,
.star-input label:hover ~ label,
.star-input input:checked ~ label {
  color: var(--gold-bright);
  text-shadow: 0 0 14px rgba(212, 175, 106, 0.5);
}

.star-input label:hover { transform: scale(1.15); }

.star-input input:focus-visible + label { outline: 2px solid var(--gold-bright); outline-offset: 2px; }

.review-readonly {
  border: 1px dashed var(--line-strong);
  padding: 22px;
}

.review-readonly p {
  margin-top: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--cream-dim);
}

/* ================================================================
   Promotion price
   ================================================================ */

.promo-chip {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(212, 175, 106, 0.35);
}

.price-old {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--cream-faint);
  text-decoration: line-through;
  text-decoration-color: rgba(214, 116, 100, 0.8);
  text-decoration-thickness: 2px;
  margin-right: 14px;
}

/* ================================================================
   Mobile polish
   ================================================================ */

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .reviews { padding: 0 0 90px; }
  .review-card { padding: 24px 20px; }
  .price-old { font-size: 26px; margin-right: 8px; }
  .price { flex-wrap: wrap; row-gap: 4px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .pricing-card .btn-large { width: 100%; padding-left: 20px; padding-right: 20px; }
  .details-band, .pricing-card, .instructor-card, .auth-card, .dash-card { border-radius: 2px; }
  .specimens-row { gap: 30px; }
  .specimen { transform: rotate(0deg); }
  .footer-legal { padding: 0 10px; }
  .contact-page { padding-top: 110px; }
  .contact-card .field-row { grid-template-columns: 1fr; }
  .star-input label { font-size: 40px; }
}

/* ================================================================
   Enrollment modal
   ================================================================ */

body.dpc-modal-open { overflow: hidden; }

.enroll-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* The hidden attribute must always win over display:flex —
   otherwise the modal cannot be closed in some browsers. */
.enroll-modal[hidden],
.report-panel[hidden] {
  display: none !important;
}

.enroll-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 7, 0.82);
  backdrop-filter: blur(6px);
}

.enroll-card {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  padding: 44px 42px 34px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
  animation: report-in 0.25s ease;
}

.enroll-card h2 {
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: 14px;
}

.enroll-sub {
  font-size: 14px;
  color: var(--cream-dim);
  margin-bottom: 24px;
}

.enroll-sub strong { color: var(--gold-bright); font-weight: 500; }

.enroll-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream-dim);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.enroll-close:hover { color: var(--gold-bright); border-color: var(--gold); transform: rotate(90deg); }

.enroll-error { margin-top: 4px; }

.enroll-card .pricing-secure { text-align: center; }

@media (max-width: 640px) {
  .enroll-card { padding: 34px 22px 26px; }
}

/* ================================================================
   Add to Calendar buttons (dashboard)
   ================================================================ */

.calendar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
}

.calendar-label {
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 4px;
}

.calendar-actions .btn { font-size: 13px; padding: 10px 20px; }

/* ================================================================
   Footer design credit
   ================================================================ */

.footer-credit {
  margin-top: 10px;
  font-size: 12px;
  color: var(--cream-faint);
}

.footer-credit a {
  color: var(--cream-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  transition: color 0.2s;
}

.footer-credit a:hover { color: var(--gold-bright); }
