:root {
  --bg: #2c2c2c;
  --surface: #383838;
  --text: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.5);
  --line: rgba(245, 245, 245, 0.12);
  --accent: #f5f5f5;
  --max: 1060px;
  --radius: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: #f5f5f5; color: #2c2c2c; }

/* ── Container ── */
.container {
  width: min(100% - 160px, var(--max));
  margin: 0 auto;
}

/* ── Navigation ── */
.back-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(44, 44, 44, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.back-nav.scrolled {
  background: #2c2c2c;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.back-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  width: min(100% - 160px, 1220px);
  max-width: 1220px;
  position: relative;
  transition: height 0.25s ease;
}

.back-nav.scrolled .container { height: 80px; }

.back-nav.scrolled .container {
  justify-content: flex-end;
}

.nav-back {
  display: flex;
  align-items: center;
  color: rgba(245,245,245,0.7);
  transition: opacity 0.2s;
}

.back-nav.scrolled .nav-back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-back svg { width: 32px; height: 32px; }
.nav-back:hover { opacity: 0.5; }

.nav-anchors {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-anchors a {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #b3b3b3;
  transition: color 0.2s, font-weight 0.1s;
}

.nav-anchors a:hover { color: #f5f5f5; }
.nav-anchors a.active { color: #f5f5f5; font-weight: 600; }

.nav-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #d9d9d9;
  color: #2c2c2c;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding: 0 12px;
  height: 32px;
  border-radius: 8px;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
  flex-shrink: 0;
}

.nav-contact:hover { background: #c8c8c8; transform: translateY(-1px); }
.nav-contact:active { transform: translateY(0); }

.back-nav.scrolled .nav-contact {
  display: none;
}

/* ── Floating Contact ── */
.contact-float {
  display: flex;
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom));
  right: calc(24px + env(safe-area-inset-right));
  z-index: 200;
  align-items: center;
  gap: 8px;
  background: #d9d9d9;
  color: #2c2c2c;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 14px 18px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.18s ease;
}

.contact-float.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-float:hover { background: #c8c8c8; transform: translateY(-2px); }
.contact-float:active { transform: translateY(0); }

@media (max-width: 900px) {
  .nav-contact { display: none; }
  .contact-float {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .role-block {
    gap: 32px;
  }

  .role-text,
  .role-action-text {
    font-size: 20px;
  }

  .role-actions-title {
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 0.8px;
  }

  .peach-block {
    margin-top: 60px;
    margin-bottom: 64px;
    min-height: clamp(420px, 56vh, 520px);
    height: auto;
    border-radius: 40px;
  }

  .profile-block {
    padding: 80px 0;
    gap: 20px;
  }

  .profile-block__title {
    font-size: 24px;
    white-space: normal;
  }

  .profile-grid,
  .profile-pain-grid {
    grid-template-columns: 1fr;
  }

  .profile-metrics {
    gap: 20px;
  }

  .profile-metric--w280,
  .profile-metric--w376,
  .profile-metric--w355,
  .profile-metric--w385 {
    width: 100%;
  }

  .profile-metric__value {
    font-size: 32px;
  }

  .profile-metric__title {
    font-size: 18px;
    font-weight: 600;
  }

  .profile-pain__icon {
    margin-top: 0;
  }

  .discovery-section__content {
    flex-direction: column;
    gap: 20px;
  }

  .discovery-section__copy {
    width: 100%;
    flex: 0 0 auto;
    font-size: 28px;
    line-height: 1.15;
  }

  .discovery-section__cards {
    width: 100%;
    flex: 0 0 auto;
    gap: 20px;
    margin-top: 0;
  }

  .discovery-card {
    gap: 10px;
  }

  .discovery-card__icon,
  .discovery-card__icon img {
    width: 24px;
    height: 24px;
  }

  .discovery-card__icon--gos {
    width: 22px;
    height: 24px;
  }

  .discovery-card__title {
    font-size: 18px;
  }

  .discovery-card__text {
    font-size: 15px;
    line-height: 1.45;
  }

  .process-section {
    margin-top: 0;
    padding: 40px 0 0;
    background: #2c2c2c;
  }

  .process-section__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .process-section__label {
    margin: 0;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 34px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #b3b3b3;
    font-feature-settings: 'lnum' 1, 'tnum' 1;
  }

  .process-section__label span:last-child {
    color: #f3f3f3;
  }

  .process-section__title {
    margin: 0;
    width: 100%;
    font-family: 'SF Pro Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.8px;
    color: #f5f5f5;
  }

  .process-section__title-dim {
    color: #757575;
  }

  .process-section__copy {
    margin: 0;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.2px;
    color: #f3f3f3;
  }

  .process-section__copy strong {
    font-style: italic;
    font-weight: 700;
  }

  .process-section__visual {
    width: 100vw;
    margin: 28px auto 0;
    margin-left: calc(50% - 50vw);
  }

  .process-section__image {
    position: absolute;
    left: 3.52%;
    top: -0.92%;
    width: 92.96%;
    height: 100.92%;
  }

  .problems-section {
    margin-top: 72px;
  }

  .problems-section__title {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .problems-grid {
    flex-direction: column;
    gap: 20px;
  }

  .problem-card {
    min-height: auto;
    gap: 18px;
    padding: 18px 18px 20px;
  }

  .problem-card__items {
    margin-top: 0;
  }

  .problem-card__description {
    font-size: 15px;
  }

  .problem-card__divider {
    margin: 12px 0;
  }

  .problem-card__stack {
    gap: 12px;
  }

  .problem-card__subitem-text {
    font-size: 15px;
  }

  .problem-card--tension .problem-card__divider {
    margin: 0 0 12px;
  }

  .reflection-section {
    margin-top: 72px;
    padding-bottom: 72px;
  }

  .reflection-section__content {
    gap: 16px;
  }

  .reflection-section__title {
    font-size: 30px;
    line-height: 1.15;
  }

  .reflection-section__copy {
    font-size: 18px;
  }

  .creating-section {
    margin-top: 40px;
  }

  .creating-section__content {
    gap: 28px;
  }

  .testing-card {
    gap: 12px;
    padding-bottom: 18px;
  }

  .testing-card__icon {
    width: 28px;
    height: 28px;
  }

  .testing-card__title {
    font-size: 18px;
    line-height: 1.35;
    white-space: normal;
  }

  .testing-card__text,
  .support-insight__quote {
    font-size: 18px;
  }

  .support-insight {
    width: calc(100% + 40px);
    margin-left: -40px;
    padding: 28px 24px 32px;
    border-radius: 32px;
  }

  .support-insight__quote {
    width: 100%;
    margin: 0 0 28px;
  }

  .support-insight__images {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin: 0;
  }

  .support-insight__image,
  .support-insight__image--faq,
  .support-insight__image--article {
    width: 100%;
    height: auto;
    aspect-ratio: 440 / 437;
  }
}

/* ── Hero ── */
.hero {
  padding: 160px 0 0;
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.hero-tag {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 1px;
}

.hero-title-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 0;
}

.hero h1 {
  font-family: -apple-system, 'SF Pro Display', 'Inter', BlinkMacSystemFont, sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.28px;
  color: #f3f3f3;
  flex-shrink: 0;
  width: 481px;
}

.hero h1 .dim {
  color: rgba(245, 245, 245, 0.5);
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #f5f5f5;
  line-height: 1.5;
  flex: 1;
  padding-top: 6px;
}

.hero-subtitle em {
  font-style: italic;
}

/* ── Section labels ── */
.section-label {
  display: block;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(245,245,245,0.5);
  margin-top: 40px;
  margin-bottom: 40px;
}

.label-num { color: rgba(245,245,245,0.3); }

/* ── Hero Visual ── */
.hero-visual {
  margin-top: 40px;
}

.hero-image-bg {
  position: relative;
  width: 100%;
  max-width: 1060px;
  height: 621px;
  margin: 0 auto;
  background: #F4EEEC;
  border-radius: 16px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Context block ── */
.context-block {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.context-label {
  font-size: 16px;
  font-weight: 300;
  color: #b3b3b3;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
  line-height: 34px;
}

.context-label-num { color: #b3b3b3; }
.context-label-word { color: #f3f3f3; }

.context-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.context-heading {
  font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.8px;
  color: #f5f5f5;
  flex: 1;
  min-width: 0;
}

.context-heading .dim { color: rgba(245,245,245,0.7); }

.serif-em {
  font-family: Georgia, 'New York', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 600;
  color: #f5f5f5;
}

.context-copy {
  width: 620px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.context-copy p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #b3b3b3;
  max-width: 100%;
}

.context-copy strong {
  font-weight: 700;
  color: #f3f3f3;
}

.context-copy strong.bright {
  color: #f5f5f5;
}

/* ── Goal ── */
.goal-section {
  margin-top: 64px;
  padding-bottom: 40px;
}

.goal-label {
  font-size: 16px;
  font-weight: 300;
  color: #b3b3b3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 12px;
}

.goal-text {
  font-size: 32px;
  font-weight: 500;
  color: #f5f5f5;
  line-height: 1.3;
}

.goal-em {
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
}

/* ── Key Achievements ── */
.achievements-block {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.achievements-label {
  font-size: 16px;
  font-weight: 300;
  color: #b3b3b3;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 34px;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
}

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.achievement-tile {
  background: #1e1e1e;
  border-radius: 24px;
  padding: 24px;
  min-width: 200px;
  flex: 1 0 calc(33.333% - 14px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.achievement-num {
  font-family: 'New York', 'New York Extra Large', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.8px;
  color: #f3f3f3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.achievement-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(245, 245, 245, 0.8);
}

.achievement-desc span {
  color: #f5f5f5;
}

.achievement-desc em {
  font-style: italic;
  color: rgba(245, 245, 245, 0.8);
}

/* ── My Role ── */
.role-block {
  margin-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.role-block__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.role-label {
  font-size: 16px;
  font-weight: 300;
  color: #b3b3b3;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
  line-height: normal;
}

.role-text {
  font-size: 24px;
  font-weight: 400;
  color: #f5f5f5;
  line-height: 1.5;
}

.role-text strong {
  font-weight: 700;
  color: #f5f5f5;
}

.role-block__actions {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}

.role-actions-title {
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  color: #b3b3b3;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
  margin-bottom: 18px;
}

.role-action-divider {
  width: 100%;
  height: 1px;
  background: #b3b3b3;
}

.role-action-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 18px 0;
}

.role-action-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: #f5f5f5;
  margin-bottom: 4px;
}

.role-action-text {
  font-size: 24px;
  font-weight: 400;
  color: #b3b3b3;
  line-height: 1.5;
}

.peach-block {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 80px;
  min-height: clamp(520px, 72vh, 920px);
  height: auto;
  background: #f2eae6;
  border-radius: 80px;
  overflow: hidden;
}

.profile-block {
  display: flex;
  flex-direction: column;
  padding: 80px 0;
}

.profile-block__title {
  font-family: 'SF Pro Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.8px;
  color: #303030;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
  white-space: nowrap;
}

.profile-block__title em {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 500;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
  margin-top: 24px;
}

.profile-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  min-width: 0;
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .profile-card:hover {
    transform: scale(1.015);
    box-shadow: 0 16px 32px rgba(48, 48, 48, 0.08);
  }
}

.profile-card__shot {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  pointer-events: none;
}

.profile-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.profile-pain-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.profile-pain-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.5;
  color: #303030;
  text-transform: uppercase;
}

.profile-pain {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
}

.profile-pain__icon {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(90, 90, 90, 0.3);
  margin-top: 11px;
}

.profile-pain__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.profile-pain__text {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #444;
}

.profile-divider {
  width: 100%;
  height: 28px;
  margin: 44px 0 0;
  position: relative;
}

.profile-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(48, 48, 48, 0.35);
  transform: translateY(-50%);
}

.profile-baseline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.profile-baseline__label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5a5a5a;
}

.profile-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.profile-metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.profile-metric--w280 { width: 332px; }
.profile-metric--w376 { width: 332px; }
.profile-metric--w355 { width: 332px; }
.profile-metric:nth-child(2),
.profile-metric:nth-child(3),
.profile-metric:nth-child(5) {
  padding-left: 24px;
}

.profile-metric:nth-child(4) {
  padding-left: 0;
}

.profile-metric--w385 { width: 385px; }

.profile-metric__value {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.3;
  color: #2c2c2c;
}

.profile-metric__value span {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
}

.profile-metric__title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  line-height: 24px;
  color: #303030;
}

.profile-metric__text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5a5a5a;
}

.discovery-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 42px;
  padding: 0;
  background: transparent;
}

.discovery-section__separator {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.discovery-section__separator-spacer {
  height: 0;
}

.discovery-section__separator-line {
  width: 100%;
  height: 20px;
  position: relative;
}

.discovery-section__separator-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #b2b2b2;
  transform: translateY(-50%);
}

.discovery-section__content {
  display: flex;
  align-items: flex-start;
  gap: 54px;
  padding-top: 4px;
}

.discovery-section__copy {
  width: 332px;
  flex: 0 0 332px;
  margin: 0;
  font-family: 'SF Pro Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: #303030;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
}

.discovery-section__copy-muted {
  color: #767676;
}

.discovery-section__copy-em {
  font-family: 'New York', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 500;
  color: #303030;
}

.discovery-section__copy-copy-space {
  display: inline-block;
  width: 0.25em;
}

.discovery-section__cards {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  margin-top: 12px;
}

.discovery-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.discovery-card__icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  overflow: hidden;
}

.discovery-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.discovery-card__icon--failed img {
  width: 100%;
  height: 100%;
  position: static;
  inset: unset;
}

.discovery-card__icon--sms img,
.discovery-card__icon--gos img {
  width: 100%;
  height: 100%;
}

.discovery-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.discovery-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  line-height: 24px;
  color: #303030;
}

.discovery-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5a5a5a;
}

.discovery-card__text-strong {
  font-weight: 700;
  color: inherit;
}

.process-section {
  margin-top: 0;
  padding: 40px 0 0;
  background: #2c2c2c;
}

.process-section__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-section__label {
  margin: 0;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 34px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b3b3b3;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
}

.process-section__label span:last-child {
  color: #f3f3f3;
}

.process-section__title {
  margin: 0;
  width: 100%;
  font-family: 'SF Pro Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.8px;
  color: #f5f5f5;
}

.process-section__title-dim {
  color: #757575;
}

.process-section__copy {
  margin: 0;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #f3f3f3;
}

.process-section__copy strong {
  font-style: italic;
  font-weight: 700;
}

.process-section__visual {
  position: relative;
  width: 100vw;
  margin: 40px auto 0;
  margin-left: calc(50% - 50vw);
  aspect-ratio: 2706 / 1830;
  background: #fff;
  overflow: hidden;
}

.process-section__image {
  position: absolute;
  left: 3.52%;
  top: -0.92%;
  width: 92.96%;
  height: 100.92%;
  display: block;
  object-fit: fill;
}

/* ── Problems ── */
.problems-section {
  margin-top: 96px;
  background: #2c2c2c;
}

.problems-section__title {
  margin: 0 0 40px;
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.8px;
  color: #f3f3f3;
}

.problems-grid {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.problem-card {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 20px;
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 0;
  height: auto;
}

.problem-card--customer {
  background: #ffdd2d;
  height: 547px;
  padding-bottom: 205px;
}

.problem-card--dark {
  background: #1a1a17;
  height: 547px;
  padding-bottom: 205px;
}

.problem-card--tension {
  height: 547px;
  padding-bottom: 60px;
}

.problem-card__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card__eyebrow {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: normal;
  color: rgba(12, 12, 10, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.problem-card--dark .problem-card__eyebrow {
  color: #b3b3b3;
}

.problem-card__description {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #303030;
}

.problem-card--dark .problem-card__description {
  color: #b3b3b3;
}

.problem-card__emphasis {
  font-family: 'New York', 'New York Extra Large', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
}

.problem-card__emphasis--light {
  color: #f3f3f3;
}

.problem-card__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card__item {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-width: 0;
}

.problem-card__item--dark {
  align-items: flex-start;
}

.problem-card__num {
  flex: 0 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: rgba(90, 90, 90, 0.5);
  min-width: 22px;
}

.problem-card__num--light {
  color: rgba(179, 179, 179, 0.6);
}

.problem-card__item-text {
  flex: 1 1 auto;
  min-width: 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  color: #5a5a5a;
}

.problem-card__item-text--light {
  color: #f3f3f3;
}

.problem-card__divider {
  height: 0;
  position: relative;
}

.problem-card__divider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(90, 90, 90, 0.18);
}

.problem-card__divider--light {
  background: transparent;
}

.problem-card__divider--light::after {
  background: rgba(243, 243, 243, 0.14);
}

.problem-card__subitem {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.problem-card__subitem-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffdd2d;
}

.problem-card__subitem-text {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  color: #f3f3f3;
}

.problem-card--tension .problem-card__items {
  padding-top: 4px;
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .problems-section {
    margin-top: 72px;
  }

  .problems-section__title {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 1.15;
  }

  .problems-grid {
    flex-direction: column;
    gap: 20px;
  }

  .problem-card,
  .problem-card--customer,
  .problem-card--dark,
  .problem-card--tension {
    flex: none;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 18px 18px 20px;
  }

  .problem-card {
    gap: 18px;
  }

  .problem-card__items {
    gap: 12px;
  }

  .problem-card__description {
    font-size: 15px;
    line-height: 1.28;
  }

  .problem-card__divider {
    margin: 0;
  }

  .problem-card__item-text,
  .problem-card__subitem-text {
    font-size: 15px;
    line-height: 1.45;
  }

  .problem-card__subitem {
    gap: 6px;
  }
}

/* ── Reflection ── */
.reflection-section {
  background: #2c2c2c;
  margin-top: 96px;
  padding: 0 0 96px;
}

.reflection-section__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reflection-section__label {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 34px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b3b3b3;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
}

.reflection-section__label span:last-child {
  color: #f3f3f3;
}

.reflection-section__title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.8px;
  color: #b3b3b3;
}

.reflection-section__title-emphasis {
  font-family: 'New York', 'New York Extra Large', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 600;
  color: #f3f3f3;
}

.reflection-section__copy {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #f3f3f3;
}

.reflection-section__copy p {
  margin: 0;
}

/* ── Creating & Testing ── */
.creating-section {
  background: #2c2c2c;
  margin-top: 40px;
  padding: 0;
}

.creating-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.creating-section__rule {
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
}

.creating-section__rule::before {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(117, 117, 117, 0.55);
}

.creating-section__title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.8px;
  color: #f3f3f3;
}

.creating-section__title span {
  color: #b3b3b3;
}

.creating-section__copy {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #f5f5f5;
}

.testing-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.testing-card {
  display: flex;
  gap: 16px;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #757575;
}

.testing-card__icon {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.testing-card__icon::before,
.testing-card__icon::after {
  content: "";
  position: absolute;
  background: #b3b3b3;
  transform-origin: right center;
}

.testing-card__icon::before {
  top: 12px;
  left: 8px;
  width: 19px;
  height: 2px;
  transform: rotate(-45deg);
}

.testing-card__icon::after {
  top: 8px;
  right: 9px;
  width: 14px;
  height: 14px;
  background: transparent;
  border-top: 2px solid #b3b3b3;
  border-right: 2px solid #b3b3b3;
}

.testing-card__body {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.testing-card__title {
  margin: 0 0 12px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.4px;
  color: #f3f3f3;
}

.testing-card__text {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #b3b3b3;
}

.testing-card--feature {
  border-bottom: 0;
  padding-bottom: 0;
}

.support-insight {
  width: calc(100% + 54px);
  margin: 20px 0 0 -55px;
  padding: 40px 0 60px;
  border-radius: 60px;
  background: #434343;
  overflow: hidden;
}

.support-insight__quote {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: min(calc(100% - 119px), 939px);
  margin: 0 0 49px 43px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #f3f3f3;
}

.support-insight__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  margin-top: 7px;
}

.support-insight__quote p {
  margin: 0;
}

.support-insight__quote strong {
  font-weight: 700;
  font-style: italic;
}

.support-insight__images {
  display: grid;
  grid-template-columns: 440px 461px;
  gap: 43px;
  align-items: start;
  width: calc(100% - 114px);
  margin: 0 57px;
}

.support-insight__image {
  position: relative;
  height: 437px;
  overflow: hidden;
  flex: 0 0 auto;
}

.support-insight__image--faq {
  width: 440px;
}

.support-insight__image--article {
  width: 461px;
}

.support-insight__image img {
  display: block;
  position: absolute;
  max-width: none;
}

.support-insight__image--faq img {
  width: 118.53%;
  height: 118.68%;
  left: -9.26%;
  top: -7.69%;
}

.support-insight__image--article img {
  width: 119.75%;
  height: 120.92%;
  left: -9.88%;
  top: -8.62%;
}

@media (max-width: 768px) {
  .creating-section {
    margin-top: 40px;
  }

  .creating-section__content {
    gap: 28px;
  }

  .creating-section__title {
    font-size: 30px;
    line-height: 1.15;
  }

  .creating-section__copy {
    font-size: 18px;
  }

  .testing-card {
    gap: 12px;
    padding-bottom: 18px;
  }

  .testing-card__icon {
    width: 28px;
    height: 28px;
  }

  .testing-card__icon::before {
    top: 10px;
    left: 6px;
    width: 15px;
  }

  .testing-card__icon::after {
    top: 7px;
    right: 7px;
    width: 11px;
    height: 11px;
  }

  .testing-card__title {
    font-size: 18px;
    line-height: 1.35;
    white-space: normal;
  }

  .testing-card__text,
  .support-insight__quote {
    font-size: 18px;
  }

  .support-insight {
    width: calc(100% + 40px);
    margin-left: -40px;
    padding: 28px 24px 32px;
    border-radius: 32px;
  }

  .support-insight__images {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .support-insight__image,
  .support-insight__image--faq,
  .support-insight__image--article {
    width: 100%;
    height: auto;
    aspect-ratio: 440 / 437;
  }
}

/* ── Solution Visual ── */
.solution-visual {
  margin-top: 40px;
  width: min(100% - 160px, 1060px);
  margin-left: auto;
  margin-right: auto;
}

.solution-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: url('screens/bg.png') center / cover no-repeat;
  padding: 30px 30px 80px;
}

.solution-bg {
  display: none;
}

.solution-content {
  position: relative;
  z-index: 1;
}

.solution-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(217, 217, 217, 0.2);
  color: #ffffff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 20px;
  padding: 6px 16px;
  border-radius: 12px;
  margin-bottom: 90px;
}

.solution-group {
  margin-top: 0;
}

.solution-group + .solution-group {
  margin-top: 80px;
}

.solution-group-label {
  font-size: 16px;
  font-weight: 300;
  color: #f3f3f3;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: normal;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
  margin-bottom: 20px;
  padding-left: 85px;
}

.solution-row {
  display: flex;
  gap: 40px;
  padding: 0 85px;
}

.solution-row + .solution-row {
  margin-top: 20px;
}

.solution-screen {
  width: 250px;
  height: auto;
  flex-shrink: 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.solution-screen.visible {
  opacity: 1;
  transform: translateY(0);
}

.solution-row .solution-screen:nth-child(2) { transition-delay: 100ms; }
.solution-row .solution-screen:nth-child(3) { transition-delay: 200ms; }
