:root {
  color-scheme: dark;
  --bg: #07090d;
  --bg-soft: #0e121a;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.24);
  --text: #f7f8fb;
  --text-muted: #b4bdcc;
  --text-soft: #8290a5;
  --accent: #72f2c6;
  --accent-2: #67b7ff;
  --accent-3: #ffd66b;
  --danger: #ff7b7b;
  --max: 1160px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 8%, rgba(103, 183, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(114, 242, 198, 0.18), transparent 26rem),
    radial-gradient(circle at 46% 82%, rgba(255, 214, 107, 0.10), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 80%);
}

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

img,
svg {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(7, 9, 13, 0.78);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(114, 242, 198, 0.22), rgba(103, 183, 255, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand-mark span {
  font-size: 15px;
  font-weight: 900;
}

.brand-name {
  display: flex;
  flex-direction: column;
}

.brand-name small {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: var(--surface);
  color: var(--text);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.mobile-toggle span::before {
  transform: translateY(-6px);
}

.mobile-toggle span::after {
  transform: translateY(4px);
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 214, 107, 0.35);
  border-radius: 999px;
  background: rgba(255, 214, 107, 0.12);
  color: #ffe6a1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-3);
  content: "";
  box-shadow: 0 0 24px var(--accent-3);
}

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

.hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.headline-top {
  display: inline-block;
  color: var(--text);
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 720px;
  color: var(--text-muted);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
  padding: 0 20px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #061014;
  box-shadow: 0 18px 48px rgba(114, 242, 198, 0.18);
}

.button-secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.button-text {
  color: var(--text-muted);
  padding: 0;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 14px;
}

.hero-note span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
}

.hero-card::before {
  position: absolute;
  inset: -1px;
  content: "";
  background: radial-gradient(circle at 22% 0%, rgba(114, 242, 198, 0.28), transparent 18rem), radial-gradient(circle at 100% 20%, rgba(103, 183, 255, 0.22), transparent 18rem);
  pointer-events: none;
}

.terminal {
  position: relative;
  padding: 20px;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--text-soft);
}

.dot:nth-child(1) {
  background: #ff786b;
}

.dot:nth-child(2) {
  background: #ffd66b;
}

.dot:nth-child(3) {
  background: #72f2c6;
}

.flow-card {
  display: grid;
  gap: 14px;
}

.flow-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(7, 9, 13, 0.5);
  padding: 16px;
}

.flow-step strong {
  display: block;
  margin-bottom: 2px;
  font-size: 16px;
}

.flow-step p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.step-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: rgba(114, 242, 198, 0.12);
  color: var(--accent);
  font-weight: 900;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.metric {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  padding: 16px;
}

.metric strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding: 72px 0;
}

.section-compact {
  padding: 42px 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-header p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 18px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 24px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: var(--surface-strong);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent);
  font-weight: 900;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.card p {
  margin-bottom: 0;
  color: var(--text-muted);
}

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

.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  padding: 28px;
}

.panel-large {
  min-height: 420px;
}

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

.principle {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
}

.principle-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: rgba(103, 183, 255, 0.14);
  color: var(--accent-2);
  font-size: 14px;
  font-weight: 900;
}

.principle h3 {
  margin-bottom: 4px;
  font-size: 20px;
}

.principle p {
  margin-bottom: 0;
  color: var(--text-muted);
}

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

.stack-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(7, 9, 13, 0.38);
  padding: 14px 16px;
}

.stack-list span {
  color: var(--text-soft);
}

.quote-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(114, 242, 198, 0.15), rgba(103, 183, 255, 0.10));
}

.quote-card blockquote {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.quote-card cite {
  display: block;
  margin-top: 28px;
  color: var(--text-muted);
  font-style: normal;
}

.cta {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 36px;
  background:
    radial-gradient(circle at 10% 0%, rgba(114, 242, 198, 0.2), transparent 22rem),
    radial-gradient(circle at 90% 10%, rgba(103, 183, 255, 0.22), transparent 22rem),
    rgba(255, 255, 255, 0.075);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta h2 {
  margin-bottom: 12px;
}

.cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 18px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 34px 0;
  color: var(--text-soft);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a:hover {
  color: var(--text);
}

.page-shell {
  padding: 62px 0 88px;
}

.page-hero {
  max-width: 900px;
  margin-bottom: 38px;
}

.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 20px;
}

.content-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.075);
  padding: clamp(24px, 4vw, 44px);
}

.content-card h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card p,
.content-card li {
  color: var(--text-muted);
  font-size: 16px;
}

.content-card a {
  color: var(--accent);
  font-weight: 750;
}

.content-card ul {
  padding-left: 22px;
}

.notice {
  border: 1px solid rgba(255, 214, 107, 0.34);
  border-radius: 18px;
  background: rgba(255, 214, 107, 0.09);
  color: #ffe6a1;
  padding: 16px 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.contact-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.contact-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item strong {
  display: block;
  font-size: 20px;
}

.copy-button {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 920px) {
  .hero-grid,
  .section-header,
  .bento,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 620px;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: 68px;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(7, 9, 13, 0.96);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .hero {
    padding: 52px 0 42px;
  }

  .hero h1 {
    letter-spacing: -0.06em;
  }

  .cards-grid,
  .contact-grid,
  .metrics-strip,
  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    width: 96px;
    height: 96px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 22px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta {
    border-radius: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

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

/* Content-rich landing additions */
.profile-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 16px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(7, 9, 13, 0.46);
  padding: 18px;
}

.profile-avatar {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(114, 242, 198, 0.88), rgba(103, 183, 255, 0.82));
  color: #061014;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.profile-card h2 {
  margin-bottom: 4px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.profile-card p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.profile-label {
  color: var(--accent) !important;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 14px;
}

.trust-strip span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.42);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 9px 12px;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: 18px;
}

.big-copy {
  color: var(--text);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 720;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.sharp-quote {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(7, 9, 13, 0.34);
  color: var(--text-muted);
  font-weight: 750;
  padding: 12px 14px;
}

.cards-grid-wide .card-icon {
  min-width: 48px;
}

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

.stat-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.065);
  padding: 22px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.stat-card span {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 760;
}

.timeline {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--border);
  padding: 22px;
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-item > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-bottom: 6px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--text-muted);
}

@media (max-width: 920px) {
  .split-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .profile-card,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    border-radius: 24px;
    justify-content: flex-start;
  }

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

/* Premium content pass */
.hero h1 {
  max-width: 920px;
  line-height: 0.95;
  letter-spacing: -0.068em;
}

.headline-top {
  display: inline-block;
  color: var(--text);
}

.profile-card-premium {
  grid-template-columns: 104px 1fr;
  gap: 18px;
  background: linear-gradient(135deg, rgba(7, 9, 13, 0.68), rgba(255, 255, 255, 0.055));
}

.profile-photo {
  width: 104px;
  height: 104px;
  object-fit: cover;
  object-position: 50% 36%;
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

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

.belief-card {
  min-height: 310px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 0%, rgba(114, 242, 198, 0.12), transparent 15rem),
    rgba(255, 255, 255, 0.065);
  padding: 24px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.belief-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.095);
}

.belief-card > span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(114, 242, 198, 0.28);
  border-radius: 16px;
  background: rgba(114, 242, 198, 0.11);
  color: var(--accent);
  font-weight: 950;
}

.belief-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.belief-card p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.timeline {
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035));
}

.timeline-item {
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 30px 34px;
}

.timeline-item > span {
  font-size: 15px;
  letter-spacing: 0.13em;
}

.timeline-item h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.042em;
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.62;
}

.impact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.impact-tags span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.42);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.045em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.work-steps {
  display: grid;
  gap: 14px;
}

.work-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.065);
  padding: 18px;
}

.work-step > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(114, 242, 198, 0.18), rgba(103, 183, 255, 0.13));
  color: var(--accent);
  font-weight: 950;
}

.work-step strong {
  display: block;
  margin-bottom: 5px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.work-step p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  min-width: 220px;
}

@media (max-width: 1100px) {
  .belief-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (max-width: 720px) {
  .hero h1 {
    letter-spacing: -0.055em;
  }

  .profile-card-premium,
  .belief-grid,
  .work-step,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    width: 116px;
    height: 116px;
  }

  .belief-card {
    min-height: auto;
  }

  .timeline-item {
    padding: 24px 22px;
  }

  .cta-actions {
    min-width: 0;
  }
}

/* Final layout fix: keep the How Igor works cards readable on wide screens and mobile. */
.work-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  align-items: start;
}

.work-grid > .panel h2 {
  max-width: 640px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.work-grid > .panel .big-copy {
  max-width: 660px;
  font-size: clamp(19px, 2.1vw, 28px);
  line-height: 1.38;
}

.work-step {
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 24px;
}

.work-step > span {
  grid-row: 1 / span 2;
  width: 64px;
  height: 64px;
}

.work-step strong {
  align-self: end;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.12;
}

.work-step p {
  grid-column: 2;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.58;
}

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

@media (max-width: 720px) {
  .work-step {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 20px;
  }

  .work-step > span {
    grid-row: 1 / span 2;
    width: 56px;
    height: 56px;
  }

  .work-step p {
    grid-column: 2;
    font-size: 16px;
  }
}

@media (max-width: 440px) {
  .work-step {
    grid-template-columns: 1fr;
  }

  .work-step > span,
  .work-step p {
    grid-column: auto;
    grid-row: auto;
  }
}
