:root {
  color-scheme: light dark;
  --navy: #283043;
  --navy-2: #151b29;
  --navy-3: #384259;
  --pink: #ff256e;
  --pink-2: #c20343;
  --cyan: #35d5ff;
  --paper: #f7f5f1;
  --surface: #ffffff;
  --surface-soft: #f2f5f8;
  --ink: #101624;
  --muted: #667085;
  --line: rgba(40, 48, 67, 0.13);
  --shadow: 0 24px 70px rgba(16, 22, 36, 0.14);
  --radius: 8px;
  --max: 1180px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #101624;
    --surface: #171e2d;
    --surface-soft: #111827;
    --ink: #f6f7fb;
    --muted: #bbc2d0;
    --line: rgba(255, 255, 255, 0.14);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 30;
  transform: translateY(-160%);
  background: var(--pink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 28px), var(--max));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(21, 27, 41, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.9rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: #fff;
}

.header-cta {
  flex: 0 0 auto;
  padding: 11px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255, 37, 110, 0.32);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 37, 110, 0.34), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(53, 213, 255, 0.18), transparent 32%),
    linear-gradient(135deg, var(--navy-2), var(--navy) 45%, #20283a);
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 74%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
}

.flow-line {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  animation: flow 8s linear infinite;
}

.flow-line-one {
  top: 31%;
  left: 51%;
  width: 48vw;
  transform: rotate(-13deg);
}

.flow-line-two {
  top: 72%;
  left: 6%;
  width: 44vw;
  transform: rotate(11deg);
  animation-delay: -2s;
}

.flow-line-three {
  top: 79%;
  left: 52%;
  width: 31vw;
  transform: rotate(-21deg);
  animation-delay: -5s;
}

@keyframes flow {
  0% {
    opacity: 0;
    translate: -20px 0;
  }
  20%,
  65% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    translate: 70px 0;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
  width: min(calc(100% - 72px), 1360px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 118px 0 72px;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  max-width: 820px;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: manual;
  text-wrap: balance;
  font-size: 4.4rem;
  line-height: 1.02;
}

.hero-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.28rem;
}

.cta-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-assurance span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.84rem;
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  box-shadow: 0 18px 34px rgba(255, 37, 110, 0.34);
}

.button.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.button.ghost.light {
  color: #fff;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  justify-self: end;
  width: min(100%, 390px);
}

.hero-visual::before {
  position: absolute;
  inset: -10% -18% 12% 18%;
  z-index: -1;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, rgba(255, 37, 110, 0.75), rgba(53, 213, 255, 0.28));
  filter: blur(6px);
}

.hero-visual img {
  aspect-ratio: 4 / 5;
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: left top;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 28px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}

.hero-proof {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: min(280px, 76%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(21, 27, 41, 0.8);
  backdrop-filter: blur(16px);
}

.hero-proof span,
.hero-proof strong {
  display: block;
}

.hero-proof span {
  color: var(--cyan);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.hero-proof strong {
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.3;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 40px), var(--max));
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  background: var(--pink);
  box-shadow: var(--shadow);
}

.signal-item {
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.signal-item:last-child {
  border-right: 0;
}

.signal-item span,
.signal-item strong {
  display: block;
}

.signal-item span {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 900;
}

.signal-item strong {
  margin-top: 18px;
  font-size: 1.35rem;
  line-height: 1.05;
}

.signal-item p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

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

.early-proof-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 52px rgba(40, 48, 67, 0.08);
}

.early-proof p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.early-proof strong {
  color: var(--ink);
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 132px) 0;
}

.section h2 {
  font-size: 3.2rem;
}

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

.pressure-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.95fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.pressure-copy p,
.hybrid-role-head p,
.capability-head p,
.projects-head p,
.profile-copy p,
.testimonial-shell > div > p,
.final-cta p {
  max-width: 720px;
  font-size: 1.18rem;
}

.pressure-copy .loss-note {
  margin-top: 22px;
  padding-left: 18px;
  border-left: 4px solid var(--pink);
  color: var(--ink);
  font-weight: 800;
}

.study-stack {
  display: grid;
  gap: 16px;
}

.study {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(40, 48, 67, 0.08);
}

.study span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.study strong {
  color: var(--pink);
  font-size: 4rem;
  line-height: 0.9;
}

.study p {
  margin: 0;
}

.study a,
.text-link,
.profile-links a,
.site-footer a {
  color: var(--pink);
  font-weight: 900;
  text-decoration: none;
}

.hybrid-role,
.capability {
  border-top: 1px solid var(--line);
}

.hybrid-role-head,
.capability-head,
.projects-head {
  display: grid;
  grid-template-columns: 0.92fr 0.86fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.hybrid-role-grid,
.capability-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.hybrid-role-grid article,
.capability-step,
.usecase-grid article,
.anti-usecase-grid article,
.method-list div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 52px rgba(40, 48, 67, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.hybrid-role-grid article:hover,
.capability-step:hover,
.usecase-grid article:hover,
.anti-usecase-grid article:hover,
.method-list div:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 37, 110, 0.42);
}

.hybrid-role-grid span,
.capability-step span,
.usecase-grid span,
.anti-usecase-grid span,
.method-list span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hybrid-role-grid h3,
.capability-step h3,
.usecase-grid h3,
.anti-usecase-grid h3,
.method-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1.08;
}

.hybrid-role-grid p,
.capability-step p,
.usecase-grid p,
.anti-usecase-grid p,
.method-list p {
  margin: 18px 0 0;
}

.projects {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    linear-gradient(rgba(21, 27, 41, 0.92), rgba(21, 27, 41, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(255, 37, 110, 0.34), transparent 30%),
    var(--navy-2);
}

.projects .section-kicker,
.projects .eyebrow {
  color: var(--cyan);
}

.projects h2,
.projects h3 {
  color: #fff;
}

.projects p {
  color: rgba(255, 255, 255, 0.72);
}

.project-tabs {
  display: flex;
  gap: 10px;
  margin-top: 42px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.project-tabs button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.project-tabs button.active {
  color: #fff;
  border-color: rgba(255, 37, 110, 0.72);
  background: rgba(255, 37, 110, 0.22);
}

.project-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.77fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  margin-top: 32px;
}

.project-copy,
.project-shot {
  min-width: 0;
}

.project-copy h3 {
  max-width: min(100%, 13ch);
  margin: 0;
  font-size: 4rem;
  line-height: 0.95;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.project-copy > p {
  margin-top: 22px;
  font-size: 1.08rem;
}

.project-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 22px;
}

.project-points p {
  margin: 0;
  padding-left: 18px;
  border-left: 3px solid var(--pink);
}

.project-shot {
  margin: 0;
}

.project-shot img {
  aspect-ratio: 16 / 11;
  width: 100%;
  object-fit: cover;
  object-position: left top;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.project-shot img.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.project-shot figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.usecases h2 {
  max-width: 900px;
}

.usecases-lead {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 1.18rem;
}

.anti-usecases {
  border-top: 1px solid var(--line);
}

.anti-usecases h2 {
  max-width: 980px;
}

.anti-usecases > p {
  max-width: 780px;
  margin: 26px 0 0;
  font-size: 1.18rem;
}

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

.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.section-cta span {
  max-width: 460px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
}

.anti-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.profile {
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) minmax(0, 0.88fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.profile-image {
  position: relative;
  min-width: 0;
}

.profile-copy {
  min-width: 0;
}

.profile-image::before {
  position: absolute;
  inset: 8% -8% -8% 14%;
  z-index: -1;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, var(--pink), var(--cyan));
}

.profile-image img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.testimonials {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--surface-soft);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.testimonial-panel {
  padding: clamp(26px, 4vw, 44px);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
}

.testimonial-panel p {
  min-height: 132px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.85rem;
  line-height: 1.16;
}

.testimonial-panel strong,
.testimonial-panel span {
  display: block;
}

.testimonial-panel span {
  color: rgba(255, 255, 255, 0.58);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-controls button {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.method-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pink);
  letter-spacing: 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 128px) max(20px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 37, 110, 0.45), transparent 30%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
}

.final-cta h2 {
  max-width: 980px;
  font-size: 5.4rem;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(20px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-2);
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1260px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: start;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    border-radius: 24px;
  }

  .site-nav {
    display: none;
  }

  .hero-inner,
  .pressure-grid,
  .hybrid-role-head,
  .capability-head,
  .projects-head,
  .project-stage,
  .profile,
  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 126px;
    width: min(calc(100% - 40px), var(--max));
  }

  .hero h1 {
    max-width: 760px;
    font-size: 4.15rem;
  }

  .section h2 {
    font-size: 2.55rem;
  }

  .project-copy h3 {
    font-size: 3.3rem;
  }

  .final-cta h2 {
    font-size: 4rem;
  }

  .hero-visual img {
    min-height: 390px;
  }

  .signal-band,
  .early-proof,
  .hybrid-role-grid,
  .capability-layout,
  .usecase-grid,
  .anti-usecase-grid,
  .method-list {
    grid-template-columns: 1fr 1fr;
  }

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

  .early-proof-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .flow-line {
    display: none;
  }

  .site-header {
    inset: auto auto auto 50dvw;
    width: min(calc(100dvw - 20px), var(--max));
    margin: 0;
    margin-top: 10px;
    translate: -50% 0;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .header-cta {
    display: none;
  }

  .hero-inner,
  .section,
  .signal-band {
    width: min(calc(100dvw - 28px), var(--max));
  }

  .hero h1 {
    overflow-wrap: normal;
    max-width: 100%;
    font-size: 2.2rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-assurance span {
    border-radius: 8px;
  }

  .section h2 {
    font-size: 2.05rem;
  }

  .final-cta h2 {
    font-size: 2.65rem;
  }

  .project-copy h3 {
    font-size: 2.45rem;
  }

  .testimonial-panel p {
    font-size: 1.35rem;
  }

  .study strong {
    font-size: 3.2rem;
  }

  .hero-visual img {
    min-height: auto;
    aspect-ratio: 1 / 1;
  }

  .hero-visual::before {
    inset: -8% 0 12% 12%;
  }

  .hero-proof {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .profile-image::before {
    inset: 8% 0 -8% 14%;
  }

  .signal-band,
  .early-proof,
  .hybrid-role-grid,
  .capability-layout,
  .usecase-grid,
  .anti-usecase-grid,
  .method-list {
    grid-template-columns: 1fr;
  }

  .signal-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

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

  .project-tabs {
    flex-wrap: wrap;
    gap: 8px;
    margin-inline: 0;
    overflow-x: visible;
    padding-inline: 0;
  }

  .project-tabs button {
    flex: 0 1 auto;
    padding-inline: 14px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.05rem;
  }
}

@media (max-width: 340px) {
  .hero h1 {
    font-size: 1.85rem;
  }
}
