:root {
  --color-bg: #0a2328;
  --color-bg-elev: #10252a;
  --color-bg-panel: rgba(10, 22, 26, 0.82);
  --color-border: rgba(211, 201, 177, 0.24);
  --color-border-strong: rgba(211, 201, 177, 0.46);
  --color-text: #f4f4f2;
  --color-text-muted: rgba(211, 201, 177, 0.8);
  --color-accent: #d3c9b1;
  --color-success: #a9d5bd;
  --color-telemetry-a: #6ea8fe;
  --color-telemetry-b: #7da2ff;
  --color-mixor: #be6f7d;
  --color-kavo: #58b8b0;
  --color-triage: #72b990;
  --shadow-soft: 0 24px 50px rgba(1, 10, 12, 0.48);
  --shadow-glow: 0 0 0 1px rgba(211, 201, 177, 0.16), 0 30px 70px rgba(0, 0, 0, 0.46);
  --shadow-ambient: 0 10px 30px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(225, 219, 202, 0.08);
  --radius-sm: 0.5rem;
  --radius-md: 0.85rem;
  --radius-lg: 1.25rem;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 5.5rem;
  --container-max: 88rem;
  --anchor-offset: 6.5rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: var(--anchor-offset);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

body {
  font-family: "IBM Plex Sans", "Segoe UI", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(58rem 36rem at 16% 4%, rgba(74, 145, 168, 0.18), transparent 56%),
    radial-gradient(54rem 34rem at 82% 8%, rgba(64, 120, 145, 0.14), transparent 60%),
    linear-gradient(180deg, #07171b 0%, #0a2328 60%, #0b2227 100%);
  color: var(--color-text);
  line-height: 1.68;
  min-height: 100vh;
  letter-spacing: 0.01em;
  font-size: 18px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background:
    repeating-radial-gradient(
      circle at 35% -16%,
      transparent 0,
      transparent 46px,
      rgba(211, 201, 177, 0.085) 46px,
      rgba(211, 201, 177, 0.085) 47px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(211, 201, 177, 0.018) 0,
      rgba(211, 201, 177, 0.018) 1px,
      transparent 1px,
      transparent 80px
    );
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(24rem 12rem at 58% 18%, rgba(211, 201, 177, 0.08), transparent 62%),
    radial-gradient(28rem 16rem at 72% 42%, rgba(134, 187, 175, 0.08), transparent 66%);
  opacity: 0.5;
}

main {
  position: relative;
  overflow: clip;
}

main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(211, 201, 177, 0.03) 20%,
      transparent 38%,
      rgba(147, 198, 187, 0.03) 58%,
      transparent 76%,
      rgba(211, 201, 177, 0.025) 100%
    ),
    repeating-linear-gradient(
      14deg,
      rgba(211, 201, 177, 0.014) 0,
      rgba(211, 201, 177, 0.014) 1px,
      transparent 1px,
      transparent 44px
    );
  opacity: 0.46;
}

main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(211, 201, 177, 0.035) 0.65px, transparent 0.65px);
  background-size: 3px 3px;
  opacity: 0.16;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 3rem, var(--container-max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-accent);
  color: #0d1416;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
}

.skip-link:focus-visible {
  top: var(--space-2);
  left: var(--space-2);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(7, 23, 27, 0.18), rgba(7, 23, 27, 0.04));
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(7, 23, 27, 0.72), rgba(7, 23, 27, 0.45));
  border-bottom-color: rgba(211, 201, 177, 0.14);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: 1.05rem;
}

.brand {
  text-decoration: none;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 1.22rem;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: clamp(0.6rem, 1.4vw, 1.2rem);
  padding: 0;
  margin: 0;
}

.nav-cta {
  border: 1px solid rgba(211, 201, 177, 0.6);
  background: transparent;
  color: var(--color-accent);
  padding: 0.66rem 0.95rem;
  font-size: 0.95rem;
  border-radius: 0.65rem;
  white-space: nowrap;
}

.nav-cta span {
  margin-left: 0.35rem;
  font-size: 1.1em;
  line-height: 1;
}

.nav-list a {
  display: inline-block;
  padding: 0.28rem 0.48rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: var(--color-text-muted);
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--color-accent);
  background: rgba(211, 201, 177, 0.08);
  box-shadow: inset 0 0 0 1px rgba(211, 201, 177, 0.2), 0 0 0 1px rgba(211, 201, 177, 0.08);
}

.hero {
  position: relative;
  padding-block: clamp(4.2rem, 7.8vh, 5.8rem) 2.5rem;
  min-height: 52rem;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% 42% 12% -12%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(211, 201, 177, 0.14), transparent 72%);
  filter: blur(16px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 10% -6% -8% 44%;
  background:
    radial-gradient(closest-side, rgba(211, 201, 177, 0.14), transparent 72%),
    repeating-linear-gradient(
      -18deg,
      rgba(211, 201, 177, 0.05) 0,
      rgba(211, 201, 177, 0.05) 1px,
      transparent 1px,
      transparent 24px
    );
  opacity: 0.58;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 38rem;
}

.eyebrow {
  margin: 0 0 var(--space-4);
  color: var(--color-accent);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

h1 {
  margin: 0;
  line-height: 1.02;
  max-width: 10.6ch;
  font-size: clamp(4rem, 6vw, 6.5rem);
  letter-spacing: -0.01em;
  text-wrap: balance;
  font-weight: 650;
}

.hero-copy h1 span {
  color: var(--color-accent);
}

.hero-body {
  margin: var(--space-4) 0;
  color: var(--color-text-muted);
  max-width: 46ch;
  font-size: 1.18rem;
  letter-spacing: 0.012em;
}

.hero-signals {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(211, 201, 177, 0.15);
}

.signal-item {
  position: relative;
  padding: 0.55rem 0.7rem 0.6rem 1rem;
  border: 1px solid rgba(211, 201, 177, 0.11);
  border-radius: 0.72rem;
  background: rgba(10, 22, 26, 0.62);
}

.signal-item::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.86rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: var(--color-telemetry-b);
}

.signal-title,
.signal-sub {
  margin: 0;
}

.signal-title {
  font-size: 0.72rem;
  color: #ebe5d7;
}

.signal-sub {
  margin-top: 0.18rem;
  font-size: 0.67rem;
  color: rgba(211, 201, 177, 0.62);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-built-on {
  margin-top: 2.2rem;
}

.hero-built-on p {
  margin: 0 0 0.65rem;
  color: rgba(211, 201, 177, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-built-on ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  color: rgba(231, 226, 210, 0.86);
  font-size: 0.92rem;
}

.hero-built-on li::before {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.38rem;
  border-radius: 999px;
  background: var(--color-accent);
  vertical-align: 0.06em;
}

.hero-built-on .built-on-aws::before {
  display: none;
}

.built-on-aws img {
  width: 3.2rem;
  height: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(92%) sepia(10%) saturate(267%) hue-rotate(358deg) brightness(104%) contrast(92%);
  opacity: 0.95;
}

.coasted-dashboard {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  min-height: 560px;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(211, 201, 177, 0.18);
  background: linear-gradient(135deg, rgba(14, 36, 42, 0.96), rgba(4, 14, 17, 0.94));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45), 0 0 60px rgba(85, 150, 180, 0.1);
}

.coasted-dashboard__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-right: 1px solid rgba(211, 201, 177, 0.12);
  background: rgba(2, 10, 12, 0.26);
}

.coasted-dashboard__logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--color-accent);
  border: 1px solid rgba(211, 201, 177, 0.3);
  border-radius: 10px;
  font-weight: 900;
}

.rail-dot {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(211, 201, 177, 0.18);
  opacity: 0.55;
}

.rail-dot.active {
  border-color: rgba(110, 168, 254, 0.7);
  box-shadow: 0 0 18px rgba(110, 168, 254, 0.22);
}

.coasted-dashboard__main {
  padding: 1.7rem 1.9rem 1.8rem;
}

.coasted-dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.coasted-dashboard__header h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.coasted-dashboard__header h2 span {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  margin-left: 0.4rem;
  border-radius: 50%;
  background: #61d789;
  box-shadow: 0 0 14px rgba(97, 215, 137, 0.6);
}

.coasted-dashboard__header p,
.coasted-dashboard__header time {
  margin: 0.25rem 0 0;
  color: rgba(244, 241, 234, 0.68);
  font-size: 0.9rem;
}

.coasted-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.coasted-metric {
  padding: 1rem;
  min-height: 156px;
  border-radius: 12px;
  border: 1px solid rgba(211, 201, 177, 0.11);
  background: linear-gradient(180deg, rgba(14, 35, 42, 0.92), rgba(5, 16, 20, 0.95));
}

.coasted-metric p {
  margin: 0 0 0.35rem;
  color: rgba(244, 241, 234, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
}

.coasted-metric strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 560;
}

.coasted-metric small {
  display: block;
  margin-top: 0.55rem;
  color: rgba(177, 224, 181, 0.78);
  font-size: 0.76rem;
}

.coasted-metric svg {
  width: 100%;
  height: 44px;
  margin-top: 0.5rem;
}

.coasted-metric polyline {
  fill: none;
  stroke: var(--color-telemetry-a);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.coasted-metric:nth-child(2) polyline {
  stroke: var(--color-accent);
}

.coasted-dashboard__lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.coasted-invocations,
.coasted-activity {
  min-height: 208px;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(211, 201, 177, 0.11);
  background: rgba(4, 15, 18, 0.62);
}

.coasted-invocations h3,
.coasted-activity h3 {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
}

.coasted-invocations h3 span {
  color: rgba(244, 241, 234, 0.58);
  font-weight: 500;
}

.invoke-row {
  display: grid;
  grid-template-columns: 78px 1fr 44px;
  gap: 0.6rem;
  align-items: center;
  padding: 0.55rem 0;
  color: rgba(244, 241, 234, 0.65);
  border-bottom: 1px solid rgba(211, 201, 177, 0.07);
  font-size: 0.8rem;
}

.invoke-row div {
  height: 4px;
  border-radius: 999px;
  background: rgba(211, 201, 177, 0.08);
  overflow: hidden;
}

.invoke-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-telemetry-a), var(--color-accent));
}

.invoke-row strong {
  color: rgba(244, 241, 234, 0.72);
  text-align: right;
}

.coasted-activity ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.coasted-activity li {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.52rem 0;
  border-bottom: 1px solid rgba(211, 201, 177, 0.07);
  color: rgba(244, 241, 234, 0.68);
  font-size: 0.82rem;
}

.coasted-activity li p {
  margin: 0;
}

.coasted-activity time {
  color: rgba(244, 241, 234, 0.48);
  font-size: 0.74rem;
}

.activity-icon {
  width: 15px;
  height: 15px;
  border: 2px solid var(--color-telemetry-a);
}

.activity-icon.circle {
  border-radius: 50%;
}

.activity-icon.triangle {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 13px solid rgba(110, 168, 254, 0.85);
  border-top: 0;
  border-radius: 0;
}

.coasted-hero__signal-strip {
  position: relative;
  z-index: 1;
  margin-top: 4.4rem;
  border-top: 1px solid rgba(211, 201, 177, 0.12);
  border-bottom: 1px solid rgba(211, 201, 177, 0.12);
  background: linear-gradient(90deg, rgba(211, 201, 177, 0.035), transparent 26%, rgba(110, 168, 254, 0.04)), rgba(6, 18, 21, 0.74);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.coasted-hero__signal-strip article {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.15rem 1.25rem;
  border-right: 1px solid rgba(211, 201, 177, 0.08);
}

.coasted-hero__signal-strip article:last-child {
  border-right: 0;
}

.signal-icon {
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 1.65rem;
  color: var(--color-accent);
}

.signal-icon path,
.signal-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal-icon text {
  fill: currentColor;
  font-size: 0.92rem;
  font-weight: 700;
}

.coasted-hero__signal-strip h3 {
  margin: 0;
  font-size: 0.9rem;
}

.coasted-hero__signal-strip p {
  margin: 0.15rem 0 0;
  color: rgba(244, 241, 234, 0.68);
  font-size: 0.78rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  box-shadow: 0 0 0 1px rgba(211, 201, 177, 0.2), 0 0 0 4px rgba(211, 201, 177, 0.08);
}

.btn.nav-cta {
  border-color: rgba(211, 201, 177, 0.6);
  background: transparent;
  color: var(--color-accent);
}

.btn.nav-cta:hover,
.btn.nav-cta:focus-visible {
  border-color: rgba(211, 201, 177, 0.78);
  background: rgba(211, 201, 177, 0.08);
}

.btn-primary {
  background: linear-gradient(180deg, #e0d7c3, #cdbfa4);
  color: #111614;
  box-shadow: 0 12px 30px rgba(211, 201, 177, 0.24);
}

.btn-secondary {
  border-color: var(--color-border-strong);
  background: linear-gradient(180deg, rgba(211, 201, 177, 0.08), rgba(211, 201, 177, 0.03));
}

.hero-actions .btn {
  min-height: 3.95rem;
  padding: 0 1.55rem;
  border-radius: 0.88rem;
  font-size: 1rem;
  font-weight: 750;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 240ms ease, box-shadow 280ms ease, background-color 240ms ease, border-color 240ms ease;
}

.hero-cta-primary {
  color: #0d1b1f;
  background: linear-gradient(180deg, #f1e8d4, #d3c9b1);
  border-color: rgba(255, 244, 218, 0.68);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
}

.hero-cta-secondary {
  color: var(--color-text);
  background: rgba(5, 15, 18, 0.45);
  border-color: rgba(211, 201, 177, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-cta span {
  font-size: 1.05em;
  line-height: 1;
  transition: transform 220ms ease;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: -180% auto -180% -30%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: rotate(16deg) translateX(-220%);
  transition: transform 560ms ease;
  pointer-events: none;
}

.hero-cta-primary:hover,
.hero-cta-primary:focus-visible {
  background: linear-gradient(180deg, #f3ecdc, #d9ceb9);
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.hero-cta-secondary:hover,
.hero-cta-secondary:focus-visible {
  border-color: rgba(211, 201, 177, 0.54);
  background: rgba(8, 20, 24, 0.62);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-cta:hover::before,
.hero-cta:focus-visible::before {
  transform: rotate(16deg) translateX(430%);
}

.hero-cta:hover span,
.hero-cta:focus-visible span {
  transform: translateX(2px);
}

.status-card {
  background:
    linear-gradient(180deg, rgba(19, 49, 69, 0.86), rgba(8, 22, 30, 0.96)),
    linear-gradient(130deg, rgba(125, 162, 255, 0.12), transparent 42%);
  border: 1px solid rgba(211, 201, 177, 0.24);
  border-radius: 1.5rem;
  padding: 2.3rem 1.95rem 1.7rem;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
  transform: translateY(0.1rem);
  min-height: 30rem;
}

.status-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(235, 228, 212, 0.14);
}

.status-card::after {
  content: "";
  position: absolute;
  inset: auto -24% -56% auto;
  width: 16rem;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(211, 201, 177, 0.14);
  opacity: 0.7;
}

.status-card-header {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.status-title,
.status-health,
.metric-label,
.metric-value,
.activity-title,
.activity li {
  margin: 0;
}

.status-title {
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
}

.status-health {
  color: var(--color-success);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-health::before {
  content: "";
  display: inline-block;
  width: 0.44rem;
  height: 0.44rem;
  margin-right: 0.35rem;
  border-radius: 999px;
  background: #95d3af;
  box-shadow: 0 0 8px rgba(149, 211, 175, 0.5);
}

.status-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.metric {
  padding: 0.7rem;
  background: linear-gradient(180deg, rgba(12, 34, 45, 0.76), rgba(8, 23, 29, 0.94));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 0 rgba(231, 223, 204, 0.09);
}

.metric-label {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.metric-value {
  margin-top: 0.2rem;
  font-weight: 600;
  font-size: 1.32rem;
}

.mini-chart {
  margin-top: var(--space-4);
  background: linear-gradient(180deg, rgba(9, 28, 31, 0.78), rgba(6, 20, 24, 0.9));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  box-shadow: inset 0 1px 0 rgba(233, 226, 208, 0.08);
}

.mini-chart svg {
  display: block;
  width: 100%;
  height: 84px;
}

.mini-chart polyline {
  fill: none;
  stroke: #d7cebb;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(211, 201, 177, 0.3));
}

.dashboard-lower {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.invocations,
.activity {
  padding: 0.85rem;
  border: 1px solid rgba(211, 201, 177, 0.16);
  border-radius: 0.75rem;
  background: rgba(6, 20, 24, 0.66);
}

.invoke-row {
  display: grid;
  grid-template-columns: 88px 1fr 44px;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  padding: 0.36rem 0;
}

.invoke-row i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-telemetry-a), var(--color-accent));
}

.invoke-row strong {
  color: rgba(231, 226, 210, 0.82);
  font-size: 0.75rem;
  text-align: right;
}

.activity {
  margin-top: 0;
}

.activity-title {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: var(--space-2);
}

.activity ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
}

.activity li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  padding-block: 0.62rem;
  border-bottom: 1px solid var(--color-border);
  color: rgba(220, 213, 195, 0.82);
  font-size: 0.98rem;
}

.hero-copy,
.status-card {
  will-change: transform, opacity;
}

.section-panel {
  position: relative;
  padding-block: clamp(1.6rem, 3vw, 2.6rem);
}

.section-panel:nth-of-type(odd)::before {
  content: "";
  position: absolute;
  inset: 1.5rem 10% auto;
  height: 9rem;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(211, 201, 177, 0.08), transparent 72%);
  filter: blur(12px);
}

.section-panel::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -0.35rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0,
    rgba(211, 201, 177, 0.06) 12%,
    rgba(211, 201, 177, 0.13) 50%,
    rgba(211, 201, 177, 0.06) 88%,
    transparent 100%
  );
  pointer-events: none;
}



.section-panel .container {
  position: relative;
}

#products .container {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

#services .container {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

#approach .container {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

#about .container {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

#contact .container {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 2.9vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.section-panel p {
  margin: var(--space-3) 0 0;
  color: var(--color-text-muted);
  font-size: 1.08rem;
}

#products-title span {
  color: var(--color-accent);
}

#services-title span,
#approach-title span,
#about-title span {
  color: var(--color-accent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.5vw, 1.25rem);
  margin-top: 1.3rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 30rem;
  padding: var(--space-4);
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background:
    linear-gradient(180deg, rgba(17, 51, 58, 0.7), rgba(7, 24, 28, 0.95)),
    linear-gradient(120deg, rgba(211, 201, 177, 0.05), transparent 44%);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(233, 226, 208, 0.08);
  position: relative;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.product-card:nth-child(2) {
  margin-top: 0.5rem;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(231, 224, 208, 0.06);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% auto;
  width: 11rem;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(211, 201, 177, 0.14);
  opacity: 0.65;
  pointer-events: none;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(211, 201, 177, 0.4);
  box-shadow: 0 28px 56px rgba(1, 10, 12, 0.56), inset 0 1px 0 rgba(239, 233, 218, 0.14);
}

.product-card-mixor {
  --product-accent: var(--color-mixor);
}

.product-card-kavo {
  --product-accent: var(--color-kavo);
}

.product-card-triage {
  --product-accent: var(--color-triage);
}

.product-tag {
  margin: 0;
  color: var(--product-accent);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h3 {
  margin: 0.45rem 0 0;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.product-description {
  margin: var(--space-2) 0 0;
  color: var(--color-text-muted);
  font-size: 1.02rem;
}

.product-mockup {
  border: 1px solid rgba(211, 201, 177, 0.28);
  background: linear-gradient(180deg, rgba(8, 28, 31, 0.84), rgba(6, 20, 24, 0.92));
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  box-shadow: inset 0 1px 0 rgba(233, 226, 208, 0.08);
  position: relative;
  min-height: 12.2rem;
}

.product-mockup::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  right: 0.5rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(211, 201, 177, 0.9);
  box-shadow: 0 0 10px rgba(211, 201, 177, 0.4);
}

.mockup-row {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: 0.79rem;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

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

.mixor-wave {
  height: 2rem;
  margin: var(--space-2) 0;
  border-radius: 999px;
  background: repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 8px,
      rgba(190, 111, 125, 0.32) 8px,
      rgba(190, 111, 125, 0.32) 11px
    ),
    linear-gradient(90deg, rgba(190, 111, 125, 0.2), rgba(190, 111, 125, 0.04));
  border: 1px solid rgba(190, 111, 125, 0.32);
  box-shadow: inset 0 0 0 1px rgba(190, 111, 125, 0.12);
}

.mixor-route {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-bottom: var(--space-2);
}

.mixor-route span {
  height: 0.46rem;
  border-radius: 999px;
  background: rgba(183, 216, 206, 0.45);
}

.mixor-route span:nth-child(1) {
  width: 78%;
}

.mixor-route span:nth-child(2) {
  width: 92%;
}

.mixor-route span:nth-child(3) {
  width: 66%;
}

.kavo-screen {
  border: 1px solid rgba(215, 206, 182, 0.3);
  border-radius: 0.4rem;
  padding: 0.5rem;
  background: rgba(8, 26, 29, 0.86);
  box-shadow: inset 0 1px 0 rgba(235, 229, 214, 0.08);
}

.kavo-camera {
  width: 100%;
  height: 3.4rem;
  border-radius: 0.35rem;
  background: linear-gradient(135deg, rgba(215, 206, 182, 0.12), rgba(215, 206, 182, 0.02));
  border: 1px solid rgba(215, 206, 182, 0.22);
  position: relative;
}

.kavo-camera::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 0.9rem;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px solid rgba(105, 169, 217, 0.52);
  background: radial-gradient(circle, rgba(105, 169, 217, 0.24), rgba(105, 169, 217, 0.04));
}

.kavo-thumbs {
  margin-top: 0.45rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}

.kavo-thumbs span {
  height: 1.2rem;
  border-radius: 0.22rem;
  background: rgba(215, 206, 182, 0.18);
  border: 1px solid rgba(215, 206, 182, 0.26);
}

.kavo-thumbs span:nth-child(2) {
  background: rgba(215, 206, 182, 0.28);
}

.triage-log {
  list-style: none;
  margin: var(--space-2) 0 0;
  padding: 0;
  border-top: 1px solid rgba(169, 200, 211, 0.2);
}

.triage-log li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: var(--color-text-muted);
  padding-top: 0.36rem;
  font-family: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;
}

.trace-lines {
  margin-top: var(--space-2);
  display: grid;
  gap: 0.3rem;
}

.trace-lines span {
  display: block;
  height: 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(114, 185, 144, 0.36);
  background: linear-gradient(90deg, rgba(114, 185, 144, 0.35), rgba(114, 185, 144, 0.05));
}

.product-card-mixor .product-mockup::before {
  background: rgba(190, 111, 125, 0.92);
  box-shadow: 0 0 10px rgba(190, 111, 125, 0.46);
}

.product-card-kavo .product-mockup::before {
  background: rgba(105, 169, 217, 0.92);
  box-shadow: 0 0 10px rgba(105, 169, 217, 0.46);
}

.product-card-triage .product-mockup::before {
  background: rgba(114, 185, 144, 0.92);
  box-shadow: 0 0 10px rgba(114, 185, 144, 0.46);
}

.trace-lines span:nth-child(1) {
  width: 88%;
}

.trace-lines span:nth-child(2) {
  width: 74%;
}

.trace-lines span:nth-child(3) {
  width: 96%;
}

.product-points {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--color-text-muted);
  display: grid;
  gap: 0.32rem;
  font-size: 0.98rem;
}

.product-link {
  margin-top: auto;
  color: var(--product-accent);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration-color: rgba(211, 201, 177, 0.5);
}

.product-card-mixor .product-mockup {
  background:
    linear-gradient(180deg, rgba(36, 23, 27, 0.84), rgba(16, 13, 16, 0.94)),
    linear-gradient(90deg, rgba(190, 111, 125, 0.14), transparent 58%);
}

.product-card-kavo .product-mockup {
  background:
    linear-gradient(180deg, rgba(13, 27, 39, 0.86), rgba(8, 17, 24, 0.94)),
    linear-gradient(90deg, rgba(105, 169, 217, 0.16), transparent 58%);
}

.product-card-triage .product-mockup {
  background:
    linear-gradient(180deg, rgba(10, 30, 23, 0.84), rgba(7, 20, 16, 0.95)),
    linear-gradient(90deg, rgba(114, 185, 144, 0.14), transparent 58%);
}

.products-grid .product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 45rem;
  padding: 2.1rem;
  border: 1px solid rgba(211, 201, 177, 0.17);
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    radial-gradient(circle at 20% 0%, rgba(211, 201, 177, 0.055), transparent 38%),
    rgba(7, 20, 24, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.products-grid .product-card:nth-child(2) {
  margin-top: 0;
}

.products-grid .product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: radial-gradient(circle at 16% 10%, var(--product-accent), transparent 22%), linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 34%);
  pointer-events: none;
}

.products-grid .product-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.028);
  pointer-events: none;
}

.products-grid .product-card--mixor { --product-accent: rgba(87, 44, 255, 0.34); --product-solid: #7a3bfe; }
.products-grid .product-card--kavo { --product-accent: rgba(88, 184, 176, 0.34); --product-solid: #58b8b0; }
.products-grid .product-card--triage { --product-accent: rgba(42, 93, 236, 0.32); --product-solid: #2a5dec; }

.products-grid .product-card--mixor .product-card__icon {
  background:
    radial-gradient(circle at 24% 18%, rgba(110, 168, 254, 0.22), transparent 52%),
    linear-gradient(180deg, rgba(21, 33, 52, 0.94), rgba(12, 20, 36, 0.96));
  border: 1px solid rgba(122, 59, 254, 0.3);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(87, 44, 255, 0.22);
}

.products-grid .product-card--triage .product-card__icon {
  background:
    radial-gradient(circle at 24% 20%, rgba(110, 168, 254, 0.26), transparent 54%),
    linear-gradient(180deg, rgba(14, 32, 64, 0.94), rgba(9, 21, 42, 0.96));
  border: 1px solid rgba(42, 93, 236, 0.34);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(42, 93, 236, 0.2);
}

.products-grid .product-card__header,
.products-grid .product-card__description,
.products-grid .product-card__points,
.products-grid .product-card__link,
.products-grid .product-mockup { position: relative; z-index: 1; }

.products-grid .product-card__header { display: flex; gap: 1.35rem; align-items: center; margin-bottom: 1.7rem; }
.products-grid .product-card__icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--product-solid), transparent 14%), color-mix(in srgb, var(--product-solid), #08161a 48%));
}
.products-grid .product-card__icon svg { width: 46px; height: 46px; fill: none; stroke: rgba(255, 255, 255, 0.88); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }

.products-grid .product-card__icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}
.products-grid .product-card__header p { margin: 0 0 0.4rem; color: var(--product-solid); font-size: 0.95rem; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.products-grid .product-card__header h3 { margin: 0; color: var(--color-text); font-size: clamp(2.1rem, 2.2vw, 3rem); line-height: 1; letter-spacing: -0.055em; }
.products-grid .product-card__description { min-height: 5.4rem; margin: 0 0 2rem; color: rgba(246, 242, 234, 0.66); font-size: 1.1rem; line-height: 1.58; }
.products-grid .product-card__points { display: grid; gap: 1rem; margin: 0 0 1.8rem; padding: 0; list-style: none; }
.products-grid .product-card__points li { position: relative; padding-left: 2rem; color: rgba(246, 242, 234, 0.78); font-size: 1.02rem; line-height: 1.45; }
.products-grid .product-card__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.25rem;
  height: 1.25rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--product-solid);
  border-radius: 999px;
  color: var(--product-solid);
  font-size: 0.72rem;
}
.products-grid .product-card__link { display: inline-flex; align-items: center; gap: 0.65rem; width: fit-content; margin-bottom: 1.7rem; color: var(--product-solid); font-size: 1.08rem; font-weight: 800; text-decoration: none; }
.products-grid .product-card__link span { font-size: 1.3rem; }

.products-grid .product-mockup {
  margin-top: auto;
  min-height: 250px;
  border: 1px solid rgba(211, 201, 177, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)), rgba(2, 10, 12, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 42px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.products-grid .mixor-mockup { display: grid; grid-template-columns: 34% 1fr; }
.products-grid .mixor-mockup aside { display: grid; gap: 0.92rem; align-content: start; padding: 1.25rem 1rem; border-right: 1px solid rgba(211, 201, 177, 0.09); background: rgba(3, 11, 14, 0.35); }
.products-grid .mixor-mockup aside span { color: rgba(246, 242, 234, 0.48); font-size: 0.9rem; font-weight: 700; }
.products-grid .mixor-mockup main { padding: 1.25rem; }
.products-grid .mixor-mockup h4 { margin: 0 0 1.15rem; color: var(--color-text); font-size: 1rem; }
.products-grid .release-row { display: grid; grid-template-columns: 56px 1fr; gap: 0.9rem; align-items: center; padding: 0.9rem 0; border-bottom: 1px solid rgba(211, 201, 177, 0.07); }
.products-grid .release-art { width: 56px; height: 56px; border-radius: 8px; }
.products-grid .release-art.rose { background: radial-gradient(circle at 50% 45%, #c9b5ff, #7a3bfe); }
.products-grid .release-art.blue { background: radial-gradient(circle at 50% 45%, #e8f0f4, #486b86); }
.products-grid .release-art.pale { background: radial-gradient(circle at 50% 45%, #e6e1ce, #5d7180); }
.products-grid .release-row strong { display: block; color: var(--color-text); font-size: 0.98rem; }
.products-grid .release-row small { display: block; margin-top: 0.2rem; color: rgba(246, 242, 234, 0.48); }

.products-grid .kavo-mockup { padding: 1rem; }
.products-grid .kavo-topbar { display: flex; align-items: center; gap: 0.65rem; height: 42px; margin-bottom: 0.9rem; color: rgba(246, 242, 234, 0.66); font-weight: 800; font-size: 0.9rem; }
.products-grid .kavo-topbar i { width: 7px; height: 7px; border-radius: 50%; background: var(--product-solid); box-shadow: 0 0 12px rgba(88, 184, 176, 0.8); }
.products-grid .kavo-topbar b { margin-left: auto; width: 22px; height: 22px; border: 1px solid rgba(211, 201, 177, 0.22); border-radius: 50%; }
.products-grid .kavo-topbar b + b { margin-left: 0; }
.products-grid .kavo-photo-strip { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 0.55rem; height: 108px; }
.products-grid .kavo-photo-strip div { border-radius: 8px; background: radial-gradient(circle at 45% 35%, #ffd8ae, transparent 17%), radial-gradient(circle at 55% 32%, #ffe9cb, transparent 14%), linear-gradient(135deg, #4d7f85, #173039); }
.products-grid .kavo-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.4rem; margin-top: 1rem; }
.products-grid .kavo-actions span { display: grid; place-items: center; min-height: 58px; border-radius: 12px; background: rgba(255, 255, 255, 0.045); color: rgba(246, 242, 234, 0.66); font-size: 0.88rem; font-weight: 700; }

.products-grid .triage-mockup { padding: 0; }
.products-grid .triage-mockup nav { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid rgba(211, 201, 177, 0.09); }
.products-grid .triage-mockup nav span { padding: 1rem 0.65rem; color: rgba(246, 242, 234, 0.48); font-size: 0.82rem; font-weight: 750; text-align: center; }
.products-grid .triage-mockup nav .active { color: #2a5dec; box-shadow: inset 0 -2px 0 #2a5dec; }
.products-grid .log-row { display: grid; grid-template-columns: 58px 120px 1fr 78px; gap: 0.7rem; align-items: center; padding: 0.78rem 1rem; border-bottom: 1px solid rgba(211, 201, 177, 0.07); color: rgba(246, 242, 234, 0.66); font-size: 0.8rem; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.products-grid .log-row b { display: inline-flex; justify-content: center; border-radius: 7px; padding: 0.25rem 0.35rem; color: #fff; font-size: 0.7rem; }
.products-grid .log-row.error b { background: #e4643d; }
.products-grid .log-row.warn b { background: #e1a538; }
.products-grid .log-row.info b { background: #4f96a8; }
.products-grid .log-row p { margin: 0; white-space: nowrap; }
.products-grid .log-row code { color: rgba(246, 242, 234, 0.7); }
.products-grid .triage-note { position: relative; padding: 1.1rem; color: rgba(246, 242, 234, 0.66); font-size: 0.92rem; line-height: 1.45; }
.products-grid .triage-note p { margin: 0.2rem 0; }
.products-grid .triage-note span { position: absolute; right: 1.1rem; bottom: 1.1rem; color: var(--color-accent); font-size: 1.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.25rem;
  border: 1px solid rgba(211, 201, 177, 0.16);
  border-radius: 0.9rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(9, 26, 31, 0.7), rgba(8, 23, 28, 0.88));
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.92rem 0.78rem;
  border: 0;
  border-right: 1px solid rgba(211, 201, 177, 0.14);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(11, 31, 37, 0.55), rgba(8, 23, 28, 0.82));
  box-shadow: inset 0 1px 0 rgba(233, 226, 208, 0.06);
  position: relative;
  overflow: hidden;
  transition: border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.service-card:last-child {
  border-right: 0;
}

.service-card:hover,
.service-card:focus-within {
  background: linear-gradient(180deg, rgba(16, 38, 45, 0.72), rgba(10, 27, 32, 0.9));
  box-shadow: inset 0 1px 0 rgba(233, 226, 208, 0.11);
}

.service-card::after {
  content: none;
}

.service-icon {
  width: 1.65rem;
  height: 1.65rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.45rem;
  border: 1px solid rgba(211, 201, 177, 0.35);
  background: rgba(211, 201, 177, 0.06);
}

.service-icon svg {
  width: 0.9rem;
  height: 0.9rem;
}

.service-card h3 {
  margin-top: 0.22rem;
  font-size: 1.02rem;
}

.service-icon path {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-description {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.service-points {
  margin: var(--space-2) 0 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.3rem;
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

@media (min-width: 1025px) {
  .service-points {
    display: none;
  }
}

.services-cta {
  position: relative;
  overflow: hidden;
  margin-top: clamp(2rem, 3.5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.1rem;
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(211, 201, 177, 0.2);
  border-radius: 1.05rem;
  background:
    radial-gradient(circle at 82% 50%, rgba(211, 201, 177, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(12, 38, 43, 0.92), rgba(5, 18, 21, 0.95));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.services-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 34%;
  opacity: 0.28;
  background: repeating-radial-gradient(
    ellipse at 100% 50%,
    transparent 0,
    transparent 14px,
    rgba(211, 201, 177, 0.28) 15px,
    transparent 16px
  );
  mask-image: linear-gradient(to left, black, transparent);
  pointer-events: none;
}

.services-cta-title,
.services-cta-body {
  margin: 0;
}

.services-cta-title {
  color: var(--color-text);
  font-weight: 560;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

.services-cta-body {
  margin-top: 0.35rem;
  color: var(--color-text-muted);
}

.services-reference__strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 0;
  padding: 1.3rem 0.5rem 0.9rem;
  background: transparent;
}

.services-reference__strip::before,
.services-reference__strip::after {
  content: none;
}

.service-item {
  position: relative;
  min-height: 178px;
  padding: 0.75rem 1.6rem 0.45rem;
}

.service-item:first-child {
  padding-left: 1.35rem;
}

.service-item:last-child {
  padding-right: 1.35rem;
}

.service-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(211, 201, 177, 0.13) 18%, rgba(211, 201, 177, 0.13) 78%, transparent);
}

.service-item svg {
  width: 42px;
  height: 42px;
  margin-bottom: 1.4rem;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(211, 201, 177, 0.16));
}

.service-item .lambda-icon {
  stroke: none;
  fill: var(--color-accent);
}

.service-item .lambda-icon path {
  stroke: var(--color-accent);
  stroke-width: 1.05;
  paint-order: stroke fill;
}

.service-item svg[viewBox="0 0 24 24"] {
  fill: var(--color-accent);
  stroke: none;
}

.service-item .automation-icon {
  width: 36px;
  height: 36px;
}

.service-item .automation-icon path {
  fill: var(--color-accent);
  stroke: none;
}

.service-item h3 {
  margin: 0 0 0.75rem;
  color: var(--color-text);
  font-size: clamp(1.1rem, 1.12vw, 1.38rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 690;
}

.service-item p {
  margin: 0;
  color: rgba(246, 242, 234, 0.64);
  font-size: clamp(0.98rem, 1vw, 1.12rem);
  line-height: 1.58;
  font-weight: 560;
}

.services-cta-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.services-cta-button span {
  font-size: 1.2em;
  line-height: 1;
}

.approach-flow {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(211, 201, 177, 0.16);
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0.01)),
    rgba(5, 17, 20, 0.62);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.approach-step {
  position: relative;
  min-height: 13.75rem;
  padding: 2.05rem 2rem;
}

.approach-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: 0;
  bottom: 2rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(211, 201, 177, 0.2), transparent);
}

.approach-step-number {
  display: block;
  margin: 0 0 0.75rem;
  color: var(--color-accent);
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 650;
}

.approach-step h3 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.approach-step-description {
  margin: 0;
  max-width: 18ch;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.58;
  font-weight: 580;
}

.approach-points {
  display: none;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
  align-items: start;
}

.about-main h2 {
  font-size: clamp(2.45rem, 3.35vw, 3.9rem);
  line-height: 1.1;
}

.about-intro {
  max-width: 50ch;
}

.about-meta {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.about-meta li {
  padding: 0.34rem 0.62rem;
  border: 1px solid rgba(211, 201, 177, 0.22);
  border-radius: 999px;
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(11, 30, 34, 0.5);
}

.about-focus {
  border-left: 1px solid rgba(211, 201, 177, 0.2);
  padding-left: 1.05rem;
  max-width: 27rem;
}

.about-focus-title {
  margin: 0;
  color: var(--color-accent);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-focus-list {
  margin: 0.8rem 0 0;
}

.about-focus-list div {
  padding: 0.52rem 0;
  border-bottom: 1px solid rgba(211, 201, 177, 0.1);
}

.about-focus-list dt {
  color: var(--color-text);
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.about-focus-list dd {
  margin: 0.15rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid rgba(211, 201, 177, 0.2);
  border-radius: 1.05rem;
  background:
    radial-gradient(circle at 82% 50%, rgba(211, 201, 177, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(12, 38, 43, 0.92), rgba(5, 18, 21, 0.95));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 1.5rem 1.6rem;
}

.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 34%;
  opacity: 0.28;
  background: repeating-radial-gradient(
    ellipse at 100% 50%,
    transparent 0,
    transparent 14px,
    rgba(211, 201, 177, 0.28) 15px,
    transparent 16px
  );
  mask-image: linear-gradient(to left, black, transparent);
  pointer-events: none;
}

.contact-cta h2 {
  grid-column: 1;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.45rem, 2.1vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.contact-cta h2 span {
  color: var(--color-accent);
}

.contact-cta-button {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.contact-cta-button span {
  font-size: 1.2em;
  line-height: 1;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-6);
  background:
    radial-gradient(34rem 12rem at 50% 0%, rgba(211, 201, 177, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(10, 35, 40, 0.45), rgba(7, 24, 28, 0.82));
}

.site-footer .container {
  border-top: 1px solid rgba(211, 201, 177, 0.08);
}

.footer-wrap {
  padding-block: var(--space-4);
  color: var(--color-text-muted);
  font-size: 1rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-3) 0 var(--space-4);
}

.footer-brand,
.footer-description,
.footer-status,
.footer-email,
.footer-legal {
  margin: 0;
}

.footer-brand {
  color: var(--color-text);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-description {
  margin-top: var(--space-1);
}

.footer-status {
  margin-top: var(--space-2);
  color: var(--color-accent);
  font-size: 0.92rem;
}

.footer-links-block {
  display: grid;
  gap: var(--space-2);
  justify-items: end;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem 1rem;
  padding: 0;
  margin: 0;
}

.footer-links a,
.footer-email a {
  display: inline-block;
  padding: 0.2rem 0.4rem;
  border-radius: 0.75rem;
  color: rgba(224, 216, 198, 0.88);
  text-decoration-color: rgba(211, 201, 177, 0.35);
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-email a:hover,
.footer-email a:focus-visible {
  color: var(--color-accent);
  background: rgba(211, 201, 177, 0.08);
  box-shadow: inset 0 0 0 1px rgba(211, 201, 177, 0.2), 0 0 0 1px rgba(211, 201, 177, 0.08);
}

.footer-email {
  font-size: 0.98rem;
}

.footer-legal {
  border-top: 1px solid rgba(211, 201, 177, 0.15);
  padding-top: var(--space-3);
  font-size: 0.9rem;
}

.coasted-footer-reference {
  position: relative;
  overflow: hidden;
  color: var(--color-text);
  border-top: 1px solid rgba(211, 201, 177, 0.13);
  background:
    radial-gradient(circle at 20% 0%, rgba(211, 201, 177, 0.055), transparent 28%),
    linear-gradient(180deg, rgba(8, 28, 32, 0.72), rgba(4, 17, 20, 0.96));
}

.coasted-footer-reference::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background: repeating-linear-gradient(112deg, transparent 0, transparent 42px, rgba(211, 201, 177, 0.16) 43px, transparent 44px);
  pointer-events: none;
}

.footer-reference__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 5rem, var(--container-max));
  margin: 0 auto;
  padding: 3.4rem 0 3rem;
  display: grid;
  grid-template-columns: 1.35fr 1.8fr 0.8fr;
  gap: 5rem;
  align-items: start;
}

.footer-reference__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--color-accent);
  text-decoration: none;
  margin-bottom: 1.15rem;
}

.footer-reference__logo svg {
  display: block;
}

.footer-logo-icon {
  width: 38px;
  height: 38px;
  fill: var(--color-accent);
  flex: 0 0 auto;
}

.footer-logo-full {
  width: 14.25rem;
  height: auto;
  flex: 0 0 auto;
}

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

.footer-reference__brand p {
  margin: 0;
  max-width: 28ch;
  color: rgba(246, 242, 234, 0.64);
  font-size: clamp(0.92rem, 0.96vw, 1.05rem);
  line-height: 1.55;
  font-weight: 560;
}

.footer-reference__copyright {
  margin-top: 2rem;
  padding-top: 0.35rem;
  color: rgba(246, 242, 234, 0.42);
}

.footer-reference__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem;
}

.footer-reference__nav h3,
.footer-reference__connect h3 {
  margin: 0 0 1.05rem;
  color: var(--color-accent);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-reference__nav a {
  display: block;
  width: fit-content;
  color: rgba(246, 242, 234, 0.64);
  text-decoration: none;
  font-size: clamp(0.9rem, 0.95vw, 1.05rem);
  line-height: 1.55;
  font-weight: 620;
  margin-top: 0.22rem;
}

.footer-reference__nav a:hover,
.footer-reference__nav a:focus-visible {
  color: var(--color-accent);
  outline: none;
}

.footer-reference__connect {
  justify-self: end;
}

.footer-reference__socials {
  display: flex;
  gap: 1.15rem;
}

.footer-reference__socials a {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(211, 201, 177, 0.16);
  border-radius: 16px;
  color: var(--color-accent);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)), rgba(5, 17, 20, 0.54);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 34px rgba(0, 0, 0, 0.2);
}

.footer-reference__socials svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-reference__socials a:hover,
.footer-reference__socials a:focus-visible {
  border-color: rgba(211, 201, 177, 0.42);
  background: rgba(211, 201, 177, 0.08);
  outline: 2px solid rgba(211, 201, 177, 0.32);
  outline-offset: 4px;
}

@media (max-width: 920px) {
  body {
    font-size: 16px;
  }

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

  .container {
    width: min(100% - 2rem, var(--container-max));
  }

  .hero::after {
    inset: auto 10% -8% 10%;
  }

  .coasted-dashboard {
    transform: none;
  }

  .hero {
    min-height: auto;
  }

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

  .coasted-metrics,
  .coasted-dashboard__lower {
    grid-template-columns: 1fr;
  }

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

  .product-card:nth-child(2) {
    margin-top: 0;
  }

  .product-card {
    min-height: auto;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .services-reference__strip {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.5rem;
    padding-inline: 0.4rem;
  }

  .services-reference__strip .service-item:nth-child(3)::after {
    display: none;
  }

  .service-card,
  .service-card:last-child {
    border: 1px solid rgba(211, 201, 177, 0.2);
    border-radius: 0.82rem;
  }

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

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

  .about-focus {
    max-width: none;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(211, 201, 177, 0.16);
    padding-top: 0.7rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .footer-reference__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-reference__connect {
    justify-self: start;
  }

  .footer-reference__nav {
    max-width: 720px;
  }

  .footer-links-block {
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .approach-step::after {
    display: none;
  }

}

@media (min-width: 1440px) {
  .container {
    width: min(100% - 4.5rem, var(--container-max));
  }

  .hero {
    padding-block: 5.2rem 2.7rem;
    min-height: 53rem;
  }

  .hero-grid {
    gap: 2.8rem;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(4.6rem, 5.6vw, 6.8rem);
    line-height: 1;
  }

  .hero-body {
    max-width: 44ch;
    font-size: 1.2rem;
  }

  .coasted-dashboard {
    min-height: 31.5rem;
  }

  .products-grid,
  .services-grid {
    gap: 1.3rem;
  }

  .product-card {
    min-height: 31rem;
  }

  .approach-step {
    padding: 1.2rem;
  }
}

@media (max-width: 640px) {
  :root {
    --anchor-offset: 8.5rem;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .nav-list {
    flex-wrap: wrap;
  }

  .hero {
    padding-block: 3.2rem 2rem;
    min-height: auto;
  }

  main::before,
  main::after {
    opacity: 0.24;
  }

  .section-panel::after {
    left: 4%;
    right: 4%;
  }

  h1 {
    max-width: 16ch;
    font-size: clamp(2.45rem, 10vw, 3.5rem);
  }

  .hero-body {
    font-size: 1rem;
  }

  .hero-built-on {
    margin-top: 1.5rem;
  }

  .coasted-hero__signal-strip {
    grid-template-columns: 1fr;
  }

  .coasted-dashboard {
    grid-template-columns: 1fr;
  }

  .coasted-dashboard__rail {
    flex-direction: row;
    justify-content: flex-start;
    padding: 0.95rem 1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(211, 201, 177, 0.12);
  }

  .coasted-dashboard__main {
    padding: 1rem;
  }

  .coasted-dashboard__header {
    flex-direction: column;
  }

  .section-panel .container {
    padding: 0;
  }

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

  .products-grid .product-card {
    min-height: auto;
    padding: 1.4rem;
  }

  .products-grid .product-card__icon {
    width: 64px;
    height: 64px;
  }

  .products-grid .mixor-mockup {
    grid-template-columns: 1fr;
  }

  .products-grid .mixor-mockup aside {
    display: none;
  }

  .products-grid .log-row {
    grid-template-columns: 54px 1fr;
  }

  .products-grid .log-row p,
  .products-grid .log-row code {
    display: none;
  }

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

  .services-reference__strip {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.75rem 1rem;
  }

  .service-item,
  .service-item:first-child {
    min-height: auto;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(211, 201, 177, 0.11);
  }

  .services-reference__strip::before,
  .services-reference__strip::after {
    display: none;
  }

  .service-item::after {
    display: none;
  }

  .service-item svg {
    width: 36px;
    height: 36px;
    margin-bottom: 0.9rem;
  }

  .service-points {
    display: grid;
  }

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

  .services-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .services-cta-button {
    justify-self: start;
  }


  .contact-cta {
    grid-template-columns: 1fr;
  }

  .contact-cta h2,
  .contact-cta-button {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-cta-button {
    justify-self: start;
  }

  .footer-reference__inner {
    width: min(100% - 1.25rem, var(--container-max));
    padding: 2.5rem 0;
  }

  .footer-reference__nav {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .footer-reference__socials a {
    width: 52px;
    height: 52px;
  }
}
