:root {
  --bg: #030303;
  --panel: #0a0a0a;
  --panel-2: #111111;
  --line: rgba(255, 106, 0, 0.28);
  --line-soft: rgba(255, 255, 255, 0.12);
  --orange: #ff6400;
  --orange-2: #ff8a1f;
  --amber: #ffbf40;
  --white: #f7f7f2;
  --muted: #c7c1b8;
  --steel: #7f8992;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 100, 0, 0.18), transparent 26rem),
    linear-gradient(90deg, rgba(255, 100, 0, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 100, 0, 0.07) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 46px 46px, 46px 46px, auto;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.76) 45%, rgba(3, 3, 3, 0.9)),
    radial-gradient(circle at 50% 35%, transparent 0, transparent 18rem, rgba(0, 0, 0, 0.52) 38rem);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(16px);
}

.site-header.compact {
  position: relative;
}

.brand img {
  width: 174px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

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

.nav-cta {
  color: var(--orange);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  gap: 54px;
  align-items: center;
  width: min(100% - 40px, var(--max));
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding: 36px 0 96px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Impact, "Arial Black", Haettenschweiler, sans-serif;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(48px, 8vw, 112px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 5vw, 76px);
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-text {
  max-width: 670px;
  color: var(--muted);
  font-size: 19px;
}

.hero-text p {
  margin-bottom: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #080808;
  border-color: var(--orange);
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  box-shadow: 0 0 32px rgba(255, 100, 0, 0.26);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button.text-link {
  min-height: 48px;
  padding-right: 0;
  padding-left: 0;
  color: var(--muted);
  border-color: transparent;
  background: transparent;
}

.button.text-link:hover {
  color: var(--orange-2);
}

.button.full {
  width: 100%;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 100, 0, 0.38);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 0 72px rgba(255, 100, 0, 0.16);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04) 38%, rgba(0, 0, 0, 0.28) 70%, rgba(0, 0, 0, 0.72)),
    repeating-linear-gradient(0deg, transparent 0 12px, rgba(255, 100, 0, 0.09) 13px);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.signal-rail {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 18px;
  display: grid;
  gap: 8px;
  width: min(188px, calc(100% - 36px));
  padding: 12px;
  border: 1px solid rgba(255, 100, 0, 0.55);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  box-shadow: inset 0 0 18px rgba(255, 100, 0, 0.14), 0 0 26px rgba(255, 100, 0, 0.2);
  transform: translateY(-50%);
}

.signal-rail::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 28px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--orange), rgba(255, 100, 0, 0.12));
}

.signal-rail span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-rail small {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--white);
  background: #050505;
  font-size: 11px;
}

.section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 104px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.compact-heading {
  margin-top: 34px;
}

.section-intro {
  max-width: 780px;
  color: var(--muted);
  font-size: 20px;
}

.dark-band {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 100, 0, 0.15), transparent 46%),
    rgba(0, 0, 0, 0.54);
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 44px;
}

.large-statement {
  display: flex;
  align-items: end;
  min-height: 420px;
  padding: 28px;
  border-left: 4px solid var(--orange);
  background:
    linear-gradient(180deg, transparent, rgba(255, 100, 0, 0.12)),
    #080808;
}

.large-statement p {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(42px, 5vw, 86px);
  line-height: 0.95;
  text-transform: uppercase;
}

.scenario-list {
  display: grid;
  gap: 14px;
}

.scenario-list article,
.diagnostic-grid article,
.cognitive-grid article,
.timeline article,
.download-card,
.funnel-card,
.calendar-card,
.thank-card {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.scenario-list article {
  padding: 22px;
}

.scenario-list span,
.diagnostic-grid span,
.timeline span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.scenario-list p,
.diagnostic-grid p,
.cognitive-grid p,
.timeline p,
.proof-copy p,
.bio-copy p,
.final-cta p,
.download-copy p,
.case-box p,
.wide-copy {
  color: var(--muted);
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 44px;
  align-items: center;
  padding-top: 24px;
}

.download-copy {
  max-width: 720px;
}

.download-card {
  padding: 26px;
  border-color: rgba(255, 100, 0, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 100, 0, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.58);
  box-shadow: 0 0 34px rgba(255, 100, 0, 0.12);
}

.download-card h3 {
  font-size: 34px;
}

.question-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.diagnostic-question {
  padding: 34px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 100, 0, 0.24), rgba(255, 100, 0, 0.04)),
    var(--panel);
}

.diagnostic-question p {
  margin: 0;
  color: var(--white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1;
  text-transform: uppercase;
}

.wide-copy {
  grid-column: 1 / -1;
  max-width: 840px;
  font-size: 20px;
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.cognitive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.diagnostic-grid article {
  min-height: 230px;
  padding: 24px;
}

.cognitive-grid article {
  min-height: 280px;
  padding: 26px;
}

.cognitive-grid h3 {
  color: var(--orange);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.95;
}

.distinguo-block {
  max-width: 900px;
  margin-bottom: 42px;
  padding: 30px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 100, 0, 0.22), rgba(255, 100, 0, 0.035)),
    #070707;
}

.distinguo-block h3 {
  color: var(--orange);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.9;
}

.distinguo-block p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--white);
  font-size: 21px;
}

.proof-section,
.result-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 48px;
  align-items: center;
}

.bio-section {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 48px;
  align-items: center;
}

.proof-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #070707;
}

.proof-media img,
.bio-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.bio-copy {
  padding-left: 26px;
  border-left: 4px solid var(--orange);
}

.bio-copy h2 {
  max-width: 860px;
  font-size: clamp(30px, 3.7vw, 50px);
}

.bio-copy p {
  margin-bottom: 13px;
  font-size: 15px;
  line-height: 1.55;
}

.bio-quote {
  max-width: 820px;
  margin: 26px 0;
  color: var(--orange-2);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(20px, 2.15vw, 30px);
  line-height: 1.12;
  text-transform: uppercase;
}

.bio-quote::before {
  content: "“";
}

.bio-quote::after {
  content: "”";
}

.portrait-card {
  position: sticky;
  top: 96px;
  align-self: start;
  overflow: visible;
  max-width: 330px;
  min-height: 0;
  margin-top: 46px;
  padding-left: 18px;
  border-left: 4px solid var(--orange);
  background: transparent;
  box-shadow: none;
}

.portrait-card img {
  aspect-ratio: 4 / 5;
  min-height: 0;
  border-radius: 0;
  object-position: 50% 18%;
  filter: contrast(1.06);
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.linkedin-badge {
  padding: 5px 7px;
  border: 1px solid var(--orange);
  border-radius: 3px;
  color: var(--orange-2);
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.linkedin-link:hover {
  color: var(--orange-2);
}

.deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.deliverables span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 100, 0, 0.08);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-box {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
}

.case-box span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-box h3 {
  margin-top: 12px;
  font-size: 30px;
}

.not-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.not-grid p {
  min-height: 160px;
  margin: 0;
  padding: 22px;
  border-top: 2px solid var(--orange);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 21px;
  font-weight: 800;
}

.closing-line {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 26px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.timeline article {
  min-height: 330px;
  padding: 24px;
}

.objective {
  color: var(--orange);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.bio-card img {
  object-position: 62% center;
}

.final-cta {
  max-width: 960px;
  text-align: center;
}

.final-cta .button {
  margin-top: 18px;
}

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

.cta-note {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 36px 0 54px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.site-footer img {
  width: 150px;
}

.funnel-page {
  min-height: 100vh;
}

.funnel,
.booking,
.thank-you {
  width: min(100% - 40px, 1040px);
  margin: 0 auto;
  padding: 70px 0 110px;
}

.funnel {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.funnel.wider {
  grid-template-columns: 0.9fr 520px;
}

.funnel-copy h1,
.booking-copy h1,
.thank-card h1 {
  font-size: clamp(46px, 7vw, 92px);
}

.funnel-copy p,
.booking-copy p,
.thank-card p {
  color: var(--muted);
  font-size: 20px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-weight: 800;
}

.funnel-card {
  padding: 28px;
}

.funnel-card h2 {
  font-size: 38px;
}

.form {
  display: grid;
  gap: 16px;
}

.form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.form label span {
  color: var(--steel);
  font-weight: 700;
  text-transform: none;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.46);
  color: var(--white);
  font: inherit;
  padding: 13px 14px;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(255, 100, 0, 0.48);
  border-color: var(--orange);
}

.privacy {
  display: flex !important;
  grid-template-columns: none;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  line-height: 1.35;
  text-transform: none !important;
}

.privacy input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--orange);
}

.privacy a {
  color: var(--orange-2);
  font-weight: 900;
}

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

.microcopy {
  margin: 16px 0 0;
  color: var(--steel);
  font-size: 13px !important;
}

.booking {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 44px;
  align-items: center;
}

.calendar-card {
  padding: 30px;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--muted);
}

.calendar-head strong {
  color: var(--orange);
  text-transform: uppercase;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.slot-grid a {
  display: grid;
  place-items: center;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 100, 0, 0.08);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.slot-grid a:hover {
  border-color: var(--orange);
  background: rgba(255, 100, 0, 0.18);
}

.thank-you {
  display: grid;
  place-items: center;
}

.thank-card {
  max-width: 820px;
  padding: 42px;
}

.respect-box {
  margin: 32px 0;
  padding: 24px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 100, 0, 0.08);
}

.respect-box h2 {
  font-size: clamp(30px, 4vw, 52px);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero,
  .split,
  .question-panel,
  .download-section,
  .proof-section,
  .bio-section,
  .result-section,
  .funnel,
  .funnel.wider,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual img {
    object-position: center;
  }

  .portrait-card {
    position: relative;
    top: auto;
  }

  .diagnostic-grid,
  .cognitive-grid,
  .timeline,
  .not-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .funnel,
  .booking,
  .thank-you,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .brand img {
    width: 138px;
  }

  h1 {
    font-size: clamp(42px, 15vw, 72px);
  }

  h2 {
    font-size: clamp(34px, 12vw, 56px);
  }

  .hero {
    gap: 34px;
    padding-bottom: 64px;
  }

  .hero-text,
  .funnel-copy p,
  .booking-copy p,
  .thank-card p {
    font-size: 17px;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual img {
    object-position: center;
  }

  .signal-rail {
    right: 12px;
    width: 154px;
    padding: 10px;
  }

  .signal-rail span {
    gap: 9px;
    min-height: 36px;
    font-size: 12px;
  }

  .signal-rail small {
    width: 28px;
    height: 28px;
    font-size: 9px;
  }

  .section {
    padding: 72px 0;
  }

  .dark-band {
    padding-right: 14px;
    padding-left: 14px;
  }

  .diagnostic-grid,
  .cognitive-grid,
  .timeline,
  .not-grid,
  .slot-grid {
    grid-template-columns: 1fr;
  }

  .large-statement {
    min-height: 320px;
    padding: 22px;
  }

  .proof-media img,
  .bio-card img {
    min-height: 360px;
  }

  .portrait-card,
  .portrait-card img {
    max-width: 280px;
    min-height: 0;
  }

  .portrait-card {
    margin: 18px auto 0;
  }

  .funnel,
  .booking,
  .thank-you {
    padding-top: 36px;
  }

  .funnel-card,
  .calendar-card,
  .thank-card {
    padding: 22px;
  }
}
