:root {
  --ink: #141414;
  --muted: #635f58;
  --line: #eadbd0;
  --paper: #fff8ef;
  --soft: #f7ede3;
  --panel: #ffffff;
  --orange: #f26700;
  --orange-dark: #c94f00;
  --teal: #0f766e;
  --blue: #2563eb;
  --shadow: 0 24px 72px rgba(67, 42, 20, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(242, 103, 0, 0.16), transparent 30rem),
    radial-gradient(circle at 92% 18%, rgba(15, 118, 110, 0.12), transparent 28rem),
    linear-gradient(180deg, #fffdf9 0%, var(--paper) 42%, #fff 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(234, 219, 208, 0.9);
  background: rgba(255, 248, 239, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  line-height: 1;
}

.brand-mark {
  font-size: 1.5rem;
  font-weight: 900;
}

.brand-mark span,
.eyebrow {
  color: var(--orange);
}

.brand-line {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 1.25rem;
  color: #48433d;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav a:hover,
.nav-cta:hover {
  color: var(--orange-dark);
}

.nav-cta {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(242, 103, 0, 0.35);
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(242, 103, 0, 0.12);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.lang-switch a {
  display: inline-grid;
  place-items: center;
  min-width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.lang-switch a.active {
  color: #fff;
  background: var(--orange);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(22rem, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(100vh - 5rem);
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem) 2.5rem;
}

.eyebrow {
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.2rem;
  font-size: clamp(4rem, 9vw, 8.2rem);
  line-height: 0.9;
  font-weight: 900;
}

.hero-lede {
  max-width: 47rem;
  color: #45413b;
  font-size: clamp(1.04rem, 1.8vw, 1.32rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.3rem;
}

.hero-proof span {
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(242, 103, 0, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #3f372f;
  font-size: 0.86rem;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  font-weight: 900;
}

.button.primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 18px 42px rgba(242, 103, 0, 0.28);
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
}

.command-center {
  position: relative;
  min-height: 34rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 235, 0.92)),
    linear-gradient(90deg, transparent 0 49%, rgba(242, 103, 0, 0.12) 49% 50%, transparent 50%),
    linear-gradient(0deg, transparent 0 49%, rgba(15, 118, 110, 0.12) 49% 50%, transparent 50%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.command-center::before,
.command-center::after {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px dashed rgba(242, 103, 0, 0.32);
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}

.command-center::after {
  inset: 25%;
  border-color: rgba(15, 118, 110, 0.34);
  animation-duration: 12s;
  animation-direction: reverse;
}

.pulse-core {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 13rem;
  height: 13rem;
  translate: -50% -50%;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  background: linear-gradient(145deg, #121212, #3a281c);
  box-shadow: 0 24px 70px rgba(20, 20, 20, 0.26);
}

.pulse-core::before {
  content: "";
  position: absolute;
  inset: -3.5rem;
  background: conic-gradient(from 0deg, transparent, rgba(242, 103, 0, 0.22), transparent 26%);
  animation: rotate 7s linear infinite;
}

.pulse-core span,
.pulse-core strong,
.pulse-core small {
  position: relative;
}

.pulse-core span {
  color: var(--orange);
  font-size: 2.9rem;
  font-weight: 900;
}

.pulse-core strong {
  max-width: 8rem;
  font-size: 1.05rem;
  font-weight: 900;
}

.pulse-core small {
  max-width: 9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.work-card {
  position: absolute;
  z-index: 3;
  min-width: 12rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(242, 103, 0, 0.22);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(72, 43, 14, 0.12);
}

.work-card strong,
.work-card span {
  display: block;
}

.work-card strong {
  margin-bottom: 0.3rem;
}

.work-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.card-a {
  left: 9%;
  top: 16%;
}

.card-b {
  right: 8%;
  top: 28%;
}

.card-c {
  left: 17%;
  bottom: 17%;
}

.signal-bar {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.signal-bar span {
  padding: 0.8rem;
  border-radius: 0.75rem;
  background: #fff;
  color: var(--orange-dark);
  text-align: center;
  font-weight: 900;
}

.bento-grid,
.segment-grid,
.role-grid,
.timeline,
.chaos-strip,
.comparison,
.package-grid {
  display: grid;
  gap: 1rem;
}

.bento-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding: 2rem clamp(1rem, 4vw, 4rem);
}

.card,
.chaos-strip article,
.comparison article,
.segment-grid article,
.role-card,
.timeline article,
.packages,
.package-grid article,
.operating-system,
.metrics,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 48px rgba(67, 42, 20, 0.08);
}

.card {
  padding: clamp(1.15rem, 2.5vw, 2rem);
}

.thesis {
  grid-column: span 7;
  min-height: 24rem;
}

.thesis h2,
.segments h2,
.roles h2,
.delivery h2,
.operating-system h2,
.metrics h2,
.final-cta h2 {
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 0.98;
  font-weight: 900;
}

.thesis p,
.pain-card p,
.segment-grid p,
.role-card p,
.timeline p,
.operating-system p,
.final-cta p {
  color: var(--muted);
  line-height: 1.65;
}

.number-card {
  grid-column: span 5;
  background: linear-gradient(155deg, var(--orange), #ff8a1d);
  color: #fff;
}

.number-card.dark {
  background: linear-gradient(145deg, #141414, #3a281c);
}

.metric {
  display: block;
  font-size: clamp(4.5rem, 11vw, 7.4rem);
  line-height: 0.86;
  font-weight: 900;
}

.number-card p {
  max-width: 25rem;
  margin: 1rem 0 0;
  font-weight: 850;
  line-height: 1.45;
}

.pain-card {
  grid-column: span 12;
}

.daily-chaos,
.segments,
.roles,
.delivery,
.before-after,
.packages,
.metrics {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.section-heading {
  max-width: 62rem;
  margin-bottom: 1.55rem;
}

.daily-chaos {
  padding-top: 1.5rem;
}

.chaos-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.chaos-strip article {
  min-height: 12.5rem;
  padding: 1.1rem;
  background: #fff;
}

.chaos-strip span,
.package-name {
  display: inline-flex;
  margin-bottom: 1.35rem;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chaos-strip h3 {
  font-size: 1.22rem;
  line-height: 1.18;
}

.before-after {
  padding-top: 2rem;
}

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

.comparison article {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.comparison .before {
  background: linear-gradient(145deg, #fff, #fff7ef);
}

.comparison .after {
  color: #fff;
  background: linear-gradient(145deg, #141414, #302217);
}

.comparison h3 {
  max-width: 34rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.comparison ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.comparison li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.55;
}

.comparison .after li {
  color: rgba(255, 255, 255, 0.76);
}

.comparison li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--orange);
}

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

.segment-grid article {
  grid-column: span 2;
  min-height: 17rem;
  padding: 1.2rem;
}

.segment-grid span,
.role-code {
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.segment-grid h3 {
  font-size: 1.12rem;
  line-height: 1.28;
}

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

.role-card {
  padding: 1.35rem;
  background: #fff;
}

.role-card h3 {
  font-size: 1.6rem;
  line-height: 1.05;
}

.role-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--teal);
  line-height: 1.45;
}

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

.timeline article {
  padding: 1.2rem;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 2rem;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.timeline h3 {
  font-size: 1.24rem;
  line-height: 1.12;
}

.operating-system {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.65fr);
  gap: 2rem;
  margin: 0 clamp(1rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem);
  padding: clamp(1.3rem, 4vw, 3rem);
  color: #fff;
  background: linear-gradient(135deg, #141414, #3a281c);
}

.packages {
  margin: 0 clamp(1rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem);
  padding: clamp(1.3rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.08), transparent 20rem),
    rgba(255, 255, 255, 0.88);
}

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

.package-grid article {
  padding: 1.25rem;
  background: #fff;
}

.package-grid .featured {
  border-color: rgba(242, 103, 0, 0.42);
  box-shadow: 0 22px 60px rgba(242, 103, 0, 0.13);
}

.package-grid h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.9;
  font-weight: 900;
}

.package-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.package-grid strong {
  display: block;
  margin-top: 1.2rem;
  color: var(--teal);
}

.package-note {
  max-width: 52rem;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.operating-system p {
  color: rgba(255, 255, 255, 0.74);
}

.asset-stack {
  display: grid;
  gap: 0.8rem;
}

.asset-stack div {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
}

.asset-stack strong,
.asset-stack span {
  display: block;
}

.asset-stack strong {
  margin-bottom: 0.35rem;
  color: #ff8a1d;
  font-size: 2.3rem;
  font-weight: 900;
}

.asset-stack span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.metrics {
  background: transparent;
  box-shadow: none;
  border: 0;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.metric-strip span {
  min-height: 6rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #fff;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(67, 42, 20, 0.07);
}

.final-cta {
  margin: 0 clamp(1rem, 4vw, 4rem) 4rem;
  padding: clamp(2rem, 6vw, 5rem);
  text-align: center;
}

.final-cta h2 {
  max-width: 13ch;
  margin-right: auto;
  margin-left: auto;
}

.final-cta p {
  max-width: 43rem;
  margin-right: auto;
  margin-left: auto;
}

.solution-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(100vh - 5rem);
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem) 2.5rem;
}

.solution-hero h1 {
  max-width: 10.5ch;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

.project-console {
  position: relative;
  min-height: 36rem;
  padding: 1rem;
  border: 1px solid rgba(242, 103, 0, 0.22);
  border-radius: 1.2rem;
  color: #fff;
  background:
    radial-gradient(circle at 50% 42%, rgba(242, 103, 0, 0.24), transparent 18rem),
    radial-gradient(circle at 86% 15%, rgba(37, 99, 235, 0.2), transparent 16rem),
    linear-gradient(145deg, #111111, #2b2018 72%, #151515);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.project-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.08) 49% 50%, transparent 51%),
    repeating-linear-gradient(0deg, transparent 0 2.5rem, rgba(255, 255, 255, 0.04) 2.5rem 2.56rem);
  opacity: 0.72;
}

.project-console::after {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-18deg);
  animation: scan 5.5s ease-in-out infinite;
}

.console-top,
.console-orbit,
.console-feed {
  position: relative;
  z-index: 2;
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.07);
}

.console-top span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.console-top strong {
  color: #ff8a1d;
  font-size: 0.9rem;
}

.console-orbit {
  position: relative;
  height: 27rem;
}

.console-orbit::before,
.console-orbit::after {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px dashed rgba(255, 138, 29, 0.38);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.console-orbit::after {
  inset: 25%;
  border-color: rgba(37, 99, 235, 0.36);
  animation-duration: 13s;
  animation-direction: reverse;
}

.console-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 11.5rem;
  height: 11.5rem;
  translate: -50% -50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  text-align: center;
  background: rgba(20, 20, 20, 0.82);
  box-shadow: 0 0 60px rgba(242, 103, 0, 0.22);
}

.console-core span {
  color: var(--orange);
  font-size: 3rem;
  font-weight: 900;
}

.console-core strong {
  max-width: 7rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.35;
}

.console-node {
  position: absolute;
  z-index: 4;
  width: min(14rem, 44%);
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.console-node span {
  display: block;
  margin-bottom: 0.35rem;
  color: #ff8a1d;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.console-node strong {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  line-height: 1.32;
}

.node-1 {
  left: 2%;
  top: 14%;
}

.node-2 {
  right: 2%;
  top: 20%;
}

.node-3 {
  left: 7%;
  bottom: 13%;
}

.node-4 {
  right: 5%;
  bottom: 8%;
}

.console-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.console-feed span {
  padding: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
}

.staff-main,
.task-list div,
.launch-grid article,
.kpi-grid span {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(67, 42, 20, 0.07);
}

.launch-grid span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.problem-band {
  margin: 0 clamp(1rem, 4vw, 4rem) clamp(3rem, 5vw, 4rem);
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #141414, #3a281c);
  box-shadow: var(--shadow);
}

.problem-band p {
  max-width: 68rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.25rem, 2.6vw, 2.1rem);
  line-height: 1.45;
  font-weight: 750;
}

.staff-profile,
.launch-plan,
.kpi-section,
.workflow-section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.staff-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  gap: 1rem;
}

.staff-main,
.task-list div {
  padding: clamp(1.15rem, 2.5vw, 2rem);
}

.staff-main {
  display: grid;
  min-height: 25rem;
  align-content: space-between;
}

.staff-main h3 {
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.staff-main p {
  color: var(--muted);
  line-height: 1.68;
}

.task-list {
  display: grid;
  gap: 0.75rem;
}

.task-list div {
  display: flex;
  align-items: center;
  color: #372f29;
  font-weight: 900;
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.launch-grid article {
  grid-column: span 4;
  min-height: 13.5rem;
  padding: 1.1rem;
}

.launch-grid article:nth-child(1),
.launch-grid article:nth-child(6) {
  grid-column: span 6;
  background: linear-gradient(145deg, #fff, #fff4e9);
}

.launch-grid h3 {
  font-size: 1.08rem;
  line-height: 1.24;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 0.75rem;
}

.kpi-grid span {
  grid-column: span 2;
  display: grid;
  place-items: center;
  min-height: 5.4rem;
  padding: 0.9rem;
  text-align: center;
  color: #332a23;
  font-weight: 900;
}

.kpi-grid span:nth-child(1),
.kpi-grid span:nth-child(2),
.kpi-grid span:nth-child(8) {
  grid-column: span 3;
  color: #fff;
  background: linear-gradient(145deg, #141414, #342519);
}

.kpi-grid span:nth-child(3),
.kpi-grid span:nth-child(10) {
  grid-column: span 4;
  background: linear-gradient(145deg, #fff, #fff3e7);
}

.workflow-section {
  padding-top: 2rem;
}

.audit-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 0.8fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: calc(100vh - 5rem);
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.audit-copy h1 {
  max-width: 10ch;
}

.audit-steps {
  display: grid;
  gap: 0.7rem;
  max-width: 28rem;
  margin-top: 1.5rem;
}

.audit-steps span {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.85);
  color: #342c25;
  font-weight: 900;
  box-shadow: 0 14px 38px rgba(67, 42, 20, 0.07);
}

.audit-form {
  display: grid;
  gap: 0.95rem;
  padding: clamp(1.15rem, 3vw, 2rem);
  border: 1px solid rgba(242, 103, 0, 0.24);
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at 90% 0%, rgba(242, 103, 0, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.audit-form label {
  display: grid;
  gap: 0.42rem;
  color: #342c25;
  font-size: 0.88rem;
  font-weight: 900;
}

.audit-form input,
.audit-form select,
.audit-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.72rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0.9rem 0.95rem;
  outline: none;
}

.audit-form input:focus,
.audit-form select:focus,
.audit-form textarea:focus {
  border-color: rgba(242, 103, 0, 0.65);
  box-shadow: 0 0 0 4px rgba(242, 103, 0, 0.1);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  min-height: 3.25rem;
  padding: 0.72rem 1rem 0.72rem 0.72rem;
  border-radius: 999px;
  color: #fff;
  background: #18a756;
  box-shadow: 0 18px 45px rgba(24, 167, 86, 0.32);
  font-weight: 900;
}

.whatsapp-float span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
}

.whatsapp-float strong {
  font-size: 0.92rem;
}

@keyframes rotate {
  to {
    rotate: 360deg;
  }
}

@keyframes scan {
  0%,
  35% {
    translate: 0 0;
    opacity: 0;
  }

  55% {
    opacity: 1;
  }

  100% {
    translate: 360% 0;
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  .chaos-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .launch-grid,
  .kpi-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .launch-grid article,
  .launch-grid article:nth-child(1),
  .launch-grid article:nth-child(6),
  .kpi-grid span,
  .kpi-grid span:nth-child(1),
  .kpi-grid span:nth-child(2),
  .kpi-grid span:nth-child(3),
  .kpi-grid span:nth-child(8),
  .kpi-grid span:nth-child(10) {
    grid-column: span 3;
  }

  .segment-grid article {
    grid-column: span 5;
  }

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

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

  .hero,
  .solution-hero,
  .audit-page,
  .operating-system,
  .staff-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .thesis,
  .number-card,
  .pain-card {
    grid-column: span 12;
  }

  .role-grid,
  .comparison,
  .package-grid,
  .timeline,
  .launch-grid,
  .kpi-grid,
  .metric-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-cta {
    display: none;
  }

  .lang-switch {
    margin-left: auto;
  }

  h1 {
    font-size: 3.55rem;
  }

  .solution-hero h1 {
    font-size: 3.05rem;
  }

  .command-center {
    min-height: 31rem;
  }

  .project-console {
    min-height: 35rem;
  }

  .console-orbit {
    height: 27rem;
  }

  .console-core {
    width: 9.2rem;
    height: 9.2rem;
  }

  .console-node {
    width: 10.4rem;
  }

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

  .pulse-core {
    width: 10.5rem;
    height: 10.5rem;
  }

  .work-card {
    min-width: 10rem;
  }

  .card-a {
    left: 5%;
    top: 10%;
  }

  .card-b {
    right: 5%;
    top: 30%;
  }

  .card-c {
    left: 9%;
    bottom: 19%;
  }

  .chaos-strip,
  .segment-grid,
  .comparison,
  .role-grid,
  .package-grid,
  .timeline,
  .launch-grid,
  .kpi-grid,
  .metric-strip,
  .signal-bar {
    grid-template-columns: 1fr;
  }

  .segment-grid article {
    grid-column: span 10;
    min-height: auto;
  }

  .launch-grid article,
  .launch-grid article:nth-child(1),
  .launch-grid article:nth-child(6),
  .kpi-grid span,
  .kpi-grid span:nth-child(1),
  .kpi-grid span:nth-child(2),
  .kpi-grid span:nth-child(3),
  .kpi-grid span:nth-child(8),
  .kpi-grid span:nth-child(10) {
    grid-column: span 1;
  }
}
