/* WØLF DEPT. — SHOW landing */
:root {
  --bg: #0A0A0B;
  --bg-elev: #111827;
  --bg-card: #141b2d;
  --bg-card-hover: #1a2336;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #F9FAFB;
  --muted: #9CA3AF;
  --teal: #0D9488;
  --teal-bright: #14B8A6;
  --teal-dim: rgba(13, 148, 136, 0.15);
  --teal-glow: rgba(13, 148, 136, 0.35);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-bright); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: #5eead4; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.15; margin: 0; letter-spacing: -0.02em; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.teal { color: var(--teal-bright); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.7rem 1.35rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-lg { padding: 0.9rem 1.6rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 0 0 0 var(--teal-glow);
}
.btn-teal:hover {
  background: var(--teal-bright);
  color: #fff;
  box-shadow: 0 8px 28px var(--teal-glow);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal-bright);
  background: var(--teal-dim);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  padding: 0 1.25rem;
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.brand-logo { height: 44px; width: auto; }
.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }
.nav-domain {
  color: var(--teal-bright) !important;
  font-weight: 600 !important;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .brand-logo { height: 52px; }
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 120vw);
  height: 420px;
  background: radial-gradient(ellipse at center, var(--teal-glow) 0%, transparent 70%);
  opacity: 0.45;
  pointer-events: none;
}
.hero-inner { position: relative; }
.hero-logo {
  margin: 0 auto 1.5rem;
  width: min(240px, 70vw);
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.5));
}
.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.25rem);
  margin-bottom: 1rem;
}
.hero-lede {
  max-width: 34rem;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.0625rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Niches strip */
.niches {
  border-block: 1px solid var(--border);
  background: var(--bg-elev);
  padding: 1rem 0;
  overflow: hidden;
}
.niches-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  width: min(1120px, calc(100% - 2rem));
}
.niche-pill {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.45rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}
.niche-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.7;
}
@media (max-width: 520px) {
  .niches-track .niche-pill:nth-child(n+7),
  .niches-track .niche-dot:nth-child(n+6) { display: none; }
}

/* Sections */
.programs, .how, .contact { padding: 4.5rem 0; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.75rem; }
.section-sub { color: var(--muted); max-width: 32rem; margin: 0 auto; }

/* Picker */
.picker-layout {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 960px) {
  .picker-layout {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}

.tabs {
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tab {
  flex: 1;
  min-width: max-content;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.tab:hover { color: var(--text); }
.tab.is-active {
  background: var(--bg-card);
  color: var(--text);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.tab-highlight.is-active {
  background: linear-gradient(135deg, var(--teal) 0%, #0f766e 100%);
  color: #fff;
}

.panel { animation: fadeIn 0.35s var(--ease); }
.panel[hidden] { display: none !important; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.panel-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--teal-dim);
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: var(--radius-sm);
}

.tier-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .tier-grid { grid-template-columns: repeat(3, 1fr); }
}

.tier-card {
  position: relative;
  display: block;
  cursor: pointer;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}
.tier-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}
.tier-card:has(input:checked) {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), 0 12px 36px rgba(13, 148, 136, 0.18);
}
.tier-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tier-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.2rem 1.4rem;
  min-height: 100%;
}
.tier-badge {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #042f2e;
  background: var(--teal-bright);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.25rem;
}
.tier-name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
}
.tier-price em {
  font-style: normal;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}
.tier-price small {
  color: var(--muted);
  font-size: 0.875rem;
  margin-left: 0.15rem;
}
.tier-setup {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.tier-setup strong { color: var(--teal-bright); font-weight: 600; }
.tier-perks {
  margin-top: auto;
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.tier-perks li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.tier-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal);
}

/* Bundle */
.bundle-hero-card {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 148, 136, 0.4);
  background:
    linear-gradient(160deg, rgba(13, 148, 136, 0.18) 0%, transparent 50%),
    var(--bg-elev);
  box-shadow: var(--shadow);
}
.bundle-hero-card h3 {
  font-size: 1.75rem;
  margin: 0.5rem 0 0.75rem;
}
.bundle-price em {
  font-style: normal;
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 700;
}
.bundle-price small { color: var(--muted); font-size: 1rem; }
.bundle-math {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.25rem 0 1.25rem;
}
.bundle-select {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: rgba(0,0,0,0.25);
  cursor: pointer;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.bundle-select:has(input:checked) {
  border-color: var(--teal);
  background: var(--teal-dim);
}
.bundle-select input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--teal);
}

.buyout-note {
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
  padding: 0.85rem;
  border-top: 1px dashed var(--border);
}

/* Summary sticky */
.summary {
  position: relative;
}
.summary-inner {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  box-shadow: var(--shadow);
}
.summary h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.summary-lines {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  min-height: 3rem;
}
.summary-lines li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}
.summary-lines .line-label { color: var(--muted); }
.summary-lines .line-price { font-weight: 600; white-space: nowrap; }
.summary-empty { color: var(--muted); border: none !important; }
.summary-totals { margin-bottom: 1.15rem; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}
.summary-row small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 400;
}
.summary-today {
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-strong);
}
.summary-today strong {
  color: var(--teal-bright);
  font-size: 1.25rem;
  font-family: var(--display);
}
.summary-fine {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

/* How */
.how { background: var(--bg-elev); border-block: 1px solid var(--border); }
.steps {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.2s;
}
.step:hover { border-color: rgba(13, 148, 136, 0.35); }
.step-num {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.step h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.9375rem; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
  }
}
.contact-copy h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }
.contact-copy p { color: var(--muted); }
.contact-email {
  margin-top: 1.5rem !important;
  font-size: 1.125rem;
}
.contact-email a { font-weight: 600; }

.lead-form {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-dim);
}
.form-row input[readonly] {
  color: var(--teal-bright);
  cursor: default;
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-hint {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}
.form-success {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--teal-dim);
  border: 1px solid rgba(13, 148, 136, 0.35);
  font-size: 0.9rem;
  color: var(--text);
}
.form-row.is-invalid input,
.form-row.is-invalid select,
.form-row.is-invalid textarea {
  border-color: #ef4444;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  background: #070708;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.footer-brand strong {
  font-family: var(--display);
  font-size: 1.15rem;
  display: block;
}
.footer-brand p {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted);
}
.footer-meta a { color: var(--muted); }
.footer-meta a:hover { color: var(--teal-bright); }

/* Mobile summary bar tweak */
@media (max-width: 959px) {
  .summary-inner {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .panel, .btn, .tier-card { animation: none; transition: none; }
}


/* —— Typed wordmark (no logo image) —— */
.brand .wordmark,
.hero-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.95;
  gap: 0.15rem;
}
.hero-wordmark {
  align-items: center;
  text-align: center;
  margin: 0 0 1.25rem;
}
.wordmark-wolf {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
}
.brand .wordmark-wolf { font-size: 1.45rem; }
.hero-wordmark .wordmark-wolf {
  font-size: clamp(3rem, 10vw, 5.5rem);
  letter-spacing: 0.06em;
}
.wordmark-dept {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.55em;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  padding-left: 0.1em;
}
.brand .wordmark-dept { font-size: 0.55rem; letter-spacing: 0.5em; }
.hero-wordmark .wordmark-dept {
  font-size: clamp(0.75rem, 2.2vw, 1rem);
  letter-spacing: 0.72em;
  margin-top: 0.35rem;
  color: #0D9488;
}
.brand-logo,
.hero-logo { display: none !important; }
