/* ==========================================================================
   SitesByNate LLC — v2.0
   Operator-grade infrastructure aesthetic
   ========================================================================== */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Surfaces — warm dark coffee/oil tones */
  --shell-1000: #07060a;            /* deepest void */
  --shell-900: #0b0a08;             /* page background */
  --shell-800: #131110;             /* section surface */
  --shell-700: #1a1714;             /* card */
  --shell-600: #221e1a;             /* elevated card */
  --shell-500: #2a2620;             /* border tone */
  --shell-400: #3a342c;             /* divider */

  /* Ink — warm paper-cream */
  --ink-100: #faf6ed;               /* near-white, warm */
  --ink-200: #e8e0cf;               /* primary text */
  --ink-300: #b8b0a0;               /* secondary text */
  --ink-400: #8a8478;               /* tertiary text */
  --ink-500: #5a5448;               /* muted */
  --ink-600: #3a352d;               /* very muted */

  /* Signal colors — amber-led + network-cyan + status-green */
  --amber: #f59e0b;
  --amber-bright: #fbbf24;
  --amber-dim: rgba(245, 158, 11, 0.15);
  --amber-glow: rgba(245, 158, 11, 0.35);
  --cyan: #22d3ee;
  --cyan-dim: rgba(34, 211, 238, 0.15);
  --green: #4ade80;
  --green-dim: rgba(74, 222, 128, 0.15);
  --red: #f87171;

  /* Borders / glass */
  --border: rgba(232, 224, 207, 0.08);
  --border-strong: rgba(232, 224, 207, 0.16);
  --border-amber: rgba(245, 158, 11, 0.25);

  /* Gradients */
  --grad-amber: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fde68a 100%);
  --grad-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);

  /* Typography */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Layout */
  --section-padding: 7rem 1.75rem;
  --container-max: 1240px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--shell-900);
  color: var(--ink-200);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

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

img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  padding: 0 1.75rem;
}

.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ===== ATMOSPHERIC BACKGROUND ===== */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(232, 224, 207, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 224, 207, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 20%, transparent 95%);
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: overlay;
  /* SVG noise data URL for texture */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96  0 0 0 0 0.93  0 0 0 0 0.85  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.3'/></svg>");
}

.bg-vignette {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245, 158, 11, 0.04), transparent 70%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(34, 211, 238, 0.025), transparent 70%);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

.orb--amber {
  width: 600px;
  height: 600px;
  background: var(--amber);
  top: -200px;
  right: -100px;
  animation: orbDrift 28s ease-in-out infinite;
}

.orb--cyan {
  width: 500px;
  height: 500px;
  background: var(--cyan);
  bottom: 10%;
  left: -150px;
  opacity: 0.1;
  animation: orbDrift 32s ease-in-out infinite reverse;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -50px) scale(1.08); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}

/* ===== STATUS DOTS (reusable) ===== */
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.status-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  opacity: 0.5;
  animation: dotPulse 2.4s ease-in-out infinite;
}

.status-dot--green { background: var(--green); box-shadow: 0 0 8px var(--green-dim); }
.status-dot--green::before { background: var(--green); }
.status-dot--amber { background: var(--amber-bright); box-shadow: 0 0 8px var(--amber-glow); }
.status-dot--amber::before { background: var(--amber-bright); }

@keyframes dotPulse {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

/* ===== TOP STATUS BAR ===== */
.status-bar {
  position: relative;
  z-index: 10;
  background: var(--shell-1000);
  border-bottom: 1px solid var(--border);
  font-size: 0.7rem;
  padding: 0.5rem 1.75rem;
}

.status-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: var(--ink-400);
}

.status-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.status-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: var(--green-dim);
  border: 1px solid rgba(74, 222, 128, 0.22);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.status-live:hover {
  border-color: rgba(74, 222, 128, 0.45);
  background: rgba(74, 222, 128, 0.18);
  transform: translateY(-1px);
}
.status-bar__value {
  color: var(--ink-200);
  font-weight: 500;
}

.status-bar__value--accent {
  color: var(--amber-bright);
}

.status-bar__sep {
  color: var(--ink-600);
  font-family: var(--font-mono);
}

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 10, 8, 0.7);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}

.nav.scrolled {
  background: rgba(11, 10, 8, 0.92);
  border-bottom-color: var(--border-strong);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.9rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Bracket logo — feels like a CLI prompt */
.nav__mark {
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink-100);
  letter-spacing: 0.02em;
}

.nav__mark-bracket {
  color: var(--amber);
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 1.2rem;
}

.nav__mark-bracket--l { margin-right: 0.1rem; }
.nav__mark-bracket--r { margin-left: 0.1rem; }

.nav__mark-letters {
  background: var(--grad-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink-100);
}

.nav__brand-tag {
  font-size: 0.62rem;
  color: var(--ink-400);
  letter-spacing: 0.1em;
  margin-top: 1px;
}

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

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-300);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.nav__link-num {
  font-size: 0.65rem;
  color: var(--ink-500);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--ink-100);
}

.nav__link:hover .nav__link-num {
  color: var(--amber);
}

.nav__cta {
  padding: 0.55rem 1.1rem;
  background: var(--ink-100);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--shell-900);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s var(--ease-out);
  border: 1px solid transparent;
}

.nav__cta:hover {
  background: var(--amber-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.25);
}

.nav__cta svg {
  transition: transform 0.2s var(--ease-out);
}

.nav__cta:hover svg {
  transform: translateX(2px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 9px;
  cursor: pointer;
}

.nav__toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--ink-100);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ===== CORNER BRACKETS (utility decoration) ===== */
.corner {
  position: absolute;
  width: 14px;
  height: 14px;
  z-index: 2;
  pointer-events: none;
}

.corner::before,
.corner::after {
  content: '';
  position: absolute;
  background: var(--amber);
  opacity: 0.7;
}

.corner::before { width: 14px; height: 1.5px; }
.corner::after { width: 1.5px; height: 14px; }

.corner--tl { top: 18px; left: 18px; }
.corner--tl::before { top: 0; left: 0; }
.corner--tl::after { top: 0; left: 0; }

.corner--tr { top: 18px; right: 18px; }
.corner--tr::before { top: 0; right: 0; }
.corner--tr::after { top: 0; right: 0; }

.corner--bl { bottom: 18px; left: 18px; }
.corner--bl::before { bottom: 0; left: 0; }
.corner--bl::after { bottom: 0; left: 0; }

.corner--br { bottom: 18px; right: 18px; }
.corner--br::before { bottom: 0; right: 0; }
.corner--br::after { bottom: 0; right: 0; }

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  padding: 5rem 1.75rem 6rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed var(--border);
}

.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  column-gap: 3rem;
  row-gap: 3rem;
  align-items: stretch;
}

.hero__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ===== Hero status panel ===== */
.hero__panel {
  position: relative;
  background: linear-gradient(180deg, var(--shell-800) 0%, var(--shell-700) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 2px 0 rgba(245, 158, 11, 0.05) inset;
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 480px;
  max-height: 640px;
}

.hero__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}

.hero__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
  background: var(--shell-900);
  font-size: 0.7rem;
}

.hero__panel-head-left {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink-200);
  letter-spacing: 0.08em;
}

.hero__panel-head-right {
  color: var(--ink-400);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  transition: color 0.2s var(--ease-out);
}

.hero__panel-head-right:hover {
  color: var(--amber-bright);
}

.hero__panel-frame {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  background: var(--shell-900);
  overflow: hidden;
}

.hero__panel-frame iframe {
  display: block;
  width: 100%;
  height: 1040px;
  margin-top: -100px; /* Skip the status page's own header + empty padding */
  border: 0;
  background: transparent;
  color-scheme: dark;
  scrollbar-width: none;
}

.hero__panel-frame iframe::-webkit-scrollbar {
  display: none;
}

.hero__panel-frame::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--shell-900) 92%);
  pointer-events: none;
  z-index: 1;
}

.hero__pre {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  color: var(--ink-400);
  margin-bottom: 2.5rem;
  padding: 0.4rem 0.8rem;
  background: var(--shell-800);
  border: 1px solid var(--border);
  border-radius: 100px;
  animation: fadeIn 0.6s var(--ease-out) both;
}

.hero__pre-sep {
  color: var(--ink-600);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 2rem;
  color: var(--ink-100);
  max-width: 18ch;
}

.hero__title-line {
  display: block;
  animation: fadeUp 0.8s var(--ease-out) both;
}

.hero__title-line:nth-child(1) { animation-delay: 0.05s; }
.hero__title-line:nth-child(2) { animation-delay: 0.2s; }
.hero__title-line:nth-child(3) { animation-delay: 0.35s; }

.hero__title-line--accent {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title-line--small {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--ink-300);
  letter-spacing: -0.02em;
  margin-top: 0.3em;
}

.hero__lede {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink-300);
  max-width: 56ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s var(--ease-out) 0.5s both;
}

.hero__lede .hl {
  color: var(--ink-100);
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}

.hero__lede .hl::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--amber);
  opacity: 0.5;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease-out) 0.65s both;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}

.btn svg {
  transition: transform 0.25s var(--ease-out);
}

.btn--primary {
  background: var(--ink-100);
  color: var(--shell-900);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn--primary:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(251, 191, 36, 0.3);
}

.btn--primary:hover svg {
  transform: translateX(3px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-200);
  border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
  background: var(--shell-700);
  border-color: var(--border-amber);
  color: var(--ink-100);
  transform: translateY(-2px);
}

/* Hero spec strip — manufacturer's plate feel */
.hero__spec {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.25rem 1.75rem;
  background: var(--shell-800);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s var(--ease-out) 0.8s both;
}

.hero__spec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.4;
}

.hero__spec-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.hero__spec-label {
  font-size: 0.62rem;
  color: var(--ink-500);
  letter-spacing: 0.12em;
}

.hero__spec-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink-100);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.hero__spec-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--ink-400);
  margin-left: 0.25rem;
  letter-spacing: 0.02em;
}

.hero__spec-plus {
  color: var(--amber);
  font-size: 0.9em;
}

.hero__spec-divider {
  width: 1px;
  height: 36px;
  background: var(--border-strong);
  margin: 0 1.5rem;
  flex-shrink: 0;
}

/* ===== SECTION DIVIDER ===== */
.divider {
  padding: 1.5rem 1.75rem;
  position: relative;
  z-index: 1;
}

.divider__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.divider__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider__label {
  font-size: 0.65rem;
  color: var(--ink-500);
  letter-spacing: 0.15em;
  white-space: nowrap;
}

/* ===== SECTION SHARED ===== */
section {
  position: relative;
  z-index: 1;
}

.section__head {
  max-width: 720px;
  margin: 0 auto 4.5rem;
  text-align: center;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink-100);
  margin-bottom: 1.25rem;
}

.section__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--amber-bright);
}

.section__lede {
  font-size: 1.05rem;
  color: var(--ink-300);
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services {
  padding: var(--section-padding);
}

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

.svc {
  position: relative;
  padding: 1.75rem 1.75rem 1.5rem;
  background: var(--shell-800);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.35s var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.svc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 30%, var(--border-strong) 70%, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.svc:hover {
  background: var(--shell-700);
  border-color: var(--border-amber);
  transform: translateY(-4px);
}

.svc:hover::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--amber) 50%, transparent);
}

.svc--featured {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.04), transparent 60%), var(--shell-800);
  border-color: var(--border-amber);
}

.svc--featured::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.svc__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  gap: 0.75rem;
}

.svc__code {
  font-size: 0.65rem;
  color: var(--ink-500);
  letter-spacing: 0.1em;
}

.svc__badge {
  font-size: 0.6rem;
  padding: 0.2rem 0.55rem;
  background: var(--amber-dim);
  color: var(--amber-bright);
  border-radius: 100px;
  border: 1px solid var(--border-amber);
  letter-spacing: 0.1em;
  margin-right: auto;
  margin-left: 0.5rem;
}

.svc__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--shell-700);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-200);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.svc:hover .svc__icon {
  color: var(--amber-bright);
  border-color: var(--border-amber);
  background: var(--shell-600);
}

.svc--featured .svc__icon {
  color: var(--amber-bright);
  border-color: var(--border-amber);
}

.svc__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  color: var(--ink-100);
  margin-bottom: 0.65rem;
}

.svc__desc {
  font-size: 0.92rem;
  color: var(--ink-300);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.svc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed var(--border);
  padding-top: 1rem;
}

.svc__list li {
  font-size: 0.72rem;
  color: var(--ink-400);
  padding: 0.25rem 0;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* ===== INFRASTRUCTURE DIAGRAM ===== */
.infra {
  padding: var(--section-padding);
  background: linear-gradient(180deg, transparent, rgba(245, 158, 11, 0.02) 50%, transparent);
}

.infra__diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 4rem;
  position: relative;
}

.infra__stage {
  position: relative;
  padding: 1rem 0;
}

.infra__stage-num {
  position: absolute;
  top: -6px;
  left: 0;
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.1em;
}

.infra__node {
  background: var(--shell-800);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  position: relative;
  transition: all 0.3s ease;
}

.infra__node::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink-400), transparent);
  opacity: 0.5;
}

.infra__node:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.infra__node--accent {
  border-color: var(--border-amber);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.06), transparent 50%), var(--shell-800);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.08);
}

.infra__node--accent::after {
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 1;
}

.infra__node--metal {
  border-color: rgba(34, 211, 238, 0.25);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.04), transparent 50%), var(--shell-800);
}

.infra__node--metal::after {
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 1;
}

.infra__node-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--shell-700);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-200);
  margin-bottom: 0.5rem;
}

.infra__node--accent .infra__node-icon {
  color: var(--amber-bright);
  border-color: var(--border-amber);
}

.infra__node--metal .infra__node-icon {
  color: var(--cyan);
  border-color: rgba(34, 211, 238, 0.3);
}

.infra__node-label {
  font-size: 0.62rem;
  color: var(--ink-500);
  letter-spacing: 0.15em;
}

.infra__node-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink-100);
  letter-spacing: -0.01em;
}

.infra__node-meta {
  font-size: 0.75rem;
  color: var(--ink-400);
  line-height: 1.4;
  margin-top: 0.15rem;
}

/* Pipe between stages — animated data flow */
.infra__pipe {
  position: relative;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 0 0.5rem;
}

.infra__pipe-label {
  font-size: 0.55rem;
  color: var(--ink-500);
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
  white-space: nowrap;
  text-align: center;
}

.infra__pipe-line {
  position: relative;
  width: 100%;
  min-width: 40px;
  height: 1.5px;
  background: var(--border-strong);
  overflow: hidden;
}

.infra__pipe-line::before,
.infra__pipe-line::after {
  content: '';
  position: absolute;
  top: -1px;
  height: 3.5px;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  animation: flowPulse 2.8s linear infinite;
  filter: blur(1px);
}

.infra__pipe-line::after {
  animation-delay: 1.4s;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

@keyframes flowPulse {
  0% { left: -40%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* Uptime guarantee bar */
.infra__guarantee {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.infra__guarantee-item {
  background: var(--shell-800);
  padding: 2rem 1.75rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

.infra__guarantee-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink-100);
  margin-bottom: 0.25rem;
  display: inline-flex;
  align-items: baseline;
}

.infra__guarantee-sym {
  background: var(--grad-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.6em;
  margin-left: 0.05em;
}

.infra__guarantee-label {
  font-size: 0.65rem;
  color: var(--amber);
  letter-spacing: 0.1em;
}

.infra__guarantee-desc {
  font-size: 0.85rem;
  color: var(--ink-300);
  line-height: 1.55;
  margin-top: 0.25rem;
}

/* ===== PRICING ===== */
.pricing {
  padding: var(--section-padding);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 950px;
  margin: 0 auto 4rem;
}

.pricing__grid--three,
.pricing__grid.pricing__grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1200px;
  gap: 1.1rem;
}

.pricing__grid--three .price {
  padding: 2.1rem 1.5rem;
  min-width: 0;
}

.pricing__grid--three .price__name {
  font-size: 1.55rem;
}

.pricing__grid--three .price__tagline {
  font-size: 0.86rem;
  margin-bottom: 1.75rem;
  min-height: 2.6em;
}

.pricing__grid--three .price__number {
  font-size: 3.5rem;
}

.pricing__grid--three .price__amount {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}

.pricing__grid--three .price__minimum {
  font-size: 0.58rem;
  padding: 0.4rem 0.65rem;
}

.pricing__grid--three .price__features li {
  font-size: 0.85rem;
}

.price {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--shell-800);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
}

.price:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.price--featured {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.06), transparent 60%), var(--shell-800);
  border-color: var(--border-amber);
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.08);
}

.price--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-amber);
}

.price__pin {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.6rem;
  background: var(--amber-bright);
  color: var(--shell-900);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.price__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.price__code {
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.1em;
}

.price__type {
  font-size: 0.62rem;
  color: var(--ink-500);
  letter-spacing: 0.12em;
}

.price__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  color: var(--ink-100);
  margin-bottom: 0.45rem;
}

.price__tagline {
  font-size: 0.95rem;
  color: var(--ink-300);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.price__amount {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed var(--border);
}

.price__currency {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink-300);
}

.price__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--ink-100);
}

.price--featured .price__number {
  background: var(--grad-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price__period {
  font-size: 0.85rem;
  color: var(--ink-400);
  margin-left: 0.5rem;
  font-weight: 500;
}

.price__minimum {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  font-size: 0.62rem;
  color: var(--amber-bright);
  background: var(--amber-dim);
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--border-amber);
  border-radius: 100px;
  letter-spacing: 0.1em;
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.price__minimum--green {
  color: var(--green);
  background: var(--green-dim);
  border-color: rgba(74, 222, 128, 0.25);
}

.price__minimum--neutral {
  color: var(--ink-300);
  background: var(--shell-700);
  border-color: var(--border);
}

.price__split {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.price__split-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.price__split-step {
  font-size: 0.7rem;
  color: var(--shell-900);
  background: var(--amber-bright);
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.price__split-amt {
  display: block;
  font-weight: 600;
  color: var(--ink-100);
  font-size: 0.92rem;
  margin-bottom: 0.1rem;
}

.price__split-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-400);
  line-height: 1.45;
}

.price__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.price__features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--ink-200);
}

.price__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-dim);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.price__cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Contract terms */
/* ===== CONTRACT TERMS (full agreement preview) ===== */
.terms {
  margin-top: 4.5rem;
  padding: 2.5rem;
  background: linear-gradient(180deg, var(--shell-700), var(--shell-800) 60%);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.terms::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-amber);
  opacity: 0.7;
}

.terms__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.7rem;
  color: var(--ink-300);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--border);
}

.terms__head-left {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.terms__head-right {
  font-size: 0.62rem;
  color: var(--ink-500);
  letter-spacing: 0.15em;
}

/* === Totals math display === */
.terms__totals {
  background: var(--shell-900);
  border: 1px solid var(--border-amber);
  border-radius: 14px;
  padding: 2rem 2.25rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.terms__totals::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(245, 158, 11, 0.06), transparent 70%);
  pointer-events: none;
}

.terms__totals-label {
  display: block;
  font-size: 0.65rem;
  color: var(--ink-400);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.terms__totals-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.terms__totals-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 1.5rem;
  border: 1px dashed var(--border);
  border-radius: 12px;
  min-width: 150px;
  background: var(--shell-800);
}

.terms__totals-cell--final {
  border-style: solid;
  border-color: var(--border-amber);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.06), var(--shell-800) 70%);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.1);
}

.terms__totals-cell-label {
  font-size: 0.6rem;
  color: var(--ink-500);
  letter-spacing: 0.12em;
}

.terms__totals-cell-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--ink-100);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0.1rem 0;
}

.terms__totals-cell-value--accent {
  font-size: 3.1rem;
  background: var(--grad-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.terms__totals-cell-sub {
  font-size: 0.58rem;
  color: var(--ink-500);
  letter-spacing: 0.08em;
}

.terms__totals-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.75rem auto 0;
  max-width: 720px;
  padding: 0.9rem 1.1rem;
  background: var(--green-dim);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink-200);
  position: relative;
  z-index: 1;
}

.terms__totals-note .status-dot {
  margin-top: 0.4rem;
}

.terms__totals-note strong {
  color: var(--ink-100);
  font-weight: 600;
}

.terms__totals-op {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--ink-400);
  line-height: 1;
  align-self: center;
}

/* === Clauses grid (uses gap-as-border trick) === */
.terms__clauses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.terms__clause {
  background: var(--shell-800);
  padding: 1.75rem 1.5rem 1.75rem 3.75rem;
  position: relative;
}

.terms__clause--highlight {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.07), var(--shell-800) 70%);
}

.terms__clause--highlight::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: var(--amber);
  opacity: 0.6;
}

.terms__clause-num {
  position: absolute;
  left: 1.5rem;
  top: 1.85rem;
  font-size: 0.72rem;
  color: var(--amber);
  letter-spacing: 0;
}

.terms__clause h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink-100);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.terms__clause p {
  font-size: 0.85rem;
  color: var(--ink-300);
  line-height: 1.65;
}

.terms__clause p strong {
  color: var(--ink-100);
  font-weight: 600;
}

.terms__clause--highlight p strong {
  color: var(--amber-bright);
}

/* === Foot === */
.terms__foot {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--ink-300);
}

.terms__foot .mono {
  font-size: 0.62rem;
  color: var(--ink-500);
  letter-spacing: 0.15em;
}

.terms__foot-sep {
  color: var(--ink-600);
}

.terms__foot-note a {
  color: var(--ink-100);
  font-weight: 500;
  border-bottom: 1px dashed var(--border-amber);
  transition: color 0.2s ease;
}

.terms__foot-note a:hover {
  color: var(--amber-bright);
}

/* === Payments accepted strip === */
.terms__payments {
  background: var(--shell-900);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
  position: relative;
}

.terms__payments-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--border);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.terms__payments-label {
  font-size: 0.65rem;
  color: var(--ink-400);
  letter-spacing: 0.15em;
}

.terms__payments-wave {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.65rem;
  color: var(--ink-500);
  letter-spacing: 0.1em;
}

.terms__payments-wave-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--cyan), var(--amber-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: none;
}

.terms__payments-row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}

.terms__payments-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.85rem;
  background: var(--shell-700);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  min-width: 60px;
  min-height: 38px;
  transition: all 0.2s ease;
  cursor: default;
  text-align: center;
}

.terms__payments-method:hover {
  border-color: var(--border-amber);
  background: var(--shell-600);
  transform: translateY(-1px);
}

.terms__payments-icon {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-100);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.terms__payments-note {
  font-size: 0.82rem;
  color: var(--ink-300);
  line-height: 1.6;
  margin: 0;
}

.terms__payments-note strong {
  color: var(--ink-100);
  font-weight: 600;
}

/* ===== FAQ ===== */
.faq {
  padding: var(--section-padding);
}

.section__lede-link {
  color: var(--ink-100);
  font-weight: 500;
  border-bottom: 1px dashed var(--border-amber);
  transition: color 0.2s ease;
}

.section__lede-link:hover {
  color: var(--amber-bright);
}

.faq__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--shell-800);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s var(--ease-out);
}

.faq__item:hover {
  border-color: var(--border-strong);
}

.faq__item[open] {
  border-color: var(--border-amber);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.05), var(--shell-800) 50%);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.04), 0 8px 24px rgba(0, 0, 0, 0.2);
}

.faq__q {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink-100);
  letter-spacing: -0.01em;
  transition: background 0.2s ease;
}

.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { display: none; content: ''; }

.faq__q:hover {
  background: rgba(255, 255, 255, 0.015);
}

.faq__q-num {
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  min-width: 28px;
}

.faq__item[open] .faq__q-num {
  color: var(--amber-bright);
}

.faq__q-text {
  flex: 1;
  line-height: 1.4;
}

.faq__q-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.faq__q-icon::before,
.faq__q-icon::after {
  content: '';
  position: absolute;
  background: var(--ink-300);
  border-radius: 1px;
  transition: all 0.25s ease;
}

.faq__q-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq__q-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  transform: translateX(-50%);
}

.faq__item[open] .faq__q-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.faq__item[open] .faq__q-icon::before {
  background: var(--amber-bright);
}

.faq__a {
  padding: 0 1.5rem 1.5rem 4.5rem;
  border-top: 1px dashed var(--border);
  padding-top: 1.25rem;
  animation: faqFadeIn 0.3s var(--ease-out) both;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq__a p {
  font-size: 0.93rem;
  color: var(--ink-300);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

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

.faq__a strong {
  color: var(--ink-100);
  font-weight: 600;
}

.faq__a a {
  color: var(--amber-bright);
  border-bottom: 1px dashed var(--border-amber);
  transition: color 0.2s ease;
}

.faq__a a:hover {
  color: var(--ink-100);
}

/* ===== PROCESS ===== */
.process {
  padding: var(--section-padding);
}

.proc {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.proc::before {
  content: '';
  position: absolute;
  left: 1.6rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 1px;
  background: repeating-linear-gradient(180deg, var(--border-strong) 0, var(--border-strong) 6px, transparent 6px, transparent 12px);
}

.proc__step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem 0;
  position: relative;
  border-bottom: 1px dashed var(--border);
}

.proc__step:last-child { border-bottom: none; }

.proc__num {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-100);
  background: var(--shell-700);
  border: 1px solid var(--border-strong);
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.proc__step:hover .proc__num {
  border-color: var(--border-amber);
  color: var(--amber-bright);
  background: var(--shell-600);
}

.proc__body {
  flex: 1;
  padding-top: 0.2rem;
}

.proc__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink-100);
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
}

.proc__desc {
  font-size: 0.92rem;
  color: var(--ink-300);
  line-height: 1.65;
  max-width: 58ch;
}

.proc__time {
  font-size: 0.65rem;
  color: var(--ink-500);
  letter-spacing: 0.1em;
  padding-top: 0.7rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about {
  padding: var(--section-padding);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about__pre {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.about__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink-100);
  margin-bottom: 1.5rem;
}

.about__text p {
  color: var(--ink-300);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  max-width: 50ch;
}

.about__highlights {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.about__hl {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink-200);
  font-size: 0.92rem;
}

.about__hl-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--green-dim);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* About spec card */
.about__card {
  background: var(--shell-800);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.about__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-amber);
  opacity: 0.6;
}

.about__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--border);
}

.about__card-label {
  font-size: 0.68rem;
  color: var(--ink-400);
  letter-spacing: 0.12em;
}

.about__specs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about__specs-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.25rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--border);
  align-items: center;
}

.about__specs-row:last-child { border-bottom: none; }

.about__specs-row dt {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--ink-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about__specs-row dd {
  font-size: 0.9rem;
  color: var(--ink-100);
  font-weight: 500;
}

.about__live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--green);
}

.about__live::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: dotPulse 2s ease-in-out infinite;
}

/* ===== CONTACT ===== */
.contact {
  padding: var(--section-padding);
}

.contact__pre {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact__info-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  color: var(--ink-100);
  margin-bottom: 1.25rem;
}

.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding-left: 0;
}

.contact__info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: var(--ink-300);
  line-height: 1.55;
}

.contact__info-num {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--shell-700);
  border: 1px solid var(--border);
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.contact__lines {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__line {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  background: var(--shell-800);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s ease;
}

.contact__line:hover {
  border-color: var(--border-strong);
}

.contact__line-label {
  font-size: 0.6rem;
  color: var(--ink-500);
  letter-spacing: 0.12em;
}

.contact__line a, .contact__line span:not(.contact__line-label) {
  font-size: 0.92rem;
  color: var(--ink-100);
  font-weight: 500;
}

.contact__line a:hover {
  color: var(--amber-bright);
}

/* Contact form */
.contact__form {
  background: var(--shell-800);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  position: relative;
}

.contact__form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.5;
}

.contact__form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--border);
  font-size: 0.7rem;
  color: var(--ink-400);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  color: var(--ink-400);
  margin-bottom: 0.5rem;
  letter-spacing: 0.12em;
}

.form__opt {
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-500);
  font-size: 0.7rem;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--shell-900);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink-100);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: all 0.25s ease;
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--ink-500);
}

.form__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23b8b0a0' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  padding-right: 2.5rem;
}

.form__select option {
  background: var(--shell-800);
  color: var(--ink-100);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-dim);
  background: var(--shell-900);
}

.form__textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--font-body);
}

.form__submit {
  width: 100%;
  padding: 1rem;
  background: var(--ink-100);
  border: none;
  border-radius: 10px;
  color: var(--shell-900);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form__submit svg {
  transition: transform 0.25s var(--ease-out);
}

.form__submit:hover:not(:disabled) {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.form__submit:hover:not(:disabled) svg {
  transform: translateX(3px);
}

.form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form__note {
  margin-top: 1rem;
  font-size: 0.62rem;
  color: var(--ink-500);
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: none;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 5rem 1.75rem 2rem;
  background: var(--shell-1000);
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink-100);
  margin-bottom: 1.25rem;
}

.footer__desc {
  font-size: 0.88rem;
  color: var(--ink-400);
  line-height: 1.7;
  max-width: 36ch;
  margin-bottom: 1.5rem;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 1.25rem 0 1.5rem;
}

.footer__contact-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.85rem;
  font-size: 0.88rem;
  color: var(--ink-200);
  font-weight: 500;
  transition: color 0.2s ease;
  width: fit-content;
}

.footer__contact-link:hover {
  color: var(--amber-bright);
}

.footer__contact-label {
  font-size: 0.62rem;
  color: var(--ink-500);
  letter-spacing: 0.15em;
  min-width: 42px;
}

.footer__status-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  color: var(--green);
  padding: 0.4rem 0.85rem;
  background: var(--green-dim);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 100px;
  letter-spacing: 0.12em;
}

.footer__status--amber {
  color: var(--amber-bright);
  background: var(--amber-dim);
  border-color: var(--border-amber);
}

.footer__status--live {
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.footer__status--live:hover {
  border-color: rgba(74, 222, 128, 0.5);
  background: rgba(74, 222, 128, 0.22);
  transform: translateY(-1px);
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-500);
  margin-bottom: 1.25rem;
}

.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-300);
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--amber-bright);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--ink-500);
}

.footer__addr {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 0.9rem 1.4rem;
  background: var(--shell-700);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  color: var(--ink-100);
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  max-width: 340px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    row-gap: 2.25rem;
  }

  .hero__panel {
    height: auto;
    min-height: 540px;
    max-height: 720px;
  }

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

  .infra__diagram {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .infra__pipe {
    display: none;
  }

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

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

  .terms__totals-cell-value {
    font-size: 2rem;
  }

  .terms__totals-cell-value--accent {
    font-size: 2.6rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-padding: 4.5rem 1.25rem;
  }

  .status-bar__item--hide,
  .status-bar__sep--hide { display: none; }

  .container { padding: 0 1.25rem; }

  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 6, 10, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__link {
    font-size: 1.3rem;
  }

  .nav__link-num { font-size: 0.85rem; }

  .nav__toggle { display: flex; }

  .nav__brand-tag { display: none; }

  .hero {
    padding: 3.5rem 1.25rem 4rem;
    min-height: auto;
  }

  .hero__spec {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .hero__spec-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .hero__spec-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

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

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

  .pricing__grid,
  .pricing__grid.pricing__grid--three {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .pricing__grid--three .price {
    padding: 2.5rem 2rem;
  }

  .pricing__grid--three .price__name {
    font-size: 1.85rem;
  }

  .pricing__grid--three .price__number {
    font-size: 4.5rem;
  }

  .pricing__grid--three .price__tagline {
    min-height: 0;
  }

  .pricing__grid--three .price__minimum {
    font-size: 0.62rem;
    padding: 0.45rem 0.8rem;
  }

  .pricing__grid--three .price__features li {
    font-size: 0.9rem;
  }

  .terms {
    padding: 1.75rem 1.25rem;
  }

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

  .terms__totals {
    padding: 1.5rem 1.25rem;
  }

  .terms__totals-row {
    flex-direction: column;
    gap: 0.85rem;
  }

  .terms__totals-cell {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 1.25rem;
  }

  .terms__totals-cell-value,
  .terms__totals-cell-value--accent {
    font-size: 2rem;
    line-height: 1;
  }

  .terms__totals-op {
    font-size: 1.2rem;
    color: var(--ink-500);
  }

  .terms__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .terms__foot-sep { display: none; }

  .terms__payments {
    padding: 1.25rem 1rem;
  }

  .terms__payments-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .terms__payments-method {
    min-width: 52px;
    padding: 0.5rem 0.65rem;
  }

  .terms__payments-icon {
    font-size: 0.62rem;
  }

  .faq__q {
    padding: 1rem 1.1rem;
    font-size: 0.95rem;
    gap: 0.75rem;
  }

  .faq__q-num {
    min-width: 24px;
    font-size: 0.65rem;
  }

  .faq__a {
    padding: 1rem 1.1rem 1.25rem 3rem;
  }

  .faq__a p {
    font-size: 0.88rem;
  }

  .proc__step {
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .proc__time {
    width: 100%;
    padding-top: 0;
    padding-left: 70px;
  }

  .contact__form {
    padding: 1.75rem 1.25rem;
  }

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

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand-col {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .toast {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .infra__guarantee-num {
    font-size: 2.75rem;
  }

  .price {
    padding: 2rem 1.5rem;
  }

  .price__number { font-size: 3.75rem; }

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

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
