:root {
  --red: #c8102e;
  --red-dark: #9a0d24;
  --accent-tint: #fdecef;
  --ink: #111418;
  --ink-soft: #2b3038;
  --gray-mst: #4a5257;
  --line: #e6e8ec;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --bg-dark: #0d1015;
  --gold: #e4b43c;
  --muted: #6b7280;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

/* Utility top bar — Podcast, Blog, Academy Login */
.top-bar { background: var(--ink); color: #b9bdc7; padding: 8px 0; font-size: 13px; }
.top-bar-inner { max-width: 1240px; margin: 0 auto; padding: 0 28px; display: flex; justify-content: flex-end; gap: 22px; flex-wrap: wrap; }
.top-bar a { color: #e8eaef; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; transition: color .15s ease; }
.top-bar a:hover { color: var(--gold); }
.top-bar a svg { width: 14px; height: 14px; flex-shrink: 0; }
@media (max-width: 600px) { .top-bar-inner { justify-content: center; gap: 14px; font-size: 12px; } }

/* Brand logo (img + fallback) */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: saturate(1.2) blur(10px); border-bottom: 1px solid var(--line); }
.site-header-inner { max-width: 1240px; margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 70px; width: auto; }
.brand-fallback { display: flex; flex-direction: column; line-height: 1; }
.brand-fallback .logo-modern { font-weight: 700; color: #1d3a8a; font-size: 30px; letter-spacing: 3px; }
.brand-fallback .logo-sub { font-weight: 400; color: var(--gray-mst); font-size: 12px; letter-spacing: 5px; margin-top: 4px; }
.site-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.site-nav a { padding: 10px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink-soft); transition: all .15s ease; }
.site-nav a:hover { background: var(--bg-soft); }
.site-nav a.current { background: var(--ink); color: #fff; }
.header-cta { background: var(--red); color: #fff; padding: 10px 18px; border-radius: 8px; font-weight: 700; font-size: 13px; transition: background .15s ease; white-space: nowrap; flex-shrink: 0; }
.header-cta:hover { background: var(--red-dark); }

/* Hamburger toggle — hidden on desktop */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-shrink: 0; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: all .25s ease; }
.nav-toggle span + span { margin-top: 6px; }
/* Mobile CTA slot — always hidden on desktop */
.mobile-cta-slot { display: none; }

/* Mobile nav */
@media (max-width: 960px) {
  .site-header-inner { padding: 10px 20px; gap: 12px; }
  .brand img { height: 50px; }
  .brand-fallback .logo-modern { font-size: 22px; }
  .brand-fallback .logo-sub { font-size: 10px; }
  .nav-toggle { display: block; }
  .site-nav, .header-cta { display: none; }

  /* Open state */
  .site-header.nav-open .site-nav {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    padding: 12px 20px 16px;
    z-index: 100;
  }
  .site-header.nav-open .site-nav a {
    padding: 14px 12px; border-radius: 10px; font-size: 15px; border-bottom: 1px solid var(--line);
  }
  .site-header.nav-open .site-nav a:last-child { border-bottom: none; }
  /* Stack CTA inside nav dropdown */
  .site-header.nav-open .mobile-cta-slot {
    display: block; padding: 8px 0 4px;
  }
  .mobile-cta-slot .header-cta { display: block; text-align: center; width: 100%; padding: 14px; font-size: 15px; border-radius: 10px; }

  /* Hamburger X animation */
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--red); text-transform: uppercase; padding: 6px 10px; background: var(--accent-tint); border-radius: 4px; }
.eyebrow.on-dark { background: rgba(200,16,46,.2); color: #ff6c85; }
h1.hero-h { font-size: clamp(36px, 5vw, 64px); font-weight: 800; letter-spacing: -.02em; line-height: 1.05; }
h2.section-h { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; letter-spacing: -.015em; line-height: 1.1; }
h3.card-h { font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.lede { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-soft); max-width: 64ch; }
.section { padding: 80px 0; }
.section.tight { padding: 56px 0; }
.section.dark { background: var(--bg-dark); color: #e8eaef; }
.section.dark .lede { color: #b9bdc7; }
.section.soft { background: var(--bg-soft); }

/* Blog article body: paragraph spacing, heading spacing */
article .container > div > p { margin: 0 0 1.25em; }
article .container > div > h2 { margin-top: 48px; margin-bottom: 16px; font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; letter-spacing: -.015em; line-height: 1.2; }
article .container > div > h3 { margin-top: 32px; margin-bottom: 12px; font-size: clamp(20px, 2vw, 26px); font-weight: 700; line-height: 1.25; }
article .container > div > ul, article .container > div > ol { margin: 0 0 1.25em 1.5em; }
article .container > div > ul li, article .container > div > ol li { margin-bottom: .5em; }
article .container > div > blockquote { margin: 1.25em 0; }

.btn { display: inline-block; padding: 14px 22px; border-radius: 10px; font-weight: 700; font-size: 15px; transition: transform .1s ease, box-shadow .15s ease; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 4px 14px rgba(200,16,46,.28); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(200,16,46,.38); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost.on-dark { color: #fff; border-color: #fff; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

.hero { padding: 80px 0 60px; background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero-grid.reverse { grid-template-columns: .85fr 1.15fr; }
.hero h1 + .lede { margin-top: 20px; }
.hero .eyebrow { margin-bottom: 16px; }
.hero-img { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px rgba(17,20,24,.18); aspect-ratio: 4/5; background: var(--bg-soft); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero { padding: 32px 0 48px; }
  .hero-grid, .hero-grid.reverse { grid-template-columns: 1fr; gap: 28px; }
  .hero-img { aspect-ratio: 4/3; order: -1; }
  .hero-grid > div:last-child { order: -1; }
}

.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 40px; }
.pain-card { padding: 22px; border-radius: 12px; border: 1px solid var(--line); background: #fff; }
.pain-card .tag { color: var(--red); font-weight: 700; font-size: 13px; letter-spacing: 1px; }
.pain-card h4 { font-size: 17px; margin: 8px 0 6px; font-weight: 700; }
.pain-card p { color: var(--ink-soft); font-size: 14.5px; }

.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; } }
.tier-card { padding: 32px 28px; border-radius: 16px; border: 1px solid var(--line); background: #fff; transition: transform .15s ease, box-shadow .2s ease; display: flex; flex-direction: column; }
.tier-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(17,20,24,.1); }
.tier-card .tier-num { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 1.5px; }
.tier-card .tier-logo { height: 64px; margin: 16px 0 18px; display: flex; align-items: center; }
.tier-card .tier-logo img { max-height: 64px; width: auto; }
.tier-card h3 { font-size: 24px; font-weight: 800; letter-spacing: -.01em; }
.tier-card .tier-meta { display: flex; gap: 14px; margin-top: 10px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.tier-card .tier-meta span::before { content: "•"; margin-right: 8px; color: var(--red); }
.tier-card .tier-meta span:first-child::before { content: ""; margin: 0; }
.tier-card p.summary { color: var(--ink-soft); font-size: 15px; margin-top: 14px; flex-grow: 1; }
.tier-card .tier-for { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); font-size: 13px; color: var(--muted); }
.tier-card .tier-for strong { color: var(--ink); }
.tier-card .tier-cta { margin-top: 20px; font-weight: 700; color: var(--red); font-size: 14px; }

.stats-strip { background: var(--ink); color: #fff; padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat .num { font-size: 42px; font-weight: 800; color: var(--gold); letter-spacing: -.02em; }
.stat .label { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #b9bdc7; margin-top: 4px; }

.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 36px; }
@media (max-width: 800px) { .features { grid-template-columns: 1fr; } }
.feature { display: flex; gap: 16px; padding: 22px; border-radius: 12px; background: #fff; border: 1px solid var(--line); }
.feature .icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-tint); display: flex; align-items: center; justify-content: center; color: var(--red); font-weight: 800; flex-shrink: 0; }
.feature h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.feature p { color: var(--ink-soft); font-size: 14.5px; }

/* Results in Action (replaces partner strip) */
.results-action { padding: 56px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.results-action .label { text-align: center; font-size: 12px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.results-action h2 { text-align: center; font-size: clamp(24px, 2.8vw, 34px); font-weight: 800; letter-spacing: -.01em; margin-bottom: 32px; }
.results-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 900px) { .results-cards { grid-template-columns: 1fr; } }
.result-card { background: var(--bg-soft); border-radius: 14px; padding: 22px; border: 1px solid var(--line); position: relative; }
.result-card::before { content: "\201C"; position: absolute; top: 8px; left: 16px; font-size: 52px; color: var(--red); opacity: .2; font-family: Georgia, serif; line-height: 1; }
.result-card .msg { font-size: 15px; font-weight: 500; color: var(--ink); padding-top: 14px; line-height: 1.5; }
.result-card .meta { margin-top: 14px; font-size: 12px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.result-card .meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.result-card .screenshot-note { margin-top: 10px; font-size: 11px; color: var(--muted); font-style: italic; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }
.pillar { padding: 28px 24px; border-radius: 14px; background: linear-gradient(180deg, #fff 0%, #fafbfc 100%); border: 1px solid var(--line); }
.pillar .pillar-num { display: inline-flex; width: 36px; height: 36px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 800; align-items: center; justify-content: center; }
.pillar h4 { font-size: 19px; margin: 16px 0 8px; font-weight: 800; }
.pillar .classes { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.pillar ul { margin-top: 14px; padding-left: 18px; color: var(--ink-soft); font-size: 14.5px; }
.pillar ul li { margin-bottom: 6px; }

.class-table { margin-top: 36px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.class-row { display: grid; grid-template-columns: 80px 1fr 180px; padding: 16px 22px; border-bottom: 1px solid var(--line); align-items: center; font-size: 14.5px; }
.class-row:last-child { border-bottom: 0; }
.class-row .num { font-weight: 800; color: var(--red); font-size: 14px; }
.class-row .title { font-weight: 600; }
.class-row .tag { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
@media (max-width: 700px) {
  .class-row { grid-template-columns: 60px 1fr; }
  .class-row .tag { display: none; }
}

/* Testimonial carousel */
.carousel { margin-top: 36px; position: relative; }
.carousel-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 10px; -webkit-overflow-scrolling: touch; }
.carousel-track::-webkit-scrollbar { height: 8px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.carousel-slide { flex: 0 0 calc(50% - 10px); scroll-snap-align: start; min-width: 320px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px; }
@media (max-width: 800px) { .carousel-slide { flex-basis: 90%; } }
.carousel-slide .author { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.carousel-slide .author .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--accent-tint); color: var(--red); display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; font-size: 18px; }
.carousel-slide .author .name { font-weight: 700; font-size: 15px; }
.carousel-slide .author .role { font-size: 12px; color: var(--muted); }
.carousel-slide .quote { font-size: 15px; color: var(--ink); line-height: 1.55; }
.carousel-slide .quote strong { color: var(--red); }
.carousel-slide.video { padding: 0; overflow: hidden; }
.carousel-slide.video iframe { width: 100%; aspect-ratio: 16/9; display: block; border: 0; }
.carousel-slide.video .caption { padding: 14px 20px; font-size: 13px; color: var(--muted); }
.carousel-nav { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
.carousel-nav button { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1.5px solid var(--line); color: var(--ink); font-size: 18px; font-weight: 700; cursor: pointer; transition: all .15s ease; }
.carousel-nav button:hover { border-color: var(--red); color: var(--red); }

/* Video placeholder */
.video-slot { margin-top: 36px; border-radius: 14px; overflow: hidden; background: var(--ink); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; box-shadow: 0 20px 50px rgba(17,20,24,.2); }
.video-slot .play { width: 78px; height: 78px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px; box-shadow: 0 10px 30px rgba(200,16,46,.4); }
.video-slot .caption { position: absolute; bottom: 24px; left: 24px; color: #fff; font-weight: 600; font-size: 14px; }

.cta-banner { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: #fff; border-radius: 20px; padding: 48px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center; margin: 24px 0; }
@media (max-width: 800px) { .cta-banner { grid-template-columns: 1fr; padding: 32px; } }
.cta-banner h3 { font-size: 28px; font-weight: 800; line-height: 1.15; }
.cta-banner p { margin-top: 10px; opacity: .9; }
.cta-banner .btn-primary { background: #fff; color: var(--red); }
.cta-banner .btn-primary:hover { background: #fff; color: var(--red-dark); }

.faq { margin-top: 36px; }
details.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
details.faq-item summary { font-weight: 700; font-size: 17px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: "+"; font-weight: 400; font-size: 24px; color: var(--red); }
details.faq-item[open] summary::after { content: "\2013"; }
details.faq-item p { margin-top: 10px; color: var(--ink-soft); }

.outcomes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
@media (max-width: 700px) { .outcomes { grid-template-columns: 1fr; } }
.outcome { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; background: var(--bg-soft); border-radius: 10px; }
.outcome .check { width: 22px; height: 22px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.outcome span { font-size: 14.5px; color: var(--ink); }

/* Footer — dark with white transparent logo, social icons, phone/email */
footer.site-footer { background: var(--bg-dark); color: #b9bdc7; padding: 56px 0 32px; }
footer .footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 28px; }
@media (max-width: 800px) { footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { footer .footer-grid { grid-template-columns: 1fr; } }
footer h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
footer ul { list-style: none; font-size: 14px; }
footer ul li { margin-bottom: 8px; }
footer ul li a:hover { color: #fff; }
footer .legal { margin-top: 36px; padding-top: 24px; border-top: 1px solid #242a33; font-size: 12px; color: #6b7280; }
footer .brand img { height: 80px; }
footer .brand-fallback .logo-modern { font-size: 34px; color: #fff !important; letter-spacing: 4px; }
footer .brand-fallback .logo-sub { font-size: 14px; color: #b9bdc7 !important; letter-spacing: 6px; }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a { color: #b9bdc7; transition: color .15s ease; display: inline-flex; }
.footer-social a:hover { color: #fff; }
.footer-social svg { width: 22px; height: 22px; }
.footer-contact-line { font-size: 14px; margin-top: 10px; }
.footer-contact-line a { transition: color .15s ease; }
.footer-contact-line a:hover { color: #fff; }

/* Legal content page (Privacy & Terms) — sidebar + content layout */
.legal-layout { display: grid; grid-template-columns: 200px 1fr; gap: 48px; }
@media (max-width: 800px) { .legal-layout { grid-template-columns: 1fr; gap: 24px; } }
.legal-sidebar { position: sticky; top: 100px; align-self: start; }
.legal-sidebar a {
  display: block; padding: 10px 14px; border-radius: 8px; font-size: 14px; font-weight: 600;
  color: var(--ink-soft); transition: all .15s ease; margin-bottom: 4px;
}
.legal-sidebar a:hover { background: var(--bg-soft); }
.legal-sidebar a.active { background: var(--accent-tint); color: var(--red); }
@media (max-width: 800px) {
  .legal-sidebar { position: static; display: flex; gap: 4px; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
  .legal-sidebar a { margin-bottom: 0; }
}
.legal-content { max-width: 760px; }
.legal-content h2 { font-size: 28px; margin-bottom: 20px; }
.legal-content h3 { font-size: 19px; margin-top: 32px; margin-bottom: 10px; }
.legal-content p { margin-bottom: 14px; color: var(--ink-soft); line-height: 1.7; }
.legal-content ul { margin: 10px 0 18px 24px; color: var(--ink-soft); line-height: 1.7; }
.legal-content ul li { margin-bottom: 6px; list-style: disc; }
.legal-content a { color: var(--red); text-decoration: underline; }
.legal-section { display: none; }
.legal-section.active { display: block; }

/* Customer Reviews page */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 700px) { .review-grid { grid-template-columns: 1fr; } }
.review-grid.compact { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) { .review-grid.compact { grid-template-columns: 1fr; } }
.review-card { background: var(--bg-soft); border-radius: 12px; padding: 28px; }
.review-card.mini { padding: 22px; }
.review-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.review-card blockquote { font-size: 17px; font-style: italic; line-height: 1.55; color: var(--ink); margin-bottom: 16px; }
.review-card.mini p { font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 12px; }
.review-author { font-size: 14px; }
.review-author strong { color: var(--ink); display: block; }
.review-author span { color: var(--muted); }

.hero-leaders { background: linear-gradient(135deg, #0d1015 0%, #1b2028 100%); color: #fff; }
.hero-leaders .lede { color: #c4c8d1; }
.hero-leaders .eyebrow { background: rgba(228,180,60,.15); color: var(--gold); }

.quote-box { border-left: 5px solid var(--red); padding: 20px 0 20px 28px; font-size: 22px; font-weight: 500; line-height: 1.4; margin: 36px 0; color: var(--ink); font-style: italic; }
.quote-box .attrib { display: block; margin-top: 14px; font-size: 14px; color: var(--muted); font-style: normal; font-weight: 600; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: 14px; box-shadow: 0 18px 40px rgba(17,20,24,.12); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 6px; color: var(--ink-soft); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 8px; font-size: 15px; background: #fff; color: var(--ink); transition: border-color .15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 0; border-color: var(--red); }
.form-field textarea { min-height: 140px; resize: vertical; }
.form-submit { width: 100%; padding: 16px; font-size: 15px; font-weight: 700; background: var(--red); color: #fff; border: 0; border-radius: 10px; cursor: pointer; transition: background .15s ease; }
.form-submit:hover { background: var(--red-dark); }

/* MPS workshop card recreation */
.mps-workshop-banner {
  background: radial-gradient(ellipse at center, #2a1a4a 0%, #0d0518 60%, #000 100%);
  color: #fff; border-radius: 14px; padding: 28px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.mps-workshop-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,212,120,.08) 50%, transparent 65%);
  pointer-events: none;
}
.mps-workshop-banner .title { font-size: 26px; font-weight: 800; letter-spacing: 1px; line-height: 1.05; }
.mps-workshop-banner .title .accent { color: var(--gold); }
.mps-workshop-banner .sub { margin-top: 14px; font-size: 13px; line-height: 1.5; color: #d4d4d4; }
.mps-workshop-banner .sponsor { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.15); font-size: 11px; letter-spacing: 1px; color: #9ca3af; }
