@font-face {
  font-family: "Geist";
  src: url("/assets/fonts/Geist-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("/assets/fonts/Geist-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/assets/fonts/JetBrainsMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #111014;
  --ink-soft: #4f4c54;
  --muted: #77737d;
  --paper: #f7f5ef;
  --paper-bright: #fffefa;
  --surface: #efede7;
  --line: #d9d6ce;
  --line-strong: #bdb9b0;
  --violet: #5b35f5;
  --violet-dark: #4723dd;
  --violet-soft: #e6e0ff;
  --night: #0e0d12;
  --success: #147b42;
  --warning: #aa5a00;
  --danger: #b73333;
  --container: 1360px;
  --gutter: clamp(20px, 4vw, 64px);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --radius-xl: 44px;
  --shadow-sm: 0 14px 40px rgba(17, 16, 20, 0.07);
  --shadow-lg: 0 30px 90px rgba(17, 16, 20, 0.12);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

::selection {
  background: var(--violet);
  color: white;
}

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--night);
  color: white;
  padding: 10px 16px;
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.mono {
  font-family: "JetBrains Mono", monospace;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
  box-shadow: 0 0 0 5px rgba(91, 53, 245, .1);
}

.display {
  max-width: 1050px;
  font-size: clamp(48px, 7.2vw, 112px);
  font-weight: 400;
  letter-spacing: -.067em;
  line-height: .91;
}

.display em {
  color: var(--violet);
  font-style: normal;
}

.title-xl {
  max-width: 920px;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .94;
}

.title-lg {
  max-width: 800px;
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}

.title-md {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.lead {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: -.02em;
  line-height: 1.42;
}

.small {
  color: var(--muted);
  font-size: 13px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  background: var(--night);
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}

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

.button--violet {
  background: var(--violet);
}

.button--violet:hover {
  background: var(--violet-dark);
}

.button--light {
  background: var(--paper-bright);
  color: var(--ink);
}

.button--light:hover {
  background: white;
  color: var(--violet-dark);
}

.button--outline {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button--outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.button svg {
  width: 16px;
  height: 16px;
  transition: transform .25s var(--ease);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(17, 16, 20, .09);
  background: rgba(247, 245, 239, .82);
  backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  min-height: 82px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.04em;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border-radius: 9px;
  background: var(--violet);
  transform: rotate(-7deg);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  background: var(--paper-bright);
  content: "";
}

.brand-mark::before {
  top: 8px;
  left: 6px;
  width: 16px;
  height: 3px;
  border-radius: 3px;
  box-shadow: 0 8px 0 var(--paper-bright);
}

.brand-mark::after {
  top: 7px;
  left: 5px;
  width: 5px;
  height: 4px;
  border-radius: 50%;
  box-shadow: 13px 8px 0 var(--paper-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 38px);
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--violet);
  content: "";
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-actions .button {
  min-height: 44px;
  padding: 10px 18px;
}

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

.menu-toggle svg {
  width: 20px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  visibility: hidden;
  align-content: center;
  padding: 100px var(--gutter) 40px;
  background: var(--paper);
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity .25s, visibility .25s, transform .25s var(--ease);
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.mobile-menu nav {
  display: grid;
  gap: 4px;
}

.mobile-menu nav a {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  font-size: clamp(28px, 9vw, 52px);
  letter-spacing: -.05em;
  line-height: 1;
}

.mobile-menu .button {
  margin-top: 30px;
}

main {
  overflow: clip;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(145px, 17vh, 210px) 0 42px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -250px;
  left: 42%;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 53, 245, .12), transparent 67%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.hero .eyebrow {
  margin-bottom: 30px;
}

.hero .lead {
  margin-top: 32px;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ca35f;
  box-shadow: 0 0 0 5px rgba(44, 163, 95, .12);
}

.hero-visual {
  position: relative;
  margin-top: clamp(-30px, -2vw, -10px);
  margin-right: calc(var(--gutter) * -1);
  margin-left: min(25vw, 330px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper-bright);
  box-shadow: var(--shadow-lg);
}

.hero-visual img {
  width: 100%;
  height: auto;
  min-height: 380px;
  object-fit: cover;
}

.hero-visual-tag {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(14px);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (min-width: 821px) {
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100svh;
    padding-top: 92px;
    padding-bottom: 42px;
  }
  .hero .shell {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 64px;
    align-items: center;
  }
  .hero-visual {
    margin: 0;
    width: 100%;
    max-height: 420px;
  }
  .hero-visual img {
    height: auto;
    max-height: 420px;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero-copy .display {
    font-size: clamp(48px, 4.8vw, 80px);
  }
  .hero-copy .lead {
    margin-top: 24px;
    font-size: clamp(16px, 1.8vw, 20px);
  }
  .hero-actions {
    margin-top: 24px;
  }
}

.trust-strip {
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.tech-logo {
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: #85818b;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.03em;
  transition: border-color .2s, color .2s, background .2s;
}

.tech-logo:hover {
  border-color: var(--line-strong);
  background: var(--paper-bright);
  color: var(--ink);
}

.section {
  padding: clamp(92px, 11vw, 170px) 0;
}

.section--compact {
  padding: clamp(70px, 8vw, 110px) 0;
}

.section--white {
  background: var(--paper-bright);
}

.section--night {
  background: var(--night);
  color: white;
}

.section--violet {
  background: var(--violet);
  color: white;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 90px);
}

.section-head .eyebrow {
  margin-bottom: 24px;
}

.section-head .lead {
  justify-self: end;
  font-size: clamp(16px, 1.6vw, 20px);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.problem-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--paper-bright);
}

.problem-card:nth-child(1),
.problem-card:nth-child(4) {
  grid-column: span 7;
}

.problem-card:nth-child(2),
.problem-card:nth-child(3) {
  grid-column: span 5;
}

.problem-card h3 {
  max-width: 450px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
}

.problem-card p {
  max-width: 430px;
  margin-top: 18px;
  color: var(--muted);
}

.problem-index {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: var(--line-strong);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.problem-card--dark {
  border-color: #2b2930;
  background: var(--night);
  color: white;
}

.problem-card--dark p {
  color: #aaa6b0;
}

.problem-card--violet {
  border-color: transparent;
  background: var(--violet);
  color: white;
}

.problem-card--violet p,
.problem-card--violet .problem-index {
  color: rgba(255, 255, 255, .72);
}

.orbit {
  position: absolute;
  right: -60px;
  bottom: -100px;
  width: 270px;
  height: 270px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .18;
}

.orbit::before,
.orbit::after {
  position: absolute;
  inset: 22%;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.orbit::after {
  inset: 42%;
  background: currentColor;
}

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

.service-row {
  display: grid;
  grid-template-columns: 72px minmax(260px, .8fr) minmax(300px, 1.2fr) 44px;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
  transition: padding .3s var(--ease), color .2s;
}

.service-row:hover {
  padding-inline: 14px;
  color: var(--violet-dark);
}

.service-row .number {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
}

.service-row h3 {
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

.service-row p {
  color: var(--muted);
  font-size: 14px;
}

.service-row svg {
  width: 24px;
  transition: transform .3s var(--ease);
}

.service-row:hover svg {
  transform: translate(4px, -4px);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #29272f;
  border-radius: var(--radius-lg);
  background: #29272f;
}

.method-card {
  min-height: 360px;
  padding: 28px;
  background: var(--night);
}

.method-card .number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #393640;
  border-radius: 50%;
  color: #aaa6b0;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
}

.method-card h3 {
  margin-top: 100px;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.045em;
}

.method-card p {
  margin-top: 16px;
  color: #aaa6b0;
  font-size: 14px;
}

.dashboard {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper-bright);
  box-shadow: var(--shadow-sm);
}

.dashboard-copy {
  padding: clamp(34px, 5vw, 72px);
}

.dashboard-copy .lead {
  margin-top: 24px;
  font-size: 18px;
}

.dashboard-panel {
  min-height: 560px;
  border-left: 1px solid var(--line);
  padding: clamp(24px, 4vw, 50px);
  background:
    linear-gradient(rgba(91, 53, 245, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 53, 245, .045) 1px, transparent 1px),
    #f2f0eb;
  background-size: 34px 34px;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.metric-card {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  background: rgba(255, 254, 250, .88);
  backdrop-filter: blur(8px);
}

.metric-label {
  color: var(--muted);
  font-size: 12px;
}

.metric-value {
  margin-top: 28px;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -.06em;
  line-height: 1;
}

.metric-value small {
  color: var(--success);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0;
}

.chart {
  position: relative;
  height: 170px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 254, 250, .9);
}

.chart svg {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
}

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

.proof-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--paper-bright);
}

.proof-card blockquote {
  font-size: clamp(23px, 2.4vw, 34px);
  letter-spacing: -.045em;
  line-height: 1.08;
}

.proof-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 50px;
  color: var(--muted);
  font-size: 12px;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--violet-soft);
  color: var(--violet-dark);
  font-weight: 600;
}

.disclosure {
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.case-card {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-bright);
}

.case-art {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 60% 50%, rgba(91, 53, 245, .34), transparent 18%),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(17, 16, 20, .07) 40px),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(17, 16, 20, .07) 40px),
    #eeece6;
}

.case-art::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(17, 16, 20, .36);
  border-radius: 36px;
  background: rgba(255, 255, 255, .58);
  content: "";
  transform: translate(-50%, -50%) rotate(12deg);
  box-shadow: 30px 30px 0 rgba(91, 53, 245, .12);
}

.case-card:nth-child(2) .case-art::before {
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 34px rgba(91, 53, 245, .1), 0 0 0 68px rgba(91, 53, 245, .05);
}

.case-card:nth-child(3) .case-art::before {
  width: 190px;
  height: 80px;
  border-radius: 999px;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.case-content {
  padding: 26px;
}

.case-content h3 {
  margin-top: 13px;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.case-content p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.faq-list {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 28px 54px 28px 0;
  cursor: pointer;
  font-size: clamp(20px, 2vw, 27px);
  letter-spacing: -.035em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 24px;
  height: 24px;
  color: var(--violet);
  content: "+";
  font-size: 26px;
  line-height: 22px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 740px;
  padding: 0 50px 28px 0;
  color: var(--muted);
}

.closing {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--night);
  color: white;
}

.closing img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 70%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.closing::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--night) 0%, var(--night) 38%, rgba(14, 13, 18, .42) 67%, transparent 100%);
  content: "";
}

.closing-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: clamp(45px, 8vw, 110px);
}

.closing-copy .eyebrow {
  color: #b9b5bf;
}

.closing-copy .title-lg {
  margin-top: 30px;
}

.closing-copy p {
  max-width: 520px;
  margin-top: 24px;
  color: #b9b5bf;
  font-size: 18px;
}

.closing-copy .button {
  margin-top: 34px;
}

.page-hero {
  padding: clamp(155px, 19vh, 230px) 0 clamp(76px, 9vw, 130px);
}

.page-hero .eyebrow {
  margin-bottom: 30px;
}

.page-hero .lead {
  margin-top: 32px;
}

.page-hero .hero-actions {
  margin-top: 34px;
}

.page-hero--split .shell {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 70px;
  align-items: end;
}

.page-hero-aside {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}

.page-hero-aside strong {
  display: block;
  font-size: clamp(40px, 7vw, 92px);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .9;
}

.page-hero-aside span {
  display: block;
  max-width: 250px;
  margin-top: 15px;
  color: var(--muted);
}

.category-nav {
  position: sticky;
  z-index: 20;
  top: 82px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 239, .9);
  backdrop-filter: blur(16px);
}

.category-nav .shell {
  display: flex;
  gap: 8px;
  padding-block: 12px;
}

.category-nav a {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--muted);
  font-size: 12px;
}

.category-nav a:hover {
  border-color: var(--ink);
  color: var(--ink);
}

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

.catalog-card {
  display: grid;
  grid-template-columns: 80px minmax(250px, .8fr) minmax(300px, 1.2fr);
  gap: 30px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(25px, 4vw, 48px);
  background: var(--paper-bright);
}

.catalog-card .number {
  color: var(--violet);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.catalog-card h2 {
  font-size: clamp(27px, 3.2vw, 44px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
}

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

.catalog-card ul {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  list-style: none;
}

.catalog-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.catalog-card li::before {
  position: absolute;
  top: .65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
}

.catalog-card .chip {
  margin-bottom: 18px;
}

.premium-card {
  position: relative;
  overflow: hidden;
  border: 0;
  background: var(--night);
  color: white;
}

.premium-card::after {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 53, 245, .62), transparent 67%);
  content: "";
}

.premium-card p,
.premium-card li {
  color: #aaa6b0;
}

.premium-card > * {
  position: relative;
  z-index: 1;
}

.story-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(45px, 8vw, 120px);
  align-items: start;
}

.story-sticky {
  position: sticky;
  top: 130px;
}

.story-copy {
  display: grid;
  gap: 70px;
}

.story-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.story-block h3 {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 400;
  letter-spacing: -.05em;
}

.story-block p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.value-card {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--paper-bright);
}

.value-card h3 {
  margin-top: 80px;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -.04em;
}

.value-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.manifesto-lines {
  border-top: 1px solid #302e36;
}

.manifesto-line {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  border-bottom: 1px solid #302e36;
  padding: 28px 0;
}

.manifesto-line span {
  color: #827e88;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
}

.manifesto-line p {
  max-width: 900px;
  font-size: clamp(27px, 4vw, 58px);
  letter-spacing: -.05em;
  line-height: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 14px;
}

.contact-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 64px);
  background: var(--paper-bright);
}

.contact-panel {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  background: var(--night);
  color: white;
}

.contact-panel p {
  margin-top: 22px;
  color: #aaa6b0;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding-top: 50px;
}

.contact-details a {
  border-top: 1px solid #302e36;
  padding-top: 14px;
  color: #d8d5dc;
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted);
  font-size: 12px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 15px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(91, 53, 245, .12);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-panel .button {
  margin-top: 22px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.post-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: var(--paper-bright);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.post-card h2,
.post-card h3 {
  margin-top: 60px;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.post-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.post-card .post-meta {
  margin-top: auto;
  padding-top: 36px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
}

.post-card__link {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.post-card__link::after {
  margin-top: 22px;
  color: var(--violet);
  content: "Ler artigo →";
  font-size: 13px;
  font-weight: 600;
}

.article-hero {
  padding: clamp(150px, 18vh, 220px) 0 clamp(70px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
}

.article-hero__inner {
  max-width: 1080px;
}

.article-hero h1 {
  max-width: 1000px;
  margin-top: 28px;
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .94;
}

.article-hero .lead {
  margin-top: 30px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: clamp(50px, 8vw, 120px);
  justify-content: center;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 120px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.article-toc strong {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-toc ol {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  list-style: none;
}

.article-toc a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.article-toc a:hover {
  color: var(--violet-dark);
}

.article-body {
  min-width: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
}

.article-body > p:first-child {
  color: var(--ink);
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: -.035em;
  line-height: 1.35;
}

.article-body h2 {
  margin-top: 76px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1.02;
}

.article-body h3 {
  margin-top: 42px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote,
.article-body .article-callout,
.article-body .article-flow,
.article-body .article-table-wrap {
  margin-top: 22px;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.article-body li::marker {
  color: var(--violet);
}

.article-body strong {
  color: var(--ink);
}

.article-body a {
  color: var(--violet-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-body blockquote {
  border-left: 3px solid var(--violet);
  padding: 8px 0 8px 24px;
  color: var(--ink);
  font-size: 25px;
  letter-spacing: -.035em;
  line-height: 1.35;
}

.article-callout {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--paper-bright);
}

.article-callout--violet {
  border-color: transparent;
  background: var(--violet);
  color: white;
}

.article-callout--violet strong {
  color: white;
}

.article-callout p:first-child {
  margin-top: 0;
}

.article-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.article-flow span {
  position: relative;
  display: grid;
  min-height: 110px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: var(--paper-bright);
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.article-flow span:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  right: -10px;
  color: var(--violet);
  content: "→";
  font-size: 15px;
}

.article-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.article-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--paper-bright);
  font-size: 14px;
}

.article-table th,
.article-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-table th {
  color: var(--ink);
  font-weight: 600;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-sources {
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-sources h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 22px;
}

.article-sources ul {
  font-size: 14px;
}

.article-author {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  background: var(--paper-bright);
}

.article-author .avatar {
  width: 56px;
  height: 56px;
}

.article-author strong {
  display: block;
}

.article-author p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.related-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.related-post {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--paper-bright);
}

.related-post h3 {
  margin-top: 50px;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.related-post:hover {
  border-color: var(--line-strong);
}

.legal {
  max-width: 900px;
}

.legal h1 {
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .95;
}

.legal .intro {
  margin-top: 28px;
  color: var(--muted);
  font-size: 19px;
}

.legal h2 {
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.04em;
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

.legal p {
  margin-top: 16px;
}

.legal ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0 20px;
}

.site-footer {
  padding: 80px 0 26px;
  background: var(--paper);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 38px;
  border-top: 1px solid var(--line);
  padding-top: 45px;
}

.footer-brand p {
  max-width: 310px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-col h3 {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  list-style: none;
}

.footer-col a {
  color: var(--ink-soft);
  font-size: 13px;
}

.footer-col a:hover {
  color: var(--violet-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 70px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .nav-actions .button--outline {
    display: none;
  }

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

  .logo-row {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .proof-grid,
  .case-grid,
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-card:last-child,
  .case-card:last-child,
  .post-card:last-child {
    grid-column: 1 / -1;
  }

  .footer-top {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .display {
    font-size: clamp(52px, 15vw, 82px);
  }

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

  .hero-visual {
    margin-top: 52px;
    margin-right: 0;
    margin-left: 0;
    border-radius: 28px;
  }

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

  .section-head,
  .page-hero--split .shell,
  .story-grid,
  .contact-grid,
  .dashboard,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }

  .article-toc ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head .lead {
    justify-self: start;
  }

  .problem-card:nth-child(n) {
    grid-column: span 12;
  }

  .service-row {
    grid-template-columns: 45px 1fr 32px;
  }

  .service-row p {
    display: none;
  }

  .dashboard-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .catalog-card {
    grid-template-columns: 48px 1fr;
  }

  .catalog-card > div:last-child {
    grid-column: 2;
  }

  .story-sticky {
    position: static;
  }

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

  .page-hero-aside {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 30px;
    padding-left: 0;
  }

  .closing img {
    width: 100%;
    opacity: .62;
  }

  .closing::after {
    background: linear-gradient(90deg, rgba(14, 13, 18, .96), rgba(14, 13, 18, .55));
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 72px;
  }

  .nav-actions .button {
    display: none;
  }

  .page-hero {
    padding-top: 135px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .logo-row,
  .method-grid,
  .proof-grid,
  .case-grid,
  .post-grid,
  .metric-grid,
  .form-grid,
  .related-posts {
    grid-template-columns: 1fr;
  }

  .proof-card:last-child,
  .case-card:last-child,
  .post-card:last-child {
    grid-column: auto;
  }

  .trust-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .problem-card {
    min-height: 300px;
  }

  .method-card {
    min-height: 300px;
  }

  .method-card h3 {
    margin-top: 70px;
  }

  .dashboard-panel {
    min-height: auto;
  }

  .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-card > div:last-child {
    grid-column: auto;
  }

  .manifesto-line {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-flow {
    grid-template-columns: 1fr;
  }

  .article-flow span {
    min-height: 76px;
  }

  .article-flow span:not(:last-child)::after {
    right: 50%;
    bottom: -16px;
    transform: translateX(50%) rotate(90deg);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
