/* ===========================================================
   WebOmega — Editorial / institutional / craft-forward
   =========================================================== */

:root {
  --bg: #0a0b0e;
  --bg-2: #0e1014;
  --surface: #14171d;
  --surface-2: #1a1d25;

  --border: rgba(255, 255, 255, 0.06);
  --border-2: rgba(255, 255, 255, 0.12);
  --border-3: rgba(255, 255, 255, 0.20);

  --text: #f0ede5;
  --text-2: #8d8f96;
  --text-3: #5b5d65;
  --muted: #3a3c42;

  --accent: #c9a96e;
  --accent-soft: rgba(201, 169, 110, 0.14);
  --accent-line: rgba(201, 169, 110, 0.35);
  --platinum: #d6dae3;

  --ok: #8fb98a;

  /* code syntax */
  --c-sel: #d6dae3;
  --c-prop: #8eb1d4;
  --c-val: #c9a96e;
  --c-num: #b88dc4;
  --c-fn: #c9a96e;
  --c-var: #8eb1d4;
  --c-pun: #6d7280;
  --c-pseudo: #b88dc4;
  --c-unit: #b88dc4;

  --radius: 12px;
  --radius-lg: 20px;

  --container: 1240px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
*::selection { background: var(--accent-soft); color: var(--text); }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img, svg { display: block; max-width: 100%; }

/* ===========================================================
   Ambient flying background
   =========================================================== */
.bg-layer { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

.bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 78%);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.orb-1 { top: -240px; left: -180px; width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(201,169,110,0.55) 0%, transparent 65%);
  animation: drift1 28s ease-in-out infinite alternate; }
.orb-2 { top: 30%; right: -260px; width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(160,180,210,0.35) 0%, transparent 65%);
  opacity: 0.25;
  animation: drift2 36s ease-in-out infinite alternate; }
.orb-3 { bottom: -240px; left: 30%; width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(201,169,110,0.28) 0%, transparent 65%);
  opacity: 0.22;
  animation: drift3 42s ease-in-out infinite alternate; }
@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(40px,80px) scale(1.08); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-60px,40px) scale(1.05); } }
@keyframes drift3 { from { transform: translate(0,0) scale(1); } to { transform: translate(50px,-50px) scale(1.1); } }

.bg-rings { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  will-change: transform;
}
.ring--a { width: 480px; height: 480px; top: 12%; left: -120px; animation: spin 80s linear infinite; }
.ring--b { width: 320px; height: 320px; top: 60%; right: -80px; animation: spin 120s linear infinite reverse; border-color: rgba(201,169,110,0.07); }
.ring--c { width: 720px; height: 720px; bottom: -240px; left: 30%; animation: spin 160s linear infinite; border-color: rgba(255,255,255,0.04); }
.ring--a::before, .ring--b::before, .ring--c::before {
  content: ""; position: absolute; top: -3px; left: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(201,169,110,0.6);
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.bg-omega {
  position: fixed;
  top: 50%; left: 50%;
  width: 70vmin; height: 70vmin;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.022;
  animation: omegaFloat 30s ease-in-out infinite alternate;
}
.bg-omega svg { width: 100%; height: 100%; }
@keyframes omegaFloat {
  from { transform: translate(-50%,-48%) rotate(-2deg); }
  to   { transform: translate(-50%,-52%) rotate(2deg); }
}

.bg-noise {
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.85'/></svg>");
  z-index: 1;
}

/* ===========================================================
   Layout
   =========================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

main { position: relative; z-index: 2; }

.section { padding: 140px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 90px 0; } }

/* Section header — spec-sheet style */
.section-header {
  margin-bottom: 80px;
  position: relative;
}
.section-header--split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: end;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
@media (max-width: 880px) {
  .section-header--split { grid-template-columns: 1fr; gap: 32px; }
}

.section-header__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}
.section-number {
  color: var(--accent);
}
.section-tag {
  position: relative;
  padding-left: 16px;
}
.section-tag::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 1px;
  background: var(--text-3);
  transform: translateY(-50%);
}
.section-header__desc {
  margin: 16px 0 0;
  color: var(--text-2);
  font-size: 16px;
  max-width: 48ch;
  line-height: 1.65;
}

.section__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0;
  max-width: 22ch;
  color: var(--text);
}
.section__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

/* ===========================================================
   Buttons
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid var(--border-2);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  white-space: nowrap;
  font-family: var(--sans);
}
.btn svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  box-shadow: 0 12px 36px rgba(201,169,110,0.22);
}
.btn--ghost {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--border-3);
}
.btn--lg { padding: 16px 28px; font-size: 14.5px; width: 100%; justify-content: center; }

/* ===========================================================
   Navigation
   =========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: all 0.3s var(--ease);
}
.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(10, 11, 14, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  transition: opacity 0.2s var(--ease);
}
.logo:hover { opacity: 0.85; }
.logo__svg { height: 30px; width: auto; display: block; }
.logo--lg .logo__svg { height: 42px; }
.logo__accent-glyph { fill: var(--accent); }

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--text-2);
  transition: all 0.25s var(--ease);
}
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav__cta { padding: 10px 18px; font-size: 13px; }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--border-2);
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav__toggle span {
  width: 16px; height: 1.2px; background: var(--text);
  transition: all 0.25s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.2px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.2px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links {
    position: absolute; top: 100%; right: 18px; left: 18px;
    margin-top: 10px;
    background: rgba(14, 16, 20, 0.96);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    opacity: 0; pointer-events: none;
    transform: translateY(-4px);
    transition: all 0.25s var(--ease);
  }
  .nav__links.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav__links a { padding: 12px 16px; font-size: 15px; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
}

/* ===========================================================
   Hero — editorial + browser/phone mockup composition
   =========================================================== */
.hero {
  padding: 200px 0 100px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero { padding-top: 150px; min-height: auto; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 32px;
}
.pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.55);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(201, 169, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0); }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 6.4vw, 90px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.hero__sub {
  font-size: clamp(15.5px, 1.3vw, 17.5px);
  color: var(--text-2);
  max-width: 520px;
  margin: 0 0 44px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.hero__meta i {
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--border-2);
}

/* --- Hero art: browser + phone mockup with spec tags --- */
.hero__art {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
}
@media (max-width: 980px) {
  .hero__art { margin: 0 auto; max-width: 460px; }
}

.spec-tag {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  background: rgba(10,11,14,0.85);
  backdrop-filter: blur(10px);
  z-index: 5;
  will-change: transform;
}
.spec-tag--1 { top: 2%; left: -2%; animation: float1 8s ease-in-out infinite alternate; }
.spec-tag--2 { top: 14%; right: -4%; animation: float2 9s ease-in-out infinite alternate; }
.spec-tag--3 { bottom: 26%; left: -4%; animation: float3 7s ease-in-out infinite alternate; }
.spec-tag--4 { bottom: 6%; right: 8%; animation: float1 10s ease-in-out infinite alternate; }
@keyframes float1 { from { transform: translateY(0); } to { transform: translateY(-10px); } }
@keyframes float2 { from { transform: translateY(0); } to { transform: translateY(12px); } }
@keyframes float3 { from { transform: translateY(0); } to { transform: translateY(-8px); } }

/* Browser mockup */
.mockup {
  position: absolute;
  background: linear-gradient(180deg, rgba(26,29,37,0.96), rgba(20,23,29,0.96));
  border: 1px solid var(--border-2);
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.02);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.mockup--desktop {
  top: 8%; left: 6%; right: 18%; bottom: 14%;
  border-radius: 12px;
  transform: rotate(-3deg);
  z-index: 2;
  animation: heroBob1 9s ease-in-out infinite alternate;
}
@keyframes heroBob1 {
  from { transform: rotate(-3deg) translateY(0); }
  to   { transform: rotate(-3deg) translateY(-10px); }
}
.mockup__chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
}
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot--r { background: #ff5f56; }
.dot--y { background: #ffbd2e; }
.dot--g { background: #27c93f; }
.mockup__url {
  margin-left: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-3);
  background: rgba(255,255,255,0.04);
  padding: 3px 10px;
  border-radius: 999px;
}
.mockup__url svg { width: 9px; height: 9px; }

.mockup__body { padding: 20px 22px; }
.mockup__nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.mn-logo { display: inline-block; width: 38px; height: 8px; background: var(--text); border-radius: 2px; opacity: 0.7; }
.mn-links { display: inline-flex; gap: 10px; }
.mn-links i { display: inline-block; width: 24px; height: 5px; background: var(--text-3); border-radius: 1px; opacity: 0.5; }
.mn-btn { display: inline-block; width: 44px; height: 14px; background: var(--accent); border-radius: 999px; opacity: 0.8; }

.mockup__hero { padding: 12px 0 16px; }
.mh-title { display: flex; gap: 8px; margin-bottom: 12px; }
.mh-title span { height: 14px; background: var(--text); opacity: 0.85; border-radius: 2px; }
.mh-title span:nth-child(1) { width: 32%; }
.mh-title span:nth-child(2) { width: 22%; }
.mh-title span.mh-accent { width: 26%; background: var(--accent); opacity: 1; }
.mh-sub { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; max-width: 70%; }
.mh-sub span { height: 5px; background: var(--text-3); border-radius: 1px; opacity: 0.5; }
.mh-sub span:nth-child(1) { width: 100%; }
.mh-sub span:nth-child(2) { width: 65%; }
.mh-btns { display: flex; gap: 6px; }
.mh-btn { width: 56px; height: 14px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid var(--border-2); }
.mh-btn--p { background: var(--text); border-color: var(--text); }

.mockup__features {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.mf-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.mf-icon { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); opacity: 0.7; margin-bottom: 4px; }
.mf-card span:not(.mf-icon) { height: 4px; background: var(--text-3); border-radius: 1px; opacity: 0.5; }
.mf-card span:nth-child(2) { width: 80%; }
.mf-card span:nth-child(3) { width: 55%; }

/* Phone mockup */
.mockup--phone {
  top: 22%; right: 0%; bottom: 4%;
  width: 26%;
  border-radius: 22px;
  transform: rotate(5deg);
  z-index: 3;
  animation: heroBob2 8s ease-in-out infinite alternate;
  padding: 10px;
}
@keyframes heroBob2 {
  from { transform: rotate(5deg) translateY(0); }
  to   { transform: rotate(5deg) translateY(-14px); }
}
.phone__notch {
  width: 30%; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
  margin: 2px auto 8px;
}
.phone__screen {
  background: rgba(0,0,0,0.3);
  border-radius: 14px;
  padding: 12px 10px;
  display: flex; flex-direction: column; gap: 8px;
  height: calc(100% - 16px);
}
.ph-top { height: 22px; background: var(--text); opacity: 0.85; border-radius: 4px; }
.ph-title { display: flex; flex-direction: column; gap: 4px; }
.ph-title span { height: 5px; background: var(--text-3); border-radius: 1px; opacity: 0.6; }
.ph-title span:nth-child(1) { width: 85%; }
.ph-title span:nth-child(2) { width: 60%; }
.ph-btn { height: 14px; background: var(--accent); border-radius: 999px; opacity: 0.85; margin-top: 4px; }
.ph-card { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 6px; min-height: 36px; }

@media (max-width: 540px) {
  .spec-tag--3 { display: none; }
  .mockup--desktop { top: 6%; left: 0; right: 12%; }
  .mockup--phone { width: 28%; right: -2%; }
}

/* ===========================================================
   Strip
   =========================================================== */
.strip {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.18);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.strip__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.strip__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}
.strip__track {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.strip__row {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation: marquee 38s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--text-2);
  white-space: nowrap;
}
.strip__row i {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .strip__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ===========================================================
   Problem
   =========================================================== */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .problem__grid { grid-template-columns: 1fr; gap: 48px; }
}
.problem__body {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.75;
}
.problem__body strong {
  color: var(--text);
  font-weight: 500;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.04em;
}

.asymmetry {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.asymmetry__col { display: flex; flex-direction: column; gap: 16px; }
.asymmetry__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.asymmetry__bar { height: 6px; border-radius: 4px; background: rgba(255,255,255,0.05); overflow: hidden; }
.asymmetry__bar > span { display: block; height: 100%; width: 28%; background: rgba(255,255,255,0.18); border-radius: 4px; }
.asymmetry__bar--full > span { width: 100%; background: linear-gradient(90deg, var(--accent), var(--platinum)); }
.asymmetry ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.asymmetry li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-2); }
.asymmetry li svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.asymmetry__col--weak li svg { color: var(--text-3); }
.asymmetry__col--weak li { color: var(--text-3); }
.asymmetry__gap {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-2), transparent);
  height: 100%;
  min-height: 180px;
  position: relative;
}
.asymmetry__delta {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  background: var(--bg);
  padding: 8px 14px;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .asymmetry { grid-template-columns: 1fr; padding: 24px; }
  .asymmetry__gap { display: none; }
}

/* ===========================================================
   Capabilities — Bento
   =========================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(0, auto);
  gap: 16px;
}
.bento__card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.bento__card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
}
.bento__head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.bento__label {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
}
.bento__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  flex-shrink: 0;
}
.bento__caption {
  margin: 22px 0 0;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}

/* Bento layout */
.bento__card--code        { grid-column: span 7; grid-row: span 2; }
.bento__card--perf        { grid-column: span 5; }
.bento__card--type        { grid-column: span 5; }
.bento__card--responsive  { grid-column: span 6; }
.bento__card--a11y        { grid-column: span 6; }
.bento__card--stack       { grid-column: span 12; }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento__card--code,
  .bento__card--perf,
  .bento__card--type,
  .bento__card--responsive,
  .bento__card--a11y,
  .bento__card--stack { grid-column: span 6; grid-row: auto; }
}

/* Code window */
.code-window {
  background: #0d0f14;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
}
.code-window__chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--border);
}
.code-window__file {
  margin-left: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
}
.code-window__body {
  margin: 0;
  padding: 18px 16px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
  white-space: pre;
  overflow-x: auto;
}
.code-window__body .ln {
  display: inline-block;
  width: 24px;
  color: var(--text-3);
  user-select: none;
  margin-right: 14px;
  text-align: right;
}
.c-sel    { color: var(--c-sel); }
.c-prop   { color: var(--c-prop); }
.c-val    { color: var(--c-val); }
.c-num    { color: var(--c-num); }
.c-fn     { color: var(--c-fn); }
.c-var    { color: var(--c-var); }
.c-pun    { color: var(--c-pun); }
.c-pseudo { color: var(--c-pseudo); }
.c-unit   { color: var(--c-unit); }

/* Performance bars */
.perf { display: flex; flex-direction: column; gap: 16px; flex: 1; justify-content: center; }
.perf__row { display: flex; align-items: center; gap: 16px; }
.perf__name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-2);
  width: 36px;
  flex-shrink: 0;
}
.perf__bar {
  flex: 1;
  height: 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  overflow: hidden;
  display: block;
}
.perf__bar > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--platinum));
  border-radius: 4px;
  transition: width 1.4s var(--ease);
}
.perf__bar.is-active > span { width: var(--w, 0); }

/* Type specimen */
.type-spec { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.type-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.type-row:last-child { border-bottom: none; padding-bottom: 0; }
.type-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.type-sample--display { font-family: var(--serif); font-size: 38px; font-weight: 300; letter-spacing: -0.02em; line-height: 1; color: var(--text); }
.type-sample--serif   { font-family: var(--serif); font-size: 22px; font-style: italic; font-weight: 300; color: var(--accent); }
.type-sample--body    { font-family: var(--sans); font-size: 16px; color: var(--text); font-weight: 400; }
.type-sample--mono    { font-family: var(--mono); font-size: 13px; color: var(--platinum); }
.type-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--text-3);
}
@media (max-width: 480px) {
  .type-row { grid-template-columns: 1fr; gap: 6px; }
  .type-meta { font-size: 9.5px; }
}

/* Responsive demo */
.responsive-demo {
  flex: 1;
  display: grid;
  grid-template-columns: 2.2fr 1.2fr 0.8fr;
  gap: 14px;
  align-items: end;
}
.rd-frame {
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 10px;
  background: rgba(0,0,0,0.2);
  display: flex; flex-direction: column; gap: 8px;
}
.rd-frame--phone { border-radius: 14px; }
.rd-bar { height: 6px; background: var(--text); opacity: 0.7; border-radius: 2px; width: 50%; }
.rd-content { display: flex; flex-direction: column; gap: 4px; }
.rd-content span { height: 4px; background: var(--text-3); opacity: 0.4; border-radius: 1px; }
.rd-content span:nth-child(1) { width: 100%; }
.rd-content span:nth-child(2) { width: 75%; }
.rd-content span:nth-child(3) { width: 50%; }
.rd-grid { display: flex; gap: 4px; margin-top: 6px; }
.rd-grid i { flex: 1; height: 18px; background: rgba(201,169,110,0.18); border: 1px solid var(--accent-line); border-radius: 3px; }

/* Accessibility */
.a11y { display: flex; flex-direction: column; gap: 22px; flex: 1; justify-content: center; }
.a11y__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--text);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  width: max-content;
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.a11y__btn svg { width: 14px; height: 14px; }
.a11y__kbd { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 12.5px; color: var(--text-2); }
.a11y__kbd kbd {
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-2);
  border-bottom-width: 2px;
  border-radius: 6px;
  color: var(--text);
}
.a11y__notes { display: flex; gap: 8px; flex-wrap: wrap; font-family: var(--mono); font-size: 11px; color: var(--text-3); }
.a11y__notes span:nth-child(odd) { color: var(--accent); }

/* Stack list */
.stack-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 32px; }
@media (max-width: 720px) { .stack-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stack-list { grid-template-columns: 1fr; } }
.stack-list li {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.sl-cat { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); }
.sl-items { font-family: var(--serif); font-size: 16px; color: var(--text); letter-spacing: -0.005em; font-weight: 400; }

/* ===========================================================
   Features (Approach)
   =========================================================== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .features { grid-template-columns: 1fr; } }

.feature {
  position: relative;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.feature::after {
  content: ""; position: absolute; top: 0; left: 0;
  width: 40px; height: 1px; background: var(--accent);
  transition: width 0.4s var(--ease);
}
.feature:hover { border-color: var(--border-2); transform: translateY(-4px); }
.feature:hover::after { width: 100%; }

.feature__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(201,169,110,0.06);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  margin-bottom: 28px;
}
.feature__icon svg { width: 24px; height: 24px; }
.feature__num {
  position: absolute; top: 32px; right: 32px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--text-3);
}
.feature h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.2;
}
.feature p { color: var(--text-2); margin: 0 0 24px; font-size: 15px; line-height: 1.65; }
.feature__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.feature__list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  color: var(--text-2);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.feature__list li::before { content: ""; width: 12px; height: 1px; background: var(--accent); }

/* ===========================================================
   Industries
   =========================================================== */
.ind-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 720px) { .ind-grid { grid-template-columns: 1fr; } }

.ind {
  position: relative;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.ind:hover { border-color: var(--border-2); transform: translateY(-3px); }
.ind:hover .ind__art { color: var(--accent); transform: rotate(-2deg) scale(1.04); }
.ind:hover .ind__arrow { transform: translate(4px, -4px); color: var(--accent); }

.ind__art { width: 70px; height: 70px; color: var(--text-3); margin-bottom: 26px; transition: all 0.5s var(--ease); }
.ind__art svg { width: 100%; height: 100%; }

.ind h3 {
  font-family: var(--serif);
  font-size: 24px; font-weight: 400;
  letter-spacing: -0.01em; margin: 0 0 10px;
  line-height: 1.25;
}
.ind p { color: var(--text-2); margin: 0; font-size: 14.5px; line-height: 1.6; }
.ind__arrow {
  position: absolute; top: 32px; right: 32px;
  font-size: 20px; color: var(--text-3);
  transition: all 0.4s var(--ease);
  font-family: var(--serif);
}

/* ===========================================================
   Process / Timeline
   =========================================================== */
.timeline {
  position: relative;
  display: flex; flex-direction: column; gap: 36px;
  padding-left: 70px;
}
.timeline__line {
  position: absolute;
  left: 26px; top: 28px; bottom: 28px;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0.45;
}
.step { position: relative; }
.step__node {
  position: absolute;
  left: -70px; top: 6px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border-2);
  box-shadow: 0 0 0 6px var(--bg);
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  color: var(--accent); letter-spacing: 0.05em;
  z-index: 2;
}
.step__node::before {
  content: ""; position: absolute; inset: -6px;
  border-radius: 50%; border: 1px solid var(--accent-line);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.step:hover .step__node { border-color: var(--accent-line); }
.step:hover .step__node::before { opacity: 1; }
.step__card {
  padding: 32px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  transition: all 0.35s var(--ease);
}
.step:hover .step__card { border-color: var(--border-2); transform: translateX(4px); }
.step__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400; letter-spacing: -0.015em;
  margin: 0 0 14px; line-height: 1.25;
}
.step p { color: var(--text-2); margin: 0; font-size: 15.5px; line-height: 1.65; }
@media (max-width: 640px) {
  .timeline { padding-left: 56px; }
  .step__node { left: -56px; width: 42px; height: 42px; font-size: 11px; }
  .step__card { padding: 24px; }
}

/* ===========================================================
   Contact card
   =========================================================== */
.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0 auto 40px;
  max-width: 760px;
}
@media (max-width: 640px) { .contact-info { grid-template-columns: 1fr; } }

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  text-align: left;
  transition: all 0.3s var(--ease);
}
.contact-card:hover {
  border-color: var(--accent-line);
  background: rgba(201,169,110,0.04);
  transform: translateY(-2px);
}
.contact-card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,169,110,0.08);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  flex-shrink: 0;
}
.contact-card__icon svg { width: 20px; height: 20px; }
.contact-card__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
  display: block;
}
.contact-card__value {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text);
  letter-spacing: -0.005em;
  word-break: break-all;
  display: block;
}

/* ===========================================================
   CTA / Inquiry form
   =========================================================== */
.cta__card {
  position: relative;
  padding: 80px 64px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-2);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(201,169,110,0.10), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(255,255,255,0.05), transparent 50%),
    linear-gradient(180deg, rgba(20,23,29,0.92), rgba(14,16,20,0.92));
  backdrop-filter: blur(20px);
  overflow: hidden;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.cta__meta {
  justify-content: center;
  margin-bottom: 20px;
}
.cta__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.cta__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 16px 0;
  line-height: 1.05;
}
.cta__title em { font-style: italic; color: var(--accent); font-weight: 300; }
.cta__body {
  font-size: 17px;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 2;
}
.cta__form .field--wide { grid-column: 1 / -1; }
.cta__form .btn { grid-column: 1 / -1; margin-top: 10px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.field input, .field select, .field textarea {
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border-2);
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
  transition: all 0.25s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-3) 50%),
    linear-gradient(135deg, var(--text-3) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-line);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
  background: rgba(0,0,0,0.5);
}

/* Custom select */
.select { position: relative; }
.select__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border-2);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14.5px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.select__btn:hover {
  border-color: var(--border-3);
  background: rgba(0,0,0,0.45);
}
.select__btn:focus-visible,
.select.is-open .select__btn {
  outline: none;
  border-color: var(--accent-line);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
  background: rgba(0,0,0,0.5);
}
.select__value { color: var(--muted); transition: color 0.2s var(--ease); }
.select__value:not([data-placeholder]) { color: var(--text); }
.select__chevron {
  width: 14px; height: 14px;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.select.is-open .select__chevron { transform: rotate(180deg); color: var(--accent); }

.select__list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  z-index: 20;
  margin: 0; padding: 6px;
  list-style: none;
  background: rgba(14, 16, 20, 0.96);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.02);
  max-height: 260px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  pointer-events: none;
}
.select__list[hidden] { display: none; }
.select.is-open .select__list {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.select__opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.15s var(--ease);
  outline: none;
  user-select: none;
}
.select__opt:hover,
.select__opt.is-active {
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.select__opt[aria-selected="true"] {
  color: var(--accent);
  background: var(--accent-soft);
}
.select__opt[aria-selected="true"] .select__check { opacity: 1; }

.select__check {
  width: 14px; height: 14px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
  flex-shrink: 0;
}
.select__check svg { width: 100%; height: 100%; }

/* Custom scrollbar inside list */
.select__list::-webkit-scrollbar { width: 6px; }
.select__list::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 999px; }
.select__list::-webkit-scrollbar-track { background: transparent; }
.cta__note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-3);
  margin: 8px 0 0;
}
.cta__note.is-success { color: var(--ok); }
.cta__note.is-error { color: #d97a7a; }
@media (max-width: 720px) {
  .cta__card { padding: 52px 24px; }
  .cta__form { grid-template-columns: 1fr; }
}

/* ===========================================================
   Footer
   =========================================================== */
.footer {
  padding: 90px 0 44px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer__brand p {
  margin: 20px 0 0;
  color: var(--text-3);
  max-width: 380px;
  font-size: 14px;
  line-height: 1.7;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__cols h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__cols a {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.footer__cols a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--text-3);
  font-family: var(--mono);
  letter-spacing: 0.06em;
}
.footer__pulse { display: inline-flex; align-items: center; gap: 10px; }
@media (max-width: 800px) {
  .footer__inner { grid-template-columns: 1fr; gap: 44px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 14px; }
}

/* ===========================================================
   Reveal animations
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip__row, .pulse, .bg-orb, .ring, .bg-omega,
  .spec-tag, .mockup--desktop, .mockup--phone { animation: none !important; }
  .perf__bar > span { transition: none !important; }
  html { scroll-behavior: auto; }
}
