:root {
  --black: #0a0a0a;
  --black-mid: #111111;
  --black-soft: #1a1a1a;
  --black-surface: #222222;
  --gold: #c9a84c;
  --gold-light: #e2c06a;
  --gold-dim: #8b6e2e;
  --gold-pale: #2a2010;
  --silver: #a8a8a8;
  --silver-light: #d4d4d4;
  --white: #f5f0e8;
  --white-pure: #fafaf8;
  --text-muted: #7a7a7a;
  --text-dim: #555555;
  --border: rgba(201, 168, 76, 0.15);
  --border-strong: rgba(201, 168, 76, 0.35);
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Outfit", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.desktop-only-display{
  display: unset;
}

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 7rem 0;
}
section + section {
  border-top: 1px solid var(--border);
}

/* ── DECORATIVE LINE ── */
.gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.gold-line.center {
  margin: 1.5rem auto;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.08em;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold-light);
}
.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.45rem 1.25rem !important;
  border-radius: 2px !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--silver);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--black-mid);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-menu a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
}
.mobile-menu.open {
  display: flex;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
  border-top: none;
}
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 30%,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
}

/* ── HERO URGENCY ── */
.hero-urgency {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  color: var(--silver);
  letter-spacing: 0.03em;
}

.hero-urgency-highlight {
  color: var(--gold);
  font-weight: 400;
}

.hero-urgency-divider {
  color: var(--gold-dim);
}

.hero-urgency-link {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}

.hero-urgency-link--cta {
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hero-urgency-link--cta:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

@media (max-width: 700px) {
  .hero-urgency {
    /* flex-direction: column; */
    gap: 0.4rem;
  }

  .hero-urgency-divider {
    display: none;
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.hero-headline em {
  color: var(--gold);
  font-style: italic;
}
.hero-practitioner {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin: 1.5rem auto 0.5rem;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  margin: 0.75rem auto 1.75rem;
  max-width: 640px;
  line-height: 1.4;
}
.hero-body {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 1.5rem;
  line-height: 1.85;
}
.hero-limit {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── SECTION HEADERS ── */
.section-header {
  margin-bottom: 4rem;
}
.section-header.center {
  text-align: center;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-body {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.85;
}

/* ── PROBLEM TABLE ── */
.problem-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
}
.problem-table th {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-strong);
  background: rgba(201, 168, 76, 0.04);
}
.problem-table td {
  padding: 1.1rem 1.5rem;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--silver-light);
}
.problem-table td:first-child {
  color: var(--white);
  font-weight: 500;
}
.problem-table td:last-child {
  color: var(--gold-light);
}
.problem-table tr:hover td {
  background: rgba(201, 168, 76, 0.03);
}

/* ── DEMAND ENGINE ── */
.engine-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
}
.engine-block {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  position: relative;
  text-align: center;
  transition: background 0.2s;
}
.engine-block:last-child {
  border-right: none;
}
.engine-block:hover {
  background: rgba(201, 168, 76, 0.04);
}
.engine-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.engine-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.engine-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.engine-connector {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--gold);
  clip-path: polygon(
    0 50%,
    60% 0,
    60% 35%,
    100% 35%,
    100% 65%,
    60% 65%,
    60% 100%
  );
  z-index: 2;
}

/* ── E3 LOOP ── */
.e3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.e3-card {
  background: var(--black-soft);
  padding: 2.5rem 2rem;
  position: relative;
}
.e3-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.e3-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.e3-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── DAYS ── */
.days-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.day-panel {
  background: var(--black-soft);
  padding: 3rem 2.5rem;
}
.day-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  display: inline-block;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.5rem;
}
.day-title {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.day-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.day-list li {
  font-size: 0.9rem;
  color: var(--silver);
  padding-left: 1.25rem;
  position: relative;
}
.day-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* ── OUTPUTS ── */
.outputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.output-col {
  background: var(--black-soft);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.output-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.output-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  font-size: 0.9rem;
  color: var(--silver);
  align-items: flex-start;
}
.output-item::before {
  content: "—";
  color: var(--gold-dim);
  flex-shrink: 0;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 5rem;
  align-items: start;
}
.about-photo-placeholder {
  width: 240px;
  aspect-ratio: 3/4;
  background: var(--black-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
/* .about-photo-placeholder::before {
  content: "VG";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.15);
} */

.about-photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/Mentor-dp-bg-black.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  opacity: 0.67;
}

.about-quote-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}

.about-headline {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.about-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
}
.about-bio p + p {
  margin-top: 1rem;
}
.about-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 1.5rem;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.25rem;
  transition: color 0.2s, border-color 0.2s;
}
.about-linkedin:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.brand-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--silver);
  border: 1px solid rgba(168, 168, 168, 0.2);
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
}

/* ── FOUNDERS CIRCLE ── */
#circle {
  background: var(--black-mid);
}
.circle-icons {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin: 3rem 0 2rem;
  flex-wrap: wrap;
}
.circle-icon-item {
  text-align: center;
}
.circle-icon-box {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.circle-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.circle-icon-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── WHO ── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.who-col {
  background: var(--black-soft);
}
.who-col-header {
  padding: 1.25rem 2rem;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.who-col:first-child .who-col-header {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}
.who-col:last-child .who-col-header {
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.02);
}
.who-item {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.65;
}
.who-col:first-child .who-item {
  color: var(--silver);
}
.who-col:last-child .who-item {
  color: var(--text-dim);
}
.who-item:last-child {
  border-bottom: none;
}
.who-item strong {
  font-weight: 500;
}
.who-col:first-child .who-item strong {
  color: var(--white);
}
.who-col:last-child .who-item strong {
  color: var(--text-muted);
}

/* ── APPLICATION ── */
#apply {
  background: var(--black-mid);
}
.apply-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.apply-limit {
  display: inline-block;
  border: 1px solid var(--border-strong);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  margin: 1.5rem 0 3rem;
}
.apply-questions {
  text-align: left;
  margin: 3rem 0;
}
.apply-q {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.apply-q:first-child {
  border-top: 1px solid var(--border);
}
.apply-qnum {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-dim);
  min-width: 24px;
}
.apply-qtext {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.65;
}
.apply-email {
  background: var(--black-soft);
  border: 1px solid var(--border);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: left;
}
.apply-email-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.apply-email-address {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
}
.apply-email-subject {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ── REGISTER FORM ── */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
  margin: 2.5rem auto 0;
  text-align: left;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.form-input {
  background: var(--black-soft);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus {
  border-color: var(--gold);
}
.form-input::placeholder {
  color: var(--text-dim);
}

/* ── SELECT FIELD ── */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: linear-gradient(
      45deg,
      transparent 50%,
      var(--gold) 50%
    ),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);

  background-position: calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);

  background-size: 6px 6px;
  background-repeat: no-repeat;

  cursor: pointer;
}

.form-select option {
  background: var(--black-soft);
  color: var(--white);
}

.form-select option:disabled {
  color: var(--text-dim);
}

/* ── FIELD ERROR MESSAGES ── */
.field-error {
  display: none;
  font-size: 0.75rem;
  color: #e05252;
  letter-spacing: 0.02em;
}

/* ── ERROR STATE ON INPUTS ── */
.form-input.error {
  border-color: #e05252;
}

/* ── HIDE PAYMENT SECTION BY DEFAULT ── */
.payment-section {
  display: none;
}

/* ── LOADING SPINNER ── */
.spinner {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── AUTOFILL FIX ── */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: var(--white) !important;

  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  box-shadow: 0 0 0px 1000px transparent inset !important;

  background-color: transparent !important;

  transition: background-color 9999s ease-in-out 0s;
  caret-color: var(--white);
}

/* ── FOOTER ── */
footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.footer-logo span {
  color: var(--gold);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ── CANVAS VISUAL ── */
.canvas-visual {
  border: 1px solid var(--border);
  background: var(--black-soft);
  padding: 2.5rem;
  margin-top: 3rem;
}
.canvas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.canvas-cell {
  background: var(--black-soft);
  padding: 1.5rem 1.25rem;
}
.canvas-cell-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}
.canvas-cell-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.canvas-row-2 {
  margin-top: 1px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

  .engine-grid {
    grid-template-columns: 1fr 1fr;
  }
  .engine-block:nth-child(2) {
    border-right: none;
  }
  .engine-block:nth-child(4) {
    border-right: none;
  }
  .engine-block:last-child {
    grid-column: span 2;
    border-right: none;
  }
  .engine-connector {
    display: none;
  }
  .days-grid {
    grid-template-columns: 1fr;
  }
  .outputs-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-photo-placeholder {
    width: 100%;
    max-width: 320px;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .canvas-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .desktop-only-display{
    display: none;
  } 


  section {
    padding: 5rem 0;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .e3-grid {
    grid-template-columns: 1fr;
  }
  .engine-grid {
    grid-template-columns: 1fr;
  }
  .engine-block {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .engine-block:last-child {
    grid-column: unset;
  }
  .hero-headline {
    font-size: 2.4rem;
  }
  .canvas-grid {
    grid-template-columns: 1fr;
  }
  .problem-table {
    font-size: 0.82rem;
  }
  .problem-table th,
  .problem-table td {
    padding: 0.75rem 1rem;
  }
}

/* ── TESTIMONIAL ── */
.testimonial-block {
  border: 1px solid var(--border);
  padding: 3rem;
  background: var(--black-soft);
  position: relative;
}
.testimonial-block::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.12);
  position: absolute;
  top: 1rem;
  left: 1.75rem;
  line-height: 1;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  border: 1px solid var(--border);
  background: var(--black-soft);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-card:hover {
  border-color: var(--gold-dim);
}
.pricing-card--featured {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}
.pricing-badge {
  display: none;
}
.pricing-region {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pricing-card--featured .pricing-amount {
  color: var(--gold-light);
}
.pricing-unit {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

/* ── EARLY BIRD ── */
.pricing-earlybird {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.pricing-earlybird span {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 400;
}

/* ── TOUR / ROADSHOW ── */
.tour-list {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}
.tour-stop {
  display: grid;
  grid-template-columns: 56px 32px 1fr auto;
  align-items: center;
  gap: 0 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.tour-stop:first-child {
  border-top: 1px solid var(--border);
}
.tour-stop:hover {
  background: rgba(201, 168, 76, 0.03);
  padding-left: 1rem;
  margin-left: -1rem;
  padding-right: 1rem;
}
.tour-month {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tour-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  margin: 0 auto;
}
.tour-line--last {
  background: transparent;
}
.tour-city {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.tour-status {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.tour-cta {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold-dim);
  padding: 0.4rem 0.9rem;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.tour-cta:hover {
  background: var(--gold);
  color: var(--black);
}

@media (max-width: 600px) {
  
  .tour-stop {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem;
  }
  .tour-line {
    display: none;
  }
  .tour-cta {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.25rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ── PAYMENT QR SECTION ── */
.payment-section {
  display: none;
  margin-top: 2rem;
}

.payment-card {
  background: var(--black-soft);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}

.payment-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.payment-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.payment-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 1.5rem;
}

.payment-qr {
  width: 260px;
  max-width: 100%;
  border: 1px solid var(--border);
  padding: 1rem;
  background: var(--black);
}

.payment-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}






