:root {
  --bg: #111111;
  --bg-soft: #191919;
  --ink: #f8f4ef;
  --muted: #c8bbb0;
  --line: rgba(255, 255, 255, 0.1);
  --orange: #f26d21;
  --orange-deep: #cf4d08;
  --eyebrow: #d7cbc0;
  --dark: #101010;
  --dark-soft: #1a1715;
  --card: rgba(255, 255, 255, 0.05);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: min(1200px, calc(100% - 48px));
  --font-body: "Manrope", sans-serif;
  --font-display: "Cormorant Garamond", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(242, 109, 33, 0.16), transparent 22%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 26%),
    linear-gradient(180deg, #111111 0%, #0c0c0d 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 10, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  overflow: hidden;
  background: #0f0f10;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-weight: 800;
}

.brand-copy small,
.site-nav {
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(239, 106, 44, 0.22);
}

.button-small {
  padding: 12px 18px;
}

.button-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.hero {
  padding: 76px 0 40px;
}

.hero-grid,
.split-grid,
.support-grid,
.coach-grid,
.mirror-grid,
.cta-shell {
  display: grid;
  gap: 36px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--eyebrow);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.9rem, 5.8vw, 5.2rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.1rem, 3.3vw, 3.6rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.35rem;
}

.hero-lead,
.hero-text,
.section-copy p,
.section-head p,
.system-card p,
.story-panel li,
.credential-list div,
.future-list div,
.lead-form label,
.lead-form input,
.lead-form textarea,
.support-steps li {
  color: var(--muted);
}

.hero-lead {
  margin: 26px 0 0;
  font-size: 1.18rem;
  max-width: 48ch;
}

.hero-text {
  margin: 18px 0 0;
  max-width: 54ch;
  font-size: 1.02rem;
}

.hero-points {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.hero-points div {
  padding: 16px 18px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0 18px 18px 0;
}

.hero-points span {
  display: block;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 6px;
}

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

.hero-visual {
  position: relative;
  min-height: 720px;
}

.hero-photo-card {
  height: 100%;
  min-height: 720px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating {
  position: absolute;
  max-width: 290px;
  padding: 18px 20px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-floating span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero-floating strong {
  display: block;
  line-height: 1.45;
}

.hero-floating-top {
  top: 28px;
  left: -26px;
  background: rgba(18, 18, 18, 0.92);
  color: #fff6ef;
}

.hero-floating-bottom {
  right: -20px;
  bottom: 42px;
  background: rgba(242, 109, 33, 0.14);
  color: #fff7f0;
}

.hero-floating-bottom span {
  color: #ffb88f;
}

.section {
  padding: 88px 0;
}

.section-dark {
  background: linear-gradient(180deg, #181515 0%, #201b19 100%);
  color: #f9f4ee;
}

.section-dark .section-copy p,
.section-dark .story-panel li,
.section-dark .credential-list div {
  color: rgba(249, 244, 238, 0.74);
}

.section-accent {
  background: linear-gradient(180deg, rgba(242, 109, 33, 0.08), rgba(17, 17, 17, 0));
}

.split-grid,
.future-grid,
.support-grid,
.coach-grid,
.mirror-grid,
.cta-shell {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.section-copy p {
  margin: 20px 0 0;
  max-width: 56ch;
  font-size: 1.02rem;
}

.story-panel {
  display: grid;
  gap: 18px;
}

.story-panel article,
.system-card,
.cta-shell,
.lead-form,
.future-visual,
.support-visuals,
.mirror-visual {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-panel article,
.system-card,
.lead-form {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.story-panel article {
  background: rgba(255, 255, 255, 0.04);
}

.story-panel strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.story-panel ul,
.support-steps {
  margin: 0;
  padding-left: 18px;
}

.story-panel li,
.support-steps li {
  margin-top: 10px;
}

.future-visual,
.mirror-visual {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
}

.future-visual img,
.mirror-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.future-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.future-list div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.system-card {
  background: rgba(255, 255, 255, 0.05);
}

.system-icon {
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.system-card h3 {
  margin-bottom: 12px;
}

.support-visuals {
  position: relative;
  min-height: 680px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #171514;
}

.support-main {
  position: absolute;
  box-shadow: var(--shadow);
}

.support-main {
  inset: 0 90px 70px 0;
  width: auto;
  height: auto;
  border-radius: 30px;
}

.coach-gallery {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.coach-gallery img {
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.credential-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.credential-list div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.section-dark .credential-list div {
  background: rgba(255, 255, 255, 0.04);
}

.section-cta {
  padding-top: 28px;
  padding-bottom: 88px;
}

.cta-shell {
  gap: 26px;
  padding: 34px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(242, 109, 33, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.06);
}

.lead-form {
  display: grid;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

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

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .future-grid,
  .support-grid,
  .coach-grid,
  .mirror-grid,
  .cta-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1000px);
  }

  .section {
    padding: 58px 0;
  }

  .section-cta {
    padding-top: 20px;
    padding-bottom: 58px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: -2;
    margin-bottom: 2px;
  }

  .hero-visual {
    order: -1;
    min-height: 360px;
    margin-bottom: 0;
  }

  .hero-photo-card {
    min-height: 360px;
    height: 360px;
  }

  .hero-photo-card img {
    object-position: center top;
  }

  .hero-floating {
    display: none;
  }

  .system-grid,
  .coach-gallery {
    grid-template-columns: 1fr;
  }

  .future-grid {
    gap: 16px;
  }

  .future-grid .section-copy {
    display: contents;
  }

  .future-grid .section-copy .eyebrow {
    order: -2;
    margin-bottom: 2px;
  }

  .future-grid .future-visual {
    order: -1;
  }

  .support-grid {
    gap: 16px;
  }

  .support-copy {
    display: contents;
  }

  .support-copy .eyebrow {
    order: -2;
    margin-bottom: 2px;
  }

  h1 {
    font-size: clamp(1.95rem, 8.7vw, 2.85rem);
    max-width: none;
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.6rem);
    max-width: none;
  }

  .hero-copy h1 {
    order: 0;
    margin-top: 2px;
  }

  .hero-lead {
    order: 1;
    font-size: 1.04rem;
    margin-top: 10px;
  }

  .hero-text {
    order: 2;
    font-size: 0.98rem;
    margin-top: 10px;
  }

  .hero-points {
    order: 3;
    margin-top: 14px;
    gap: 10px;
  }

  .hero-points div {
    padding: 14px 16px;
  }

  .hero-actions {
    order: 4;
    margin-top: 16px;
  }

  .support-visuals {
    order: -1;
  }

  .support-copy h2 {
    order: 0;
    margin-top: 2px;
  }

  .support-steps {
    order: 1;
    margin-top: 10px;
  }

  .mirror-grid {
    gap: 16px;
  }

  .mirror-copy {
    display: contents;
  }

  .mirror-copy .eyebrow {
    order: -2;
    margin-bottom: 2px;
  }

  .mirror-visual {
    order: -1;
  }

  .mirror-copy h2 {
    order: 0;
    margin-top: 2px;
  }

  .mirror-copy p:last-child {
    order: 1;
    margin-top: 10px;
  }

  .coach-grid {
    gap: 16px;
  }

  .coach-grid .section-copy {
    display: contents;
  }

  .coach-grid .section-copy .eyebrow {
    order: -2;
    margin-bottom: 2px;
  }

  .coach-gallery {
    order: -1;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .coach-gallery img {
    aspect-ratio: 0.72;
    height: auto;
    border-radius: 22px;
  }

  .coach-grid .section-copy h2 {
    order: 0;
    margin-top: 2px;
  }

  .coach-grid .section-copy p:not(.eyebrow) {
    order: 1;
    margin-top: 10px;
  }

  .credential-list {
    order: 2;
    margin-top: 14px;
  }

  .support-visuals {
    min-height: auto;
    display: grid;
    gap: 14px;
    padding: 0;
  }

  .support-main {
    position: static;
    inset: auto;
    width: 100%;
    height: auto;
    border-radius: 24px;
  }
}
