/* Arkon marketing — business OS for every industry */

:root {
  --bg: #070708;
  --bg-elev: #0f0f12;
  --panel: #141418;
  --panel-2: #1a1a20;
  --line: #2a2a33;
  --line-soft: #1f1f26;
  --text: #f2f2f4;
  --muted: #8b8b9a;
  --muted-2: #5c5c6c;
  --accent: #b8ff2e;
  --accent-dim: rgba(184, 255, 46, 0.14);
  --accent-glow: rgba(184, 255, 46, 0.22);
  --white: #ffffff;
  --radius: 10px;
  --radius-sm: 8px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1120px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}

p {
  margin: 0;
}

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

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

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

.orb-a {
  width: 520px;
  height: 520px;
  top: -140px;
  right: -100px;
  background: radial-gradient(circle, var(--accent-glow), transparent 72%);
  animation: drift 18s var(--ease) infinite alternate;
  opacity: 0.38;
}

.orb-b {
  width: 460px;
  height: 460px;
  bottom: 8%;
  left: -140px;
  background: radial-gradient(circle, rgba(160, 168, 184, 0.12), transparent 70%);
  animation: drift 22s var(--ease) infinite alternate-reverse;
  opacity: 0.5;
}

@keyframes drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(40px, 30px);
  }
}

.nav,
.mobile-nav,
main,
footer {
  position: relative;
  z-index: 1;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.9rem;
}

.skip-link:focus {
  top: 12px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--nav-h);
  padding: 0 clamp(20px, 4vw, 40px);
  background: rgba(7, 7, 8, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s ease, background 0.35s ease;
}

.nav.is-scrolled {
  border-bottom-color: var(--line-soft);
  background: rgba(7, 7, 8, 0.92);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #0a0a0a;
}

.nav-mark img {
  width: 18px;
  height: 18px;
}

.nav-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 20px 20px;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 12px 4px;
  color: var(--muted);
  font-weight: 500;
}

.mobile-nav .btn {
  margin-top: 8px;
  text-align: center;
}

@media (min-width: 960px) {
  .nav-links,
  .nav-actions {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: var(--white);
  color: #0a0a0a;
}

.btn-solid:hover {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: rgba(242, 242, 244, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.btn-accent {
  background: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 0 0 0 transparent;
}

.btn-accent:hover {
  filter: brightness(1.06);
  box-shadow: 0 10px 28px rgba(184, 255, 46, 0.22);
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  display: grid;
  gap: 52px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(52px, 9vw, 96px) clamp(20px, 4vw, 40px) 64px;
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 64px;
    min-height: calc(100vh - var(--nav-h) - 64px);
    padding-top: 72px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.hero-brand {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(3.4rem, 8.5vw, 5.85rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.hero-line {
  display: block;
  font-size: clamp(1.9rem, 4.3vw, 2.95rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.035em;
}

.hero-line.accent,
.accent {
  color: var(--accent);
}

.muted {
  color: var(--muted);
}

.hero-lede {
  max-width: 32rem;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 32px;
  padding-top: 4px;
}

.hero-proof li {
  position: relative;
  padding-left: 16px;
  color: var(--muted-2);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.hero-proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--accent);
  opacity: 0.85;
}

/* Staggered hero entrance */
.hero-copy.reveal {
  opacity: 1;
  transform: none;
}

.hero-copy.reveal .hero-brand,
.hero-copy.reveal .hero-line,
.hero-copy.reveal .hero-lede,
.hero-copy.reveal .hero-cta,
.hero-copy.reveal .hero-proof,
.hero-copy.reveal .eyebrow {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.hero-copy.reveal.is-in .hero-brand,
.hero-copy.reveal.is-in .hero-line,
.hero-copy.reveal.is-in .hero-lede,
.hero-copy.reveal.is-in .hero-cta,
.hero-copy.reveal.is-in .hero-proof,
.hero-copy.reveal.is-in .eyebrow {
  opacity: 1;
  transform: none;
}

.hero-copy.reveal.is-in .eyebrow {
  transition-delay: 40ms;
}

.hero-copy.reveal.is-in .hero-brand {
  transition-delay: 100ms;
}

.hero-copy.reveal.is-in .hero-line {
  transition-delay: 180ms;
}

.hero-copy.reveal.is-in .hero-line.accent {
  transition-delay: 260ms;
}

.hero-copy.reveal.is-in .hero-lede {
  transition-delay: 320ms;
}

.hero-copy.reveal.is-in .hero-cta {
  transition-delay: 400ms;
}

.hero-copy.reveal.is-in .hero-proof {
  transition-delay: 480ms;
}

/* Product mock */
.product-frame {
  border: 1px solid rgba(42, 42, 51, 0.9);
  border-radius: 14px;
  background: #0c0c0e;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(184, 255, 46, 0.04);
  transform: perspective(1200px) rotateY(-5deg) rotateX(3deg);
  transform-origin: left center;
  animation: float-in 1.2s var(--ease) both, product-breathe 8s var(--ease) 1.2s infinite alternate;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: perspective(1200px) rotateY(-9deg) rotateX(6deg) translateY(28px);
  }
  to {
    opacity: 1;
    transform: perspective(1200px) rotateY(-5deg) rotateX(3deg) translateY(0);
  }
}

@keyframes product-breathe {
  from {
    transform: perspective(1200px) rotateY(-5deg) rotateX(3deg) translateY(0);
  }
  to {
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(-6px);
  }
}

.product-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #111114;
  border-bottom: 1px solid #25252d;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a3a44;
}

.product-url {
  flex: 1;
  text-align: center;
  color: #7c7c8e;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.product-body {
  display: grid;
  grid-template-columns: 52px 1fr;
  min-height: 340px;
}

.product-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  background: #111114;
  border-right: 1px solid #25252d;
}

.rail-brand {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.rail-item {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #1a1a20;
  border: 1px solid #25252d;
}

.rail-item.active {
  background: var(--accent-dim);
  border-color: rgba(184, 255, 46, 0.35);
}

.product-main {
  padding: 16px;
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.product-kicker {
  color: #7c7c8e;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-title {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.ask-chip {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(184, 255, 46, 0.35);
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.kpi {
  padding: 10px;
  border-radius: 8px;
  background: #111114;
  border: 1px solid #25252d;
}

.kpi b {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
}

.kpi span {
  color: #7c7c8e;
  font-size: 0.65rem;
}

.kpi.live b {
  color: var(--accent);
}

.product-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
}

.panel {
  padding: 12px;
  border-radius: 8px;
  background: #111114;
  border: 1px solid #25252d;
}

.panel-head {
  margin-bottom: 10px;
  color: #7c7c8e;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-row,
.alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-top: 1px solid #1f1f26;
  color: #ececec;
  font-size: 0.72rem;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.green {
  background: var(--accent);
}
.dot.amber {
  background: #f5c842;
}
.dot.blue {
  background: #6ea8ff;
}

.alert {
  color: #ececec;
}

.alert.soft {
  color: #7c7c8e;
}

@media (max-width: 720px) {
  .product-frame {
    transform: none;
  }

  .kpi-row,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .panel.wide {
    grid-column: 1 / -1;
  }
}

/* Marquee */
.marquee-wrap {
  border-block: 1px solid var(--line-soft);
  background: #0a0a0c;
  overflow: hidden;
}

.marquee {
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  padding: 18px 0;
  animation: marquee 42s linear infinite;
}

.marquee-track span {
  color: var(--muted-2);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "·";
  margin-left: 40px;
  color: var(--line);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Sections */
.section {
  padding: clamp(80px, 13vw, 132px) clamp(20px, 4vw, 40px);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  max-width: 740px;
  margin-bottom: 48px;
}

.section h2 {
  font-size: clamp(2.05rem, 4.6vw, 3.25rem);
  letter-spacing: -0.035em;
}

.section-lede {
  max-width: 36rem;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.62;
}

/* Thesis / spine */
.thesis .section-lede {
  margin-bottom: 36px;
}

.spine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

@media (min-width: 800px) {
  .spine {
    grid-template-columns: repeat(9, 1fr);
  }
}

.spine li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  background: var(--panel);
  border: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
}

.spine li span {
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

/* Problem */
.problem-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 860px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line-soft);
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
}

.problem-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.problem-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Layers */
.layers {
  display: grid;
  gap: 12px;
}

@media (min-width: 800px) {
  .layers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.layer {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line-soft);
  transition: border-color 0.25s ease, transform 0.25s var(--ease);
}

.layer:hover {
  border-color: var(--line);
  transform: translateY(-2px);
}

.layer h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.layer p {
  color: var(--muted);
  font-size: 0.94rem;
}

.layer-accent {
  background: linear-gradient(160deg, rgba(184, 255, 46, 0.1), var(--panel) 55%);
  border-color: rgba(184, 255, 46, 0.28);
}

.layer-accent h3 {
  color: var(--accent);
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-elev);
}

@media (min-width: 720px) {
  .stat-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-bar b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.stat-bar span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Industries */
.industry-shell {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-elev);
  overflow: hidden;
}

.industry-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 12px;
  border-bottom: 1px solid var(--line-soft);
  scrollbar-width: none;
}

.industry-tabs::-webkit-scrollbar {
  display: none;
}

.industry-tabs button {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.industry-tabs button:hover {
  color: var(--text);
}

.industry-tabs button.is-active {
  background: var(--accent);
  color: #0a0a0a;
}

.industry-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: clamp(22px, 4vw, 36px);
}

.industry-panel.is-active {
  display: grid;
}

@media (min-width: 860px) {
  .industry-panel.is-active {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

.industry-copy h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.industry-copy > p {
  color: var(--muted);
  margin-bottom: 18px;
}

.industry-copy ul {
  display: grid;
  gap: 10px;
}

.industry-copy li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.95rem;
}

.industry-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.industry-mock {
  padding: 20px;
  border-radius: var(--radius);
  background: #0c0c0e;
  border: 1px solid #25252d;
}

.mock-label {
  margin-bottom: 14px;
  color: #7c7c8e;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mock-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #1f1f26;
  font-size: 0.9rem;
}

.mock-line span {
  color: var(--muted);
  white-space: nowrap;
}

.industry-foot {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Replace admin work */
.replace-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 800px) {
  .replace-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.replace-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line-soft);
}

.replace-card h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.replace-was,
.replace-now {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.replace-was {
  color: var(--muted-2);
}

.replace-now {
  margin-top: 16px;
  color: var(--accent);
}

.replace-card ul {
  display: grid;
  gap: 8px;
  margin-bottom: 4px;
}

.replace-card li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.replace-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--muted-2);
}

.replace-card > p:last-child {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.replace-note {
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 255, 46, 0.28);
  background: linear-gradient(160deg, rgba(184, 255, 46, 0.08), var(--panel) 55%);
}

.replace-note p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 52rem;
}

.replace-note strong {
  color: var(--text);
}

.replace-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 800px;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--panel);
  padding: 0 18px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 0 18px;
  color: var(--muted);
  font-size: 0.98rem;
}

/* SEO article page */
.seo-page .seo-article {
  padding-top: clamp(40px, 6vw, 64px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--muted-2);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--text);
}

.seo-hero {
  max-width: 720px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 8px;
}

.seo-hero h1 {
  font-size: clamp(2.15rem, 4.8vw, 3.35rem);
  letter-spacing: -0.035em;
}

.seo-hero .section-lede {
  font-size: 1.1rem;
  line-height: 1.65;
}

.seo-hero .hero-cta {
  margin-top: 28px;
  margin-bottom: 36px;
}

.seo-block {
  margin-top: 52px;
  max-width: 720px;
}

.seo-block h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
}

.seo-block p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 1.05rem;
  line-height: 1.65;
}

.seo-block .replace-grid {
  max-width: none;
  margin-top: 20px;
}

.seo-bullets {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
}

.seo-bullets li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.seo-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.seo-bullets strong {
  color: var(--text);
}

.seo-cta {
  margin-top: 64px;
  padding: 36px 32px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(184, 255, 46, 0.05), transparent 42%),
    var(--panel);
  max-width: 640px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.seo-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3vw, 1.95rem);
}

.seo-cta p {
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.6;
}

.card-link-grid {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

@media (min-width: 720px) {
  .card-link-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card-link {
  display: block;
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background: var(--panel);
  transition: border-color 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s ease,
    background 0.25s ease;
}

a.card-link:hover {
  border-color: rgba(184, 255, 46, 0.32);
  transform: translateY(-2px);
  background: var(--panel-2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.card-link h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.card-link p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.related-list {
  display: grid;
  gap: 4px;
}

.related-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.2s ease;
}

.related-list a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.related-list a:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer-cols {
  display: grid;
  gap: 24px;
  margin-top: 8px;
}

@media (min-width: 800px) {
  .footer-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-cols h4 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-cols a {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-cols a:hover {
  color: var(--text);
}

.nav-links a.is-active {
  color: var(--text);
}

.seo-page .access-form {
  margin-top: 8px;
}

.shot-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 800px) {
  .shot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.shot-frame {
  margin: 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0c0c0e;
  overflow: hidden;
}

.shot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.shot-frame figcaption {
  padding: 10px 14px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.85rem;
}

.seo-block .shot-grid {
  margin-top: 18px;
}

.seo-block .shot-frame {
  margin-bottom: 8px;
}

/* Roles */
.role-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 860px) {
  .role-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.role-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line-soft);
}

.role-card.featured {
  background: linear-gradient(165deg, rgba(184, 255, 46, 0.12), var(--panel) 50%);
  border-color: rgba(184, 255, 46, 0.3);
}

.role-tag {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.role-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.role-card > p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.role-card ul {
  display: grid;
  gap: 8px;
}

.role-card li {
  padding-left: 16px;
  position: relative;
  font-size: 0.92rem;
}

.role-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
}

/* Ask */
.ask {
  background: radial-gradient(ellipse at 70% 20%, rgba(184, 255, 46, 0.08), transparent 50%),
    var(--bg);
}

.ask-inner {
  display: grid;
  gap: 36px;
  align-items: center;
}

@media (min-width: 900px) {
  .ask-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.ask-window {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.ask-bubble {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.ask-bubble.user {
  justify-self: end;
  background: #1c1c24;
  border: 1px solid var(--line);
}

.ask-bubble.bot {
  justify-self: start;
  background: var(--accent-dim);
  border: 1px solid rgba(184, 255, 46, 0.25);
  color: #e8ffb8;
}

/* Access */
.access {
  background: #0a0a0c;
  border-block: 1px solid var(--line-soft);
}

.access-inner {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 900px) {
  .access-inner {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
  }
}

.access-perks {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.access-perks li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.access-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.access-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  gap: 14px;
}

@media (min-width: 560px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.access-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.optional {
  color: var(--muted-2);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.access-form input,
.access-form select,
.access-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #0c0c0e;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}

.access-form input:focus,
.access-form select:focus,
.access-form textarea:focus {
  border-color: rgba(184, 255, 46, 0.45);
}

.access-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%238b8b9a' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.access-form textarea {
  resize: vertical;
  min-height: 88px;
}

.form-fine {
  color: var(--muted-2);
  font-size: 0.82rem;
  text-align: center;
}

.form-success {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  background: rgba(10, 10, 12, 0.96);
  border-radius: 12px;
}

.form-success strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
}

.form-success p {
  color: var(--muted);
}

/* Team */
.team-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 720px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.team-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line-soft);
}

.avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 800;
}

.team-card h3 {
  font-size: 1.25rem;
}

.team-card .role {
  margin: 6px 0 12px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
}

.team-card p:last-child {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  padding: 48px clamp(20px, 4vw, 40px) 56px;
  border-top: 1px solid var(--line-soft);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.footer-inner > p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--text);
}

.copyright {
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 0.85rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

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

  .orb,
  .marquee-track,
  .pulse,
  .product-frame {
    animation: none !important;
  }

  .reveal,
  .hero-copy.reveal .hero-brand,
  .hero-copy.reveal .hero-line,
  .hero-copy.reveal .hero-lede,
  .hero-copy.reveal .hero-cta,
  .hero-copy.reveal .hero-proof,
  .hero-copy.reveal .eyebrow {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Branding pack (unlisted) */
.branding-pack .pack-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) clamp(20px, 4vw, 40px) 40px;
}

.branding-pack .pack-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 18ch;
}

.branding-pack .pack-narrow {
  max-width: 720px;
  margin: 0 auto;
}

.branding-pack .pack-section {
  padding: clamp(40px, 7vw, 72px) clamp(20px, 4vw, 40px);
  border-top: 1px solid var(--line-soft);
}

.branding-pack .pack-section-elev {
  background: var(--bg-elev);
}

.branding-pack .pack-section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.branding-pack .pack-section h3 {
  margin: 22px 0 10px;
  font-size: 1.1rem;
}

.branding-pack .pack-section p,
.branding-pack .pack-section li {
  color: var(--muted);
  line-height: 1.65;
}

.branding-pack .pack-section strong {
  color: var(--text);
}

.branding-pack .pack-section ul,
.branding-pack .pack-section ol {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.branding-pack .pack-section ul li,
.branding-pack .pack-section ol li {
  position: relative;
  padding-left: 18px;
}

.branding-pack .pack-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--accent);
}

.branding-pack .pack-section ol {
  counter-reset: pack-step;
}

.branding-pack .pack-section ol li {
  padding-left: 0;
  counter-increment: pack-step;
}

.branding-pack .pack-section ol li::before {
  content: none;
}

.branding-pack .pack-section ol li h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.branding-pack .pack-section ol li h3::before {
  content: counter(pack-step, decimal-leading-zero) "  ";
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.branding-pack .pack-url {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 600;
  color: var(--text);
  word-break: break-all;
  margin: 8px 0 22px;
}

.branding-pack .pack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.branding-pack .pack-status {
  min-height: 1.4em;
  color: var(--accent);
  font-size: 0.92rem;
  margin: 8px 0 12px;
}

.branding-pack .pack-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

@media (min-width: 720px) {
  .branding-pack .pack-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.branding-pack .pack-card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--panel);
}

.branding-pack .pack-card h3 {
  margin-top: 0;
  color: var(--text);
}

.branding-pack .swatch-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin: 18px 0 22px;
}

.branding-pack .swatch {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background: var(--panel);
}

.branding-pack .swatch-chip {
  height: 44px;
  border-radius: 6px;
  background: var(--sw);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.branding-pack .swatch span {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

.branding-pack .swatch code {
  color: var(--muted);
  font-size: 0.8rem;
}

.branding-pack .pack-pre {
  margin: 0 0 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--panel);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-x: auto;
}

.branding-pack .pack-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.branding-pack .pack-tip {
  margin-top: 8px;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.branding-pack .pack-section a {
  color: var(--accent);
}

.branding-pack .pack-section a:hover {
  text-decoration: underline;
}
