:root {
  color-scheme: light;
  --ink: #050505;
  --muted: #6e6e73;
  --line: rgb(0 0 0 / 10%);
  --paper: #f5f5f7;
  --white: #ffffff;
  --glass: rgb(255 255 255 / 62%);
  --glass-strong: rgb(255 255 255 / 78%);
  --eyebrow: #86868b;
  --shadow: 0 24px 70px rgb(0 0 0 / 12%);
  --soft-shadow: 0 42px 110px rgb(0 0 0 / 16%);
  --radius: 8px;
  --font-display: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 34%, #ffffff 100%),
    linear-gradient(110deg, rgb(255 255 255 / 95%) 0%, rgb(245 245 247 / 72%) 48%, rgb(255 255 255 / 94%) 100%);
  color: var(--ink);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgb(255 255 255 / 58%);
  border-bottom: 1px solid rgb(0 0 0 / 6%);
  backdrop-filter: blur(34px) saturate(190%);
}

.site-header[data-elevated="true"] {
  border-bottom-color: rgb(0 0 0 / 10%);
  box-shadow: 0 14px 34px rgb(0 0 0 / 8%);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: #050505;
  border-radius: 6px;
}

.nav {
  gap: clamp(14px, 3vw, 28px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a,
.text-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: 136px clamp(20px, 5vw, 72px) 64px;
  overflow: hidden;
  max-width: 100vw;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/assets/hero-enterprise-ai.png");
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.1) brightness(1.12);
  transform: scale(1.04);
  animation: slow-drift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(255 255 255 / 99%) 0%, rgb(255 255 255 / 84%) 40%, rgb(255 255 255 / 20%) 78%),
    linear-gradient(0deg, rgb(255 255 255 / 78%), transparent 46%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  min-width: 0;
  max-width: 760px;
  padding-bottom: 72px;
  animation: hero-rise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--eyebrow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

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

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 8.4vw, 7.6rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  max-width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgb(0 0 0 / 18%);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

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

.button-primary {
  color: var(--white);
  background: #050505;
}

.button-primary:hover {
  background: #2b2b2f;
}

.button-secondary {
  color: var(--ink);
  background: rgb(255 255 255 / 54%);
  backdrop-filter: blur(24px) saturate(180%);
}

.button-secondary:hover {
  background: var(--glass-strong);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 36px;
  width: min(370px, calc(100vw - 40px));
  padding: 18px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 72%), rgb(255 255 255 / 42%));
  border: 1px solid rgb(255 255 255 / 82%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px) saturate(180%);
  animation: hero-rise 900ms 160ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  overflow: hidden;
}

.panel-label,
.card-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-panel strong {
  display: block;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section {
  padding: clamp(92px, 11vw, 168px) clamp(20px, 5vw, 72px);
}

.section-band {
  background: rgb(255 255 255 / 76%);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 940px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading h2 {
  max-width: 1050px;
}

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-intro {
  min-height: 82vh;
  display: grid;
  align-content: center;
  padding-top: 96px;
}

.chapter {
  display: grid;
  align-items: center;
  min-height: 100vh;
  padding: clamp(92px, 11vw, 168px) clamp(20px, 6vw, 86px);
}

.chapter-light {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%),
    linear-gradient(120deg, rgb(0 0 0 / 5%), transparent 48%);
}

.chapter-copy {
  max-width: 1180px;
}

.chapter-copy h2 {
  max-width: 980px;
  font-size: clamp(3.2rem, 8vw, 8.6rem);
  line-height: 0.94;
}

.chapter-copy p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.62;
}

.outcomes {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%),
    linear-gradient(90deg, transparent, rgb(255 255 255 / 86%), transparent);
}

.intro-grid,
.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: 36px;
  align-items: start;
}

.intro-grid > p {
  max-width: 820px;
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  line-height: 1.7;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signal {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--glass);
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 6px;
  font-weight: 750;
  box-shadow: 0 14px 36px rgb(0 0 0 / 6%);
  backdrop-filter: blur(22px) saturate(160%);
}

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

.outcome-item,
.fit-panel {
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 72%), rgb(255 255 255 / 42%));
  border: 1px solid rgb(255 255 255 / 76%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px) saturate(170%);
}

.outcome-item {
  min-height: 300px;
}

.outcome-label {
  display: inline-block;
  margin-bottom: 56px;
  color: var(--eyebrow);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.outcome-item h3 {
  max-width: 420px;
  font-size: clamp(1.55rem, 2.8vw, 2.55rem);
  line-height: 1.02;
}

.outcome-item p,
.fit-panel p {
  color: var(--muted);
  line-height: 1.58;
}

.scroll-story {
  min-height: 240vh;
  background:
    linear-gradient(180deg, #050505 0%, #151515 52%, #050505 100%);
  color: var(--white);
}

.story-sticky {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  min-height: 100vh;
  padding: 112px clamp(20px, 6vw, 86px) 80px;
  overflow: hidden;
}

.story-copy {
  position: relative;
  max-width: 760px;
}

.story-copy h2 {
  font-size: clamp(3.4rem, 7.6vw, 8.2rem);
  line-height: 0.94;
}

.story-copy p:last-child {
  max-width: 620px;
  color: rgb(255 255 255 / 72%);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.62;
}

.device-stage {
  position: relative;
  perspective: 1400px;
}

.device-shell {
  position: relative;
  min-height: min(54vw, 620px);
  padding: clamp(18px, 3vw, 32px);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 38%), rgb(255 255 255 / 9%)),
    linear-gradient(180deg, #ffffff, #d9d9dc);
  border: 1px solid rgb(255 255 255 / 32%);
  border-radius: 28px;
  box-shadow: 0 70px 150px rgb(0 0 0 / 56%);
  backdrop-filter: blur(28px) saturate(160%);
  transform: rotateY(-12deg) rotateX(7deg);
}

.device-topbar {
  width: 100%;
  height: 34px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #d1d1d6, #ffffff);
  border-radius: 999px;
}

.workflow-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: 360px;
  padding: 28px;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 7%) 1px, transparent 1px),
    linear-gradient(0deg, rgb(0 0 0 / 7%) 1px, transparent 1px),
    #ffffff;
  background-size: 48px 48px;
  border-radius: 22px;
}

.workflow-node {
  align-self: center;
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 14px;
  color: var(--ink);
  background: rgb(255 255 255 / 82%);
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 16px;
  font-weight: 850;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  box-shadow: 0 14px 34px rgb(0 0 0 / 10%);
  backdrop-filter: blur(18px) saturate(160%);
}

.node-main {
  grid-column: span 2;
  min-height: 124px;
  color: var(--white);
  background: #050505;
}

.node-accent {
  color: #050505;
  background: #f5f5f7;
}

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

.metrics-row span {
  display: grid;
  place-items: center;
  min-height: 54px;
  color: var(--ink);
  background: rgb(255 255 255 / 70%);
  border-radius: 14px;
  font-weight: 850;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.offer-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.offer-card,
.project-card,
.process-step,
.timeline-item,
.note-box {
  background: var(--glass);
  border: 1px solid rgb(255 255 255 / 78%);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgb(0 0 0 / 8%);
  backdrop-filter: blur(26px) saturate(165%);
}

.offer-card,
.project-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 0 0 rgb(0 0 0 / 0%);
  transition:
    transform 360ms ease,
    box-shadow 360ms ease,
    border-color 360ms ease;
}

.offer-card:nth-child(1),
.offer-card:nth-child(2) {
  grid-column: span 3;
  min-height: 520px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 82%), rgb(245 245 247 / 58%)),
    linear-gradient(115deg, transparent 0 58%, rgb(0 0 0 / 6%) 58% 100%);
}

.offer-card:nth-child(1) h3,
.offer-card:nth-child(2) h3 {
  max-width: 760px;
  font-size: clamp(2.3rem, 5vw, 5.4rem);
  line-height: 0.98;
}

.offer-card:hover,
.project-card:hover {
  border-color: rgb(0 0 0 / 18%);
  box-shadow: var(--soft-shadow);
  transform: translateY(-4px);
}

.price {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 850;
  font-family: var(--font-mono);
}

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

.check-list,
.proof-list {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
}

.check-list li,
.proof-list li {
  position: relative;
  padding-left: 18px;
  color: #303034;
  line-height: 1.45;
}

.check-list li::before,
.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: #050505;
  border-radius: 50%;
}

.project-card {
  background: var(--glass);
  min-height: 520px;
}

.project-visual {
  display: flex;
  align-items: end;
  min-height: 220px;
  margin: -10px -10px 20px;
  padding: 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgb(0 0 0 / 94%), rgb(40 40 44 / 92%)),
    repeating-linear-gradient(0deg, transparent 0 18px, rgb(255 255 255 / 9%) 18px 19px);
  border-radius: 6px;
}

.project-visual span {
  max-width: 260px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 850;
  line-height: 1.05;
}

.project-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
}

.faq-item {
  min-height: 250px;
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 76%), rgb(255 255 255 / 48%));
  border: 1px solid rgb(255 255 255 / 78%);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgb(0 0 0 / 8%);
  backdrop-filter: blur(26px) saturate(165%);
}

.faq-item p {
  color: var(--muted);
  line-height: 1.62;
}

.process-step {
  padding: 22px;
  background: var(--glass);
}

.step-index {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--eyebrow);
  font-size: 0.9rem;
  font-weight: 850;
  font-family: var(--font-mono);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item,
.note-box {
  padding: 22px;
  background: var(--glass);
}

.timeline-meta {
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 800;
}

.fit-section {
  background:
    linear-gradient(180deg, #050505 0%, #18181a 100%);
  color: var(--white);
}

.fit-section .eyebrow {
  color: rgb(255 255 255 / 62%);
}

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

.fit-panel {
  background: rgb(255 255 255 / 10%);
  border-color: rgb(255 255 255 / 22%);
  box-shadow: 0 36px 100px rgb(0 0 0 / 28%);
}

.fit-panel-muted {
  background: rgb(255 255 255 / 5%);
}

.fit-panel h3 {
  color: var(--white);
}

.fit-panel .check-list li,
.fit-panel .proof-list li {
  color: rgb(255 255 255 / 78%);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: 32px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 72px) 72px;
  padding: clamp(32px, 6vw, 70px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgb(0 0 0 / 88%), rgb(38 38 42 / 88%));
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(28px) saturate(160%);
}

.contact .eyebrow {
  color: rgb(255 255 255 / 62%);
}

.contact p {
  color: rgb(255 255 255 / 82%);
  line-height: 1.6;
}

.contact .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgb(255 255 255 / 56%);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

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

.footer-links a,
.plain-content a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-links a:hover,
.plain-content a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.plain-page {
  padding: 136px clamp(20px, 5vw, 72px) 86px;
}

.plain-hero {
  max-width: 980px;
  padding: clamp(44px, 8vw, 92px) 0 clamp(42px, 6vw, 72px);
}

.plain-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
}

.plain-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.62;
}

.plain-content {
  display: grid;
  gap: 44px;
  max-width: 920px;
}

.plain-content article {
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.plain-content h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.plain-content p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.reveal-section,
.outcome-item,
.offer-card,
.project-card,
.process-step,
.timeline-item {
  opacity: 0;
  transform: translateY(34px);
}

.reveal-section.is-visible,
.outcome-item.is-visible,
.offer-card.is-visible,
.project-card.is-visible,
.process-step.is-visible,
.timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slow-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-16px, 10px, 0);
  }
}

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

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

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

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .chapter,
  .section-intro {
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 190px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgb(255 255 255 / 98%) 0%, rgb(255 255 255 / 90%) 52%, rgb(255 255 255 / 24%) 100%),
      linear-gradient(0deg, rgb(0 0 0 / 12%), transparent 38%);
  }

  .intro-grid,
  .experience-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .project-grid,
  .outcome-grid,
  .faq-grid,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .story-sticky {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .device-shell {
    min-height: 520px;
    transform: rotateY(0deg) rotateX(0deg);
  }

  .offer-card:nth-child(1),
  .offer-card:nth-child(2) {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 62px;
  }

  .brand span:last-child {
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    padding-inline: 18px;
    max-width: 100vw;
    width: 100%;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.05rem);
    line-height: 1.02;
    max-width: 9ch;
  }

  .hero-content {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    padding-bottom: 220px;
  }

  .hero-copy {
    max-width: 31ch;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    width: auto;
    max-width: calc(100vw - 36px);
  }

  .hero-panel strong {
    max-width: 24ch;
    font-size: 0.96rem;
    line-height: 1.16;
    white-space: normal;
  }

  .hero-panel p {
    max-width: 27ch;
    white-space: normal;
  }

  .section {
    padding: 64px 18px;
  }

  .chapter {
    min-height: 72vh;
    padding: 76px 18px;
  }

  .chapter-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .heading-row {
    display: block;
  }

  .heading-row .text-link {
    display: inline-block;
    margin-top: 18px;
  }

  .offer-grid,
  .project-grid,
  .outcome-grid,
  .faq-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .faq-item {
    min-height: auto;
  }

  .outcome-item {
    min-height: auto;
  }

  .outcome-label {
    margin-bottom: 32px;
  }

  .scroll-story {
    min-height: auto;
  }

  .story-sticky {
    position: relative;
    min-height: auto;
    padding: 72px 18px;
    width: 100%;
    max-width: 100vw;
  }

  .story-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.7rem);
  }

  .device-shell {
    min-height: 430px;
    border-radius: 22px;
  }

  .workflow-board {
    grid-template-columns: 1fr 1fr;
    min-height: 280px;
    padding: 16px;
  }

  .workflow-node {
    min-height: 68px;
    font-size: 0.86rem;
  }

  .node-main {
    grid-column: span 2;
  }

  .offer-card:nth-child(1),
  .offer-card:nth-child(2) {
    grid-column: auto;
    min-height: auto;
  }

  .contact {
    margin-inline: 18px;
    padding: 26px;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .footer {
    display: grid;
  }

  .plain-page {
    padding-top: 120px;
  }

  .plain-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .plain-content h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .plain-content p {
    font-size: 1rem;
  }
}
