/**
 * public/css/site.css
 *
 * Global styles for the VXF Founder Launch public site.
 *
 * Purpose:
 * - Style the public launch-facing pages with a clean, premium SaaS look
 * - Support both the home page and webinar page
 * - Provide reusable layout, button, card, offer, feature, and modal styles
 *
 * Important notes:
 * - Keep page-specific JS behavior out of CSS
 * - Prefer reusable component classes over one-off styling
 * - Hidden state uses `.hidden`
 */

:root {
  --bg: #0c1222;
  --bg-soft: #121a2f;
  --panel: #141d34;
  --panel-2: #18233e;
  --surface: #f7f1e8;
  --surface-2: #fffaf3;
  --text: #f8fafc;
  --text-soft: rgba(248, 250, 252, 0.78);
  --text-dark: #182033;
  --text-dark-soft: rgba(24, 32, 51, 0.72);
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #d7a85e;
  --accent-strong: #f2a544;
  --accent-soft: rgba(242, 165, 68, 0.14);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.22);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
.site-body {
  margin: 0;
  min-width: 320px;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(215, 168, 94, 0.12), transparent 28%),
    linear-gradient(180deg, #0b1020 0%, #0e1528 100%);
  color: var(--text);
}

body.modal-open {
  overflow: hidden;
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.page {
  padding: 0 0 120px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(10, 15, 29, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-logo-image {
  width: auto;
  height: 42px;
  max-width: 260px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.header-link:hover {
  color: #ffffff;
}

.header-link-muted {
  opacity: 0.72;
}

.header-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.header-profile-image {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #ffffff;
}

.header-profile-text {
  line-height: 1;
}

/* Hero */

.hero {
  padding: 72px 0 28px;
}

.hero-content {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.78;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.hero-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-subcopy {
  margin: 20px 0 0;
  max-width: 760px;
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  line-height: 1.65;
  color: var(--text-soft);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Sections */

.video-section,
.calculator-section,
.offer-section,
.features-section {
  margin-top: 30px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 20px;
}

.section-title {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-copy {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

/* Video */

.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    #111827;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow-lg);
}

.video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vxf-video-frame {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 32px auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
  background: #050516;
}

.vxf-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.webinar-video-frame {
  container-type: inline-size;
}

.founder-onboarding-video {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 32px auto;
  border-radius: 16px;
  overflow: hidden;
}

.webinar-loss-range-overlay {
  position: absolute;
  left: 50%;
  top: 75%;
  transform: translate(-50%, -50%);
  z-index: 6;
  pointer-events: none;
  background: #ffffff;
  color: #0f172a;
  width: clamp(70%, 78cqw, 85%);
  font-size: clamp(1.05rem, 5.2cqw, 2.9rem);
  font-weight: 800;
  line-height: 1.1;
  border-radius: clamp(8px, 1.4cqw, 14px);
  padding: clamp(8px, 1.6cqw, 14px) clamp(12px, 2.2cqw, 22px);
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.28);
  text-align: center;
  white-space: nowrap;
  max-width: calc(100% - 16px);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Cards */

.card,
.offer-card,
.feature-card,
.offer-side-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}

.card {
  padding: 28px;
}

.calculator-card {
  max-width: 760px;
  margin: 0 auto;
}

.admin-card-wide {
  width: 100%;
  max-width: none;
  background: #f8fafc;
  border: 1px solid rgba(24, 32, 51, 0.12);
  box-shadow: 0 20px 44px rgba(2, 6, 23, 0.20);
  color: var(--text-dark);
}

.admin-page-container {
  width: calc(100% - 56px);
  max-width: none;
}

.admin-card-wide .eyebrow {
  color: #8f6a2d;
}

.admin-card-wide .calc-title,
.admin-card-wide h1,
.admin-card-wide h2,
.admin-card-wide h3 {
  color: var(--text-dark);
}

.admin-card-wide p,
.admin-card-wide th,
.admin-card-wide td,
.admin-card-wide strong {
  color: #1b2842;
}

.admin-card-wide .result {
  background: #eef4ff;
  border-color: #d0def4;
  color: #1f2f4d;
}

.admin-card-wide .btn-secondary {
  background: #ffffff;
  border-color: #c8d3e3;
  color: #1b2842;
}

.admin-card-wide .btn-secondary:hover {
  background: #f5f8fe;
  border-color: #b8c8df;
  color: #14213a;
}

.calc-title,
.offer-title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.calc-copy,
.offer-copy-text {
  margin: 14px 0 0;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* Form */

.field {
  margin-top: 18px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

input {
  width: 100%;
  min-height: 54px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(8, 13, 24, 0.72);
  color: #ffffff;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

input::placeholder {
  color: rgba(255,255,255,0.40);
}

input:focus {
  border-color: rgba(242, 165, 68, 0.72);
  box-shadow: 0 0 0 4px rgba(242, 165, 68, 0.12);
  background: rgba(8, 13, 24, 0.88);
}

select,
textarea {
  width: 100%;
  max-width: 100%;
  min-height: 54px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(8, 13, 24, 0.72);
  color: #ffffff;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

textarea {
  min-height: 124px;
  resize: vertical;
}

select:focus,
textarea:focus {
  border-color: rgba(242, 165, 68, 0.72);
  box-shadow: 0 0 0 4px rgba(242, 165, 68, 0.12);
  background: rgba(8, 13, 24, 0.88);
}

.field + .field {
  margin-top: 16px;
}

.form-card {
  background: #f8fafc;
  border: 1px solid rgba(24, 32, 51, 0.12);
  box-shadow: 0 20px 44px rgba(2, 6, 23, 0.20);
  color: var(--text-dark);
}

.form-card .eyebrow {
  color: #8f6a2d;
}

.form-card .calc-title,
.form-card .section-title,
.form-card .offer-title {
  color: var(--text-dark);
}

.form-card .calc-copy,
.form-card .section-copy,
.form-card .offer-copy-text {
  color: var(--text-dark-soft);
}

.required-mark {
  color: #b42318;
  font-weight: 700;
}

.field-help {
  margin: 0 0 8px;
  color: #4a5b78;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-card .leak-question {
  font-weight: 700;
  color: #1b2842;
}

.form-card label {
  color: #1b2842;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #ffffff;
  border-color: #c8d3e3;
  color: #17253f;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #667085;
}

.form-card .result {
  background: #eef4ff;
  border-color: #d0def4;
  color: #1f2f4d;
}

.form-card button.btn,
.form-card a.btn {
  margin-top: 16px;
}

.field-error-message {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #b42318;
}

.apply-section-card .field + .field {
  margin-top: 18px;
}

.strategy-session-notice {
  border: 2px solid rgba(215, 146, 57, 0.46);
  box-shadow: 0 22px 48px rgba(215, 146, 57, 0.16);
}

.input-error {
  border-color: #d92d20 !important;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.12) !important;
}

.field-error label {
  color: #7a271a !important;
}

.content-card-light {
  background: #f8fafc;
  border: 1px solid rgba(24, 32, 51, 0.12);
  box-shadow: 0 20px 44px rgba(2, 6, 23, 0.20);
  color: var(--text-dark);
}

.content-card-light .eyebrow {
  color: #8f6a2d;
}

.content-card-light .calc-title,
.content-card-light .section-title,
.content-card-light .offer-title,
.content-card-light h1,
.content-card-light h2,
.content-card-light h3 {
  color: var(--text-dark);
}

.content-card-light .calc-copy,
.content-card-light .section-copy,
.content-card-light .offer-copy-text,
.content-card-light p {
  color: var(--text-dark-soft);
}

.content-card-light li,
.content-card-light strong {
  color: #1b2842;
}

.content-card-light .result {
  background: #eef4ff;
  border-color: #d0def4;
  color: #1f2f4d;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.16s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #f2a544 0%, #d79239 100%);
  color: #111827;
  box-shadow: 0 12px 26px rgba(215, 146, 57, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(215, 146, 57, 0.30);
}

.btn-secondary {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.14);
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.22);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

#calcButton,
.calc-next {
  width: 100%;
  margin-top: 18px;
}

/* Result */

.result {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(242, 165, 68, 0.20);
  color: #fff3df;
  line-height: 1.6;
}

.calc-result-cta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 47, 77, 0.20);
}

.calc-result-cta-title {
  margin: 0;
  color: #1b2842;
  font-size: 1.22rem;
  line-height: 1.3;
}

.calc-result-cta-copy {
  margin: 10px 0 0;
  color: rgba(27, 40, 66, 0.86);
  line-height: 1.6;
}

.calc-result-cta-copy p {
  margin: 0 0 10px;
}

.calc-result-cta-copy p:last-child {
  margin-bottom: 0;
}

.calc-result-cta-button {
  width: 100%;
  margin-top: 14px;
}

.calc-privacy-card {
  background: #f7f9fd;
  border: 1px solid #d7e3f6;
  border-radius: 12px;
  padding: 12px;
}

.privacy-link-btn {
  background: none;
  border: 0;
  color: #1d4ed8;
  text-decoration: underline;
  padding: 0;
  font-weight: 700;
  cursor: pointer;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 24, 0.62);
}

.privacy-modal-panel {
  position: relative;
  width: min(620px, calc(100% - 28px));
  margin: 9vh auto;
  background: #ffffff;
  border: 1px solid #d0def4;
  border-radius: 16px;
  padding: 22px;
  color: #1b2842;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.32);
}

.privacy-modal-panel h3 {
  margin-top: 0;
}

.privacy-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 1px solid #d0def4;
  border-radius: 50%;
  background: #f8fafc;
  color: #1b2842;
}

.result-loading {
  border-left: 3px solid rgba(31, 47, 77, 0.28);
  padding-left: 12px;
}

#webinarLeakExercise[hidden] {
  display: none !important;
}

.leak-exercise-revealed {
  animation: leakReveal 360ms ease-out;
}

#offer[hidden] {
  display: none !important;
}

.faq-card {
  max-width: 980px;
}

#webinarFaqs[hidden] {
  display: none !important;
}

.faq-revealed {
  animation: leakReveal 360ms ease-out;
}

.faq-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid #c8d3e3;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: #1b2842;
  text-align: left;
  font-weight: 700;
  line-height: 1.4;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-toggle:focus-visible {
  outline: 3px solid rgba(29, 78, 216, 0.25);
  outline-offset: -3px;
}

.faq-indicator {
  color: #41587b;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.faq-toggle[aria-expanded="true"] .faq-indicator {
  transform: rotate(45deg);
}

.faq-answer {
  border-top: 1px solid #e2e8f0;
  color: #3d4a63;
  padding: 12px 16px 14px;
  line-height: 1.6;
}

.offer-revealed {
  animation: leakReveal 360ms ease-out;
}

@keyframes leakReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Offer */

.offer-card {
  padding: 30px;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.offer-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.7;
}

.offer-list li + li {
  margin-top: 8px;
}

.offer-side {
  display: flex;
}

.offer-side-card {
  width: 100%;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(242,165,68,0.08), rgba(255,255,255,0.02));
}

.offer-side-label {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
}

.offer-side-title {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.2;
}

.offer-side-copy {
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.offer-cta-stack {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.offer-cta {
  width: 100%;
}

.offer-side-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.68);
}

.offer-beta-disclosure {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(24, 32, 51, 0.16);
  background: rgba(24, 32, 51, 0.02);
}

.offer-beta-title {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  color: #2a3650;
}

.offer-beta-copy {
  margin: 10px 0 0;
  max-width: 100%;
  font-size: 0.83rem;
  line-height: 1.55;
  color: rgba(24, 32, 51, 0.72);
}

.offer-founder-trust-card {
  margin-top: 22px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(24, 32, 51, 0.14);
  background: rgba(248, 250, 255, 0.92);
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.offer-founder-trust-avatar-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.offer-founder-trust-avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.18);
}

.offer-founder-trust-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1b2842;
}

.offer-founder-trust-copy {
  margin: 10px 0 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(27, 40, 66, 0.78);
}

.offer-founder-trust-link {
  margin-top: 12px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #c8d3e3;
  color: #1b2842;
}

.offer-founder-trust-link:hover {
  background: #f5f8fe;
  border-color: #b8c8df;
  color: #14213a;
}

.webinar-offer-card {
  background: #f5f7fb;
  border-color: rgba(24, 32, 51, 0.14);
}

.webinar-offer-card .offer-title {
  max-width: 560px;
}

.webinar-offer-card .offer-copy-text {
  max-width: 620px;
}

.offer-feature-list {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.offer-feature-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.offer-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #f2a544;
  background: radial-gradient(circle at 30% 20%, #223559 0%, #0d1a33 70%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}

.offer-feature-item h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #14213a;
}

.offer-feature-item p {
  margin: 2px 0 0;
  color: #3d4a63;
  line-height: 1.45;
}

.webinar-offer-side-card {
  background: #ffffff;
  border: 1px solid rgba(24, 32, 51, 0.10);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.10);
}

.offer-side-rule {
  border: 0;
  border-top: 1px solid rgba(242, 165, 68, 0.45);
  margin: 18px 0;
}

.offer-side-highlight {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.offer-side-highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(242, 165, 68, 0.85);
  color: #d88f1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff8ed;
}

.offer-side-highlight h4 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #182033;
}

.offer-side-highlight p {
  margin: 2px 0 0;
  color: #3d4a63;
}

.offer-proof-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  font-size: 12px;
  color: #364760;
}

.offer-proof-list li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding-left: 0;
  border-left: 1px solid rgba(24, 32, 51, 0.15);
}

.offer-proof-list li::before {
  content: "✓";
  position: absolute;
  left: -11px;
  top: -1px;
  color: #d88f1f;
  font-weight: 700;
}

/* Features */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 22px;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.65;
  min-height: 106px;
}

.feature-card .btn {
  width: 100%;
  margin-top: 18px;
}

/* Founder onboarding page tightening */

.founder-onboarding-page .founder-onboarding-hero-actions .btn {
  width: 100%;
}

.founder-onboarding-page .founder-value-ladder-card .feature-grid {
  gap: 14px;
}

.founder-onboarding-page .founder-value-card {
  padding: 14px;
}

.founder-onboarding-page .founder-value-card h3 {
  margin-bottom: 4px;
  line-height: 1.2;
}

.founder-onboarding-page .founder-value-card p {
  margin-top: 6px;
  margin-bottom: 6px;
  min-height: 0;
  line-height: 1.4;
}

.founder-onboarding-page .founder-value-card ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

.founder-onboarding-page .founder-value-card li {
  line-height: 1.4;
  margin: 2px 0;
}

.founder-onboarding-page .founder-total-value-card {
  padding: 20px;
}

.founder-onboarding-page .founder-total-value-title {
  font-size: 1.1rem;
  line-height: 1.2;
}

.founder-onboarding-page .founder-total-value-amount {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: #0f1e3a;
}

.founder-onboarding-page .founder-total-value-amount strong {
  font-weight: 800;
}

.founder-onboarding-page .founder-bottom-cta-card {
  max-width: 760px;
}

.founder-onboarding-page .founder-bottom-cta-button {
  width: 100%;
  margin-top: 0;
}

/* Slide in */

.slide-in {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: rgba(17, 24, 39, 0.96);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.40);
  backdrop-filter: blur(14px);
}

.slide-in-content {
  min-width: 0;
}

.slide-in-content strong {
  display: block;
  font-size: 15px;
  color: #ffffff;
}

.slide-in-content p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.45;
}

/* Modal */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 20, 0.78);
  backdrop-filter: blur(8px);
}

.video-modal-panel {
  position: relative;
  width: min(960px, calc(100% - 28px));
  margin: 48px auto;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, #131b30 0%, #0f1628 100%);
  box-shadow: 0 28px 80px rgba(0,0,0,0.45);
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.video-modal-title {
  margin: 0 36px 18px 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.modal-video-wrap {
  border-radius: 20px;
}

/* Footer */

.site-footer {
  margin-top: 72px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(7, 11, 22, 0.55);
}

.footer-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.footer-left {
  color: rgba(255,255,255,0.58);
  font-size: 14px;
}

.footer-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-right a {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-right a:hover {
  color: #ffffff;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.footer-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Utilities */

.hidden {
  display: none !important;
}

/* Responsive */

@media (max-width: 1023px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card p {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .site-logo-image {
    height: 36px;
    max-width: 220px;
  }

  .header-nav {
    gap: 12px;
  }

  .header-link {
    font-size: 13px;
  }

  .hero {
    padding: 46px 0 18px;
  }

  .card,
  .offer-card,
  .feature-card,
  .offer-side-card,
  .video-modal-panel {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .video-wrap,
  .modal-video-wrap {
    border-radius: 22px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .slide-in {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .slide-in .btn {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-right {
    gap: 14px;
  }

  .video-modal-panel {
    width: calc(100% - 20px);
    margin: 18px auto;
  }

  .admin-page-container {
    width: calc(100% - 24px);
  }

  .offer-proof-list {
    grid-template-columns: 1fr 1fr;
  }

  .offer-founder-trust-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .offer-founder-trust-avatar {
    width: 56px;
    height: 56px;
  }

  .apply-section-card textarea {
    min-height: 140px;
  }

  .apply-section-card select {
    min-height: 56px;
  }
}

@media (min-width: 768px) {
  .page {
    padding-bottom: 140px;
  }
}

/* Hero bullet list (home page) */

.hero-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-list li {
  margin: 6px 0;
}

/* Admin emails */

.system-email-template-check {
  width: 14px;
  min-height: 14px;
  height: 14px;
  padding: 0;
  margin: 0;
  border-radius: 3px;
  vertical-align: middle;
}

.admin-email-test-send-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.admin-email-test-input {
  width: 100%;
  max-width: 520px;
}

.admin-email-test-send-btn {
  min-width: 170px;
  margin-top: 0;
}

.admin-email-template-link {
  border: 0;
  background: transparent;
  color: #1d4ed8;
  font: inherit;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

body.admin-emails-drawer-open {
  overflow: hidden;
}

.admin-emails-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.48);
  z-index: 120;
}

.admin-emails-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(740px, 100vw);
  height: 100vh;
  overflow-y: auto;
  background: #f8fafc;
  border-left: 1px solid #cbd5e1;
  box-shadow: -12px 0 30px rgba(15, 23, 42, 0.25);
  z-index: 130;
  padding: 24px;
}

.admin-emails-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.admin-emails-drawer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.admin-emails-drawer .field + .field {
  margin-top: 12px;
}

.admin-emails-drawer-header #adminEmailsDrawerCloseBtn {
  color: #0f172a;
  border-color: #94a3b8;
  background: #e2e8f0;
}

.admin-emails-drawer-header #adminEmailsDrawerCloseBtn:hover,
.admin-emails-drawer-header #adminEmailsDrawerCloseBtn:focus-visible {
  color: #020617;
  border-color: #64748b;
  background: #cbd5e1;
}

.admin-card-wide .field label {
  color: #0f172a;
  font-weight: 600;
}

.admin-emails-drawer .field label {
  color: #0f172a;
  font-weight: 700;
}

.admin-email-template-link:hover,
.admin-email-template-link:focus-visible {
  color: #1e40af;
}

@media (max-width: 767px) {
  .admin-email-test-send-row {
    flex-wrap: wrap;
  }

  .admin-email-test-input {
    max-width: none;
    width: 100%;
  }

  .admin-email-test-send-btn {
    width: 100%;
  }

  .admin-emails-drawer {
    width: 100vw;
    padding: 18px;
  }
}

/* Webinar offer proof list alignment override */
.offer-proof-list li::before {
  content: "✓";
  position: static;
  left: auto;
  top: auto;
  line-height: 1.2;
}
