/* ===========================================================================
   Pathway Discovery Cards — "Cards on the table at dusk"
   Twilight ground · parchment surfaces · gold accent · three suit colors.
   Display accent = Euphorigenic (the printed-card face). Headings = Fraunces.
   Body = Mulish.  Public marketing landing + gated members area.
   The card art is used as marketing imagery — this is not a digital deck.
   ========================================================================= */

@font-face {
  font-family: "Euphorigenic";
  src: url("../assets/fonts/euphorigenic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

:root {
  --night:      #14101f;
  --night-2:    #1c1730;
  --dusk:       #2a2140;
  --plum:       #3a2b4e;
  --mauve:      #6b5876;

  --parchment:  #efe5cf;
  --ink:        #2a241d;

  --cream:      #ece2cc;
  --cream-soft: #b6a888;
  --cream-dim:  #8a7d64;

  --gold:       #e3b866;
  --gold-deep:  #c69444;
  --rose:       #d0917f;

  --arch:       #7c3a4a;  --arch-lt: #a05666;
  --con:        #2f5578;  --con-lt:  #4d7ca3;
  --obj:        #34613c;  --obj-lt:  #56895f;

  --f-accent: "Euphorigenic", "Fraunces", Georgia, serif;
  --f-display:"Fraunces", Georgia, "Times New Roman", serif;
  --f-body:   "Mulish", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --radius: 14px;
  --shadow-card: 0 18px 45px -18px rgba(0,0,0,.65);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --------------------------------------------------------------- base --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--night);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background:
    radial-gradient(1.4px 1.4px at 12% 18%, rgba(255,247,224,.85), transparent 60%),
    radial-gradient(1.2px 1.2px at 28% 42%, rgba(255,247,224,.55), transparent 60%),
    radial-gradient(1.6px 1.6px at 47% 12%, rgba(255,247,224,.7), transparent 60%),
    radial-gradient(1.1px 1.1px at 63% 33%, rgba(255,247,224,.5), transparent 60%),
    radial-gradient(1.5px 1.5px at 78% 20%, rgba(255,247,224,.8), transparent 60%),
    radial-gradient(1.2px 1.2px at 88% 48%, rgba(255,247,224,.45), transparent 60%),
    radial-gradient(1.3px 1.3px at 8% 62%, rgba(255,247,224,.4), transparent 60%),
    radial-gradient(1.4px 1.4px at 92% 72%, rgba(255,247,224,.5), transparent 60%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
main, header, footer { position: relative; z-index: 1; }
section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }

/* --------------------------------------------------------- typography --- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 500; line-height: 1.08; margin: 0; letter-spacing: -.01em; }
.eyebrow {
  font-family: var(--f-body); font-size: .72rem; font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 18px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold-deep); opacity: .8; }
.eyebrow.center { justify-content: center; }

.section-head { max-width: 640px; margin: 0 auto clamp(40px, 5vw, 68px); text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.section-head p { color: var(--cream-soft); font-size: 1.06rem; margin: 18px 0 0; }
.accent { font-family: var(--f-accent); color: var(--gold); font-weight: 400; }

/* ------------------------------------------------------------- buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--f-body); font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%); color: #241a0a; box-shadow: 0 10px 24px -10px rgba(227,184,102,.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(227,184,102,.7); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(236,226,204,.28); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.btn[disabled]:hover { transform: none; box-shadow: none; }

.link-arrow { color: var(--gold); font-weight: 700; display: inline-flex; align-items: center; gap: .4em; }
.link-arrow .a { transition: transform .25s var(--ease); }
.link-arrow:hover .a { transform: translateX(4px); }

/* -------------------------------------------------------------- header --- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background .35s, backdrop-filter .35s, border-color .35s; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(20,16,31,.82); backdrop-filter: blur(14px); border-bottom-color: rgba(227,184,102,.16); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: flex; align-items: baseline; gap: .4ch; font-family: var(--f-accent); font-size: 1.5rem; color: var(--cream); }
.brand .dot { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: .9rem; font-weight: 600; color: var(--cream-soft); transition: color .2s; }
.nav a:hover { color: var(--cream); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .signin { font-size: .9rem; font-weight: 700; color: var(--cream); cursor: pointer; }
.header-actions .signin:hover { color: var(--gold); }
.nav-toggle { display: none; background: none; border: 0; color: var(--cream); cursor: pointer; padding: 8px; font-size: 1.4rem; }

/* ---------------------------------------------------------------- hero --- */
.hero { min-height: 100svh; display: flex; align-items: flex-end; padding: 0 0 clamp(48px, 8vh, 96px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: bottom center; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,31,.85) 0%, rgba(20,16,31,.25) 30%, rgba(20,16,31,.12) 52%, rgba(20,16,31,.6) 100%),
    linear-gradient(90deg, rgba(20,16,31,.8) 0%, rgba(20,16,31,.35) 46%, rgba(20,16,31,0) 76%);
}
.hero-inner { max-width: 690px; }
.hero h1 { font-family: var(--f-accent); font-weight: 400; font-size: clamp(3rem, 8vw, 6rem); line-height: .98; color: var(--cream); text-shadow: 0 4px 30px rgba(0,0,0,.5); margin: 0 0 10px; }
.hero h1 .l2 { color: var(--gold); display: block; }
.hero .lead { font-family: var(--f-display); font-size: clamp(1.15rem, 2.3vw, 1.5rem); font-weight: 400; font-style: italic; color: var(--cream); max-width: 34ch; margin: 0 0 14px; }
.hero .sub { color: var(--cream-soft); max-width: 48ch; margin: 0 0 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-meta { margin-top: 34px; display: flex; gap: 26px; flex-wrap: wrap; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream-dim); }
.hero-meta b { color: var(--gold); font-weight: 700; }
.scroll-cue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); color: var(--cream-dim); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0%,100%{opacity:.3; transform: scaleY(.6); transform-origin: top;} 50%{opacity:1; transform: scaleY(1);} }

/* ---------------------------------------------------- anatomy (B/D/H) --- */
.anatomy { background: linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%); }
.anatomy-quote { text-align: center; font-family: var(--f-display); font-style: italic; font-size: clamp(1.4rem, 3.2vw, 2.1rem); color: var(--cream); max-width: 22ch; margin: 0 auto 10px; }
.anatomy-quote::before, .anatomy-quote::after { content: "\201C"; color: var(--gold); }
.anatomy-quote::after { content: "\201D"; }
.anatomy-sub { text-align: center; color: var(--cream-soft); max-width: 52ch; margin: 0 auto clamp(40px,5vw,60px); }
.triad { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(18px, 3vw, 44px); max-width: 900px; margin: 0 auto; }
.slot { text-align: center; }
.slot-role { font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; color: var(--cream-dim); }
.slot-role b { display: block; font-family: var(--f-accent); font-size: 1.25rem; letter-spacing: .02em; text-transform: none; margin-top: 3px; color: var(--scl, var(--gold)); }
.sample { position: relative; aspect-ratio: 63/88; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); transition: transform .4s var(--ease); background: radial-gradient(120% 120% at 50% 20%, #f4ecda, var(--parchment)); border: 6px solid var(--sc, var(--gold)); }
.slot:nth-child(1) .sample { transform: rotate(-2.5deg); }
.slot:nth-child(3) .sample { transform: rotate(2.5deg); }
.slot:hover .sample { transform: rotate(0) translateY(-6px); }
.sample img { width: 100%; height: 100%; object-fit: contain; padding: 7%; }
.slot-name { font-family: var(--f-accent); font-size: 1.35rem; color: var(--cream); margin-top: 18px; }
.slot-essence { color: var(--cream-soft); font-size: .92rem; margin-top: 4px; }
.anatomy-foot { text-align: center; margin-top: clamp(36px,5vw,54px); font-family: var(--f-display); font-style: italic; font-size: clamp(1.1rem,2.4vw,1.4rem); color: var(--cream-soft); }
.anatomy-foot b { font-style: normal; }
.anatomy-foot .a { color: var(--arch-lt); } .anatomy-foot .c { color: var(--con-lt); } .anatomy-foot .o { color: var(--obj-lt); }

/* -------------------------------------------------------------- suits --- */
.suits { background: var(--night-2); }
.suit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.suit {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(236,226,204,.1); border-top: 3px solid var(--sc, var(--gold));
  border-radius: var(--radius); padding: 30px 28px 34px;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.suit:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -26px rgba(0,0,0,.7); }
.suit-card-img { width: 60%; margin: 0 auto 24px; border-radius: 14px; box-shadow: var(--shadow-card); transform: rotate(-3deg); transition: transform .4s var(--ease); background: radial-gradient(120% 120% at 50% 20%, #f4ecda, var(--parchment)); border: 6px solid var(--sc); object-fit: contain; padding: 6%; aspect-ratio: 63/88; }
.suit:nth-child(2) .suit-card-img { transform: rotate(2deg); }
.suit:nth-child(3) .suit-card-img { transform: rotate(-1.5deg); }
.suit:hover .suit-card-img { transform: rotate(0) translateY(-4px); }
.suit-mode { font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 700; color: var(--sc-lt); }
.suit h3 { font-size: 1.7rem; margin: 8px 0 6px; color: var(--cream); }
.suit .count { font-family: var(--f-accent); color: var(--sc-lt); font-size: 1rem; }
.suit p { color: var(--cream-soft); font-size: .95rem; margin: 14px 0 0; }
.suit .tag { margin-top: 18px; font-size: .82rem; color: var(--cream-dim); }
.suit .tag b { color: var(--cream); font-weight: 600; }

/* --------------------------------------------------------------- ways --- */
.ways { background: var(--night-2); }
.ways-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.way { padding: 26px 26px 28px; border-radius: var(--radius); background: rgba(255,255,255,.03); border: 1px solid rgba(236,226,204,.1); border-left: 3px solid var(--gold-deep); transition: transform .3s var(--ease), border-color .3s; }
.way:hover { transform: translateY(-5px); border-left-color: var(--gold); }
.way .k { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.way h3 { font-size: 1.2rem; color: var(--cream); margin: 6px 0 8px; }
.way p { color: var(--cream-soft); font-size: .92rem; margin: 0; }
.ways-foot { text-align: center; max-width: 62ch; margin: 34px auto 0; color: var(--cream-soft); font-family: var(--f-display); font-style: italic; font-size: 1.12rem; }

/* ------------------------------------------------------------ process --- */
.process { background: linear-gradient(180deg, var(--night-2), var(--night)); }
.not-fortune { max-width: 780px; margin: 0 auto clamp(48px,6vw,72px); text-align: center; padding: 34px 40px; border-radius: var(--radius); background: linear-gradient(180deg, rgba(227,184,102,.08), rgba(227,184,102,.02)); border: 1px solid rgba(227,184,102,.2); }
.not-fortune p { margin: 0; font-family: var(--f-display); font-size: clamp(1.2rem,2.6vw,1.65rem); color: var(--cream); font-style: italic; }
.not-fortune .k { color: var(--gold); font-style: normal; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 20px; }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--f-accent); font-size: 2.6rem; color: var(--gold); opacity: .6; line-height: 1; }
.step h3 { font-size: 1.2rem; margin: 12px 0 8px; color: var(--cream); }
.step p { color: var(--cream-soft); font-size: .92rem; margin: 0; }
.step::after { content: ""; position: absolute; top: 34px; right: -11px; width: 22px; height: 1px; background: linear-gradient(90deg, var(--gold-deep), transparent); }
.step:last-child::after { display: none; }

/* ------------------------------------------------------------ gallery --- */
.gallery { background: var(--night); overflow: hidden; }
.marquee { display: flex; gap: 20px; width: max-content; animation: slide 64s linear infinite; }
.marquee.row2 { animation-duration: 82s; animation-direction: reverse; margin-top: 20px; }
.marquee:hover { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.g-card { width: 150px; flex: 0 0 auto; aspect-ratio: 63/88; border-radius: 11px; overflow: hidden; box-shadow: var(--shadow-card); transition: transform .3s var(--ease); background: radial-gradient(120% 120% at 50% 20%, #f4ecda, var(--parchment)); border: 4px solid var(--sc, var(--gold)); }
.g-card img { width: 100%; height: 100%; object-fit: contain; padding: 8%; }
.g-card:hover { transform: translateY(-8px) scale(1.03); }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

/* --------------------------------------------------------------- shop --- */
.shop { background: linear-gradient(180deg, var(--night), var(--night-2)); }
.hero-product { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px,5vw,64px); align-items: center; margin-bottom: 52px; }
.hero-product .shot { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid rgba(236,226,204,.1); }
.hero-product .shot img { width: 100%; }
.price-row { display: flex; align-items: baseline; gap: 14px; margin: 4px 0 20px; }
.price { font-family: var(--f-accent); font-size: 2.6rem; color: var(--gold); }
.price-strike { color: var(--cream-dim); text-decoration: line-through; font-size: 1.1rem; }
.price-tag { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rose); }
.feat-list { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 10px; }
.feat-list li { display: flex; gap: 12px; color: var(--cream-soft); font-size: .96rem; }
.feat-list li::before { content: "✦"; color: var(--gold); flex: 0 0 auto; }
.buy-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.buy-note { font-size: .82rem; color: var(--cream-dim); margin-top: 14px; }
.amazon-badge { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-dim); border: 1px solid rgba(236,226,204,.2); border-radius: 999px; padding: 3px 11px; }
.shop-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mini { display: flex; gap: 22px; align-items: center; background: rgba(255,255,255,.03); border: 1px solid rgba(236,226,204,.1); border-radius: var(--radius); padding: 26px; }
.mini .ic { font-size: 2rem; flex: 0 0 auto; }
.mini h3 { font-size: 1.25rem; color: var(--cream); margin-bottom: 6px; }
.mini p { color: var(--cream-soft); font-size: .9rem; margin: 0 0 10px; }
.mini .badge { display: inline-block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(227,184,102,.35); border-radius: 999px; padding: 2px 10px; }

/* ------------------------------------------------------------ sessions --- */
.sessions { background: var(--night-2); }
.session-wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(30px,5vw,64px); align-items: center; }
.session-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid rgba(236,226,204,.1); }
.session-photo img { width: 100%; }
.session-body h2 { font-size: clamp(1.9rem,3.8vw,2.7rem); }
.session-body p { color: var(--cream-soft); }
.offer-list { display: grid; gap: 14px; margin: 26px 0; }
.offer { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; border-radius: 12px; background: rgba(255,255,255,.03); border: 1px solid rgba(236,226,204,.1); }
.offer .oi h3 { font-size: 1.1rem; color: var(--cream); }
.offer .oi span { font-size: .86rem; color: var(--cream-soft); }
.offer .op { font-family: var(--f-accent); font-size: 1.5rem; color: var(--gold); white-space: nowrap; }

/* ------------------------------------------------------------- members --- */
.members { background: linear-gradient(180deg, var(--night-2), var(--night)); }
.members-inner {
  border-radius: 20px; overflow: hidden;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(124,58,74,.35), transparent 60%),
    radial-gradient(120% 140% at 0% 100%, rgba(47,85,120,.35), transparent 60%),
    linear-gradient(180deg, var(--dusk), var(--night-2));
  border: 1px solid rgba(227,184,102,.22); padding: clamp(40px,6vw,72px);
}
.members-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,4vw,56px); align-items: center; }
.members h2 { font-size: clamp(2rem,4vw,3rem); color: var(--cream); }
.members .lock { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; display: inline-flex; gap: 8px; align-items: center; margin-bottom: 16px; }
.members > .members-inner p.intro { color: var(--cream-soft); margin: 14px 0 0; }
.inside-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.inside-list li { display: flex; gap: 16px; }
.inside-list .ii { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; font-size: 1.2rem; background: rgba(227,184,102,.14); border: 1px solid rgba(227,184,102,.3); }
.inside-list h3 { font-size: 1.05rem; color: var(--cream); margin-bottom: 2px; }
.inside-list p { font-size: .9rem; color: var(--cream-soft); margin: 0; }
.members-cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.members-cta .note { font-size: .82rem; color: var(--cream-dim); }

/* --------------------------------------------------------------- watch --- */
/* Shared video player + playlist (used by public Watch and the members app). */
.watch { background: var(--night); }
.player-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; align-items: start; max-width: 1000px; margin: 0 auto; }
.player { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, var(--plum), var(--night)); border: 1px solid rgba(236,226,204,.12); }
.player iframe { width: 100%; height: 100%; border: 0; display: block; }
.player .ph { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: var(--cream-soft); padding: 20px; }
.player .ph .k { font-family: var(--f-accent); color: var(--gold); font-size: 1.3rem; margin-bottom: 4px; }
.now-title { font-family: var(--f-display); color: var(--cream); font-size: 1.15rem; margin: 14px 0 4px; }
.now-desc { color: var(--cream-soft); font-size: .92rem; }
.playlist { display: grid; gap: 10px; max-height: 460px; overflow-y: auto; padding-right: 4px; }
.plitem { text-align: left; width: 100%; background: rgba(255,255,255,.03); border: 1px solid rgba(236,226,204,.1); border-left: 3px solid transparent; border-radius: 10px; padding: 13px 15px; cursor: pointer; transition: border-color .2s, background .2s; color: inherit; font: inherit; }
.plitem:hover { background: rgba(255,255,255,.06); }
.plitem.active { border-left-color: var(--gold); background: rgba(227,184,102,.08); }
.plitem .k { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.plitem h3 { font-size: 1rem; color: var(--cream); margin: 3px 0 2px; }
.plitem p { font-size: .82rem; color: var(--cream-soft); margin: 0; }
.plitem .soon { font-size: .68rem; color: var(--cream-dim); margin-top: 4px; }
@media (max-width: 820px) { .player-wrap { grid-template-columns: 1fr; } .playlist { max-height: none; } }

/* --------------------------------------------------------------- about --- */
.about { background: var(--night-2); }
.about-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(30px,5vw,60px); align-items: center; max-width: 960px; margin: 0 auto; }
.about-mark { aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; text-align: center; background: radial-gradient(circle at 30% 25%, var(--plum), var(--night)); border: 1px solid rgba(227,184,102,.3); font-family: var(--f-accent); font-size: 3.6rem; color: var(--gold); }
.about-mark small { display: block; font-family: var(--f-body); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-soft); margin-top: 6px; }
.about-body h2 { font-size: clamp(1.7rem,3.4vw,2.4rem); margin-bottom: 6px; }
.about-body .cred { color: var(--gold); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.about-body p { color: var(--cream-soft); }
.about-body p + p { margin-top: 14px; }

/* ------------------------------------------------------------- contact --- */
.contact { background: linear-gradient(180deg, var(--night-2), var(--night)); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px,5vw,64px); }
.contact-intro h2 { font-size: clamp(1.9rem,3.8vw,2.7rem); }
.contact-intro p { color: var(--cream-soft); }
.contact-intro .direct { margin-top: 26px; display: grid; gap: 10px; }
.contact-intro .direct a { color: var(--cream); font-weight: 600; display: inline-flex; gap: 10px; align-items: center; }
.contact-intro .direct a:hover { color: var(--gold); }
form.card-form { background: rgba(255,255,255,.03); border: 1px solid rgba(236,226,204,.12); border-radius: var(--radius); padding: 30px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-soft); margin-bottom: 8px; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--cream); background: rgba(20,16,31,.6); border: 1px solid rgba(236,226,204,.18); border-radius: 10px; padding: 13px 15px; transition: border-color .2s, box-shadow .2s; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(227,184,102,.18); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e3b866' stroke-width='1.6' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-msg { font-size: .9rem; margin-top: 14px; min-height: 1.2em; color: var(--gold); }

/* -------------------------------------------------------------- footer --- */
.site-footer { background: var(--night); border-top: 1px solid rgba(227,184,102,.14); padding: 64px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .brand { font-size: 1.7rem; margin-bottom: 14px; }
.footer-brand p { color: var(--cream-soft); font-size: .92rem; max-width: 34ch; }
.footer-col h4 { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; font-weight: 700; }
.footer-col a { display: block; color: var(--cream-soft); font-size: .92rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(236,226,204,.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; color: var(--cream-dim); }
.footer-bottom .tagline { font-family: var(--f-display); font-style: italic; }

/* --------------------------------------------------------------- modal --- */
.modal-overlay { position: fixed; inset: 0; z-index: 100; display: none; background: rgba(10,7,18,.72); backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal { width: 100%; max-width: 430px; border-radius: 18px; padding: 38px 34px; background: linear-gradient(180deg, var(--dusk), var(--night-2)); border: 1px solid rgba(227,184,102,.28); box-shadow: 0 40px 80px -30px rgba(0,0,0,.8); position: relative; animation: pop .4s var(--ease); }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.98); } }
.modal .close { position: absolute; top: 16px; right: 18px; background: none; border: 0; color: var(--cream-soft); font-size: 1.5rem; cursor: pointer; line-height: 1; }
.modal .close:hover { color: var(--gold); }
.modal .m-brand { font-family: var(--f-accent); font-size: 1.6rem; color: var(--gold); text-align: center; }
.modal h3 { text-align: center; font-size: 1.5rem; color: var(--cream); margin: 6px 0 4px; }
.modal .m-sub { text-align: center; color: var(--cream-soft); font-size: .9rem; margin: 0 0 24px; }
.modal .field { margin-bottom: 16px; }
.modal .m-alt { text-align: center; font-size: .88rem; color: var(--cream-soft); margin-top: 18px; }
.modal .m-alt a { color: var(--gold); font-weight: 700; cursor: pointer; }
.modal .m-note { text-align: center; font-size: .76rem; color: var(--cream-dim); margin-top: 16px; }

/* ------------------------------------------------------- members view --- */
#membersView { display: none; }
body.members-mode #membersView { display: block; }
body.members-mode #publicView { display: none; }
.dash { min-height: 100vh; padding-top: 74px; }
.dash-hero { background: linear-gradient(180deg, var(--dusk), var(--night-2)); padding: 48px 0 40px; border-bottom: 1px solid rgba(227,184,102,.18); }
.dash-hero .eyebrow { margin-bottom: 10px; }
.dash-hero h1 { font-family: var(--f-display); font-size: clamp(1.8rem,4vw,2.6rem); color: var(--cream); }
.dash-hero p { color: var(--cream-soft); margin: 8px 0 0; }
.dash-section { padding: 44px 0; }
.dash-section h2 { font-size: 1.5rem; color: var(--cream); margin-bottom: 6px; }
.dash-section .dsub { color: var(--cream-soft); font-size: .92rem; margin-bottom: 26px; }
.lesson-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.lesson { border-radius: 12px; overflow: hidden; background: rgba(255,255,255,.03); border: 1px solid rgba(236,226,204,.1); transition: transform .3s var(--ease), border-color .3s; }
.lesson:hover { transform: translateY(-5px); border-color: rgba(227,184,102,.4); }
.lesson .thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--plum), var(--night)); display: grid; place-items: center; position: relative; }
.lesson .thumb .play { width: 54px; height: 54px; border-radius: 50%; background: rgba(227,184,102,.9); display: grid; place-items: center; }
.lesson .thumb .play::before { content: ""; border-left: 15px solid #241a0a; border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 4px; }
.lesson .thumb .dur { position: absolute; bottom: 10px; right: 12px; font-size: .72rem; background: rgba(0,0,0,.55); padding: 2px 8px; border-radius: 6px; color: var(--cream); }
.lesson .meta { padding: 16px 18px; }
.lesson .meta .k { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.lesson .meta h3 { font-size: 1.08rem; color: var(--cream); margin: 4px 0 6px; }
.lesson .meta p { font-size: .86rem; color: var(--cream-soft); margin: 0; }
.deep-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.deep { padding: 24px; border-radius: 12px; background: rgba(255,255,255,.03); border: 1px solid rgba(236,226,204,.1); border-left: 3px solid var(--dc, var(--gold)); }
.deep h3 { font-family: var(--f-accent); font-size: 1.3rem; color: var(--cream); }
.deep .role { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--dc-lt, var(--gold)); margin: 4px 0 10px; }
.deep p { font-size: .9rem; color: var(--cream-soft); margin: 0; }

/* --------------------------------------------------------- responsive --- */
@media (max-width: 940px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .suit-grid, .steps, .video-row, .lesson-grid, .deep-grid, .ways-grid { grid-template-columns: 1fr 1fr; }
  .hero-product, .session-wrap, .members-grid, .contact-wrap, .about-wrap, .shop-secondary { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .about-wrap { max-width: 480px; }
  .about-mark { max-width: 220px; margin: 0 auto; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .header-actions .signin, .header-actions .btn-primary { display: none; }
  .mobile-nav .btn-primary { margin-top: 6px; }
  .steps, .video-row, .lesson-grid, .deep-grid, .ways-grid, .footer-top { grid-template-columns: 1fr; }
  .suit-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .hero-meta { gap: 16px; }
  .offer { flex-direction: column; align-items: flex-start; }
  .triad { gap: 14px; }
  .slot-role b { font-size: 1.05rem; }
  .slot-essence { display: none; }
}

/* mobile nav drawer */
.mobile-nav { position: fixed; inset: 0; z-index: 60; background: rgba(20,16,31,.97); backdrop-filter: blur(10px); display: none; flex-direction: column; align-items: center; justify-content: center; gap: 24px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--f-display); font-size: 1.5rem; color: var(--cream); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .close { position: absolute; top: 22px; right: 24px; background: none; border: 0; color: var(--cream); font-size: 2rem; cursor: pointer; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { * { animation-duration: .001ms !important; transition-duration: .001ms !important; } }
