:root {
  color-scheme: dark;
  --canvas: #090a0a;
  --surface: #121413;
  --surface-2: #191c1a;
  --surface-card: #151816;
  --text: #f4f5f0;
  --muted: #a3a8a0;
  --muted-dim: #767b73;
  --line: rgba(244, 245, 240, 0.12);
  --line-strong: rgba(244, 245, 240, 0.24);
  --accent: #d7f35a;
  --accent-glow: rgba(215, 243, 90, 0.25);
  --accent-ink: #0d0f0a;
  --danger-soft: #201a19;
  --danger-line: rgba(255, 107, 107, 0.2);
  --max: 1240px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --section: clamp(4.5rem, 7vw, 6rem);
  --radius: 1rem;
  --pill: 999px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--text);
  font-family: "Reddit Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--pill);
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.75rem 1rem;
  font-weight: 800;
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  z-index: 60;
  display: flex;
  width: min(calc(100% - 1.5rem), var(--max));
  min-height: 3.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.65rem 0.55rem 1.1rem;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--pill);
  background: rgba(13, 15, 14, 0.76);
  color: #f5f6f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 1.25rem 3rem rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.brand {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  font-family: "Michroma", sans-serif;
  font-size: clamp(0.74rem, 1.6vw, 0.92rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: rgba(215, 243, 90, 0.08);
  color: var(--accent);
  font-family: "Reddit Sans", sans-serif;
  font-weight: 800;
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(215, 243, 90, 0.3);
  border-radius: var(--pill);
  background: rgba(215, 243, 90, 0.08);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.nav-actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-link {
  padding: 0.7rem 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 650;
  transition: color 160ms var(--ease-out);
}

.nav-link:hover {
  color: var(--accent);
}

/* Emil Kowalski Responsive Button Physics & Tactile Feedback */
.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid transparent;
  border-radius: var(--pill);
  padding: 0.82rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: color 180ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 160ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.button-small {
  min-height: 2.75rem;
  padding: 0.65rem 1.05rem;
  font-size: 0.78rem;
}

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.button-primary:hover {
  background: #e1f770;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(215, 243, 90, 0.35);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(18, 20, 19, 0.5);
  color: #f5f6f1;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.button-dark {
  background: var(--accent-ink);
  color: var(--accent);
  border-color: rgba(215, 243, 90, 0.3);
}

.button-dark:hover {
  background: #181b13;
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* Emil Kowalski Tactile Active State */
.button:active,
.tab-switcher button:active,
.start-card:active,
.copilot-modes button:active {
  transform: scale(0.97) !important;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  color: #f5f6f1;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
}

.closing > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 10, 10, 0.96) 0%, rgba(9, 10, 10, 0.85) 45%, rgba(9, 10, 10, 0.25) 85%),
    linear-gradient(0deg, rgba(9, 10, 10, 0.9) 0%, transparent 60%);
}

.closing-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 10, 10, 0.96) 0%, rgba(9, 10, 10, 0.82) 42%, rgba(9, 10, 10, 0.15) 75%),
    linear-gradient(0deg, rgba(9, 10, 10, 0.85) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(6.5rem, 14vh, 9.5rem) var(--pad) clamp(3.5rem, 8vh, 5.5rem);
}

.hero-text-wrap {
  width: min(44rem, 100%);
}

.hero h1 {
  max-width: none;
  margin-bottom: 1.25rem;
  font-size: clamp(2.75rem, 5.2vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero-line {
  display: block;
  padding-bottom: 0.08em;
  white-space: normal;
}

@media (min-width: 768px) {
  .hero-line {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .hero-image {
    object-position: 70% 30%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(9, 10, 10, 0.92) 0%, rgba(9, 10, 10, 0.85) 60%, rgba(9, 10, 10, 0.96) 100%);
  }
}

.hero h1 strong,
.section-heading h2 span,
.copilot-copy h2 span,
.start-copy h2 span,
.closing h2 span {
  color: var(--accent);
  font-weight: inherit;
}

.hero-content p {
  max-width: 48ch;
  margin-bottom: 1.8rem;
  color: rgba(244, 245, 240, 0.84);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.55;
}

.hero-content > * {
  animation: hero-enter 760ms var(--ease-out) both;
}

.hero-content > p {
  animation-delay: 60ms;
}

.hero-content > .button-row {
  animation-delay: 120ms;
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}

.section {
  position: relative;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: var(--section) var(--pad);
  scroll-margin-top: 0;
}

.section-heading {
  width: min(56rem, 100%);
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.section-heading.compact {
  width: min(48rem, 100%);
}

.section-heading h2,
.copilot-copy h2,
.start-copy h2,
.closing h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.35rem, 4.5vw, 4.4rem);
  font-weight: 590;
  letter-spacing: -0.04em;
  line-height: 1;
}

.section-heading p,
.copilot-copy > p,
.start-copy > p,
.closing-copy > p {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.6;
}

.section-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

/* Elevated Segmented Control Tabs */
.tab-switcher {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 32rem);
  gap: 0.35rem;
  margin-bottom: 2.5rem;
  padding: 0.35rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  background: var(--surface);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.4);
}

.tab-switcher button {
  min-height: 2.85rem;
  border: 0;
  border-radius: var(--pill);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 720;
  transition: background-color 200ms var(--ease-out), color 200ms var(--ease-out), transform 140ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.tab-switcher button[aria-selected="true"] {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 2px 12px rgba(215, 243, 90, 0.22);
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel.is-active {
  animation: panel-enter 360ms var(--ease-out) both;
}

@keyframes panel-enter {
  from { opacity: 0; transform: translateY(0.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

#realityPanel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.editorial-image {
  min-height: 32rem;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 32rem;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.08);
  transition: transform 600ms var(--ease-out);
}

.editorial-image:hover img {
  transform: scale(1.025);
}

.story-lines article {
  position: relative;
  padding: 1.8rem 0 1.8rem 2.8rem;
  border-bottom: 1px solid var(--line);
}

.story-lines article:first-child {
  border-top: 1px solid var(--line);
}

.story-num {
  position: absolute;
  left: 0;
  top: 2rem;
  font-family: "Michroma", monospace;
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.story-lines h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.story-lines p {
  max-width: 44ch;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.story-lines .accent-line h3 {
  color: var(--accent);
}

.transformation-intro,
.journey-intro {
  max-width: 48rem;
  margin-bottom: 2.25rem;
}

.transformation-intro h3,
.journey-intro h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.transformation-intro p,
.journey-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.before-after {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
}

.before-after article {
  min-height: 30rem;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  border-radius: var(--radius);
  border: 1px solid var(--danger-line);
  background: var(--danger-soft);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.2);
}

.before-after .after {
  border: 1px solid rgba(215, 243, 90, 0.35);
  background: var(--surface-card);
  color: var(--text);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(215, 243, 90, 0.15);
}

.before-after-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--pill);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.before-after .before-after-badge {
  background: rgba(255, 107, 107, 0.12);
  color: #ff8b8b;
  border: 1px solid rgba(255, 107, 107, 0.25);
}

.before-after .after .before-after-badge {
  background: var(--accent);
  color: var(--accent-ink);
  border: none;
}

.before-after h4 {
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.after-title {
  color: var(--accent);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
}

.before-after ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.before-after li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.before-after article > p {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.before-after .after > p {
  color: var(--muted);
}

.before-after li i {
  margin-top: 0.2rem;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.before-after li i.ph-x-circle {
  color: #ff7575;
}

.before-after .after li i.ph-check-circle {
  color: var(--accent);
}

.artifact-section {
  padding-top: calc(var(--section) * 0.6);
}

.artifact-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr;
  grid-template-areas:
    "photo career marketing"
    "photo tools tools";
  gap: 1.25rem;
}

.artifact-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.artifact-main {
  grid-area: photo;
  min-height: 32rem;
}

.artifact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.05);
  transition: transform 700ms var(--ease-out), filter 300ms var(--ease-out);
}

.artifact-list {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 0.75rem 2rem rgba(0,0,0,0.2);
  transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.artifact-list:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.career-assets { grid-area: career; }
.marketing-portfolio { grid-area: marketing; }
.ai-tools {
  grid-area: tools;
  display: block;
  background: var(--surface-card);
  border-color: rgba(215, 243, 90, 0.3);
}

.artifact-list h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  letter-spacing: -0.03em;
}

.artifact-list h3 i {
  color: var(--accent);
}

.artifact-list ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.artifact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.artifact-list li i {
  color: var(--accent);
  font-size: 1rem;
}

.ai-tools li {
  border-color: rgba(255, 255, 255, 0.08);
}

.mentor-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.mentor-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35);
}

.mentor-image-wrap img {
  width: 100%;
  height: clamp(28rem, 46vw, 35rem);
  object-fit: cover;
  filter: saturate(0.68) contrast(1.06);
}

.mentor-name {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.mentor-name h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2.15rem);
  letter-spacing: -0.03em;
}

.mentor-name p {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.4;
  text-align: right;
}

.mentor-copy h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.3rem, 3.8vw, 3.75rem);
  font-weight: 590;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.mentor-copy blockquote {
  position: relative;
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--accent);
  color: var(--text);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  line-height: 1.45;
}

.mentor-copy > p {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.6;
}

.journey-section {
  isolation: isolate;
  overflow: hidden;
  padding-bottom: calc(var(--section) * 0.7);
}

.lead-copy {
  max-width: 48rem;
  margin-bottom: 2.5rem;
  font-size: clamp(1.3rem, 2.5vw, 2.25rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.comparison {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.25rem;
}

.comparison article {
  min-height: 18rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 0.75rem 2rem rgba(0,0,0,0.25);
}

.comparison-accent {
  background: var(--surface-card) !important;
  border-color: rgba(215, 243, 90, 0.4) !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(215, 243, 90, 0.15) !important;
}

.comparison-tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--pill);
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comparison article:not(.comparison-accent) .comparison-tag {
  background: rgba(244, 245, 240, 0.08);
  color: var(--muted);
}

.comparison-accent .comparison-tag {
  background: var(--accent);
  color: var(--accent-ink);
}

.comparison h3 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  letter-spacing: -0.03em;
}

.comparison p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.comparison-accent h3 {
  color: var(--accent);
}

.journey-track {
  display: grid;
  grid-auto-columns: minmax(16.5rem, 1fr);
  grid-auto-flow: column;
  align-items: stretch;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.35rem 0 1.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--surface);
}

.journey-track article {
  position: relative;
  scroll-snap-align: start;
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.journey-track article:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.journey-track article.current {
  border-color: var(--accent);
  background: var(--surface-card);
  box-shadow: 0 0.5rem 2rem rgba(215, 243, 90, 0.12);
}

.journey-step-num {
  font-family: "Michroma", monospace;
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.journey-track i {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.35rem;
  background: rgba(215, 243, 90, 0.06);
}

.journey-track h4 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.journey-track p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Elevated AI Copilot Console */
.copilot-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.copilot-media {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.copilot-media > img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  object-fit: cover;
  aspect-ratio: 16 / 10;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35);
}

.copilot-console {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #0e100f;
  padding: 1.1rem 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0.75rem 2.5rem rgba(0, 0, 0, 0.4);
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mac-dots {
  display: flex;
  gap: 0.4rem;
}

.dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.console-title {
  font-family: "Michroma", monospace;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: -0.02em;
}

.copilot-console pre {
  margin: 0;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.85rem;
  color: var(--accent);
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.6;
  min-height: 4.5rem;
}

.copilot-modes {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.copilot-modes button {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 200ms var(--ease-out), background-color 200ms var(--ease-out), transform 160ms var(--ease-out);
}

.copilot-modes button:hover {
  border-color: var(--line-strong);
  background: var(--surface-2);
}

.copilot-modes button.is-active {
  border-color: var(--accent);
  background: var(--surface-card);
  box-shadow: 0 4px 20px rgba(215, 243, 90, 0.12);
}

.copilot-modes button i {
  color: var(--accent);
  font-size: 1.45rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.copilot-modes button span strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.2rem;
}

.copilot-modes button span small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Start Today Cards & Visual Hierarchy */
.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  align-items: stretch;
}

.start-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.25);
  transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.start-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.35);
}

.start-card-primary {
  border: 1px solid rgba(215, 243, 90, 0.45);
  background: var(--surface-card);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.4), 0 0 30px rgba(215, 243, 90, 0.08);
}

.start-card-tag {
  align-self: flex-start;
  margin-bottom: 1.5rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--pill);
  background: rgba(244, 245, 240, 0.08);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.start-card-tag.tag-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.start-card h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  letter-spacing: -0.03em;
}

.start-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
  margin-bottom: 2rem;
}

.start-card .button {
  width: 100%;
}

/* FAQ Accordion Styling */
.faq-section h2 {
  margin-bottom: 2.25rem;
  font-size: clamp(2.35rem, 4.5vw, 4.4rem);
  font-weight: 590;
  letter-spacing: -0.04em;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.faq-grid details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  transition: border-color 200ms var(--ease-out);
}

.faq-grid details:hover {
  border-bottom-color: var(--line-strong);
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 650;
  list-style: none;
  color: var(--text);
  transition: color 180ms var(--ease-out);
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary:hover {
  color: var(--accent);
}

.faq-grid summary i {
  color: var(--accent);
  font-size: 1.1rem;
  transition: transform 220ms var(--ease-out);
}

.faq-grid details[open] summary i {
  transform: rotate(180deg);
}

.faq-grid details p {
  margin-top: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Video Showcase Section */
.video-section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.video-container {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-card);
  border: 1px solid var(--line-strong);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px var(--accent-glow);
}

.video-wrapper video,
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
  background: #000;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 10, 10, 0.4);
  transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
  cursor: pointer;
}

.video-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
}

.video-poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.8);
  transition: transform 0.6s var(--ease-out), filter 0.4s ease;
}

.video-wrapper:hover .video-poster-img {
  transform: scale(1.02);
  filter: brightness(0.88);
}

.video-play-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 1.75rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px var(--accent-glow);
  transition: transform 0.3s var(--ease-bounce), background-color 0.3s ease, box-shadow 0.3s ease;
}

.video-play-btn i {
  margin-left: 3px;
}

.video-play-btn:hover {
  transform: scale(1.12);
  background: #e4ff6b;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.65), 0 0 40px var(--accent-glow);
}

.video-play-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

/* Footer Section */
.closing {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) var(--pad) 3rem;
  isolation: isolate;
  background: #070808;
}

.closing-copy {
  position: relative;
  z-index: 2;
  width: min(48rem, 100%);
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.closing-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.closing-copy p {
  color: rgba(244, 245, 240, 0.82);
  font-size: 1.18rem;
  margin-bottom: 2.25rem;
}

.closing-copy .button-row {
  justify-content: center;
}

.footer-line {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-line p {
  margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .artifact-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "photo photo"
      "career marketing"
      "tools tools";
  }

  .mentor-section,
  .copilot-section,
  .before-after,
  .comparison,
  #realityPanel {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .start-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .mentor-name p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.45rem 0.75rem;
  }

  .nav-actions .nav-link {
    display: none;
  }

  .header-status {
    display: none;
  }

  .hero-content > .button-row,
  .closing-copy .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content > .button-row .button,
  .closing-copy .button-row .button {
    width: 100%;
  }
}


.journey-track p {
  margin: 0;
  color: var(--muted);
}

.journey-track .current p {
  color: rgba(17, 19, 13, 0.72);
}

.copilot-section {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
}

.copilot-media,
.copilot-copy,
.copilot-modes {
  min-width: 0;
  max-width: 100%;
}

.copilot-media {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border-radius: var(--radius);
}

.copilot-media > img {
  width: 100%;
  height: 34rem;
  object-fit: cover;
  filter: saturate(0.55) brightness(0.6);
}

.copilot-console {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(9, 11, 10, 0.86);
  color: #f5f6f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.copilot-console span {
  color: var(--accent);
  font-weight: 750;
}

.copilot-console pre {
  min-height: 5.8rem;
  margin: 0.8rem 0 0;
  overflow: auto;
  color: rgba(245, 246, 241, 0.72);
  font: inherit;
  font-size: 0.88rem;
  white-space: pre-wrap;
}

.copilot-copy h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 3.7vw, 3.55rem);
  line-height: 0.96;
}

.copilot-copy > p {
  margin-bottom: 1rem;
}

.copilot-modes {
  display: grid;
  gap: 0.45rem;
}

.copilot-modes button {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  min-height: 3.7rem;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.55rem 0.65rem;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out), transform 140ms var(--ease-out);
}

.copilot-modes button.is-active {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 16%, transparent);
}

.copilot-modes button > i {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--surface-2);
  font-size: 1.25rem;
}

.copilot-modes button.is-active > i {
  background: var(--accent);
  color: var(--accent-ink);
}

.copilot-modes span {
  display: grid;
}

.copilot-modes strong {
  font-size: 1rem;
}

.copilot-modes small {
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.start-section {
  display: block;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.start-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.start-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.start-card-primary {
  border: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.55), transparent 45%),
    var(--accent);
  color: var(--accent-ink);
}

.start-card-primary:hover {
  transform: translateY(-2px);
}

.start-card-tag {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  margin-bottom: 1.25rem;
  border-radius: var(--pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.start-card-tag.tag-primary {
  border: none;
  background: rgba(17, 19, 13, 0.14);
  color: var(--accent-ink);
}

.start-card h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.start-card p {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.start-card-primary p {
  color: rgba(17, 19, 13, 0.78);
}

.start-card .button {
  margin-top: auto;
  width: 100%;
}

.start-secondary h3 {
  font-size: clamp(1.4rem, 2.6vw, 2.15rem);
}

.start-secondary p {
  color: var(--muted);
}

.start-secondary .button {
  margin-top: auto;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
}

.faq-section > h2 {
  position: sticky;
  top: 7rem;
  margin: 0;
  font-size: clamp(3.75rem, 7vw, 6rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

.faq-grid details {
  border-bottom: 1px solid var(--line);
}

.faq-grid summary {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: clamp(1rem, 1.65vw, 1.25rem);
  font-weight: 690;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary i {
  transition: transform 180ms var(--ease-out);
}

.faq-grid details[open] {
  border-color: var(--accent);
}

.faq-grid details[open] summary {
  color: var(--accent);
}

.faq-grid details[open] summary i {
  transform: rotate(180deg);
}

.faq-grid details p {
  max-width: 55ch;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.closing {
  position: relative;
  display: grid;
  min-height: 100dvh;
  align-items: end;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 10rem) var(--pad) 1.25rem;
  color: #f5f6f1;
  isolation: isolate;
}

.closing-shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.94) 0%, rgba(7, 8, 8, 0.62) 52%, rgba(7, 8, 8, 0.12) 78%),
    linear-gradient(0deg, rgba(7, 8, 8, 0.86) 0%, transparent 60%);
}

.closing-copy {
  width: min(48rem, 100%);
  margin-left: max(0rem, calc((100vw - var(--max)) / 2));
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.closing h2 {
  max-width: 12ch;
  color: #f5f6f1;
}

.closing-copy > p {
  color: rgba(245, 246, 241, 0.72);
}

.closing .button-row {
  margin-top: 1.75rem;
}

.footer-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(245, 246, 241, 0.65);
  font-size: 0.78rem;
}

.footer-line p {
  margin: 0;
}

.footer-line p:last-child {
  justify-self: end;
  max-width: 28rem;
  text-align: right;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }

  .button-primary:hover {
    background: #e3ff67;
  }

  .button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-link:hover {
    color: #fff;
  }

  .artifact-photo:hover img {
    transform: scale(1.025);
    filter: saturate(0.75) contrast(1.02);
  }

  .copilot-modes button:hover {
    border-color: var(--line-strong);
    transform: translateY(-1px);
  }
}

@media (max-width: 980px) {
  .hero-proof {
    display: none;
  }

  .hero-content {
    width: min(40rem, calc(100% - 2.5rem));
  }

  #realityPanel,
  .copilot-section {
    grid-template-columns: 1fr;
  }

  .artifact-grid {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-areas:
      "photo career"
      "photo marketing"
      "photo tools";
  }

  .artifact-main {
    min-height: 34rem;
  }

  .mentor-image-wrap {
    max-height: 34rem;
  }

  .mentor-image-wrap img {
    height: 34rem;
  }

  .copilot-media {
    min-height: 30rem;
  }

  .copilot-media > img {
    height: 30rem;
  }

  .start-section {
    grid-template-columns: 1fr 1fr;
  }

  .start-copy {
    grid-column: 1 / -1;
    max-width: 48rem;
    min-height: 26rem;
  }

  .start-primary {
    min-height: 26rem;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-section > h2 {
    position: static;
  }

  .footer-line {
    grid-template-columns: 1fr 1fr;
  }

  .footer-line p:last-child {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 700px) {
  :root {
    --pad: 1.25rem;
    --section: clamp(3.5rem, 12vw, 4.5rem);
  }

  .site-header {
    top: max(0.5rem, env(safe-area-inset-top));
    width: calc(100% - 1rem);
    min-height: 3.25rem;
    padding: 0.4rem 0.45rem 0.4rem 0.7rem;
  }

  .nav-link {
    display: none;
  }

  .site-header .button span {
    max-width: 8.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 100dvh;
  }

  .hero-image {
    object-position: 83% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(7, 8, 8, 0.96) 0%, rgba(7, 8, 8, 0.68) 58%, rgba(7, 8, 8, 0.18) 100%),
      linear-gradient(90deg, rgba(7, 8, 8, 0.54), transparent);
  }

  .hero-content {
    left: var(--pad);
    bottom: 2.25rem;
    width: calc(100% - 2.5rem);
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.6rem);
  }

  .hero-line {
    white-space: normal;
  }

  .hero-content > p {
    max-width: 37ch;
    font-size: 0.98rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    width: 100%;
    scroll-margin-top: 5rem;
  }

  .section-heading h2,
  .copilot-copy h2,
  .start-copy h2,
  .closing h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.25rem);
    line-height: 1;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .tab-switcher {
    width: 100%;
  }

  .tab-switcher button {
    padding-inline: 0.65rem;
    font-size: 0.78rem;
  }

  #realityPanel {
    gap: 1.5rem;
  }

  .editorial-image,
  .editorial-image img {
    min-height: 20rem;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .before-after article {
    min-height: auto;
  }

  .artifact-grid {
    display: flex;
    flex-direction: column;
  }

  .artifact-main {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .artifact-list,
  .ai-tools {
    display: block;
    padding: 1.25rem;
  }

  .mentor-section {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .mentor-image-wrap {
    max-height: none;
  }

  .mentor-image-wrap img {
    height: auto;
    aspect-ratio: 16 / 11;
    object-position: center 22%;
  }

  .mentor-name {
    align-items: end;
    margin-bottom: 1.5rem;
  }

  .mentor-name p {
    font-size: 0.72rem;
    text-align: right;
  }

  .mentor-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .mentor-copy blockquote {
    font-size: 1.05rem;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .comparison article {
    min-height: 15rem;
  }

  .comparison h3 {
    margin-bottom: 1.75rem;
  }

  .copilot-media {
    min-height: 21rem;
  }

  .copilot-media > img {
    height: 21rem;
  }

  .copilot-console {
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
    padding: 1rem;
  }

  .copilot-console pre {
    min-height: 4.2rem;
    max-height: 6.5rem;
    font-size: 0.78rem;
  }

  .copilot-modes {
    width: 100%;
    grid-template-columns: none;
    grid-auto-columns: minmax(15rem, 82vw);
    grid-auto-flow: column;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--accent) var(--surface);
  }

  .copilot-modes button {
    min-height: 4.3rem;
    scroll-snap-align: start;
  }

  .start-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-section > h2 {
    font-size: 3.25rem;
  }

  .closing {
    min-height: 100dvh;
  }

  .closing > img {
    object-position: 83% center;
  }

  .closing-shade {
    background:
      linear-gradient(0deg, rgba(7, 8, 8, 0.96) 0%, rgba(7, 8, 8, 0.74) 62%, rgba(7, 8, 8, 0.22) 100%),
      linear-gradient(90deg, rgba(7, 8, 8, 0.54), transparent);
  }

  .closing-copy {
    padding-bottom: 3rem;
  }

  .footer-line {
    grid-template-columns: 1fr;
  }

  .footer-line p:last-child {
    grid-column: auto;
  }
}

@media (pointer: coarse) {
  .section {
    scroll-margin-top: 5rem;
  }
}

@media (max-width: 420px) {
  :root {
    --pad: 1rem;
  }

  .site-header {
    gap: 0.45rem;
  }

  .brand {
    gap: 0.4rem;
    font-size: 0.66rem;
  }

  .brand-mark {
    width: 1.65rem;
    height: 1.65rem;
  }

  .site-header .button {
    gap: 0.35rem;
    padding-inline: 0.7rem;
    font-size: 0.68rem;
  }

  .site-header .button span {
    max-width: 7rem;
  }

  .hero-content {
    width: calc(100% - 2rem);
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11.5vw, 3rem);
  }

  .section-heading h2,
  .copilot-copy h2,
  .start-copy h2,
  .closing h2 {
    font-size: clamp(2.1rem, 10vw, 2.75rem);
  }

  .mentor-name h3 {
    max-width: 9ch;
    font-size: 1.35rem;
  }

  .copilot-media,
  .copilot-media > img {
    min-height: 19rem;
    height: 19rem;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .hero-proof,
  .copilot-console {
    background: #111311;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
