:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f7f4;
  --surface-dark: #1d160f;
  --text: #1d160f;
  --text-soft: #5d5348;
  --text-inverse: #fffdf8;
  --line: rgba(39, 25, 12, 0.12);
  --line-strong: rgba(39, 25, 12, 0.22);
  --gold-1: #ffd35c;
  --gold-2: #f1b53f;
  --gold-3: #d78c14;
  --gold-shadow: rgba(215, 140, 20, 0.22);
  --ink-shadow: rgba(18, 12, 6, 0.12);
  --success: #416044;
  --radius-s: 14px;
  --radius-m: 20px;
  --radius-l: 28px;
  --radius-pill: 999px;
  --container: 1180px;
  --container-tight: 940px;
  --nav-height: 78px;
  --header-gap: 18px;
  --transition: 160ms ease;
  --surface-glow-strength: 0;
  --ambient-strength: 0.02;
}

:root.has-scrolled {
  --surface-glow-strength: 0.38;
  --ambient-strength: 0.1;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 214, 103, 0.05), transparent 22%),
    radial-gradient(circle at top right, rgba(255, 214, 103, 0.03), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fdfdfc 62%, #f7f6f3 100%);
  line-height: 1.65;
}

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

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

a:hover,
a:focus-visible {
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--gold-1);
  color: #17110c;
}

:focus-visible {
  outline: 3px solid rgba(241, 181, 63, 0.8);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: var(--header-gap);
  z-index: 50;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.container-tight {
  width: min(calc(100% - 32px), var(--container-tight));
  margin: 0 auto;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--nav-height);
  padding: 9px 18px;
  overflow: clip;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.42) 100%);
  box-shadow:
    0 22px 46px rgba(29, 22, 15, 0.1),
    0 8px 18px rgba(255, 214, 103, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(30px) saturate(190%);
}

.nav-shell::before,
.nav-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.nav-shell::before {
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.28) 46%, rgba(255, 219, 125, 0.14) 100%);
  opacity: 0.96;
  z-index: 0;
}

.nav-shell::after {
  top: -52%;
  left: -8%;
  width: 58%;
  height: 132%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.2) 34%, rgba(255, 255, 255, 0) 72%);
  opacity: 0.9;
  transform: rotate(-14deg);
  z-index: 0;
}

.nav-shell > * {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 10px;
  flex: 0 0 auto;
  min-height: 48px;
}

.brand img {
  width: clamp(44px, 4vw, 58px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.brand-text {
  display: none;
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(29, 22, 15, 0.92);
  white-space: nowrap;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex: 1 1 auto;
  padding: 4px;
  border-radius: 999px;
}

.nav-active-pill {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 244, 210, 0.8);
  background: linear-gradient(135deg, #ffe79a 0%, #ffd05c 42%, #efb548 100%);
  box-shadow:
    0 16px 32px rgba(215, 140, 20, 0.24),
    0 4px 14px rgba(255, 214, 103, 0.18),
    inset 0 1px 0 rgba(255, 249, 230, 0.9);
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition:
    transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    width 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    height 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 180ms ease;
  pointer-events: none;
  z-index: 0;
}

.nav-active-pill.is-instant {
  transition: none;
}

.site-nav.has-active-pill .nav-active-pill {
  opacity: 1;
}

.site-nav a {
  position: relative;
  z-index: 1;
  padding: 0.7rem 0.98rem;
  border-radius: 999px;
  color: rgba(29, 22, 15, 0.78);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  transition:
    color var(--transition),
    box-shadow var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="location"],
.site-nav a[aria-current="page"] {
  background: transparent;
  color: #1d150b;
  box-shadow: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.nav-phone {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(39, 25, 12, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow:
    0 12px 24px rgba(29, 22, 15, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  white-space: nowrap;
}

.nav-phone span {
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-phone strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.site-header .button {
  min-height: 48px;
  padding: 0.8rem 1.18rem;
  font-size: 0.92rem;
  border-radius: 999px;
}

.site-header .button-primary {
  background: linear-gradient(135deg, #ffd86f 0%, #efb548 100%);
  color: #1d150b;
  box-shadow:
    0 12px 24px rgba(215, 140, 20, 0.22),
    inset 0 1px 0 rgba(255, 249, 230, 0.7);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.48);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow:
    0 12px 24px rgba(29, 22, 15, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 10px;
  transform-origin: center;
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 160ms ease;
}

body.nav-open .nav-toggle {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.84);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.88rem 1.24rem;
  border: 0;
  border-radius: var(--radius-pill);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition);
}

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

.button-primary {
  background: linear-gradient(135deg, #ffd56a 0%, #efb548 100%);
  color: #1d150b;
  box-shadow: 0 12px 24px var(--gold-shadow);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(39, 25, 12, 0.08);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.button-dark {
  background: var(--surface-dark);
  color: var(--text-inverse);
}

.button-link {
  padding-inline: 0;
  min-height: auto;
  color: var(--text);
  font-weight: 800;
}

.button-link::after {
  content: "→";
  transition: transform var(--transition);
}

.button-link:hover::after,
.button-link:focus-visible::after {
  transform: translateX(4px);
}

.section {
  padding: 76px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-dark {
  background: linear-gradient(180deg, #1f1812 0%, #17110c 100%);
  color: var(--text-inverse);
}

.section-dark .section-intro p,
.section-dark .service-card p,
.section-dark .check-list li,
.section-dark .callout p,
.section-dark .metric-card p,
.section-dark .faq-item summary,
.section-dark .faq-item p,
.section-dark .faq-item li {
  color: rgba(255, 250, 243, 0.84);
}

.section-dark .service-card,
.section-dark .metric-card,
.section-dark .callout,
.section-dark .contact-card,
.section-dark .faq-item,
.section-dark .timeline-item,
.section-dark .pillar-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.section-dark .feature-icon {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: #ffd35c;
  box-shadow: none;
}

.section-dark .metric-card::after,
.section-dark .callout::after,
.section-dark .faq-item::after,
.section-dark .timeline-item::after,
.section-dark .cta-panel::after {
  background:
    radial-gradient(circle at var(--sheen-x-current, 50%) 46%, rgba(255, 211, 92, 0.14) 0%, rgba(255, 211, 92, 0.05) 18%, rgba(255, 255, 255, 0) 54%);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-shell {
  position: relative;
  isolation: isolate;
}

.section-shell > :not(.section-graphic) {
  position: relative;
  z-index: 1;
}

.section-graphic {
  position: absolute;
  left: -34px;
  right: -34px;
  top: 132px;
  z-index: 0;
  margin: 0;
  pointer-events: none;
  opacity: 0.68;
  overflow: visible;
  transform:
    translate3d(0, var(--parallax-offset, 0px), 0)
    rotate(var(--parallax-rotate, 0deg))
    scale(var(--parallax-scale, 1));
  transition: transform 180ms linear;
  transform-origin: center top;
}

.section-graphic::before {
  content: none;
}

.section-graphic svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.section-graphic-services {
  top: 154px;
}

.section-graphic-process {
  top: 138px;
}

.section-graphic .graphic-track,
.section-graphic .process-curve {
  fill: none;
  stroke: rgba(125, 87, 28, 0.14);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-graphic .graphic-track-dash,
.section-graphic .process-curve-dash {
  fill: none;
  stroke: rgba(239, 181, 72, 0.92);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 12 12;
  animation: graphicDash 14s linear infinite;
}

.section-graphic .service-ribbon,
.section-graphic .process-wave {
  fill: none;
  stroke: rgba(241, 181, 63, 0.24);
  stroke-width: 22;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-graphic .service-ribbon.is-soft,
.section-graphic .process-wave.is-soft {
  stroke: rgba(241, 181, 63, 0.11);
  stroke-width: 28;
}

.section-graphic .service-mesh {
  fill: rgba(255, 249, 230, 0.72);
  stroke: rgba(215, 140, 20, 0.18);
  stroke-width: 1.2;
}

.section-graphic .service-mesh.is-soft {
  fill: rgba(255, 249, 230, 0.4);
  stroke: rgba(215, 140, 20, 0.1);
}

.section-graphic .service-signal,
.section-graphic .process-signal {
  fill: none;
  stroke: rgba(93, 83, 72, 0.22);
  stroke-width: 2.4;
  stroke-linecap: round;
}

.section-graphic .service-node,
.section-graphic .process-beacon {
  fill: #fffdf8;
  stroke: #efb548;
  stroke-width: 5;
}

.section-graphic .service-node-ring,
.section-graphic .process-beacon-ring {
  fill: none;
  stroke: rgba(241, 181, 63, 0.46);
  stroke-width: 1.4;
  stroke-dasharray: 7 10;
  transform-box: fill-box;
  transform-origin: center;
  animation: graphicPulse 5.8s ease-in-out infinite;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 0.44rem 0.74rem;
  border: 1px solid rgba(39, 25, 12, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.accent-text {
  display: inline;
  padding: 0 0.18em;
  border-radius: 0.38em;
  background: linear-gradient(180deg, rgba(255, 215, 104, 0.12), rgba(255, 215, 104, 0.46));
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 249, 236, 0.72) 100%);
  color: #b2700d;
  box-shadow:
    0 14px 28px rgba(29, 22, 15, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
}

.section-title,
.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  text-wrap: balance;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.lead,
.page-hero .lead {
  margin: 18px 0 0;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  color: var(--text-soft);
  max-width: 60ch;
}

.lead-mobile-copy {
  display: none;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 68px 0 40px;
  isolation: isolate;
}

.home-page .hero {
  --home-hero-base-pad-top: 76px;
  --home-hero-base-pad-bottom: 52px;
  --home-hero-overlap: calc(var(--nav-height) + var(--header-gap) + 16px);
  margin-top: calc(-1 * var(--home-hero-overlap));
  padding-top: calc(var(--home-hero-base-pad-top) + var(--home-hero-overlap));
  padding-bottom: var(--home-hero-base-pad-bottom);
}

.home-page .hero::before,
.home-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-page .hero::before {
  z-index: 0;
  background:
    linear-gradient(96deg, rgba(7, 12, 18, 0.94) 0%, rgba(7, 12, 18, 0.84) 34%, rgba(7, 12, 18, 0.6) 60%, rgba(7, 12, 18, 0.3) 100%),
    linear-gradient(180deg, rgba(7, 12, 18, 0.54) 0%, rgba(7, 12, 18, 0.18) 26%, rgba(7, 12, 18, 0.58) 100%),
    url("../img/hero-home-2bee.jpg");
  background-position: center center, center center, 72% 34%;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
  transform-origin: center;
}

.home-page .hero::after {
  z-index: 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(241, 181, 63, 0.18) 0%, rgba(241, 181, 63, 0.06) 24%, rgba(241, 181, 63, 0) 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 20%);
  opacity: 0.96;
}

.home-page .hero-atmosphere {
  display: none;
}

.home-page .hero-grid {
  min-height: clamp(500px, 68vh, 720px);
  align-content: center;
}

.home-page .hero-copy {
  max-width: min(100%, 690px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.home-page .hero h1,
.home-page .hero .lead,
.home-page .hero-note {
  color: rgba(248, 249, 251, 0.96);
}

.home-page .hero h1 {
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.home-page .hero .lead {
  max-width: 52ch;
  color: rgba(239, 243, 247, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
}

.home-page .hero-note {
  color: rgba(232, 237, 241, 0.78);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
}

.home-page .hero .accent-text {
  color: #fff6d4;
  background: linear-gradient(180deg, rgba(255, 213, 106, 0.16), rgba(255, 213, 106, 0.38));
}

.home-page .hero .button-primary {
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.22),
    0 12px 24px var(--gold-shadow);
}

.home-page .hero .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f9fbfc;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 20px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.home-page .hero .button-secondary:hover,
.home-page .hero .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: var(--ambient-strength);
  transition: opacity 220ms ease;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.34) 18%, rgba(255, 214, 103, 0.28) 42%, rgba(255, 214, 103, 0.06) 66%, rgba(255, 214, 103, 0) 78%);
  box-shadow:
    0 26px 48px rgba(215, 140, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform:
    translate3d(0, var(--parallax-offset, 0px), 0)
    rotate(var(--parallax-rotate, 0deg))
    scale(calc(var(--orb-scale, 1) * var(--parallax-scale, 1)));
  transition: transform 180ms linear;
}

.hero-orb-a {
  top: 18px;
  right: 3%;
  width: 340px;
  height: 340px;
  animation: orbFloatA 13s ease-in-out infinite;
}

.hero-orb-b {
  top: 210px;
  right: 22%;
  width: 180px;
  height: 180px;
  opacity: 0.42;
  animation: orbFloatB 16s ease-in-out infinite;
}

.hero-orb-c {
  top: 68px;
  right: 30%;
  width: 92px;
  height: 92px;
  opacity: 0.28;
  animation: orbFloatC 11s ease-in-out infinite;
}

.hero-wireframe {
  position: absolute;
  top: 26px;
  right: max(3%, calc((100vw - var(--container)) / 2));
  width: min(42vw, 520px);
  height: auto;
  color: rgba(204, 137, 20, 0.24);
  opacity: 0.46;
  transform:
    translate3d(0, var(--parallax-offset, 0px), 0)
    rotate(var(--parallax-rotate, 0deg))
    scale(var(--parallax-scale, 1));
  transition: transform 180ms linear;
  animation: wireFloat 24s ease-in-out infinite;
}

.hero-wireframe .wireframe-base,
.hero-wireframe .wireframe-highlight:not(.is-dash) {
  stroke-dasharray: 760;
  stroke-dashoffset: var(--wire-offset, 240px);
  opacity: var(--wire-opacity, 0.28);
}

.hero-wireframe .wireframe-node,
.hero-wireframe .wireframe-node-ring {
  opacity: var(--node-opacity, 0.24);
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(var(--node-scale, 0.68));
}

.hero-wireframe .wireframe-base,
.hero-wireframe .wireframe-highlight {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-wireframe .wireframe-base {
  stroke: rgba(204, 137, 20, 0.18);
  stroke-width: 1.8;
}

.hero-wireframe .wireframe-base.is-soft {
  stroke: rgba(204, 137, 20, 0.12);
}

.hero-wireframe .wireframe-highlight {
  stroke: url(#heroWireGradient);
  stroke-width: 2.45;
}

.hero-wireframe .wireframe-highlight.is-dash {
  stroke: url(#heroWireDash);
  stroke-width: 1.6;
  stroke-dasharray: 10 14;
  animation: graphicDash 18s linear infinite;
}

.hero-wireframe .wireframe-halo {
  fill: url(#heroWireHalo);
  opacity: 0.7;
}

.hero-wireframe .wireframe-link {
  fill: none;
  stroke: rgba(83, 56, 19, 0.18);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-wireframe .wireframe-link.is-soft {
  stroke: rgba(83, 56, 19, 0.1);
}

.hero-wireframe .wireframe-cell {
  fill: rgba(255, 250, 237, 0.76);
  stroke: rgba(204, 137, 20, 0.2);
  stroke-width: 1.25;
}

.hero-wireframe .wireframe-cell.is-soft {
  fill: rgba(255, 250, 237, 0.42);
  stroke: rgba(204, 137, 20, 0.1);
}

.hero-wireframe .wireframe-cell.is-large {
  fill: rgba(255, 251, 241, 0.84);
  stroke: rgba(204, 137, 20, 0.24);
}

.hero-wireframe .wireframe-node {
  fill: #fffdf8;
  stroke: #efb548;
  stroke-width: 4.6;
}

.hero-wireframe .wireframe-node-ring {
  fill: none;
  stroke: rgba(241, 181, 63, 0.42);
  stroke-width: 1.5;
  stroke-dasharray: 7 10;
}

@keyframes orbFloatA {
  0%,
  100% {
    transform:
      translate3d(0, var(--parallax-offset, 0px), 0)
      rotate(var(--parallax-rotate, 0deg))
      scale(calc(var(--orb-scale, 1) * var(--parallax-scale, 1)));
  }
  50% {
    transform:
      translate3d(-8px, calc(var(--parallax-offset, 0px) - 12px), 0)
      rotate(calc(var(--parallax-rotate, 0deg) - 0.5deg))
      scale(calc(var(--orb-scale, 1) * var(--parallax-scale, 1) * 1.02));
  }
}

@keyframes orbFloatB {
  0%,
  100% {
    transform:
      translate3d(0, var(--parallax-offset, 0px), 0)
      rotate(var(--parallax-rotate, 0deg))
      scale(calc(var(--orb-scale, 1) * var(--parallax-scale, 1)));
  }
  50% {
    transform:
      translate3d(10px, calc(var(--parallax-offset, 0px) - 8px), 0)
      rotate(calc(var(--parallax-rotate, 0deg) + 0.4deg))
      scale(calc(var(--orb-scale, 1) * var(--parallax-scale, 1) * 0.99));
  }
}

@keyframes orbFloatC {
  0%,
  100% {
    transform:
      translate3d(0, var(--parallax-offset, 0px), 0)
      rotate(var(--parallax-rotate, 0deg))
      scale(calc(var(--orb-scale, 1) * var(--parallax-scale, 1)));
  }
  50% {
    transform:
      translate3d(-6px, calc(var(--parallax-offset, 0px) - 7px), 0)
      rotate(calc(var(--parallax-rotate, 0deg) - 0.35deg))
      scale(calc(var(--orb-scale, 1) * var(--parallax-scale, 1) * 1.03));
  }
}

@keyframes wireFloat {
  0%,
  100% {
    transform:
      translate3d(0, var(--parallax-offset, 0px), 0)
      rotate(var(--parallax-rotate, 0deg))
      scale(var(--parallax-scale, 1));
  }
  50% {
    transform:
      translate3d(6px, calc(var(--parallax-offset, 0px) - 8px), 0)
      rotate(calc(var(--parallax-rotate, 0deg) + 0.45deg))
      scale(calc(var(--parallax-scale, 1) * 1.015));
  }
}

@keyframes graphicDash {
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes graphicPulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.86;
    transform: scale(1.08);
  }
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy,
.page-hero-copy {
  position: relative;
  z-index: 1;
}

.hero-actions,
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-note {
  margin: 14px 0 0;
  max-width: 48ch;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.56rem 0.84rem;
  border-radius: 999px;
  border: 1px solid rgba(39, 25, 12, 0.09);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-soft);
  font-size: 0.87rem;
  font-weight: 700;
}

.chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
}

.hero-panel,
.page-hero-panel {
  position: relative;
  border: 1px solid rgba(39, 25, 12, 0.08);
  border-radius: var(--radius-l);
  padding: 32px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 40px rgba(29, 22, 15, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-panel::before,
.page-hero-panel::before {
  display: none;
}

.hero-panel-intro h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 2.3vw, 2.15rem);
  line-height: 1.1;
}

.hero-panel-intro p {
  margin: 14px 0 0;
  color: var(--text-soft);
}

.hero-panel .eyebrow {
  margin-bottom: 16px;
}

.path-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.path-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(39, 25, 12, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.path-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: #1d150b;
  font-weight: 800;
}

.path-step strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.path-step p {
  margin: 0;
  color: var(--text-soft);
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.hex-card {
  position: relative;
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(39, 25, 12, 0.08);
  border-radius: 22px;
  background: #fcfbf8;
  box-shadow: none;
}

.hex-card strong,
.metric-card strong,
.service-card h3,
.callout h3,
.contact-card h3,
.pillar-card h3,
.timeline-item h3,
.faq-item summary,
.stat-card strong {
  font-family: "Sora", sans-serif;
}

.hex-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.hex-card p,
.metric-card p,
.service-card p,
.callout p,
.contact-card p,
.timeline-item p,
.pillar-card p,
.stat-card p {
  margin: 0;
  color: var(--text-soft);
}

.hex-card::after {
  display: none;
}

.metric-grid,
.service-grid,
.pillar-grid,
.timeline,
.contact-grid,
.link-grid,
.use-case-grid {
  display: grid;
  gap: 18px;
}

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

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

.metric-card,
.service-card,
.pillar-card,
.timeline-item,
.contact-card,
.callout,
.faq-item,
.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(29, 22, 15, 0.05);
}

.hero-panel,
.page-hero-panel,
.pillar-card,
.metric-card,
.timeline-item,
.callout,
.faq-item,
.cta-panel,
.path-step {
  overflow: hidden;
  isolation: isolate;
}

.hero-panel > *,
.page-hero-panel > *,
.pillar-card > *,
.metric-card > *,
.timeline-item > *,
.callout > *,
.faq-item > *,
.cta-panel > *,
.path-step > * {
  position: relative;
  z-index: 1;
}

.hero-panel::after,
.page-hero-panel::after,
.cta-panel::after {
  content: "";
  position: absolute;
  inset: -24%;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--sheen-x-current, 50%) 46%, rgba(255, 216, 111, 0.16) 0%, rgba(255, 216, 111, 0.06) 18%, rgba(255, 255, 255, 0) 54%);
  opacity: calc(var(--glow-opacity-current, 0) * 0.22 * var(--surface-glow-strength));
  transform: translate3d(0, calc((1 - var(--scroll-progress, 1)) * 12px), 0);
  transition:
    opacity 180ms linear,
    transform 220ms cubic-bezier(0.18, 0.7, 0, 1);
  pointer-events: none;
  z-index: 0;
}

.pillar-card::after,
.metric-card::after,
.timeline-item::after,
.callout::after,
.faq-item::after,
.path-step::after {
  content: "";
  position: absolute;
  inset: -24%;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--sheen-x-current, 50%) 46%, rgba(255, 216, 111, 0.08) 0%, rgba(255, 216, 111, 0.03) 18%, rgba(255, 255, 255, 0) 54%);
  opacity: calc(var(--glow-opacity-current, 0) * 0.12 * var(--surface-glow-strength));
  transform: translate3d(0, calc((1 - var(--scroll-progress, 1)) * 12px), 0);
  transition:
    opacity 180ms linear,
    transform 220ms cubic-bezier(0.18, 0.7, 0, 1);
  pointer-events: none;
  z-index: 0;
}

.metric-card,
.pillar-card,
.timeline-item,
.contact-card,
.stat-card {
  padding: 24px;
}

.metric-card strong,
.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.18rem;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.28rem;
}

.service-card ul,
.check-list,
.bullet-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-card li,
.check-list li,
.bullet-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
}

.service-card li::before,
.check-list li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  transform: translateY(-50%);
}

.service-card .button-link,
.pillar-card .button-link,
.link-card .button-link {
  margin-top: auto;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.split-grid,
.content-grid,
.cta-grid,
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.callout {
  padding: 24px;
}

.callout-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.callout-head .feature-icon {
  margin: 0;
}

.callout h3 {
  margin: 0 0 14px;
  font-size: 1.38rem;
}

.callout-with-icon h3 {
  margin: 0;
}

.callout p + .check-list,
.callout p + .bullet-list {
  margin-top: 18px;
}

.highlight-band {
  padding: 14px 0;
  border-top: 1px solid rgba(39, 25, 12, 0.06);
  border-bottom: 1px solid rgba(39, 25, 12, 0.06);
}

.highlight-track {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.highlight-track .chip {
  background: rgba(255, 255, 255, 0.92);
}

.page-hero {
  position: relative;
  overflow: clip;
  isolation: isolate;
  padding: 48px 0 20px;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  opacity: var(--ambient-strength);
  transition: opacity 220ms ease;
}

.page-hero::before {
  top: 34px;
  right: max(2%, calc((100vw - var(--container)) / 2));
  width: 220px;
  height: 220px;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.34) 18%, rgba(255, 214, 103, 0.24) 44%, rgba(255, 214, 103, 0.05) 70%, rgba(255, 214, 103, 0) 82%);
  box-shadow:
    0 20px 40px rgba(215, 140, 20, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  animation: orbFloatB 15s ease-in-out infinite;
}

.page-hero::after {
  top: 168px;
  right: calc(max(2%, calc((100vw - var(--container)) / 2)) + 150px);
  width: 92px;
  height: 92px;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.28) 22%, rgba(255, 214, 103, 0.2) 48%, rgba(255, 214, 103, 0) 76%);
  animation: orbFloatC 11s ease-in-out infinite;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumb a {
  color: inherit;
}

.breadcrumb span[aria-current="page"] {
  color: var(--text);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}

.stat-row > :last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.stat-card p a {
  font-weight: 800;
  word-break: break-word;
}

.stat-card.is-compact strong {
  margin-bottom: 6px;
}

.stat-card.is-compact p {
  max-width: 38ch;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  position: relative;
  padding: 20px 56px 20px 20px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  font-size: 1.5rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform var(--transition);
}

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

.faq-item .faq-body {
  padding: 0 24px 24px;
}

.faq-item p,
.faq-item ul {
  margin: 0;
  color: var(--text-soft);
}

.faq-item ul {
  margin-top: 14px;
}

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

.timeline-item {
  position: relative;
  padding-top: 72px;
}

.timeline-item::before {
  content: attr(data-step);
  position: absolute;
  left: 26px;
  top: 24px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: #1d150b;
  font-weight: 800;
}

.timeline-item h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

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

.contact-card h3,
.pillar-card h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
}

.contact-card a {
  color: var(--text);
  font-weight: 800;
}

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

.link-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(29, 22, 15, 0.05);
}

.link-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.link-card p {
  margin: 0;
  color: var(--text-soft);
}

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

.use-case {
  padding: 24px;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.use-case h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.16rem;
}

.cta-panel {
  position: relative;
  overflow: clip;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, 0.04);
}

.cta-panel h2,
.cta-panel h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.cta-panel p {
  margin: 14px 0 0;
  max-width: 58ch;
}

.cta-panel .hero-actions {
  margin-top: 24px;
}

.note {
  font-size: 0.96rem;
  color: var(--text-soft);
}

.footer {
  padding: 36px 0 22px;
  background: #17110c;
  color: rgba(255, 250, 243, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.85fr;
  gap: 28px;
  padding-bottom: 28px;
}

.footer-brand img {
  width: clamp(148px, 22vw, 214px);
}

.footer h3 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
  color: var(--text-inverse);
}

.footer p,
.footer li,
.footer a {
  color: rgba(255, 250, 243, 0.82);
}

.footer ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

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

.page-anchor-offset {
  scroll-margin-top: calc(var(--nav-height) + var(--header-gap) + 8px);
}

[data-reveal] {
  --scroll-progress: 0;
  --drift-x-current: 0px;
  --drift-y-current: 0px;
  --depth-current: 0px;
  --scale-current: 1;
  --icon-offset-current: 0px;
  --icon-scale-current: 1;
  --rotate-x-current: 0deg;
  --rotate-y-current: 0deg;
  --rotate-z-current: 0deg;
  --glow-opacity-current: 0;
  --sheen-x-current: 50%;
  will-change: transform;
  transform-origin: 50% 50%;
}

.js-enabled.motion-ready [data-reveal] {
  opacity: 1;
  transform:
    perspective(1800px)
    translate3d(var(--drift-x-current), var(--drift-y-current), 0)
    translateZ(var(--depth-current))
    rotateX(var(--rotate-x-current))
    rotateY(var(--rotate-y-current))
    rotateZ(var(--rotate-z-current))
    scale(var(--scale-current));
  filter: none;
  transition:
    transform 320ms cubic-bezier(0.18, 0.7, 0, 1);
  transition-delay: var(--enter-delay, 0s);
}

.js-enabled.motion-ready [data-reveal] .feature-icon {
  transform:
    translate3d(0, var(--icon-offset-current), 0)
    rotate(calc(var(--rotate-y-current) * -0.26))
    scale(var(--icon-scale-current));
  transition: transform 260ms cubic-bezier(0.18, 0.7, 0, 1);
}

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

@media (max-width: 1040px) {
  .section-graphic {
    left: -20px;
    right: -20px;
  }

  .section-graphic-services {
    top: 164px;
  }

  .section-graphic-process {
    top: 146px;
  }

  .hero-grid,
  .page-hero-grid {
    gap: 34px;
    align-items: start;
  }

  .home-page .hero::before {
    background-position: center center, center center, 64% 34%;
  }

  .home-page .hero-grid {
    min-height: clamp(460px, 60vh, 620px);
  }

  .home-page .hero-copy {
    max-width: min(100%, 640px);
  }

  .hero-wireframe {
    right: 0;
    width: min(58vw, 420px);
  }

  .hero-orb-a {
    right: -6%;
    width: 280px;
    height: 280px;
  }

  .hero-orb-b {
    right: 18%;
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .content-grid,
  .cta-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .metric-grid,
  .pillar-grid,
  .link-grid,
  .timeline,
  .contact-grid,
  .stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 820px) {
  :root {
    --nav-height: 70px;
    --header-gap: 12px;
    --brand-mark-size: 58px;
    --brand-row-height: 58px;
    --brand-text-size: 1.24rem;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 8px;
    min-height: 0;
    padding: 4px 12px;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    align-self: center;
    justify-self: start;
    gap: 14px;
    flex: 0 1 auto;
    min-width: 0;
    height: var(--brand-row-height);
  }

  .brand img {
    width: var(--brand-mark-size);
    flex: 0 0 auto;
    align-self: center;
  }

  .brand-text {
    display: flex;
    align-items: center;
    align-self: center;
    height: var(--brand-row-height);
    font-size: var(--brand-text-size);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    transform: translateY(-1px);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    align-self: center;
    justify-self: end;
    gap: 8px;
    height: var(--brand-row-height);
    margin-left: 0;
    flex: 0 0 auto;
  }

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

  .nav-phone {
    min-width: 0;
    padding: 0.62rem 0.74rem;
    border-radius: 14px;
  }

  .nav-phone span {
    display: none;
  }

  .nav-phone strong {
    font-size: 0.88rem;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    position: relative;
    flex: 1 0 100%;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 2px;
    margin: 0;
    border: 0;
    border-top: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      max-height 340ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity var(--transition),
      transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
      margin-top 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
      padding-top 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
      border-color 220ms ease;
    z-index: 1;
  }

  .nav-active-pill {
    border-radius: 20px;
    box-shadow:
      0 10px 18px rgba(215, 140, 20, 0.14),
      inset 0 1px 0 rgba(255, 250, 236, 0.92);
  }

  .site-nav a {
    width: 100%;
    padding: 1rem 1.05rem;
    font-size: 1.04rem;
    border-radius: 20px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="location"],
  .site-nav a[aria-current="page"] {
    color: #1d150b;
    background: transparent;
    box-shadow: none;
  }

  body.nav-open .nav-shell {
    padding-bottom: 14px;
    border-radius: 28px;
    border-color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 252, 245, 0.7) 100%);
    box-shadow:
      0 28px 56px rgba(29, 22, 15, 0.14),
      0 10px 22px rgba(255, 214, 103, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  body.nav-open .site-nav {
    max-height: min(520px, calc(100svh - 118px));
    margin-top: 10px;
    padding-top: 12px;
    border-top-color: rgba(255, 255, 255, 0.66);
    overflow: auto;
    overscroll-behavior: contain;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open .site-nav .nav-active-pill {
    background: linear-gradient(135deg, #ffeaa6 0%, #ffd96c 48%, #efb548 100%);
    box-shadow:
      0 12px 20px rgba(215, 140, 20, 0.16),
      inset 0 1px 0 rgba(255, 251, 240, 0.94);
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 26px;
  }

  .home-page .hero {
    --home-hero-base-pad-top: 30px;
    --home-hero-base-pad-bottom: 30px;
  }

  .home-page .hero::before {
    background-position: center center, center center, 60% 36%;
  }

  .home-page .hero-grid {
    min-height: 0;
  }

  .home-page .hero-copy {
    padding: 0;
    border-radius: 0;
  }

  .hero-atmosphere,
  .section-graphic {
    display: none;
  }

  .hero-grid,
  .page-hero-grid {
    gap: 18px;
  }

  .hero-copy,
  .page-hero-copy {
    max-width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 10ch;
    font-size: clamp(2.45rem, 10vw, 3.6rem);
  }

  .section-intro {
    margin-bottom: 20px;
  }

  .section-title {
    font-size: clamp(1.85rem, 7.4vw, 2.35rem);
  }

  .hero .lead,
  .page-hero .lead {
    font-size: 1rem;
    max-width: 34ch;
  }

  .hero-panel,
  .page-hero-panel {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 248, 236, 0.94) 100%);
    box-shadow:
      0 16px 30px rgba(29, 22, 15, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .hero-note {
    max-width: none;
    font-size: 0.92rem;
  }

  .path-list {
    gap: 12px;
    margin-top: 20px;
  }

  .path-step {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 14px;
  }

  .path-number {
    width: 30px;
    height: 30px;
    font-size: 0.88rem;
  }

  .path-step strong {
    margin-bottom: 4px;
    font-size: 0.96rem;
  }

  .path-step p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .path-step,
  .pillar-card,
  .metric-card,
  .timeline-item,
  .callout,
  .faq-item,
  .cta-panel {
    border-radius: 22px;
  }

  .pillar-grid,
  .metric-grid,
  .timeline,
  .split-grid,
  .faq-list {
    gap: 14px;
  }

  .pillar-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 8px 12px;
    align-items: start;
  }

  .pillar-card .feature-icon {
    grid-row: 1 / span 3;
    margin: 0;
    width: 44px;
    height: 44px;
  }

  .pillar-card h3,
  .pillar-card p,
  .pillar-card .button-link {
    grid-column: 2;
    margin: 0;
  }

  .pillar-card h3 {
    font-size: 1.02rem;
  }

  .pillar-card p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .pillar-card .bullet-list {
    display: none;
  }

  .pillar-card .button-link {
    margin-top: 2px;
  }

  .metric-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 8px 12px;
    align-items: start;
  }

  .metric-card .feature-icon {
    grid-row: 1 / span 2;
    margin: 0;
    width: 44px;
    height: 44px;
  }

  .metric-card strong,
  .metric-card p {
    grid-column: 2;
    margin: 0;
  }

  .metric-card strong {
    font-size: 1.02rem;
  }

  .metric-card p,
  .callout li,
  .timeline-item p,
  .faq-item p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .timeline-item {
    padding: 16px 16px 16px 58px;
  }

  .timeline-item::before {
    left: 16px;
    top: 16px;
    width: 30px;
    height: 30px;
  }

  .timeline-item h3 {
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .callout {
    padding: 18px;
  }

  .callout h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
  }

  .page-hero::before {
    width: 180px;
    height: 180px;
    top: 42px;
    right: -18px;
  }

  .page-hero::after {
    width: 74px;
    height: 74px;
    top: 154px;
    right: 44px;
  }
}

@media (max-width: 680px) {
  :root {
    --brand-mark-size: 54px;
    --brand-row-height: 54px;
    --brand-text-size: 1.14rem;
  }

  .section,
  .hero,
  .page-hero {
    padding: 42px 0;
  }

  .container,
  .container-tight {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    top: 10px;
  }

  .nav-shell {
    column-gap: 10px;
    row-gap: 8px;
    min-height: 0;
    padding: 4px 10px;
    border-radius: 20px;
  }

  .brand {
    gap: 12px;
  }

  .brand img {
    width: var(--brand-mark-size);
  }

  .brand-text {
    font-size: var(--brand-text-size);
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-phone {
    display: none;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  body.nav-open .site-nav {
    max-height: min(480px, calc(100svh - 108px));
    margin-top: 8px;
    padding-top: 12px;
  }

  .hero-panel,
  .page-hero-panel,
  .cta-panel,
  .service-card,
  .callout,
  .metric-card,
  .pillar-card,
  .timeline-item,
  .contact-card,
  .stat-card {
    padding: 20px;
  }

  .hero-panel-grid,
  .service-grid,
  .metric-grid,
  .pillar-grid,
  .link-grid,
  .timeline,
  .contact-grid,
  .stat-row,
  .use-case-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .home-page .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.95fr);
    align-items: stretch;
    gap: 10px;
  }

  .home-page .hero-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding-inline: 0.9rem;
    font-size: 0.9rem;
    text-align: center;
  }

  .hero-grid,
  .page-hero-grid {
    gap: 16px;
  }

  .home-page .hero-grid {
    gap: 26px;
  }

  .home-page .hero::before {
    background-position: center center, center center, 58% center;
  }

  .callout-head {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }

  .lead,
  .page-hero .lead {
    max-width: none;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 9ch;
    font-size: clamp(2.2rem, 12vw, 3.05rem);
  }

  .section-title {
    font-size: clamp(1.7rem, 8vw, 2rem);
  }

  .button {
    width: 100%;
  }

  .hero-panel,
  .page-hero-panel,
  .cta-panel,
  .service-card,
  .callout,
  .metric-card,
  .pillar-card,
  .timeline-item,
  .contact-card,
  .stat-card,
  .path-step {
    padding: 18px;
    border-radius: 20px;
  }

  .page-hero::before {
    width: 150px;
    height: 150px;
    top: 30px;
    right: -34px;
  }

  .page-hero::after {
    width: 56px;
    height: 56px;
    top: 126px;
    right: 36px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .home-page .lead-desktop-copy {
    display: none;
  }

  .home-page .lead-mobile-copy {
    display: block;
  }

  .home-page .hero .lead {
    max-width: 24ch;
    font-size: 1rem;
  }

  .home-page .hero-copy {
    margin-bottom: 4px;
  }

  .home-page .hero-note,
  .home-page .hero-panel-intro p,
  .home-page #servizi .section-intro p,
  .home-page .section.section-dark .section-intro p,
  .home-page #processo .section-intro p,
  .home-page #faq .section-intro p {
    display: none;
  }

  .home-page .hero-panel-intro h2 {
    font-size: 1.34rem;
  }

  .home-page .path-list {
    margin-top: 16px;
    gap: 10px;
  }

  .home-page .path-step {
    padding: 12px;
  }

  .home-page .path-step p {
    display: none;
  }

  .home-page .pillar-card p,
  .home-page .metric-card p,
  .home-page .timeline-item p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-page .callout .check-list li:nth-child(n + 3) {
    display: none;
  }

  .home-page .callout {
    padding: 16px;
  }

  .home-page .callout h3,
  .home-page .faq-item summary {
    font-size: 1rem;
  }

  .home-page .metric-grid,
  .home-page .pillar-grid,
  .home-page .timeline,
  .home-page .split-grid,
  .home-page .faq-list {
    gap: 12px;
  }

  .pillar-card,
  .metric-card {
    grid-template-columns: 40px 1fr;
    gap: 8px 10px;
  }

  .pillar-card .feature-icon,
  .metric-card .feature-icon {
    width: 40px;
    height: 40px;
  }

  .timeline-item {
    padding-top: 62px;
  }

  .timeline-item::before {
    left: 20px;
    top: 18px;
  }

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

  .chip-row,
  .highlight-track {
    gap: 10px;
  }

  .chip {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  :root {
    --brand-mark-size: 50px;
    --brand-row-height: 50px;
    --brand-text-size: 1.02rem;
  }

  .nav-shell {
    column-gap: 8px;
    gap: 6px;
    padding: 4px 8px;
  }

  .brand img {
    width: var(--brand-mark-size);
  }

  .brand-text {
    font-size: var(--brand-text-size);
  }

  .home-page .hero-actions {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.92fr);
    gap: 8px;
  }

  .home-page .hero-actions .button {
    padding-inline: 0.72rem;
    font-size: 0.84rem;
  }

  .nav-phone {
    padding: 0.46rem 0.52rem;
  }

  .nav-phone strong {
    font-size: 0.72rem;
  }

  .site-nav a {
    padding: 0.8rem 0.88rem;
  }
}

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

  .hero-wireframe .wireframe-highlight.is-dash,
  .hero-wireframe .wireframe-node-ring,
  .nav-active-pill,
  .section-graphic .graphic-track-dash,
  .section-graphic .service-node-ring,
  .section-graphic .process-curve-dash,
  .section-graphic .process-beacon-ring,
  .hero-orb,
  .hero-wireframe,
  .js-enabled.motion-ready [data-reveal] {
    animation: none;
    transition: none;
    transform: none;
    filter: none;
    opacity: 1;
  }
}
