:root {
  --bg: #f7f9fc;
  --white: #ffffff;
  --black: #111827;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --blue: #2563eb;
  --blue-dark: #1e40af;
  --blue-soft: #eff6ff;
  --navy: #0f172a;
  --green: #10b981;
  --teal: #0f766e;
  --amber: #f59e0b;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  color: var(--black);
  background: var(--bg);
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-width: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 184px;
  height: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 700;
  min-width: 0;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu .current {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.sub-hero {
  padding: 82px 0 70px;
  background:
    radial-gradient(circle at 12% 8%, #dbeafe 0, transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 56%, #e0f2fe 100%);
  border-bottom: 1px solid var(--gray-200);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
}

.kicker {
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 12px;
}

h1 {
  color: var(--navy);
  font-size: 54px;
  line-height: 1.14;
  letter-spacing: 0;
  margin-bottom: 22px;
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 700px;
  color: var(--gray-700);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 850;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--gray-200);
}

.insight-panel {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.insight-panel h2 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--gray-700);
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.metric {
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: #f8fafc;
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: 23px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.metric span {
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 800;
}

.metric-strip-emphasis {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.metric-strip-emphasis .metric {
  position: relative;
  min-height: 120px;
  padding: 24px 12px 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-color: #bfdbfe;
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
  box-shadow: 0 14px 26px rgba(37, 99, 235, 0.12);
}

.metric-strip-emphasis .metric::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #0ea5e9);
}

.metric-strip-emphasis .metric strong {
  color: var(--blue);
  font-size: 38px;
  line-height: 0.95;
  letter-spacing: 0;
  margin-bottom: 12px;
  white-space: nowrap;
}

.metric-strip-emphasis .metric span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

section {
  padding: 78px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head-wide {
  max-width: 100%;
}

.section-label {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 10px;
}

.section-head h2 {
  color: var(--navy);
  font-size: 40px;
  line-height: 1.22;
  letter-spacing: 0;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

.section-head p {
  color: var(--gray-600);
  font-size: 18px;
}

@media (min-width: 900px) {
  .section-head-wide h2 {
    white-space: nowrap;
  }
}

.roadmap-visual {
  margin: 28px 0 34px;
  overflow: hidden;
  max-width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.055);
}

.roadmap-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.roadmap-visual figcaption {
  padding: 14px 18px;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
  background: #f8fafc;
  font-size: 14px;
  font-weight: 700;
}

.proposal-section {
  position: relative;
}

.proposal-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 30px;
  align-items: start;
}

.proposal-copy {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.proposal-copy h3 {
  color: var(--navy);
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: 0;
}

.proposal-copy p {
  color: var(--gray-600);
  font-size: 17px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.evidence-card {
  min-width: 0;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.055);
  overflow: hidden;
}

.evidence-card img {
  display: block;
  width: 100%;
  height: auto;
}

.experience-evidence-card {
  margin-top: 28px;
  border-radius: 20px;
}

.experience-evidence-card img {
  background: var(--white);
}

.profile-evidence-card {
  position: relative;
  align-self: start;
  height: fit-content;
}

.profile-notion-link {
  position: absolute;
  top: 30%;
  left: 48%;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
  transform: translateY(-50%);
}

.profile-notion-link b {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
}

.profile-notion-link:hover,
.profile-notion-link:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.results-frame {
  display: grid;
  gap: 24px;
}

.results-copy {
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  column-gap: 32px;
  align-items: end;
}

.results-copy h3,
.results-copy p {
  grid-column: 1;
}

.results-copy .proof-grid {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.result-evidence-card {
  width: 100%;
}

.result-evidence-panes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  background: #f8fafc;
}

.result-evidence-pane {
  display: block;
  aspect-ratio: 1.42;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: var(--white);
}

.result-evidence-pane img {
  width: 100%;
  height: 200%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
}

.result-evidence-pane-bottom img {
  object-position: bottom center;
}

.evidence-card figcaption,
.placeholder-box {
  padding: 16px 18px;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 750;
}

.download-caption {
  display: flex;
  justify-content: flex-end;
  padding: 12px 16px;
}

.download-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.section-icon-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.icon-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 18px 8px 10px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(37, 99, 235, 0.25);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.icon-link-mark {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 20px;
}

.icon-link-label {
  white-space: nowrap;
}

.icon-link:hover,
.icon-link:focus-visible {
  background: var(--blue-dark);
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.32);
  transform: translateY(-2px);
}

.placeholder-box {
  border: 1px dashed #93c5fd;
  border-radius: 18px;
  background: #f8fbff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.proof-item {
  padding: 20px;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: var(--white);
}

.proof-item strong {
  display: block;
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 10px;
}

.proof-item span {
  color: var(--navy);
  font-weight: 900;
}

.milestone-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.milestone {
  position: relative;
  min-height: 230px;
  padding: 22px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.milestone::before {
  content: "";
  position: absolute;
  top: 34px;
  left: -12px;
  width: 12px;
  height: 2px;
  background: #93c5fd;
}

.milestone:first-child::before {
  display: none;
}

.milestone b {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
}

.milestone h3 {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.milestone p {
  color: var(--gray-600);
  font-size: 14px;
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.program-tags span {
  padding: 5px 8px;
  border-radius: 8px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 12px;
  font-weight: 850;
}

.process-guide {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 20px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: var(--white);
}

.process-step::before {
  counter-increment: process;
  content: counter(process);
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.process-step h3 {
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--gray-600);
  font-size: 14px;
}

.moat-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.moat-panel {
  padding: 28px;
  border-radius: 24px;
  background: #020617;
  color: var(--white);
}

.moat-panel h3 {
  font-size: 24px;
  line-height: 1.32;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.moat-panel p {
  color: #cbd5e1;
}

.moat-list {
  display: grid;
  gap: 12px;
}

.moat-list li {
  list-style: none;
  padding: 18px;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: var(--white);
  color: var(--gray-600);
}

.moat-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

.patent-evidence-stack {
  display: grid;
  gap: 24px;
}

.patent-evidence-card img {
  background: #f8fafc;
}

.patent-evidence-card {
  position: relative;
}

.patent-evidence-scroll {
  width: 100%;
  overflow: hidden;
}

.patent-evidence-canvas {
  position: relative;
  display: block;
  width: 100%;
}

.patent-evidence-canvas img {
  display: block;
  width: 100%;
  height: auto;
}

.patent-evidence-card figcaption {
  color: var(--navy);
}

.patent-evidence-content {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 22px;
  align-items: stretch;
}

.patent-summary-panel {
  padding: 28px;
  border-radius: 24px;
  background: #020617;
  color: var(--white);
}

.patent-summary-panel h3 {
  font-size: 24px;
  line-height: 1.32;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.patent-summary-panel p {
  color: #cbd5e1;
}

.patent-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.055);
}

.info-table th,
.info-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
  text-align: left;
}

.info-table th {
  width: 26%;
  background: #f8fafc;
  color: var(--navy);
  font-weight: 900;
}

.info-table td {
  color: var(--gray-600);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.deliverables {
  background: var(--white);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  min-width: 0;
}

.deliverable-grid-output {
  grid-template-columns: repeat(2, 1fr);
}

.deliverable-card {
  min-width: 0;
  min-height: 190px;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.deliverable-card-wide {
  grid-column: 1 / -1;
}

.deliverable-card strong {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--blue-soft);
  margin-bottom: 16px;
}

.deliverable-card h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
  margin-bottom: 10px;
  word-break: keep-all;
  overflow-wrap: normal;
}

.deliverable-card p {
  color: var(--gray-600);
  font-size: 15px;
}

.deliverable-card-visual {
  margin-top: 20px;
  overflow: hidden;
  max-width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: var(--white);
}

.deliverable-card-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.mobile-scroll-visual {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
}

.mobile-scroll-track {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.mobile-scroll-track > img {
  display: block;
  width: 100%;
  height: auto;
}

.scroll-cue {
  display: none;
}

.cta-strip {
  padding: 0 0 82px;
}

.cta-box {
  padding: 42px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: 36px;
  line-height: 1.23;
  letter-spacing: 0;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.cta-box p {
  color: #dbeafe;
  font-size: 17px;
}

.cta-box .btn {
  width: 100%;
  background: var(--white);
  color: var(--blue-dark);
}

.footer {
  background: #020617;
  color: #94a3b8;
  padding: 34px 0;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer strong {
  color: var(--white);
}

@media (max-width: 1024px) {
  .hero-grid,
  .proposal-split,
  .moat-grid,
  .patent-evidence-content,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .deliverable-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid,
  .milestone-map {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-guide {
    grid-template-columns: repeat(3, 1fr);
  }

  h1 {
    font-size: 44px;
  }

  .section-head h2,
  .cta-box h2 {
    font-size: 34px;
  }

  .brand-logo {
    width: 168px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 62px;
    padding: 9px 0;
    align-items: center;
  }

  .brand-logo {
    width: 142px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 120;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    border-radius: 0 0 14px 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 18px;
    border-top: 1px solid var(--gray-200);
    color: var(--navy);
    font-size: 16px;
  }

  .nav-menu a:first-child {
    border-top: 0;
  }

  .nav-cta {
    justify-content: center;
    border-radius: 0;
    box-shadow: none;
  }

  .sub-hero {
    padding: 58px 0 56px;
  }

  section {
    padding: 58px 0;
  }

  h1 {
    font-size: 34px;
    line-height: 1.18;
    margin-bottom: 18px;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .hero-actions .btn,
  .cta-box .btn {
    width: 100%;
    min-height: 52px;
  }

  .insight-panel {
    padding: 26px 24px;
    border-radius: 22px;
  }

  .insight-panel h2 {
    font-size: 22px;
  }

  .metric-strip,
  .deliverable-grid,
  .proof-grid,
  .milestone-map,
  .process-guide,
  .patent-list {
    grid-template-columns: 1fr;
  }

  .deliverable-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 12px;
    align-items: center;
    min-height: auto;
  }

  .deliverable-card strong {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .deliverable-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .deliverable-card p,
  .deliverable-card .deliverable-card-visual {
    grid-column: 1 / -1;
  }

  .results-copy {
    grid-template-columns: 1fr;
  }

  .results-copy h3,
  .results-copy p,
  .results-copy .proof-grid {
    grid-column: 1;
    grid-row: auto;
  }

  .results-copy .proof-grid,
  .result-evidence-panes {
    grid-template-columns: 1fr;
  }

  .proof-item {
    display: grid;
    grid-template-columns: minmax(76px, auto) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 82px;
    padding: 18px 20px;
  }

  .proof-item strong {
    margin-bottom: 0;
    font-size: 24px;
    white-space: nowrap;
  }

  .proof-item span {
    min-width: 0;
    line-height: 1.35;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .patent-summary-panel {
    padding: 24px;
  }

  .process-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 12px;
    align-items: center;
    padding: 22px;
  }

  .process-step::before {
    width: 36px;
    height: 36px;
    margin-bottom: 0;
    grid-column: 1;
    grid-row: 1;
  }

  .process-step h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .process-step p {
    grid-column: 1 / -1;
  }

  .milestone {
    min-height: auto;
  }

  .milestone::before {
    display: none;
  }

  .metric-strip-emphasis .metric {
    min-height: 98px;
    align-items: center;
    text-align: center;
  }

  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .info-table td {
    padding-top: 6px;
    line-height: 1.75;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2,
  .cta-box h2 {
    font-size: 30px;
    line-height: 1.28;
  }

  .section-head p,
  .cta-box p {
    font-size: 16px;
    line-height: 1.75;
  }

  .deliverable-card,
  .scope-card,
  .pricing-card {
    border-radius: 18px;
    padding: 22px;
  }

  .deliverable-card p,
  .process-step p,
  .roadmap-visual figcaption {
    line-height: 1.75;
  }

  .mobile-scroll-track {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-gutter: stable;
  }

  .mobile-scroll-track > img {
    width: 860px;
    max-width: none;
    min-width: 860px;
  }

  .patent-evidence-scroll {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-gutter: stable;
  }

  .patent-evidence-canvas {
    width: 960px;
    max-width: none;
    min-width: 960px;
  }

  .scroll-cue {
    display: flex;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 76px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
    color: var(--white);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
    pointer-events: none;
    backdrop-filter: blur(10px);
  }

  .cta-box {
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
