:root {
  --paper: #f5f0e7;
  --paper-deep: #ebe3d5;
  --paper-soft: #fbf8f2;
  --ink: #182621;
  --ink-soft: #42534c;
  --ink-faint: #5a6862;
  --forest: #234b3f;
  --forest-deep: #17362e;
  --moss: #78947f;
  --sage: #cbd8c9;
  --terracotta: #ad4c31;
  --terracotta-dark: #8f3d28;
  --brass: #c8a75f;
  --line: rgba(24, 38, 33, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --white: #fffdf8;
  --shadow-soft: 0 24px 64px rgba(42, 52, 47, 0.12);
  --shadow-card: 0 14px 38px rgba(42, 52, 47, 0.1);
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 34px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.5;
  pointer-events: none;
}

::selection {
  background: var(--sage);
  color: var(--forest-deep);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  font-weight: 800;
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(24, 38, 33, 0.1);
  background: rgba(245, 240, 231, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 148px;
  height: auto;
}

.footer-brand .brand-logo {
  width: 156px;
}

.nav-links,
.nav-actions,
.mobile-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.nav-actions a,
.mobile-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.mobile-links a:hover {
  background: rgba(24, 38, 33, 0.06);
  color: var(--ink);
}

.nav-actions .nav-cta,
.mobile-links .nav-cta {
  background: var(--ink);
  color: var(--white);
  padding-inline: 19px;
}

.nav-actions .nav-cta:hover,
.mobile-links .nav-cta:hover {
  background: var(--forest);
  transform: translateY(-1px);
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-button svg {
  width: 20px;
  height: 20px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding-block: 12px 20px;
}

.mobile-links {
  align-items: stretch;
  flex-direction: column;
}

.mobile-links a {
  justify-content: flex-start;
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(64px, 8vw, 118px) 0 clamp(78px, 10vw, 140px);
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: 2%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(35, 75, 63, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1,
.section-heading,
.quote-heading,
.cta-heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.35rem, 6.5vw, 6.9rem);
  line-height: 0.92;
}

.hero h1 span {
  position: relative;
  color: var(--terracotta);
  font-style: italic;
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 12px 21px;
  font-size: 0.89rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(24, 38, 33, 0.18);
}

.button-primary:hover {
  background: var(--forest);
  box-shadow: 0 14px 32px rgba(24, 38, 33, 0.22);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

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

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 28px 0 0;
  color: var(--ink-faint);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-assurance span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--moss);
  content: "";
}

.hero-visual {
  position: relative;
  margin: 0;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 8% -6% -8% 8%;
  z-index: -1;
  border-radius: 48% 52% 46% 54% / 54% 44% 56% 46%;
  background: var(--sage);
  content: "";
  transform: rotate(3deg);
}

.hero-visual img {
  width: 100%;
  min-height: 480px;
  border: 1px solid rgba(24, 38, 33, 0.12);
  border-radius: 48% 52% 46% 54% / 54% 44% 56% 46%;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.visual-note {
  position: absolute;
  right: -18px;
  bottom: 34px;
  max-width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow-card);
  padding: 16px 18px;
  backdrop-filter: blur(16px);
}

.visual-note strong,
.visual-note span {
  display: block;
}

.visual-note strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.visual-note span {
  margin-top: 3px;
  color: var(--ink-faint);
  font-size: 0.72rem;
}

.visual-status {
  width: 9px;
  height: 9px;
  display: inline-block !important;
  margin: 0 7px 0 0 !important;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 5px rgba(199, 99, 67, 0.14);
}

.proof-rail {
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.38);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.95fr repeat(3, 1fr);
}

.proof-intro,
.proof-item {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px clamp(18px, 3vw, 34px);
}

.proof-item {
  border-left: 1px solid var(--line);
}

.proof-intro {
  padding-left: 0;
  color: var(--ink-faint);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.proof-item strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.1;
}

.proof-item span {
  margin-top: 6px;
  color: var(--ink-faint);
  font-size: 0.76rem;
}

.section {
  padding: clamp(86px, 10vw, 150px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(50px, 7vw, 82px);
}

.section-heading {
  max-width: 820px;
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  line-height: 0.98;
}

.section-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.friction-list {
  border-top: 1px solid var(--line);
}

.friction-item {
  display: grid;
  grid-template-columns: 88px minmax(220px, 0.7fr) minmax(280px, 1.1fr) auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  transition: padding 220ms ease, background 220ms ease;
}

.friction-item:hover {
  padding-inline: 18px;
  background: rgba(255, 253, 248, 0.45);
}

.friction-number {
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
}

.friction-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
}

.friction-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.friction-time {
  min-width: 112px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
}

.process-wrap {
  width: min(calc(100% - 24px), 1450px);
  margin-inline: auto;
  overflow: hidden;
  border-radius: 46px;
  background: var(--forest-deep);
  color: var(--white);
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 110px);
  padding: clamp(66px, 9vw, 120px) 0;
}

.process::after {
  position: absolute;
  top: 70px;
  right: -150px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.process-intro {
  position: relative;
  z-index: 1;
}

.process .eyebrow {
  color: var(--sage);
}

.process .section-heading {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.process-intro p {
  max-width: 440px;
  margin: 26px 0 0;
  color: rgba(255, 253, 248, 0.68);
}

.process-note {
  margin-top: 38px;
  border-left: 2px solid var(--terracotta);
  padding-left: 18px;
  color: rgba(255, 253, 248, 0.82);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.35;
}

.process-steps {
  position: relative;
  z-index: 1;
  align-self: center;
}

.process-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line-light);
}

.process-step:last-child {
  border-bottom: 1px solid var(--line-light);
}

.process-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.process-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 600;
}

.process-step p {
  max-width: 620px;
  margin: 8px 0 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.88rem;
}

.workspace-section {
  padding-bottom: clamp(90px, 11vw, 160px);
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.workspace-copy .section-heading {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.workspace-copy > p {
  margin: 25px 0 0;
  color: var(--ink-soft);
}

.workspace-bullets {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.workspace-bullets li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.workspace-bullets li::before {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest-deep);
  content: "\2713";
  font-size: 0.72rem;
  font-weight: 900;
}

.workspace-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 38, 33, 0.18);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.window-bar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 13px 19px;
}

.window-brand,
.window-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 800;
}

.window-brand-dot {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
}

.window-brand-dot img {
  width: 100%;
  height: 100%;
}

.window-user span:first-child {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3c8a62;
}

.window-body {
  display: grid;
  grid-template-columns: 175px minmax(0, 1fr);
  min-height: 490px;
}

.window-sidebar {
  border-right: 1px solid var(--line);
  background: #f3efe6;
  padding: 24px 15px;
}

.window-sidebar strong {
  display: block;
  margin-bottom: 18px;
  color: var(--ink-faint);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.window-sidebar span {
  min-height: 38px;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  border-radius: 9px;
  padding: 8px 10px;
  color: var(--ink-faint);
  font-size: 0.72rem;
  font-weight: 700;
}

.window-sidebar span.active {
  background: var(--forest);
  color: var(--white);
}

.window-main {
  padding: clamp(20px, 4vw, 36px);
}

.window-kicker {
  color: var(--terracotta);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.window-main h3 {
  margin: 7px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1;
}

.next-action {
  margin-top: 22px;
  border-radius: 16px;
  background: var(--forest-deep);
  color: var(--white);
  padding: 21px;
}

.next-action small {
  display: block;
  color: var(--sage);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.next-action strong {
  display: block;
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.next-action-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.next-action-meta span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
}

.track-list {
  margin-top: 24px;
}

.track {
  display: grid;
  grid-template-columns: minmax(90px, 0.7fr) minmax(120px, 1.3fr) auto;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
  font-size: 0.67rem;
}

.track strong {
  font-size: 0.7rem;
}

.track-bar {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--paper-deep);
}

.track-bar span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--moss);
}

.progress-82 {
  width: 82%;
}

.progress-56 {
  width: 56%;
}

.progress-74 {
  width: 74%;
}

.progress-42 {
  width: 42%;
}

.track em {
  color: var(--ink-faint);
  font-style: normal;
}

.audiences {
  border-block: 1px solid var(--line);
  background: var(--paper-soft);
}

.audience-list {
  border-top: 1px solid var(--line);
}

.audience-row {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.65fr) minmax(300px, 1fr) auto;
  align-items: start;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.audience-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--forest);
}

.audience-icon svg {
  width: 24px;
  height: 24px;
}

.audience-row h3 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 600;
  line-height: 1.05;
}

.audience-row p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.text-link svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(50px, 8vw, 110px);
}

.trust-statement {
  position: sticky;
  top: 120px;
  align-self: start;
}

.quote-heading {
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: 0.98;
}

.quote-heading span {
  color: var(--terracotta);
  font-style: italic;
}

.trust-statement p {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--ink-soft);
}

.trust-list {
  counter-reset: trust;
}

.trust-item {
  position: relative;
  counter-increment: trust;
  border-top: 1px solid var(--line);
  padding: 30px 0 30px 62px;
}

.trust-item:last-child {
  border-bottom: 1px solid var(--line);
}

.trust-item::before {
  position: absolute;
  top: 31px;
  left: 0;
  color: var(--terracotta);
  content: "0" counter(trust);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
}

.trust-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
}

.trust-item p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.cta-wrap {
  padding: 0 0 clamp(90px, 11vw, 150px);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  border-radius: 38px;
  background: var(--terracotta);
  color: var(--white);
  padding: clamp(42px, 7vw, 80px);
}

.cta-panel::after {
  position: absolute;
  right: -90px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
}

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

.cta-heading {
  max-width: 820px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.92;
}

.cta-content p {
  max-width: 610px;
  margin: 25px 0 0;
  color: rgba(255, 253, 248, 0.94);
}

.cta-actions {
  position: relative;
  z-index: 1;
  align-items: stretch;
  flex-direction: column;
  margin: 0;
}

.cta-actions .button-primary {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
}

.cta-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.cta-actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(140px, 0.55fr));
  gap: 46px;
}

.footer-brand p {
  max-width: 340px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.site-footer .brand {
  color: var(--white);
}

.footer-column h3 {
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  min-height: 38px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
}

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

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

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

  .hero-grid,
  .workspace-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }

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

  .process-intro {
    max-width: 760px;
  }

  .workspace-copy {
    max-width: 700px;
  }

  .trust-statement {
    position: static;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    align-items: flex-start;
    flex-direction: row;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.6fr);
  }
}

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

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu[data-open="true"] {
    display: block;
  }

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

  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 5.4rem);
  }

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

  .visual-note {
    right: 8px;
  }

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

  .proof-intro {
    grid-column: 1 / -1;
    min-height: auto;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }

  .proof-item {
    border-left: 0;
    padding-inline: 0;
  }

  .proof-item:nth-child(3),
  .proof-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .proof-item:nth-child(even) {
    border-left: 1px solid var(--line);
    padding-left: 22px;
  }

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .friction-item,
  .audience-row {
    grid-template-columns: 56px 1fr;
    gap: 14px 20px;
  }

  .friction-item p,
  .friction-time,
  .audience-row p,
  .audience-row .text-link {
    grid-column: 2;
  }

  .friction-time {
    justify-self: start;
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .window-sidebar {
    display: none;
  }

  .audience-icon {
    width: 50px;
    height: 50px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .nav {
    min-height: 68px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-assurance {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual img {
    min-height: 320px;
    border-radius: 30px;
  }

  .hero-visual::before {
    border-radius: 34px;
  }

  .visual-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -26px 14px 0;
  }

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

  .proof-item,
  .proof-item:nth-child(even) {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-inline: 0;
  }

  .section-heading,
  .process .section-heading,
  .workspace-copy .section-heading,
  .quote-heading {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .process-wrap {
    width: calc(100% - 14px);
    border-radius: 26px;
  }

  .process-step {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .process-index {
    width: 36px;
    height: 36px;
  }

  .window-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .window-main {
    padding: 20px;
  }

  .next-action {
    padding: 18px;
  }

  .track {
    grid-template-columns: 1fr auto;
  }

  .track-bar {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .friction-item,
  .audience-row {
    grid-template-columns: 44px 1fr;
  }

  .friction-number {
    font-size: 1.45rem;
  }

  .audience-icon {
    width: 42px;
    height: 42px;
  }

  .audience-icon svg {
    width: 20px;
    height: 20px;
  }

  .trust-item {
    padding-left: 48px;
  }

  .cta-panel {
    border-radius: 26px;
    padding: 38px 24px;
  }

  .cta-heading {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

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

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

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

@media print {
  .site-header,
  .hero-actions,
  .cta-wrap {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .process-wrap,
  .site-footer {
    background: #fff;
    color: #000;
  }
}
