/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #080808;
  --white: #f5f5f5;
  --white-dim: rgba(245,245,245,0.55);
  --white-faint: rgba(245,245,245,0.08);
  --border: rgba(245,245,245,0.1);
  --font: 'Inter', sans-serif;

  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,245,0.18) 30%, rgba(245,245,245,0.18) 70%, transparent);
  z-index: 200;
  pointer-events: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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


/* ===========================
   NAVBAR
=========================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  transition: background 0.3s ease, border-bottom 0.3s ease;
}

#navbar.scrolled {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height 0.4s var(--ease-out-quart);
}

#navbar.scrolled .nav-inner {
  height: 60px;
}

.nav-logo {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white-dim);
  transition: color 0.2s var(--ease-out-quart);
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s var(--ease-out-quart), transform 0.15s var(--ease-out-quart), box-shadow 0.25s var(--ease-out-quart);
}

.nav-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.55) 50%, transparent 65%);
  pointer-events: none;
  transition: left 0s;
}

.nav-cta:hover::after {
  left: 160%;
  transition: left 0.45s var(--ease-out-quart);
}

.nav-cta:hover {
  opacity: 1;
  box-shadow: 0 4px 18px rgba(245,245,245,0.18);
}

.nav-cta:active { transform: scale(0.97); }

.nav-portal {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--white-dim);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.42rem 1rem;
  transition: color 0.2s var(--ease-out-quart), border-color 0.2s var(--ease-out-quart), background 0.2s var(--ease-out-quart);
}

.nav-portal:hover {
  color: var(--white);
  border-color: rgba(245,245,245,0.25);
  background: rgba(245,245,245,0.04);
}

.mobile-link--portal {
  color: rgba(245,245,245,0.45);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.mobile-link--portal::before {
  content: '◈';
  margin-right: 0.5rem;
  font-size: 0.7rem;
  opacity: 0.6;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(8,8,8,0.97);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}

.nav-mobile.open { display: flex; }

.mobile-link {
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-dim);
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s var(--ease-out-quart), background 0.2s var(--ease-out-quart);
}

.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--white); background: var(--white-faint); }

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 3rem 60px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,245,245,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,245,245,0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 30%, transparent 90%);
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 30%, transparent 90%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(245,245,245,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(245,245,245,0.045) 0%, transparent 65%);
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out-quart);
  will-change: transform;
}

.hero:hover .hero-glow {
  opacity: 1;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 0.4rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 2rem;
  animation: badgePulse 4s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { border-color: rgba(245,245,245,0.1); }
  50%       { border-color: rgba(245,245,245,0.22); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.text-outline {
  color: #080808;
  -webkit-text-stroke: 1.5px rgba(245,245,245,0.55);
  paint-order: stroke fill;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--white-dim);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero visual — photo + certificates */
.hero-visual {
  flex: none;
  width: 720px;
  max-width: 100%;
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.hero-photo {
  position: relative;
  z-index: 3;
  width: 380px;
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 93%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 93%);
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-cert {
  position: absolute;
  width: 205px;
  z-index: 2;
  border: 1px solid rgba(245,245,245,0.14);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.7);
}

.hero-cert img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-cert--left {
  left: 10px;
  top: 70px;
  transform: rotate(-7deg);
  transform-origin: center center;
}

.hero-cert--right {
  right: 10px;
  top: 70px;
  transform: rotate(7deg);
  transform-origin: center center;
}

.hero-stats {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 5rem;
  flex-wrap: wrap;
}

.stat-item {
  padding: 1.8rem 3rem;
  text-align: center;
  flex: 1;
  min-width: 140px;
  transition: background 0.25s var(--ease-out-quart);
}

.stat-item:hover {
  background: rgba(245,245,245,0.03);
}

.stat-item span {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-item p {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.4rem;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===========================
   MARQUEE
=========================== */
.marquee-wrapper {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  background: var(--white-faint);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  flex-shrink: 0;
}

.marquee-track .dot {
  color: var(--border);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================
   SECTIONS
=========================== */
.section {
  padding: 120px 2rem;
}

.section-alt {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 720px;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--white-dim);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
}

.section-title.centered { text-align: center; }
.section-label.centered { justify-content: center; }

/* ===========================
   STORY
=========================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.story-left .section-title { margin-bottom: 0; }

.story-right p {
  color: var(--white-dim);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.story-right p em {
  color: var(--white);
  font-style: normal;
  font-weight: 600;
}

.mt { margin-top: 1.5rem; }

/* ===========================
   RESULTS GRID
=========================== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.result-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease-out-quart);
  position: relative;
  overflow: hidden;
}

.result-card:hover {
  background: rgba(245,245,245,0.05);
}

.result-card:nth-child(3),
.result-card:nth-child(6) {
  border-right: none;
}

.result-card:nth-child(4),
.result-card:nth-child(5),
.result-card:nth-child(6) {
  border-bottom: none;
}

.result-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white-dim);
  display: inline-block;
  transition: transform 0.4s var(--ease-out-quart), color 0.3s var(--ease-out-quart);
}

.result-card:hover .result-icon {
  transform: translateY(-3px) scale(1.1);
  color: var(--white);
}

.result-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.result-card p {
  font-size: 0.875rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ===========================
   STRUCTURE
=========================== */
.structure-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.structure-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: padding-left 0.4s var(--ease-out-quart);
}

.structure-item:first-child { border-top: 1px solid var(--border); }

.structure-item:hover { padding-left: 1rem; }

.structure-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  padding-top: 0.2rem;
  transition: color 0.3s var(--ease-out-quart);
}

.structure-item:hover .structure-number {
  color: var(--white);
}

.structure-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.structure-content p {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ===========================
   APPLY FORM
=========================== */
.apply-sub {
  text-align: center;
  color: var(--white-dim);
  max-width: 500px;
  margin: 0 auto 3rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Booking grid — side by side */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 3rem;
  align-items: start;
  margin-top: 3rem;
}

.booking-divider {
  background: var(--border);
  width: 1px;
  align-self: stretch;
}

.booking-col {
  padding: 0 1rem;
}

.booking-col-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 0.6rem;
}

.booking-price {
  color: var(--white);
  font-weight: 600;
}

.booking-col-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.booking-col-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.consult-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.consult-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--white-dim);
}

.consult-feature-icon {
  color: var(--white);
  font-size: 0.9rem;
  width: 16px;
  flex-shrink: 0;
}

/* Checkbox fix */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 0.4rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.6;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--white);
  cursor: pointer;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  background: transparent;
  border: none;
  padding: 0;
}

.checkbox-label a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 860px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
  .booking-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
  .booking-col {
    padding: 0;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white-faint);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s var(--ease-out-quart), background 0.25s var(--ease-out-quart);
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,245,245,0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(245,245,245,0.38);
  background: rgba(245,245,245,0.07);
}

.form-group select option {
  background: #111;
  color: var(--white);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(245,245,245,0.3);
  margin-top: 0.5rem;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 0.9rem 2.2rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: opacity 0.2s var(--ease-out-quart), transform 0.15s var(--ease-out-quart), box-shadow 0.25s var(--ease-out-quart);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.5) 50%, transparent 65%);
  pointer-events: none;
  transition: left 0s;
}

.btn-primary:hover::after {
  left: 160%;
  transition: left 0.55s var(--ease-out-quart);
}

.btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,245,245,0.14), 0 3px 10px rgba(245,245,245,0.08);
}

.btn-primary:active {
  transform: scale(0.97);
  box-shadow: none;
  transition-duration: 0.08s;
}

.btn-primary.full {
  width: 100%;
  text-align: center;
  padding: 1.1rem;
  font-size: 0.9rem;
}

.btn-primary.full:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(245,245,245,0.18), 0 0 0 1px rgba(245,245,245,0.08);
}

.btn-ghost {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-dim);
  letter-spacing: 0.05em;
  transition: color 0.2s var(--ease-out-quart), opacity 0.2s var(--ease-out-quart);
}

.btn-ghost:hover { color: var(--white); }

/* ===========================
   FOOTER
=========================== */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--white-dim);
  letter-spacing: 0.05em;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(245,245,245,0.35);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease-out-quart);
}

.footer-legal a:hover { color: var(--white-dim); }

.footer-legal-dot {
  font-size: 0.75rem;
  color: rgba(245,245,245,0.2);
}


.footer-copy {
  font-size: 0.72rem;
  color: rgba(245,245,245,0.25);
  margin-top: 0.5rem;
}

/* ===========================
   PROOF SECTION
=========================== */
.dashboard-showcase {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 4rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.dashboard-img-wrap {
  overflow: hidden;
  border-right: 1px solid var(--border);
}

.dashboard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  transition: filter 0.5s var(--ease-out-quart), transform 0.6s var(--ease-out-quart);
}

.dashboard-img-wrap:hover .dashboard-img {
  filter: brightness(1);
  transform: scale(1.02);
}

.dashboard-side {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.dashboard-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.dashboard-stats {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dashboard-stat-row {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex: 1;
  justify-content: center;
}

.dashboard-stat-row:last-child {
  border-bottom: none;
}

.dashboard-stat-row strong {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.dashboard-stat-row span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.35rem;
}

@media (max-width: 680px) {
  .dashboard-showcase {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .dashboard-img-wrap {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .dashboard-side {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .dashboard-title {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .dashboard-stats {
    flex-direction: row;
    flex: unset;
    width: 100%;
  }

  .dashboard-stat-row {
    flex: 1;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .dashboard-stat-row:last-child {
    border-right: none;
  }
}

/* Summary bar */
.proof-summary {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  margin-bottom: 4rem;
}

.proof-summary-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.6rem 2rem;
}

.proof-summary-item strong {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.proof-summary-item span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.4rem;
}

.proof-summary-div {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* Legacy experience callout */
.proof-legacy-note {
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  padding: 1.4rem 1.8rem;
  margin-bottom: 3rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  border-radius: 0 6px 6px 0;
}

.proof-legacy-note strong {
  color: #ffffff;
  font-weight: 800;
}

.legacy-blue {
  color: #60a5fa;
  font-weight: 600;
}

/* Section blocks */
.proof-block {
  margin-bottom: 4rem;
}

.proof-block:last-child {
  margin-bottom: 0;
}

.proof-block-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.proof-block-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-block-count {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white-dim);
}

/* Cards grid */
.proof-cards {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.proof-cards--4 .proof-card { width: 25%; }
.proof-cards--3 .proof-card { width: 33.333%; }
.proof-cards--2 .proof-card { width: 50%; }

.proof-card {
  background: var(--black);
  display: flex;
  flex-direction: column;
  transition: background 0.25s var(--ease-out-quart);
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
}

.proof-card:hover {
  background: #0f0f0f;
}

.proof-card-img {
  overflow: hidden;
  background: #0c0c0c;
}

.proof-card-img img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.55s var(--ease-out-quart), opacity 0.25s var(--ease-out-quart);
}

.proof-card-img--tall img {
  height: 260px;
}

.proof-card:hover .proof-card-img img {
  transform: scale(1.04);
  opacity: 0.88;
}

.proof-card-info {
  padding: 0.9rem 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  margin-top: auto;
}

.proof-card-info strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}

.proof-card-info span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--white-dim);
}

@media (max-width: 900px) {
  .proof-cards--4 .proof-card { width: 50%; }
  .proof-cards--3 .proof-card { width: 50%; }
}

@media (max-width: 560px) {
  .proof-cards--4 .proof-card,
  .proof-cards--2 .proof-card { width: 100%; }
  .proof-summary { flex-direction: column; }
  .proof-summary-div { width: 40px; height: 1px; }
}

/* ===========================
   200K OPPORTUNITY
=========================== */
.opp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.opp-amount {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.opp-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
}

.opp-body {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.opp-quote {
  border-left: 2px solid var(--white-dim);
  padding: 0.8rem 0 0.8rem 1.4rem;
  margin: 0 0 1.8rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--white-dim);
  line-height: 1.7;
}

.opp-disclaimer {
  font-size: 0.78rem;
  color: rgba(245,245,245,0.35);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.opp-steps-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.opp-steps {
  display: flex;
  flex-direction: column;
}

.opp-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: padding-left 0.4s var(--ease-out-quart);
}

.opp-step:first-child {
  border-top: 1px solid var(--border);
}

.opp-step:hover {
  padding-left: 0.6rem;
}

.opp-step-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  padding-top: 0.2rem;
  transition: color 0.3s var(--ease-out-quart);
}

.opp-step:hover .opp-step-num {
  color: var(--white);
}

.opp-step-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.opp-step-content p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .opp-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

/* ===========================
   LIGHTBOX
=========================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 4, 0.96);
}

.lightbox-backdrop {
  opacity: 0;
}

.lightbox.open .lightbox-backdrop {
  animation: backdropFadeIn 0.3s var(--ease-out-quart) forwards;
}

@keyframes backdropFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-content {
  animation: none;
}

.lightbox.open .lightbox-content {
  animation: lightboxIn 0.4s var(--ease-out-expo) forwards;
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.93) translateY(14px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 92vw;
  max-height: 92vh;
}

.lightbox-img-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
}

.lightbox-img {
  display: block;
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  background: #0a0a0a;
}

.lightbox-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0 0;
  gap: 1rem;
}

.lightbox-caption {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}

.lightbox-verify {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

.lightbox-verify:hover {
  background: var(--white-faint);
  border-color: rgba(245,245,245,0.3);
}


.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  color: var(--white-dim);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.lightbox-close:hover {
  color: var(--white);
  background: var(--white-faint);
  border-color: rgba(245,245,245,0.3);
}



/* cert verify button (inline on card) */
.cert-verify {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.2s var(--ease-out-quart), border-color 0.2s var(--ease-out-quart), background 0.2s var(--ease-out-quart);
}

.cert-verify:hover {
  color: var(--white);
  border-color: rgba(245,245,245,0.28);
  background: rgba(245,245,245,0.04);
}

/* ===========================
   REVEAL ANIMATIONS
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .result-card:nth-child(2),
  .result-card:nth-child(4) {
    border-right: none;
  }

  .result-card:nth-child(3) {
    border-right: 1px solid var(--border);
  }

  .result-card:nth-child(3),
  .result-card:nth-child(4) {
    border-bottom: 1px solid var(--border);
  }

  .result-card:nth-child(5),
  .result-card:nth-child(6) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero {
    padding: 90px 1.5rem 50px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto 2.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    flex: none;
    width: 100%;
    height: 360px;
    overflow: visible;
  }

  .hero-photo {
    width: 240px;
  }

  .hero-cert {
    width: 145px;
  }

  .hero-cert--left {
    left: 10px;
    top: 40px;
    transform: rotate(-5deg);
  }

  .hero-cert--right {
    right: 10px;
    top: 40px;
    transform: rotate(5deg);
  }

  .hero-stats {
    flex-direction: column;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .stat-item {
    padding: 1.2rem 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

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

  .result-card {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }

  .result-card:last-child {
    border-bottom: none !important;
  }

  .structure-item {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

  .section { padding: 80px 1.5rem; }
}

.consult-pitch {
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* Structure — seriousness highlight */
.structure-seriousness {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid #fff;
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
}
.structure-seriousness-icon {
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
.structure-seriousness p {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Structure — footer block */
.structure-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
.structure-footer-inner {
  max-width: 680px;
}
.structure-footer-main {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.6;
}
.structure-footer-sub {
  font-size: 0.95rem;
  color: var(--white-dim);
  margin: 0;
  line-height: 1.7;
}

/* ===========================
   CARD TILT GLARE
=========================== */
.card-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

/* ===========================
   REDUCED MOTION
=========================== */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transform: none !important;
    transition: opacity 0.4s ease;
  }

  .hero-badge {
    animation: none;
  }

  .marquee-track {
    animation-duration: 80s;
  }

  .hero-glow {
    display: none;
  }

  .btn-primary:hover,
  .btn-primary:active,
  .nav-cta:active {
    transform: none;
  }
}
