:root {
  --berry-950: #250816;
  --berry-900: #3a0b24;
  --berry-800: #531033;
  --berry-700: #761443;
  --rose-700: #981650;
  --rose-600: #bf1e67;
  --rose-500: #df377f;
  --rose-400: #ed6399;
  --rose-300: #f28db5;
  --rose-200: #f8bdd4;
  --rose-100: #fde2ed;
  --rose-050: #fff4f8;
  --pearl: #fffafb;
  --white: #ffffff;
  --ink: #2b1421;
  --ink-soft: #6f4c5c;
  --line: rgba(86, 20, 49, 0.14);
  --line-strong: rgba(86, 20, 49, 0.24);
  --success: #24745a;
  --focus: #9d1a57;
  --shadow-sm: 0 8px 24px rgba(82, 16, 48, 0.08);
  --shadow-md: 0 24px 64px rgba(82, 16, 48, 0.13);
  --shadow-lg: 0 40px 100px rgba(82, 16, 48, 0.2);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shell: 1220px;
  --header-height: 84px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 13% 8%, rgba(242, 141, 181, 0.16), transparent 28rem),
    radial-gradient(circle at 92% 16%, rgba(223, 55, 127, 0.10), transparent 24rem),
    var(--pearl);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(157, 26, 87, .42);
  outline-offset: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 12px 18px;
  color: var(--white);
  background: var(--berry-900);
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s ease;
}

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

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

.section-pad {
  padding: 110px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--rose-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-500);
  box-shadow: 0 0 0 0 rgba(223, 55, 127, .55);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(223, 55, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(223, 55, 127, 0); }
}

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

h1,
h2,
h3,
h4 {
  letter-spacing: -.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 6.4vw, 6.8rem);
  font-weight: 820;
  letter-spacing: -.065em;
}

h1 span {
  display: block;
  color: var(--rose-600);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
  font-weight: 790;
}

h3 {
  font-size: 1.45rem;
}

p {
  color: var(--ink-soft);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, border-color .25s ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-600), var(--rose-500));
  box-shadow: 0 15px 35px rgba(191, 30, 103, .25);
}

.button-primary:hover {
  box-shadow: 0 20px 40px rgba(191, 30, 103, .34);
}

.button-secondary {
  color: var(--berry-800);
  background: rgba(255, 255, 255, .72);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.button-secondary:hover {
  border-color: var(--rose-300);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rose-700);
  font-weight: 760;
  text-decoration: none;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 251, .76);
  backdrop-filter: blur(22px) saturate(160%);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 250, 251, .92);
  box-shadow: 0 10px 36px rgba(65, 10, 35, .06);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
}

.brand-mark span {
  position: absolute;
  display: block;
  width: 23px;
  height: 26px;
  background: linear-gradient(145deg, var(--rose-400), var(--rose-700));
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
}

.brand-mark span:nth-child(1) { transform: translate(-8px, -7px); opacity: .36; }
.brand-mark span:nth-child(2) { transform: translate(8px, -7px); opacity: .67; }
.brand-mark span:nth-child(3) { transform: translate(0, 8px); }

.brand-copy {
  display: grid;
  line-height: 1.18;
}

.brand-copy strong {
  font-size: .98rem;
  letter-spacing: -.01em;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav > a {
  padding: 11px 14px;
  color: #5a3547;
  border-radius: 999px;
  font-size: .91rem;
  font-weight: 690;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.site-nav > a:hover {
  color: var(--rose-700);
  background: var(--rose-100);
}

.site-nav .nav-cta {
  margin-left: 7px;
  padding-inline: 19px;
  color: var(--white);
  background: var(--berry-900);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--rose-700);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--berry-900);
  border-radius: 20px;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-atmosphere,
.hero-atmosphere > * {
  position: absolute;
  pointer-events: none;
}

.hero-atmosphere {
  inset: 0;
  overflow: hidden;
}

.orb {
  border-radius: 50%;
  filter: blur(2px);
}

.orb-one {
  top: 5%;
  right: -10%;
  width: min(56vw, 760px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(242,141,181,.3) 38%, rgba(191,30,103,.14) 68%, transparent 72%);
}

.orb-two {
  bottom: -24%;
  left: 27%;
  width: 470px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(223,55,127,.18), transparent 70%);
}

.grid-glow {
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(152, 22, 80, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(152, 22, 80, .09) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 84% 38%, black, transparent 54%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(360px, .83fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 34px;
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.proof-strip div {
  padding-top: 14px;
  border-top: 1px solid var(--line-strong);
}

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

.proof-strip strong {
  margin-bottom: 2px;
  color: var(--berry-900);
  font-size: .94rem;
}

.proof-strip span {
  color: var(--ink-soft);
  font-size: .73rem;
}

.solution-console {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  padding: 26px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255,255,255,.08), transparent 45%),
    linear-gradient(145deg, var(--berry-950), var(--berry-800) 62%, var(--rose-700));
  box-shadow: var(--shadow-lg);
}

.solution-console::before,
.solution-console::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.solution-console::before {
  right: -35%;
  bottom: 0;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 0 0 65px rgba(255,255,255,.025), 0 0 0 130px rgba(255,255,255,.018);
}

.solution-console::after {
  top: 12%;
  left: -20%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(237,99,153,.22), transparent 70%);
}

.console-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.62);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .12em;
}

.console-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.console-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose-300);
  box-shadow: 0 0 18px var(--rose-300);
}

.console-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 390px);
  aspect-ratio: 1;
  margin: 22px auto 2px;
  place-items: center;
}

.core-node {
  position: relative;
  z-index: 3;
  display: grid;
  width: 98px;
  height: 112px;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 850;
  background: linear-gradient(145deg, var(--rose-300), var(--rose-600));
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
  box-shadow: 0 0 80px rgba(242,141,181,.44);
}

.core-ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.ring-one { inset: 24%; }
.ring-two { inset: 8%; border-style: dashed; animation: spin 34s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }

.satellite {
  position: absolute;
  z-index: 3;
  padding: 7px 10px;
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  font-size: .67rem;
  font-weight: 720;
  backdrop-filter: blur(12px);
}

.satellite-a { top: 17%; left: 5%; }
.satellite-b { top: 9%; right: 4%; }
.satellite-c { right: 2%; bottom: 20%; }
.satellite-d { bottom: 11%; left: 8%; }

.console-flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.console-flow div {
  display: grid;
  grid-template-columns: 32px 1fr;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
}

.console-flow span {
  grid-row: span 2;
  color: var(--rose-300);
  font-size: .67rem;
  font-weight: 850;
}

.console-flow strong {
  font-size: .81rem;
}

.console-flow small {
  color: rgba(255,255,255,.54);
  font-size: .68rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 58px;
}

.section-heading > p {
  max-width: 690px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
  align-items: end;
  gap: 70px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.ask-section {
  position: relative;
  background: linear-gradient(180deg, rgba(253,226,237,.45), rgba(255,250,251,0));
}

.ask-grid {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.ask-grid .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  margin-bottom: 0;
}

.ask-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(24px);
}

.ask-form label {
  display: block;
  margin-bottom: 12px;
  color: var(--berry-900);
  font-weight: 760;
}

.query-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 28px rgba(80, 15, 44, .07);
}

.query-row:focus-within {
  border-color: var(--rose-400);
  box-shadow: 0 0 0 5px rgba(223,55,127,.09), 0 12px 30px rgba(80,15,44,.09);
}

.query-row input {
  min-width: 0;
  padding: 0 16px;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
}

.query-row input::placeholder {
  color: #aa8495;
}

.query-row .button {
  min-height: 48px;
}

.suggestion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.suggestion-chips button {
  padding: 8px 13px;
  color: var(--rose-700);
  border: 1px solid var(--rose-200);
  border-radius: 999px;
  background: var(--rose-050);
  font-size: .77rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.suggestion-chips button:hover {
  transform: translateY(-1px);
  border-color: var(--rose-300);
  background: var(--rose-100);
}

.answer-card {
  margin-top: 24px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--berry-950), var(--berry-800));
  box-shadow: 0 24px 50px rgba(64, 8, 31, .2);
}

.answer-card[hidden] {
  display: none;
}

.answer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.answer-badge {
  padding: 7px 11px;
  color: var(--rose-200);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.answer-close {
  width: 35px;
  height: 35px;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.answer-card h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.answer-card > p {
  color: rgba(255,255,255,.68);
}

.answer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin: 25px 0;
}

.answer-columns h4 {
  margin-bottom: 11px;
  color: var(--rose-200);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.answer-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.answer-columns li {
  position: relative;
  margin: 8px 0;
  padding-left: 16px;
  color: rgba(255,255,255,.8);
  font-size: .84rem;
}

.answer-columns li::before {
  content: "";
  position: absolute;
  top: .63em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-400);
}

.answer-card .text-link {
  color: var(--rose-200);
}

.capabilities {
  background: rgba(255,255,255,.56);
}

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

.capability-card {
  position: relative;
  overflow: hidden;
  min-height: 325px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 30px rgba(76, 13, 43, .045);
  transition: transform .28s var(--ease), border-color .28s ease, box-shadow .28s var(--ease);
}

.capability-card:hover {
  transform: translateY(-7px);
  border-color: var(--rose-200);
  box-shadow: var(--shadow-md);
}

.capability-card.featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--berry-900), var(--rose-700));
}

.capability-card.featured p,
.capability-card.featured .card-index {
  color: rgba(255,255,255,.68);
}

.card-index {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #a98091;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.icon-tile {
  display: grid;
  width: 48px;
  height: 52px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--rose-400), var(--rose-700));
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
  font-size: 1.1rem;
  font-weight: 800;
}

.featured .icon-tile {
  color: var(--rose-700);
  background: var(--rose-100);
}

.capability-card h3 {
  margin-bottom: 13px;
  font-size: 1.25rem;
}

.capability-card p {
  margin-bottom: 22px;
  font-size: .9rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.tag-row span {
  padding: 6px 9px;
  color: var(--rose-700);
  border: 1px solid var(--rose-200);
  border-radius: 999px;
  background: var(--rose-050);
  font-size: .65rem;
  font-weight: 720;
}

.featured .tag-row span {
  color: var(--rose-100);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

.evidence {
  position: relative;
}

.case-study-list {
  display: grid;
  gap: 14px;
}

.case-study {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 30px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.74);
  box-shadow: 0 8px 26px rgba(76, 13, 43, .035);
  backdrop-filter: blur(16px);
  transition: transform .28s var(--ease), border-color .28s ease, box-shadow .28s var(--ease);
}

.case-study:hover {
  transform: translateY(-4px);
  border-color: var(--rose-200);
  box-shadow: var(--shadow-md);
}

.case-number {
  display: grid;
  width: 58px;
  height: 64px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--rose-400), var(--rose-700));
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
  font-size: .78rem;
  font-weight: 850;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.case-meta span {
  padding: 5px 9px;
  color: var(--rose-700);
  border-radius: 999px;
  background: var(--rose-100);
  font-size: .66rem;
  font-weight: 760;
}

.case-main h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.case-main > p {
  max-width: 850px;
  margin-bottom: 24px;
}

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

.case-proof div {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--rose-050);
}

.case-proof small,
.case-proof strong {
  display: block;
}

.case-proof small {
  margin-bottom: 5px;
  color: var(--rose-700);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-proof strong {
  color: #583343;
  font-size: .75rem;
  line-height: 1.45;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: var(--rose-700);
  font-size: .8rem;
  font-weight: 770;
  text-decoration: none;
}

.case-link span {
  font-size: 1rem;
  transition: transform .2s ease;
}

.case-link:hover span {
  transform: translate(3px, -3px);
}

.method {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(237,99,153,.16), transparent 28rem),
    linear-gradient(145deg, var(--berry-950), var(--berry-800));
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(0, 1.26fr);
  gap: clamp(55px, 9vw, 120px);
}

.method-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  align-self: start;
  margin-bottom: 0;
}

.method .eyebrow {
  color: var(--rose-300);
}

.method h2 {
  color: var(--white);
}

.method .section-heading p {
  color: rgba(255,255,255,.64);
}

.method .button-secondary {
  margin-top: 16px;
  color: var(--white);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  box-shadow: none;
}

.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.method-steps li:first-child {
  padding-top: 0;
}

.method-steps > li > span {
  display: grid;
  width: 48px;
  height: 54px;
  place-items: center;
  color: var(--rose-200);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
  font-size: .72rem;
  font-weight: 850;
}

.method-steps h3 {
  margin-bottom: 9px;
  color: var(--white);
}

.method-steps p {
  margin-bottom: 0;
  color: rgba(255,255,255,.61);
}

.stack {
  background: var(--rose-050);
}

.stack-grid {
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(0, 1.45fr);
  gap: 80px;
  align-items: center;
}

.stack-grid .section-heading {
  margin-bottom: 0;
}

.stack-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.stack-cloud span {
  padding: 10px 14px;
  color: #6a3c51;
  border: 1px solid var(--rose-200);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(82,16,48,.04);
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.stack-cloud span:hover {
  transform: translateY(-2px);
  color: var(--rose-700);
  border-color: var(--rose-400);
}

.cv-callout {
  padding-top: 0;
}

.cv-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 95% 8%, rgba(242,141,181,.26), transparent 18rem),
    linear-gradient(145deg, var(--white), var(--rose-050));
  box-shadow: var(--shadow-md);
}

.cv-card::after {
  content: "MN";
  position: absolute;
  right: -30px;
  bottom: -65px;
  color: rgba(191,30,103,.055);
  font-size: 13rem;
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: 1;
  pointer-events: none;
}

.cv-card > div {
  position: relative;
  z-index: 2;
}

.cv-card h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.cv-card p {
  max-width: 690px;
  margin-bottom: 0;
}

.cv-actions {
  display: grid;
  gap: 10px;
}

.contact {
  background: linear-gradient(180deg, transparent, rgba(253,226,237,.48));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2.6rem, 5.1vw, 5.2rem);
}

.contact-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow-md);
}

.contact-panel a {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.contact-panel a:last-child {
  border-bottom: 0;
}

.contact-panel a:hover {
  color: var(--rose-700);
  background: var(--rose-050);
}

.contact-panel small {
  color: var(--ink-soft);
  font-size: .7rem;
  font-weight: 770;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-panel strong {
  overflow-wrap: anywhere;
}

.contact-panel span {
  font-size: 1.1rem;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255,255,255,.72);
  background: var(--berry-950);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-inner > div {
  display: grid;
}

.footer-inner strong {
  color: var(--white);
}

.footer-inner span,
.footer-inner p {
  color: rgba(255,255,255,.5);
  font-size: .75rem;
}

.footer-inner p {
  margin: 0;
  text-align: right;
}

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

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

/* Digital CV */
.cv-page {
  background: var(--rose-050);
}

.cv-page .site-header {
  position: relative;
}

.cv-hero {
  padding: 78px 0 58px;
}

.cv-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}

.cv-kicker {
  display: inline-flex;
  margin-bottom: 17px;
  color: var(--rose-700);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cv-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.cv-hero p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.cv-hero-actions {
  display: grid;
  gap: 10px;
}

.cv-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 34px;
  padding-bottom: 100px;
}

.cv-sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.cv-sidebar nav {
  display: grid;
  gap: 4px;
}

.cv-sidebar a {
  padding: 10px 12px;
  color: var(--ink-soft);
  border-radius: 10px;
  font-size: .84rem;
  font-weight: 680;
  text-decoration: none;
}

.cv-sidebar a:hover,
.cv-sidebar a.active {
  color: var(--rose-700);
  background: var(--rose-100);
}

.cv-document {
  display: grid;
  gap: 20px;
}

.cv-section {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.cv-section h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.cv-summary-grid,
.cv-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cv-highlight {
  padding: 18px;
  border: 1px solid var(--rose-200);
  border-radius: 15px;
  background: var(--rose-050);
}

.cv-highlight strong,
.cv-highlight span {
  display: block;
}

.cv-highlight strong {
  margin-bottom: 3px;
  color: var(--berry-900);
}

.cv-highlight span {
  color: var(--ink-soft);
  font-size: .82rem;
}

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

.timeline-item {
  position: relative;
  padding-left: 32px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rose-500);
  box-shadow: 0 0 0 7px var(--rose-100);
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 24px;
  bottom: -32px;
  left: 5px;
  width: 2px;
  background: var(--rose-100);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--rose-700);
  font-size: .74rem;
  font-weight: 770;
}

.timeline-item h3 {
  margin-bottom: 5px;
}

.timeline-item h4 {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: .95rem;
  font-weight: 650;
}

.cv-list {
  margin: 0;
  padding-left: 20px;
}

.cv-list li {
  margin: 8px 0;
  color: var(--ink-soft);
}

.cv-project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cv-project {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--rose-050);
}

.cv-project small {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--rose-700);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cv-project h3 {
  margin-bottom: 10px;
}

.cv-project p {
  margin-bottom: 0;
  font-size: .88rem;
}

.cv-skill-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cv-skill-group {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.cv-skill-group h3 {
  margin-bottom: 13px;
  color: var(--rose-700);
  font-size: 1rem;
}

.cv-skill-group p {
  margin-bottom: 0;
  font-size: .88rem;
}

@media (max-width: 1080px) {
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .solution-console {
    min-height: 560px;
  }

  .proof-strip {
    max-width: 760px;
  }

  .ask-grid,
  .method-grid,
  .contact-grid,
  .stack-grid {
    grid-template-columns: 1fr;
  }

  .ask-grid .section-heading,
  .method-heading {
    position: static;
  }

  .stack-grid {
    gap: 35px;
  }

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

  .case-link {
    grid-column: 2;
  }

  .cv-layout {
    grid-template-columns: 1fr;
  }

  .cv-sidebar {
    position: static;
  }

  .cv-sidebar nav {
    display: flex;
    overflow-x: auto;
  }

  .cv-sidebar a {
    white-space: nowrap;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .section-pad {
    padding: 82px 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: none;
    align-content: start;
    padding: 24px;
    background: rgba(255,250,251,.98);
    backdrop-filter: blur(24px);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav > a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1.05rem;
  }

  .site-nav .nav-cta {
    margin: 16px 0 0;
    border-radius: 999px;
    text-align: center;
  }

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

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

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cv-card,
  .cv-hero-grid {
    grid-template-columns: 1fr;
  }

  .cv-actions,
  .cv-hero-actions {
    display: flex;
    flex-wrap: wrap;
  }
}

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

  .section-pad {
    padding: 68px 0;
  }

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

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.45rem);
  }

  .hero-actions,
  .cv-actions,
  .cv-hero-actions {
    display: grid;
  }

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

  .proof-strip {
    gap: 16px 10px;
  }

  .solution-console {
    min-height: 520px;
    padding: 20px;
    border-radius: 25px;
  }

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

  .console-core {
    margin-top: 10px;
  }

  .query-row {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .query-row input {
    min-height: 52px;
  }

  .query-row .button {
    width: 100%;
  }

  .ask-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .answer-columns,
  .capability-grid,
  .case-proof,
  .cv-summary-grid,
  .cv-highlight-grid,
  .cv-project-grid,
  .cv-skill-groups {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 285px;
  }

  .case-study {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .case-link {
    grid-column: 1;
  }

  .case-number {
    width: 48px;
    height: 54px;
  }

  .method-steps li {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .contact-panel a {
    grid-template-columns: 1fr auto;
    gap: 6px 15px;
  }

  .contact-panel small {
    grid-column: 1;
  }

  .contact-panel strong {
    grid-column: 1;
  }

  .contact-panel span {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .footer-inner {
    display: grid;
  }

  .footer-inner p {
    text-align: left;
  }

  .cv-section {
    padding: 22px;
  }
}

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

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

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

@media print {
  .site-header,
  .site-footer,
  .cv-sidebar,
  .cv-hero-actions {
    display: none !important;
  }

  body,
  .cv-page {
    background: #fff;
  }

  .cv-hero {
    padding: 20px 0;
  }

  .cv-layout {
    display: block;
    padding: 0;
  }

  .cv-section {
    break-inside: avoid;
    margin-bottom: 14px;
    box-shadow: none;
  }
}
