:root {
  --bg: #eef7f5;
  --bg-start: #e9f5ff;
  --bg-end: #fffaf0;
  --paper: rgba(246, 252, 250, 0.86);
  --ink: #0f1720;
  --muted: #4f6b68;
  --line: rgba(15, 118, 110, 0.28);
  --line-strong: rgba(15, 118, 110, 0.55);
  --accent: #0f766e;
  --accent-bright: #14b8a6;
  --blue: #005cff;
  --amber: #f59e0b;
  --topbar: rgba(238, 247, 245, 0.62);
  --card: rgba(255,255,255,0.34);
  --terminal: rgba(250, 255, 253, 0.82);
  --ghost: rgba(255,255,255,0.28);
  --ghost-hover: rgba(0, 92, 255, 0.08);
  --nav-hover: rgba(0, 92, 255, 0.06);
  --veil: rgba(255,255,255,0.54);
  --texture: rgba(15,118,110,0.035);
  --contact-bg: rgba(15, 23, 32, 0.92);
  --contact-muted: #b7cbc8;
  --contact-list: #d7e8e5;
  --shadow: 0 28px 90px rgba(15, 23, 32, 0.10);
  --max: 1224px;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg: #08111a;
  --bg-start: #07101a;
  --bg-end: #120f1a;
  --paper: rgba(8, 17, 26, 0.82);
  --ink: #e8fff9;
  --muted: #8fb7ae;
  --line: rgba(45, 212, 191, 0.20);
  --line-strong: rgba(45, 212, 191, 0.42);
  --accent: #2dd4bf;
  --accent-bright: #5eead4;
  --blue: #8ab4ff;
  --amber: #fbbf24;
  --topbar: rgba(6, 15, 24, 0.72);
  --card: rgba(9, 24, 36, 0.64);
  --terminal: rgba(5, 14, 23, 0.88);
  --ghost: rgba(138, 180, 255, 0.08);
  --ghost-hover: rgba(138, 180, 255, 0.15);
  --nav-hover: rgba(138, 180, 255, 0.11);
  --veil: rgba(0,0,0,0.22);
  --texture: rgba(45,212,191,0.035);
  --contact-bg: rgba(3, 9, 15, 0.96);
  --contact-muted: #93b7b0;
  --contact-list: #d9fff7;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(20, 184, 166, 0.22), transparent 34rem),
    radial-gradient(circle at 80% 2%, rgba(0, 92, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, var(--bg-start) 0%, var(--bg) 40%, var(--bg-end) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 25% 100%, 100% 25%;
  opacity: 0.72;
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, transparent 25%, var(--veil) 70%),
    repeating-linear-gradient(-18deg, var(--texture) 0 1px, transparent 1px 10px);
  mix-blend-mode: multiply;
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  z-index: -1;
}

.cyber-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
  contain: layout paint;
}

.cyber-backdrop::before,
.cyber-backdrop::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(100deg, transparent 0 42%, rgba(20, 184, 166, 0.12) 48%, transparent 54% 100%),
    linear-gradient(180deg, transparent 0 48%, rgba(245, 158, 11, 0.10) 50%, transparent 52% 100%);
  transform: translate3d(0, calc(var(--scroll-y, 0px) * -0.018), 0);
  animation: scan-drift 14s linear infinite;
  opacity: 0.42;
}

.cyber-backdrop::after {
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 68px, rgba(0, 92, 255, 0.08) 69px, transparent 72px),
    repeating-linear-gradient(0deg, transparent 0 82px, rgba(245, 158, 11, 0.06) 83px, transparent 86px);
  animation-duration: 22s;
  animation-direction: reverse;
  opacity: 0.28;
}

.cyber-orb,
.spark {
  position: absolute;
  display: block;
  transform: translate3d(0, var(--drift-y, 0px), 0);
  will-change: transform, opacity;
}

.cyber-orb {
  width: 28rem;
  aspect-ratio: 1;
  border: 1px solid rgba(20, 184, 166, 0.16);
  background:
    radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.22), transparent 58%),
    conic-gradient(from 120deg, transparent, rgba(0, 92, 255, 0.22), transparent, rgba(245, 158, 11, 0.18), transparent);
  filter: blur(0.2px);
  mix-blend-mode: multiply;
  opacity: 0.42;
  animation: slow-forge-spin 30s linear infinite;
}

:root[data-theme="dark"] .cyber-orb {
  mix-blend-mode: screen;
  opacity: 0.34;
}

.orb-a { top: 8%; left: -10rem; }
.orb-b { top: 44%; right: -12rem; width: 34rem; animation-duration: 42s; animation-direction: reverse; }
.orb-c { bottom: -16rem; left: 28%; width: 22rem; animation-duration: 36s; opacity: 0.26; }

.spark {
  width: 9rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), var(--accent-bright), transparent);
  opacity: 0;
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.44);
  animation: ember-pass 7s ease-in-out infinite;
}

.spark-a { top: 24%; left: 10%; animation-delay: 0.4s; }
.spark-b { top: 58%; left: 52%; animation-delay: 2.2s; animation-duration: 8.5s; }
.spark-c { top: 78%; left: 18%; animation-delay: 4.1s; animation-duration: 10s; }

@keyframes slow-forge-spin {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

@keyframes scan-drift {
  from { translate: -4% -4%; }
  to { translate: 4% 4%; }
}

@keyframes ember-pass {
  0%, 100% { opacity: 0; transform: translate3d(-28px, var(--drift-y, 0px), 0) scaleX(0.72); }
  35% { opacity: 0.72; }
  60% { opacity: 0.34; transform: translate3d(84px, var(--drift-y, 0px), 0) scaleX(1); }
}

.shell {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.topbar {
  display: grid;
  grid-template-columns: 244px 1fr auto;
  min-height: 104px;
  border: 1px solid var(--line-strong);
  border-top: 0;
  background: var(--topbar);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  color: var(--accent);
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 8px 8px 0 rgba(15, 118, 110, 0.16);
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.nav a {
  min-height: 104px;
  display: flex;
  align-items: flex-start;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.22em;
  font-size: 12px;
}

.nav a:last-child { border-right: 0; }
.nav a:hover { background: var(--nav-hover); }

.theme-toggle {
  min-width: 104px;
  min-height: 104px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 22px 16px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  cursor: pointer;
}

.theme-toggle:hover { background: var(--ghost-hover); }
.theme-toggle-icon {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0;
}

.section-frame {
  border-left: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.hero {
  min-height: calc(100vh - 104px);
  min-height: calc(100svh - 104px);
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 54px;
  align-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(22px, 5vw, 84px);
}

.hero-copy,
.terminal-card,
.service-grid article,
.package,
.contact > * {
  min-width: 0;
}

.kicker {
  margin: 0 0 18px;
  color: var(--blue);
  letter-spacing: 0.32em;
  font-size: 13px;
}

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

h1 {
  max-width: 760px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  font-family: Arial Black, Impact, ui-sans-serif, system-ui, sans-serif;
  color: var(--blue);
  font-size: clamp(58px, 8.5vw, 112px);
  line-height: 0.86;
  letter-spacing: -0.075em;
  margin-bottom: 30px;
  text-transform: uppercase;
}

h2 {
  font-family: Arial Black, Impact, ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  font-size: clamp(34px, 5.8vw, 74px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

h3 {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions,
.contact-panel .button {
  margin-top: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.19em;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 8px 8px 0 rgba(15, 118, 110, 0.16);
}

.button.primary:hover { background: var(--accent-bright); }
.button.ghost { color: var(--blue); background: var(--ghost); }
.button.ghost:hover { background: var(--ghost-hover); }

.terminal-card {
  min-width: 0;
  background: var(--terminal);
  border: 1px solid var(--accent);
  box-shadow: var(--shadow), 12px 12px 0 rgba(245, 158, 11, 0.18);
  align-self: center;
}

.terminal-top {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 0 14px;
  color: var(--amber);
  letter-spacing: 0.18em;
  font-size: 11px;
}

.terminal-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
}

.terminal-top b { margin-left: auto; }

pre {
  margin: 0;
  padding: 26px;
  overflow-x: auto;
  color: var(--accent);
  font-size: 14px;
  line-height: 1.75;
}

.split-section {
  display: grid;
  grid-template-columns: 244px 1fr;
  border-left: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.section-label {
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  color: var(--amber);
  letter-spacing: 0.28em;
  font-weight: 900;
}

.statement { padding: 42px clamp(22px, 4vw, 58px); }
.statement h2 { max-width: 990px; }

.service-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
}

.service-grid article,
.package {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line-strong);
  padding: 30px 24px;
  background: var(--card);
}

.service-grid article:nth-child(3n),
.package:nth-child(3n) { border-right: 0; }

.service-grid span,
.package-top span {
  display: block;
  color: var(--amber);
  letter-spacing: 0.25em;
  font-size: 12px;
  margin-bottom: 34px;
}

.service-grid p,
.package p,
.web-presence p,
.contact p,
.proof-strip span {
  color: var(--muted);
  line-height: 1.72;
}

.web-presence {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  padding: 68px clamp(22px, 5vw, 72px);
  background: rgba(15, 118, 110, 0.08);
}

.web-presence h2 { color: var(--accent); }

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

.package:nth-child(3n) { border-right: 0; }
.package.featured { background: rgba(20, 184, 166, 0.14); }
.package-top strong {
  display: block;
  color: var(--blue);
  font-size: 16px;
  margin-bottom: 24px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.proof-strip div {
  padding: 24px;
  border-right: 1px solid var(--line);
}
.proof-strip div:last-child { border-right: 0; }
.proof-strip b { display: block; color: var(--amber); letter-spacing: 0.2em; font-size: 13px; margin-bottom: 8px; }

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding: 68px clamp(22px, 5vw, 72px);
  background: var(--contact-bg);
  color: white;
}

.contact h2 { color: white; }
.contact p { color: var(--contact-muted); }

.contact-panel {
  border: 1px solid rgba(20, 184, 166, 0.4);
  background: rgba(255,255,255,0.06);
  padding: 28px;
  box-shadow: 10px 10px 0 rgba(20, 184, 166, 0.10);
}

.contact-panel ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--contact-list);
  line-height: 1.85;
}

input, textarea {
  width: 100%;
  border: 1px solid rgba(20, 184, 166, 0.4);
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 13px 14px;
  font: inherit;
}

input:focus, textarea:focus {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}

.form-note { align-self: center; font-size: 12px; margin: 18px 0 0; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0 42px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 980px) {
  .hero, .split-section, .web-presence, .contact { grid-template-columns: 1fr; }

  .topbar {
    grid-template-columns: 190px minmax(0, 1fr) 78px;
    min-height: 74px;
  }

  .brand {
    gap: 12px;
    padding: 12px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    box-shadow: 6px 6px 0 rgba(15, 118, 110, 0.16);
  }

  .brand-name {
    font-size: 20px;
  }

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

  .nav a {
    min-height: 74px;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    text-align: center;
    letter-spacing: 0.16em;
    font-size: 10px;
  }

  .theme-toggle {
    min-width: 78px;
    min-height: 74px;
    align-items: center;
    padding: 12px 10px;
    letter-spacing: 0.12em;
    font-size: 10px;
  }

  .theme-toggle-text { display: none; }

  .hero {
    min-height: auto;
    gap: 36px;
    padding: 56px clamp(28px, 5vw, 48px) 64px;
  }

  .hero-lede {
    max-width: 44rem;
  }

  .forge-visual {
    grid-template-columns: minmax(150px, 0.64fr) 1fr;
    padding: 22px 22px 0;
  }

  .forge-visual img {
    width: min(100%, 190px);
  }

  pre {
    padding: 22px;
  }

  .section-label { border-right: 0; border-bottom: 1px solid var(--line); }

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

  .service-grid article,
  .package,
  .proof-strip div {
    border-right: 1px solid var(--line);
  }

  .service-grid article:nth-child(3n),
  .package:nth-child(3n),
  .proof-strip div:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 24px), var(--max)); }

  body::before,
  body::after,
  .noise {
    position: absolute;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: auto;
  }

  .brand {
    min-width: 0;
    padding: 14px 12px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .brand-name {
    font-size: 20px;
  }

  .nav { display: none; }

  .theme-toggle {
    min-width: 64px;
    min-height: auto;
    padding: 14px 12px;
    align-items: center;
    border-left: 0;
  }

  .theme-toggle-icon { font-size: 22px; }
  .theme-toggle-text { display: none; }

  .hero {
    min-height: auto;
    padding: 44px 14px 50px;
    gap: 34px;
  }

  .kicker {
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.22em;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 0.94;
    letter-spacing: -0.055em;
    margin-bottom: 24px;
  }

  h2 {
    font-size: clamp(30px, 11vw, 46px);
    line-height: 0.96;
    letter-spacing: -0.065em;
  }

  h3 {
    font-size: 16px;
    line-height: 1.25;
  }

  .hero-lede {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    text-align: center;
    line-height: 1.35;
    letter-spacing: 0.12em;
    white-space: normal;
  }

  .button.ghost { margin-left: 0; margin-top: 0; }

  .terminal-card {
    box-shadow: var(--shadow), 8px 8px 0 rgba(245, 158, 11, 0.16);
  }

  .terminal-top {
    min-width: 0;
  }

  .terminal-top b {
    max-width: 62%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  pre {
    padding: 18px;
    font-size: 12px;
    line-height: 1.65;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
  }

  .statement,
  .service-grid article,
  .package,
  .proof-strip div,
  .contact-panel {
    padding: 24px 18px;
  }

  .contact {
    padding: 42px 18px;
    gap: 28px;
  }

  .service-grid, .package-grid, .proof-strip { grid-template-columns: 1fr; }
  .service-grid article, .package, .proof-strip div { border-right: 0 !important; }
  .footer { flex-direction: column; }
}

@media (max-width: 380px) {
  .shell { width: min(calc(100% - 18px), var(--max)); }
  .brand { gap: 10px; }
  .brand-name { font-size: 18px; }
  h1 { font-size: clamp(36px, 13.5vw, 48px); }
}

/* SEO/visual density pass: subtle Titanforge motif without losing Hermes-style clarity. */
.forge-panel {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, calc(var(--drift-y, 0px) * -0.2), 0);
}

.forge-panel::before {
  content: "";
  position: absolute;
  inset: 44px 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.75;
}

.forge-panel::after {
  content: "";
  position: absolute;
  inset: 44px 0 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 46%, rgba(20, 184, 166, 0.18) 49%, transparent 52% 100%),
    radial-gradient(circle at 82% 18%, rgba(245, 158, 11, 0.14), transparent 28%);
  transform: translateY(-120%);
  animation: terminal-scan 7.5s ease-in-out infinite;
  opacity: 0.52;
}

.forge-visual {
  display: grid;
  grid-template-columns: minmax(128px, 0.82fr) 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px 24px 0;
}

.forge-visual img {
  width: min(100%, 220px);
  filter: drop-shadow(10px 10px 0 rgba(245, 158, 11, 0.14));
}

.forge-notes {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  align-items: baseline;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.forge-notes b {
  color: var(--amber);
  font-size: 11px;
  letter-spacing: 0.22em;
}

.service-symbol {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: -14px 0 26px;
  border: 1px solid var(--line-strong);
  color: var(--blue);
  background:
    linear-gradient(135deg, transparent 0 48%, var(--line) 48% 52%, transparent 52%),
    var(--ghost);
  font-size: 30px;
  box-shadow: 8px 8px 0 rgba(15, 118, 110, 0.10);
}

.service-grid h3,
.package h3 {
  margin-bottom: 12px;
}

.package p,
.service-grid p,
.proof-strip span {
  max-width: 34rem;
}

.service-grid article,
.package,
.contact-panel {
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.service-grid article:hover,
.package:hover,
.contact-panel:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 0 rgba(15, 118, 110, 0.10);
}

.service-symbol {
  animation: glyph-pulse 5.5s ease-in-out infinite;
}

.service-grid article:nth-child(2) .service-symbol { animation-delay: 0.7s; }
.service-grid article:nth-child(3) .service-symbol { animation-delay: 1.4s; }

@keyframes terminal-scan {
  0%, 18%, 100% { transform: translateY(-120%); opacity: 0; }
  34% { opacity: 0.52; }
  58% { transform: translateY(120%); opacity: 0; }
}

@keyframes glyph-pulse {
  0%, 100% { box-shadow: 8px 8px 0 rgba(15, 118, 110, 0.10); border-color: var(--line-strong); }
  45% { box-shadow: 8px 8px 0 rgba(245, 158, 11, 0.14), 0 0 24px rgba(20, 184, 166, 0.14); border-color: var(--accent-bright); }
}

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

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

  .cyber-backdrop,
  .spark {
    display: none;
  }

  .forge-panel,
  .cyber-orb,
  .spark {
    transform: none !important;
  }
}

@media (max-width: 640px) {
  .forge-visual {
    grid-template-columns: 1fr;
    padding: 20px 18px 0;
  }

  .forge-visual img {
    width: min(72%, 220px);
  }

  .forge-notes {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .forge-notes span {
    margin-bottom: 8px;
  }

  .service-symbol {
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
  }
}
