:root {
  --bg: #f2ede5;
  --bg-deep: #171513;
  --bg-deeper: #0f0d0b;
  --bg-panel: rgba(255, 250, 243, 0.78);
  --bg-panel-strong: #fffaf3;
  --bg-panel-dark: rgba(23, 21, 19, 0.9);
  --text: #24211c;
  --text-strong: #161311;
  --text-muted: #5d5951;
  --text-light: rgba(236, 227, 214, 0.84);
  --line: rgba(29, 25, 22, 0.12);
  --line-strong: rgba(117, 95, 74, 0.18);
  --primary: #b56a3a;
  --primary-strong: #8c4f28;
  --primary-soft: rgba(181, 106, 58, 0.12);
  --shadow-soft: 0 20px 60px rgba(34, 25, 18, 0.1);
  --shadow-strong: 0 32px 90px rgba(20, 15, 11, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --nav-width: min(1120px, calc(100vw - 4rem));
  --content-width: min(980px, calc(100vw - 4rem));
  --copy-width: 720px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(181, 106, 58, 0.12), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(37, 40, 45, 0.08), transparent 20%),
    linear-gradient(180deg, #f7f3ec 0%, #efe8de 42%, #f4eee7 100%);
}

.page-motion {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
}

.page-motion-blob,
.page-motion-scan,
.page-motion-spot {
  position: absolute;
  will-change: transform, opacity;
}

.page-motion-blob {
  border-radius: 999px;
  filter: blur(56px);
  opacity: 1;
}

.page-motion-blob-one {
  top: 12vh;
  left: -12vw;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(191, 125, 81, 0.34) 0%, rgba(191, 125, 81, 0.14) 42%, transparent 74%);
  animation: driftBlobOne 28s ease-in-out infinite;
}

.page-motion-blob-two {
  top: 48vh;
  right: -14vw;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(103, 120, 143, 0.24) 0%, rgba(103, 120, 143, 0.1) 42%, transparent 74%);
  animation: driftBlobTwo 34s ease-in-out infinite;
}

.page-motion-blob-three {
  bottom: -8vh;
  left: 32vw;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(216, 152, 102, 0.18) 0%, rgba(216, 152, 102, 0.08) 46%, transparent 74%);
  animation: driftBlobThree 30s ease-in-out infinite;
}

.page-motion-scan {
  top: -18vh;
  left: -20vw;
  width: 30vw;
  height: 140vh;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 18%,
    rgba(255, 255, 255, 0.22) 46%,
    rgba(181, 106, 58, 0.38) 50%,
    rgba(255, 255, 255, 0.18) 54%,
    rgba(255, 255, 255, 0.04) 82%,
    transparent 100%
  );
  filter: blur(8px);
  opacity: 0.72;
  transform: rotate(12deg);
  animation: scanTraverse 11s linear infinite;
}

.page-motion-spot {
  top: 16vh;
  left: 8vw;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(216, 152, 102, 0.24) 30%, transparent 70%);
  filter: blur(12px);
  opacity: 0.8;
  animation: spotFloat 13s ease-in-out infinite;
}

.logo-intro {
  position: fixed;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  background: #050505;
  opacity: 0;
  pointer-events: none;
  animation: introFade 2.3s ease forwards;
}

.logo-intro-mark {
  position: relative;
  display: block;
  width: min(76vw, 28rem);
  height: auto;
  transform-origin: center;
  animation: introMark 2.3s ease forwards;
  filter: none;
}

.logo-intro-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.site-shell {
  position: relative;
  z-index: 1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.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;
}

.site-shell {
  position: relative;
  overflow: clip;
}

[data-reveal] {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
  will-change: opacity, transform;
}

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

.section-shell {
  width: var(--content-width);
  margin: 0 auto;
}

.section-spacing {
  padding: 5.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 236, 0.78);
  border-bottom: 1px solid rgba(36, 33, 28, 0.08);
}

.nav-shell {
  position: relative;
  width: var(--nav-width);
  margin: 0 auto;
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-wordmark,
.footer-brand span {
  font-family: "Archivo", sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-strong);
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary-strong);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.nav-toggle-bar {
  width: 1.05rem;
  height: 2px;
  background: var(--text-strong);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #c17b49 0%, var(--primary-strong) 100%);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 40px rgba(140, 79, 40, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(140, 79, 40, 0.28);
}

.button:disabled {
  cursor: wait;
  opacity: 0.8;
  transform: none;
}

.button-small {
  min-height: 2.75rem;
  padding-inline: 1.1rem;
}

.button-secondary {
  background: rgba(255, 250, 243, 0.9);
  color: var(--text-strong);
  box-shadow: inset 0 0 0 1px rgba(29, 25, 22, 0.08), var(--shadow-soft);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(29, 25, 22, 0.08), 0 16px 40px rgba(34, 25, 18, 0.14);
}

.hero-section {
  position: relative;
  padding: 4rem 0 2rem;
  isolation: isolate;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  overflow: clip;
  pointer-events: none;
}

.hero-ambient::before {
  content: "";
  position: absolute;
  inset: 1rem 1.5rem auto;
  height: min(42rem, 82vh);
  border-radius: 2.75rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 133, 84, 0.2), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(73, 83, 97, 0.16), transparent 18%),
    radial-gradient(circle at 50% 72%, rgba(180, 113, 67, 0.1), transparent 26%),
    linear-gradient(135deg, rgba(17, 14, 12, 0.94), rgba(29, 25, 22, 0.86) 48%, rgba(57, 43, 34, 0.76) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-ambient::after {
  content: "";
  position: absolute;
  inset: 1rem 1.5rem auto;
  height: min(42rem, 82vh);
  border-radius: 2.75rem;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.12), transparent 34%),
    radial-gradient(circle at 50% 78%, rgba(181, 106, 58, 0.1), transparent 42%);
  opacity: 0.52;
  animation: ambientPulse 12s ease-in-out infinite;
}

.hero-noise,
.hero-grid,
.hero-glow,
.hero-drifter,
.hero-orbit,
.hero-beam {
  position: absolute;
}

.hero-noise,
.hero-grid,
.hero-drifter,
.hero-orbit,
.hero-beam {
  inset: 1rem 1.5rem auto;
  height: min(42rem, 82vh);
  border-radius: 2.75rem;
}

.hero-noise {
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28) 0 0.06rem, transparent 0.07rem),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.24) 0 0.05rem, transparent 0.06rem),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.2) 0 0.05rem, transparent 0.06rem);
  background-size: 1.1rem 1.1rem, 1.3rem 1.3rem, 1.5rem 1.5rem;
  mix-blend-mode: soft-light;
  animation: noiseShift 10s steps(6) infinite;
}

.hero-grid {
  opacity: 0.22;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 4.75rem 4.75rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.3) 72%, transparent);
  animation: gridDrift 30s linear infinite;
}

.hero-glow {
  --glow-base-x: 0px;
  --glow-base-y: 0px;
  --parallax-x: 0px;
  --parallax-y: 0px;
  top: 3rem;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(18px);
  will-change: transform;
  animation: ambientFloat 24s ease-in-out infinite;
}

.hero-orbit {
  top: 0;
  left: 0;
  right: 0;
  border-radius: 999px;
  opacity: 0.9;
  filter: blur(0.5px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    0 0 16px currentColor,
    0 0 34px currentColor;
}

.hero-orbit-one {
  color: rgba(241, 160, 109, 0.95);
  inset: 5rem auto auto 10%;
  width: 14rem;
  height: 14rem;
  border: 1px solid rgba(241, 160, 109, 0.22);
  animation: orbitSpin 24s linear infinite;
}

.hero-orbit-one::before {
  top: -0.45rem;
  left: 45%;
}

.hero-orbit-two {
  color: rgba(219, 225, 236, 0.78);
  inset: 8rem 10% auto auto;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(219, 225, 236, 0.14);
  animation: orbitSpinReverse 30s linear infinite;
}

.hero-orbit-two::before {
  right: 8%;
  top: 50%;
}

.hero-orbit-three {
  color: rgba(255, 218, 192, 0.82);
  top: 13rem;
  left: calc(50% - 5.5rem);
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(255, 218, 192, 0.2);
  animation: orbitSpin 18s linear infinite;
}

.hero-orbit-three::before {
  left: 15%;
  bottom: 12%;
}

.hero-glow-left {
  left: -6rem;
  background:
    radial-gradient(circle, rgba(191, 125, 81, 0.36) 0%, rgba(191, 125, 81, 0.18) 34%, transparent 70%);
}

.hero-glow-right {
  top: 1rem;
  right: -5rem;
  width: 24rem;
  height: 24rem;
  background:
    radial-gradient(circle, rgba(103, 120, 143, 0.3) 0%, rgba(103, 120, 143, 0.14) 36%, transparent 72%);
  animation-duration: 30s;
  animation-delay: -8s;
}

.hero-glow-center {
  top: 12rem;
  left: 50%;
  width: 34rem;
  height: 18rem;
  --glow-base-x: -50%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(216, 152, 102, 0.24) 0%, rgba(216, 152, 102, 0.12) 34%, transparent 72%);
  animation-duration: 28s;
  animation-delay: -12s;
}

.hero-drifter {
  top: 0;
  left: 0;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  box-shadow:
    0 0 14px currentColor,
    0 0 36px currentColor;
  opacity: 0.95;
  filter: blur(0.25px);
  will-change: transform, opacity;
}

.hero-drifter::before {
  content: "";
  position: absolute;
  inset: -0.6rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  opacity: 0.4;
}

.hero-drifter::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5rem;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
  transform: translateY(-50%);
  opacity: 0.55;
}

.hero-drifter-one {
  color: rgba(245, 171, 120, 0.96);
  animation: drifterOne 18s linear infinite;
}

.hero-drifter-two {
  color: rgba(210, 222, 236, 0.78);
  animation: drifterTwo 22s linear infinite;
}

.hero-drifter-three {
  color: rgba(255, 216, 191, 0.9);
  animation: drifterThree 26s linear infinite;
}

.hero-beam {
  overflow: hidden;
}

.hero-beam::before {
  content: "";
  position: absolute;
  inset: -12% auto auto 12%;
  width: 58%;
  height: 170%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  opacity: 0.34;
  transform: rotate(18deg);
  animation: beamDrift 14s ease-in-out infinite;
}

.hero-beam::after {
  content: "";
  position: absolute;
  inset: auto auto 18% 18%;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(181, 106, 58, 0.22) 0%, rgba(181, 106, 58, 0.08) 42%, transparent 74%);
  filter: blur(10px);
  opacity: 0.72;
  animation: glowSweep 16s ease-in-out infinite;
}

.hero-shell {
  position: relative;
  z-index: 1;
  padding: 4.25rem 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary-strong);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(224, 185, 146, 0.95);
}

.hero-title,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.hero-title {
  max-width: 11.5ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  text-shadow: 0 10px 28px rgba(15, 13, 11, 0.12);
}

.hero-title span {
  display: block;
  color: var(--primary);
}

.hero-copy,
.section-heading p,
.featured-copy p,
.service-card p,
.ecosystem-card p,
.contact-copy p,
.footer-copy {
  line-height: 1.7;
  color: var(--text-muted);
}

.hero-copy-panel {
  display: inline-block;
  width: fit-content;
  max-width: min(100%, 38rem);
  margin-top: 1.8rem;
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 1.6rem;
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid rgba(255, 250, 243, 0.86);
  box-shadow: 0 10px 24px rgba(34, 25, 18, 0.08);
}

.hero-copy {
  max-width: 38rem;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-copy-secondary {
  width: min(100%, 38rem);
  margin: 1.85rem auto 0;
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.7rem;
  justify-content: center;
}

.hero-highlights,
.service-grid,
.ecosystem-grid {
  display: grid;
  gap: 1.25rem;
}

.hero-highlights {
  margin-top: 3.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 960px;
}

.highlight-card,
.service-card,
.ecosystem-card,
.featured-service,
.table-shell,
.contact-shell {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 250, 243, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero-highlights .highlight-card {
  background: rgba(255, 250, 243, 0.72);
}

.highlight-card,
.service-card,
.ecosystem-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.highlight-kicker,
.featured-label {
  margin: 0 0 0.75rem;
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.highlight-card h2,
.featured-copy h3,
.service-card h3,
.ecosystem-card h3 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 1.25rem;
  color: var(--text-strong);
}

.highlight-card p:last-child,
.service-card p:last-child,
.ecosystem-card p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: var(--copy-width);
  margin: 0 auto 2.75rem;
  text-align: center;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.featured-service {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.5rem;
  padding: 2rem;
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(181, 106, 58, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.88), rgba(247, 241, 233, 0.9));
}

.featured-icon {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 100%;
  border-radius: 2rem;
  font-family: "Archivo", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-strong);
  background: linear-gradient(145deg, rgba(181, 106, 58, 0.12), rgba(255, 250, 243, 0.9));
  box-shadow: inset 0 0 0 1px rgba(181, 106, 58, 0.12);
}

.featured-copy p:last-child {
  margin-bottom: 0;
}

.service-grid {
  margin-top: 1.6rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.service-symbol,
.ecosystem-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  margin: 0 0 1rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-symbol {
  color: var(--primary-strong);
  background: var(--primary-soft);
}

.comparison-band {
  position: relative;
  isolation: isolate;
}

.comparison-band::before {
  content: "";
  position: absolute;
  inset: 4rem 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(236, 224, 209, 0.54), rgba(255, 250, 243, 0.18)),
    radial-gradient(circle at left center, rgba(181, 106, 58, 0.08), transparent 28%);
  transform: skewY(-2.5deg);
}

.table-shell {
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead {
  background: linear-gradient(135deg, #161311 0%, #2b241d 100%);
  color: #ffffff;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem;
  text-align: left;
  vertical-align: top;
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(181, 106, 58, 0.04);
}

.comparison-table td {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.comparison-table td:nth-child(3),
.comparison-table th:nth-child(3) {
  background: rgba(181, 106, 58, 0.08);
}

.ecosystem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.founder-section {
  padding-bottom: 1rem;
}

.founder-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(181, 106, 58, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.9), rgba(247, 241, 233, 0.92));
  border: 1px solid rgba(255, 250, 243, 0.72);
  box-shadow: var(--shadow-soft);
}

.founder-copy {
  max-width: 760px;
}

.founder-copy h2 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.founder-copy p {
  line-height: 1.75;
  color: var(--text-muted);
}

.ecosystem-card {
  padding: 2rem;
}

.ecosystem-badge {
  color: var(--primary-strong);
  background: rgba(31, 94, 255, 0.12);
}

.ecosystem-badge-alt {
  color: #6d4c34;
  background: rgba(140, 79, 40, 0.12);
}

.sample-panel {
  max-width: 980px;
  margin: 1.5rem auto 0;
  padding: 2rem;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23, 21, 19, 0.98), rgba(42, 35, 28, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(193, 123, 73, 0.18);
  box-shadow: var(--shadow-strong);
}

.sample-panel::after {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 40%;
  height: 160%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  opacity: 0.45;
  transform: rotate(18deg);
  pointer-events: none;
  animation: panelSheen 16s ease-in-out infinite;
}

.sample-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sample-kicker {
  margin: 0 0 0.35rem;
  color: rgba(224, 185, 146, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sample-header h3,
.sample-columns h4 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  color: #ffffff;
}

.sample-context {
  margin: 0;
  color: rgba(224, 185, 146, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: right;
}

.sample-grid,
.sample-columns {
  display: grid;
  gap: 1rem;
}

.sample-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.5rem;
}

.sample-meta {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  color: rgba(239, 230, 219, 0.92);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(224, 185, 146, 0.12);
}

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

.sample-columns + .sample-columns {
  margin-top: 1rem;
}

.sample-columns h4 {
  margin-bottom: 0.85rem;
}

.sample-columns ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(230, 221, 210, 0.9);
  line-height: 1.65;
}

.contact-band {
  padding: 2rem 0 6rem;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  max-width: 940px;
  padding: 2rem;
  margin: 0 auto;
  border-radius: 2.25rem;
  background:
    linear-gradient(135deg, rgba(23, 21, 19, 0.96), rgba(43, 36, 30, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(193, 123, 73, 0.18);
  box-shadow: var(--shadow-strong);
}

.contact-copy h2,
.contact-copy p,
.benefit-list {
  color: #ffffff;
}

.contact-copy p {
  max-width: 38rem;
  color: var(--text-light);
}

.benefit-list {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.benefit-list li {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(224, 185, 146, 0.12);
  color: rgba(245, 249, 255, 0.95);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.field-row {
  display: grid;
  gap: 0.45rem;
}

.field-row-hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.field-row label {
  color: rgba(241, 229, 217, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
}

.field-row input,
.field-row textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(196, 164, 136, 0.22);
  border-radius: 1.1rem;
  color: #ffffff;
  background: rgba(17, 16, 14, 0.48);
  box-shadow: inset 0 0 0 1px transparent;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field-row input:focus,
.field-row textarea:focus {
  outline: none;
  border-color: rgba(214, 160, 120, 0.7);
  box-shadow: 0 0 0 4px rgba(181, 106, 58, 0.16);
  background: rgba(23, 21, 19, 0.76);
}

.field-row textarea {
  resize: vertical;
  min-height: 9rem;
}

.contact-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  font-size: 0.95rem;
  color: rgba(235, 225, 212, 0.92);
}

.form-status[data-state="success"] {
  color: #9ef0c2;
}

.form-status[data-state="error"] {
  color: #ffb5bc;
}

.site-footer {
  padding: 0 0 3rem;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border-radius: 1.75rem;
  background: rgba(255, 250, 243, 0.68);
  border: 1px solid rgba(255, 250, 243, 0.74);
  box-shadow: var(--shadow-soft);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary-strong);
}

.footer-mark {
  width: 2.25rem;
  height: 2.25rem;
}

.footer-copy {
  margin: 0;
}

.legal-main {
  padding-bottom: 4rem;
}

.legal-hero {
  padding: 4.25rem 0 1.75rem;
}

.legal-hero-shell {
  max-width: 820px;
}

.legal-title {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.legal-intro {
  max-width: 700px;
  margin: 1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.legal-shell {
  padding-bottom: 2rem;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 243, 0.84);
  border: 1px solid rgba(255, 250, 243, 0.72);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin: 1.8rem 0 0.7rem;
  font-family: "Archivo", sans-serif;
  font-size: 1.2rem;
  color: var(--text-strong);
}

.legal-card p {
  margin: 0;
  line-height: 1.8;
  color: var(--text);
}

.legal-card p + p {
  margin-top: 1rem;
}

@keyframes ambientFloat {
  0%,
  100% {
    transform: translate3d(
      calc(var(--glow-base-x) + var(--parallax-x)),
      calc(var(--glow-base-y) + var(--parallax-y)),
      0
    ) scale(1);
  }

  50% {
    transform: translate3d(
      calc(var(--glow-base-x) + var(--parallax-x)),
      calc(var(--glow-base-y) + 28px + var(--parallax-y)),
      0
    ) scale(1.08);
  }
}

@keyframes ambientPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(1);
  }

  50% {
    opacity: 0.62;
    transform: scale(1.02);
  }
}

@keyframes beamDrift {
  0%,
  100% {
    opacity: 0.16;
    transform: translate3d(-8%, 0, 0) rotate(18deg);
  }

  50% {
    opacity: 0.3;
    transform: translate3d(12%, 0, 0) rotate(18deg);
  }
}

@keyframes orbitSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes gridDrift {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 0 4.75rem, 4.75rem 0;
  }
}

@keyframes noiseShift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(-0.25rem, 0.2rem, 0);
  }

  50% {
    transform: translate3d(0.25rem, -0.15rem, 0);
  }

  75% {
    transform: translate3d(-0.15rem, -0.2rem, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes glowSweep {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.92);
    opacity: 0.42;
  }

  50% {
    transform: translate3d(14rem, -2rem, 0) scale(1.06);
    opacity: 0.82;
  }
}

@keyframes driftBlobOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18vw, 8vh, 0) scale(1.12);
  }
}

@keyframes driftBlobTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-16vw, -10vh, 0) scale(1.15);
  }
}

@keyframes driftBlobThree {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(8vw, -14vh, 0) scale(1.1);
  }
}

@keyframes scanTraverse {
  0% {
    transform: translate3d(-18vw, -4vh, 0) rotate(12deg);
    opacity: 0;
  }

  15% {
    opacity: 0.7;
  }

  50% {
    transform: translate3d(44vw, 4vh, 0) rotate(12deg);
    opacity: 0.82;
  }

  85% {
    opacity: 0.65;
  }

  100% {
    transform: translate3d(98vw, 10vh, 0) rotate(12deg);
    opacity: 0;
  }
}

@keyframes spotFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }

  33% {
    transform: translate3d(32vw, 12vh, 0) scale(1.12);
    opacity: 0.9;
  }

  66% {
    transform: translate3d(18vw, 34vh, 0) scale(0.96);
    opacity: 0.72;
  }
}

@keyframes introFade {
  0% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes introMark {
  0% {
    transform: scale(0.82);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  55% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.98);
    opacity: 0;
  }
}

@keyframes introText {
  0% {
    opacity: 0;
    transform: translateY(0.6rem);
  }

  30% {
    opacity: 0;
    transform: translateY(0.6rem);
  }

  55% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-0.15rem);
  }
}

@keyframes drifterOne {
  0% {
    transform: translate3d(9%, 18%, 0);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  50% {
    transform: translate3d(68%, 52%, 0);
    opacity: 1;
  }

  92% {
    opacity: 1;
  }

  100% {
    transform: translate3d(92%, 20%, 0);
    opacity: 0;
  }
}

@keyframes drifterTwo {
  0% {
    transform: translate3d(88%, 26%, 0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  55% {
    transform: translate3d(28%, 64%, 0);
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translate3d(12%, 34%, 0);
    opacity: 0;
  }
}

@keyframes drifterThree {
  0% {
    transform: translate3d(20%, 82%, 0);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  50% {
    transform: translate3d(58%, 14%, 0);
    opacity: 1;
  }

  88% {
    opacity: 1;
  }

  100% {
    transform: translate3d(84%, 74%, 0);
    opacity: 0;
  }
}

@keyframes panelSheen {
  0%,
  100% {
    opacity: 0.22;
    transform: translate3d(-10%, 0, 0) rotate(18deg);
  }

  50% {
    opacity: 0.46;
    transform: translate3d(18%, 0, 0) rotate(18deg);
  }
}

@media (max-width: 960px) {
  .hero-highlights,
  .service-grid,
  .ecosystem-grid,
  .sample-grid,
  .sample-columns,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .featured-service {
    grid-template-columns: 1fr;
  }

  .featured-icon {
    width: 5rem;
  }

  .service-grid {
    gap: 1rem;
  }

  .footer-shell {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sample-header {
    align-items: start;
    flex-direction: column;
  }

  .sample-context {
    text-align: left;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-width: min(1120px, calc(100vw - 1.5rem));
    --content-width: min(980px, calc(100vw - 1.5rem));
  }

  .section-spacing {
    padding: 4.5rem 0;
  }

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

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 250, 243, 0.95);
    border: 1px solid rgba(255, 250, 243, 0.92);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-soft);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-shell {
    padding-top: 3rem;
  }

  .hero-title {
    max-width: 12ch;
  }

  .hero-ambient::before,
  .hero-noise,
  .hero-grid,
  .hero-drifter,
  .hero-orbit,
  .hero-beam {
    inset-inline: 0.75rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-copy-panel {
    padding: 1.15rem 1.1rem 1.25rem;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tr {
    padding: 1rem;
  }

  .comparison-table td {
    padding: 0.55rem 0;
    border-top: 0;
    background: transparent;
  }

  .comparison-table td:first-child {
    padding-top: 0;
    color: var(--text-strong);
    font-weight: 700;
  }

  .comparison-table td:nth-child(2)::before,
  .comparison-table td:nth-child(3)::before {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .comparison-table td:nth-child(2)::before {
    content: "Without AI support";
  }

  .comparison-table td:nth-child(3)::before {
    content: "With an AugmentGo system";
  }
}

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

  .page-motion {
    display: none;
  }

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
