/* ==========================================================================
   AXIS ISO — brand stylesheet
   The canonical implementation of the Axis design system.
   Tokens here are the source of truth; apps re-skin by swapping --accent-*.
   Fonts   Space Grotesk (display + UI) · Cormorant Garamond (serif accents)
           Inter (body text)
   ========================================================================== */

:root {
  /* -- brand core ------------------------------------------------------- */
  --accent:        #1fc2ad;                    /* Axis teal, interactive */
  --accent-bright: #7ceedd;                    /* glow text, highlights  */
  --accent-deep:   #0b3b36;                    /* fills, deep washes     */
  --accent-soft:   rgba(31, 194, 173, 0.10);
  --accent-glow:   rgba(31, 194, 173, 0.32);

  --brass:         #d8c39a;                    /* tan/brass, the "old"   */
  --brass-dim:     rgba(216, 195, 154, 0.62);
  --brass-soft:    rgba(216, 195, 154, 0.09);

  /* -- per-app accents (same darkness, same glow, different hue) -------- */
  --nous:    #6cb1ff;
  --minerva: #a78bfa;
  --ponos:   #f0a868;
  --atlas:   #7fd1ae;

  /* -- dark theme (default) --------------------------------------------- */
  --bg0:   #05090a;
  --bg1:   #0a1112;
  --panel:        rgba(255, 255, 255, 0.03);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --line:         rgba(255, 255, 255, 0.08);
  --line-strong:  rgba(255, 255, 255, 0.16);
  --text:   #edf2f1;
  --text-2: rgba(237, 242, 241, 0.64);
  --text-3: rgba(237, 242, 241, 0.38);
  --header-bg: rgba(5, 9, 10, 0.72);
  --star: rgba(237, 242, 241, 0.9);

  /* -- geometry ---------------------------------------------------------- */
  --radius:    14px;
  --radius-lg: 22px;
  --maxw:      1120px;
  --header-h:  64px;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-serif:   "Cormorant Garamond", Georgia, serif;
  /* Space Grotesk carries the site's body voice too — Inter is utility-only (--font-fine) */
  --font-body:    "Space Grotesk", system-ui, sans-serif;
  --font-fine:    "Inter", system-ui, sans-serif;
}

[data-theme="light"] {
  --bg0:   #f7f6f2;
  --bg1:   #efede6;
  --panel:        rgba(16, 33, 31, 0.03);
  --panel-strong: rgba(16, 33, 31, 0.06);
  --line:         rgba(16, 33, 31, 0.10);
  --line-strong:  rgba(16, 33, 31, 0.20);
  --text:   #10211f;
  --text-2: rgba(16, 33, 31, 0.66);
  --text-3: rgba(16, 33, 31, 0.42);
  --header-bg: rgba(247, 246, 242, 0.78);
  --star: rgba(16, 33, 31, 0);

  --accent:        #0b7c6f;
  --accent-bright: #0fa392;
  --accent-deep:   #d7ece8;
  --accent-soft:   rgba(11, 124, 111, 0.08);
  --accent-glow:   rgba(11, 124, 111, 0.18);
  --brass:         #8a7146;
  --brass-dim:     rgba(138, 113, 70, 0.75);
  --brass-soft:    rgba(138, 113, 70, 0.08);
}

/* == reset ================================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg0);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--accent-glow); color: var(--text); }

/* scrollbar that belongs to the page instead of the OS */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  border: 3px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.26); border: 3px solid transparent; background-clip: padding-box; }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: rgba(16, 33, 31, 0.22); background-clip: padding-box; }
[data-theme="light"] ::-webkit-scrollbar-thumb:hover { background: rgba(16, 33, 31, 0.38); background-clip: padding-box; }
@supports not selector(::-webkit-scrollbar) {
  html { scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, 0.18) transparent; }
  [data-theme="light"] html, html[data-theme="light"] { scrollbar-color: rgba(16, 33, 31, 0.3) transparent; }
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; }

/* == atmosphere (level 3 of 5, CSS only) ================================= */
.sky {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% -12%, rgba(31, 194, 173, 0.16), transparent 62%),
    radial-gradient(ellipse 46% 34% at 82% 4%, rgba(216, 195, 154, 0.12), transparent 65%),
    var(--bg0);
  transform: translate3d(var(--sx, 0px), var(--sy, 0px), 0) scale(var(--skyzoom, 1));
  will-change: transform;
}
[data-theme="light"] .sky {
  background:
    radial-gradient(ellipse 80% 55% at 50% -12%, var(--accent-soft), transparent 60%),
    radial-gradient(ellipse 46% 34% at 82% 4%, var(--brass-soft), transparent 65%),
    var(--bg0);
}
.sky::before, .sky::after {
  content: ""; position: absolute; inset: -60px;
  background-image:
    radial-gradient(2px 2px at 12% 28%, var(--star) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 34% 12%, var(--star) 50%, transparent 51%),
    radial-gradient(1.7px 1.7px at 56% 42%, var(--star) 50%, transparent 51%),
    radial-gradient(1.3px 1.3px at 71% 19%, var(--star) 50%, transparent 51%),
    radial-gradient(2.4px 2.4px at 88% 36%, rgba(124, 238, 221, 0.95) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 23% 64%, var(--star) 50%, transparent 51%),
    radial-gradient(1.7px 1.7px at 44% 82%, var(--star) 50%, transparent 51%),
    radial-gradient(1.3px 1.3px at 67% 71%, var(--star) 50%, transparent 51%),
    radial-gradient(2.2px 2.2px at 82% 88%, rgba(216, 195, 154, 0.9) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 8% 91%, var(--star) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 48% 6%, var(--star) 50%, transparent 51%),
    radial-gradient(1.6px 1.6px at 94% 62%, var(--star) 50%, transparent 51%);
  background-size: 560px 560px;
  opacity: 0.85;
  animation: drift 160s linear infinite;
}
.sky::after {
  background-size: 900px 900px;
  opacity: 0.45;
  animation-duration: 260s;
  animation-direction: reverse;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-560px, -280px, 0); }
}

/* -- homepage-only sky extras: horizon arc, twinkle stars, shooting stars -- */
.sky-extra {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  transform: translate3d(var(--sxx, 0px), var(--syy, 0px), 0);
}
[data-theme="light"] .sky-extra { display: none; }
.sky-extra .horizon {
  position: absolute; inset: 0;
  opacity: calc(1 - var(--hp, 0) * 1.2);
  background: radial-gradient(1300px 640px at 50% -300px,
    rgba(31, 194, 173, 0.13) 55%,
    rgba(124, 238, 221, 0.55) 59.2%,
    rgba(31, 194, 173, 0.10) 61.5%,
    transparent 67%);
}
.tw {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 10px 2px var(--accent-glow);
  animation: twinkle 4.2s ease-in-out infinite;
}
.tw.b { background: var(--brass); box-shadow: 0 0 10px 2px rgba(216, 195, 154, 0.4); }
.tw.w { background: #f2f7f6; box-shadow: 0 0 8px 2px rgba(237, 242, 241, 0.35); }
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.6); }
  50%      { opacity: 1; transform: scale(1); }
}
.shoot {
  position: absolute; width: 2.5px; height: 2.5px; border-radius: 50%;
  background: #fff; opacity: 0;
  box-shadow: 0 0 8px 2px rgba(237, 242, 241, 0.5);
  animation: shoot 11s linear infinite;
}
.shoot::after {
  content: ""; position: absolute; left: 1px; top: 50%;
  width: 130px; height: 1.5px;
  transform-origin: left center;
  transform: rotate(-28deg);
  background: linear-gradient(90deg, rgba(237, 242, 241, 0.85), transparent);
}
@keyframes shoot {
  0%, 82% { opacity: 0; transform: translate(0, 0); }
  83%     { opacity: 1; }
  90%     { opacity: 0; transform: translate(-360px, 190px); }
  100%    { opacity: 0; transform: translate(-360px, 190px); }
}
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
[data-theme="light"] .sky::before, [data-theme="light"] .sky::after { opacity: 0; }
[data-theme="light"] .grain { opacity: 0.35; }

@media (prefers-reduced-motion: reduce) {
  .sky::before, .sky::after { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* == header =============================================================== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center;
  padding: 0 28px;
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
header.scrolled { border-bottom-color: var(--line); }

.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 15px; letter-spacing: 0.14em;
}
.brand .iso { color: var(--brass); font-weight: 500; margin-left: -0.26em; }
.brand svg { width: 26px; height: 26px; }

nav.center {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 4px;
}
nav.center a {
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  color: var(--text-2);
  padding: 7px 14px; border-radius: 99px;
  transition: color 0.2s, background 0.2s;
}
nav.center a:hover { color: var(--text); background: var(--panel-strong); }
nav.center a.active { color: var(--text); background: var(--panel-strong); }

.header-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 36px; height: 36px; border-radius: 99px;
  display: grid; place-items: center;
  color: var(--text-2);
  border: 1px solid var(--line);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.icon-btn:hover { color: var(--text); border-color: var(--line-strong); background: var(--panel); }
.icon-btn svg { width: 17px; height: 17px; }
[data-theme="light"] .sun-i { display: none; }
html:not([data-theme="light"]) .moon-i { display: none; }

/* account popover */
.account-wrap { position: relative; }
.popover {
  position: absolute; right: 0; top: 46px; width: 264px;
  background: var(--bg1);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.popover.open { opacity: 1; transform: none; pointer-events: auto; }
.popover h4 { font-size: 15px; margin-bottom: 6px; }
.popover p { font-size: 13px; color: var(--text-2); margin-bottom: 12px; }
.popover .btn { width: 100%; justify-content: center; }

/* mobile menu */
.menu-btn { display: none; }
@media (max-width: 860px) {
  nav.center { display: none; }
  .menu-btn { display: grid; }
  .mobile-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 55;
    background: var(--bg1); border-bottom: 1px solid var(--line);
    display: none; flex-direction: column; padding: 12px 20px 20px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    font-family: var(--font-display); font-size: 17px; font-weight: 500;
    padding: 13px 6px; border-bottom: 1px solid var(--line); color: var(--text-2);
  }
  .mobile-nav a:last-child { border-bottom: none; }
}

/* == layout =============================================================== */
main { padding-top: var(--header-h); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }
section.tight { padding: 64px 0; }

.eyebrow {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: 22px; color: var(--brass);
  margin-bottom: 18px;
}
.label {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-3);
  margin-bottom: 14px;
}

/* == hero ================================================================= */
.hero { padding: 150px 0 110px; text-align: center; position: relative; }
.hero h1 {
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 600; letter-spacing: -0.03em;
  max-width: 940px; margin: 0 auto 26px;
  position: relative;
}
.hero h1 .glow {
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-bright) 40%, var(--brass) 70%, var(--accent) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.hero .sub {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: 22px; line-height: 1.5; color: var(--text-2);
  max-width: 640px; margin: 0 auto 44px;
  position: relative;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.hero .eyebrow { position: relative; font-size: 24px; }

/* orbit ring system behind the hero text */
.orbit {
  position: relative; width: 340px; height: 340px; margin: 64px auto 0;
}
.orbit.orbit-hero {
  position: absolute; left: 50%; top: -70px;
  width: 780px; height: 780px; margin: 0;
  transform: translateX(calc(-50% + var(--px, 0px))) translateY(var(--py, 0px)) scale(var(--zoom, 1));
  opacity: 0.95; z-index: 0; pointer-events: none;
  will-change: transform, opacity;
}
.orbit.orbit-hero ~ * { position: relative; z-index: 1; }
.hero-inner {
  position: relative; z-index: 1;
  transform: translateY(calc(var(--hp, 0) * -80px));
  opacity: calc(1 - var(--hp, 0) * 1.3);
  will-change: transform, opacity;
}
@media (max-width: 720px) { .orbit.orbit-hero { width: 520px; height: 520px; top: 0; } }
.orbit .ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(124, 238, 221, 0.30);
  box-shadow: 0 0 46px -22px var(--accent-glow), inset 0 0 46px -22px var(--accent-glow);
}
.orbit .ring.r2 { inset: 60px; border-color: rgba(255, 255, 255, 0.18); box-shadow: none; }
.orbit .ring.r3 { inset: 128px; border-style: dashed; border-color: rgba(216, 195, 154, 0.22); box-shadow: none; }
[data-theme="light"] .orbit .ring { border-color: rgba(11, 124, 111, 0.35); }
[data-theme="light"] .orbit .ring.r2 { border-color: rgba(16, 33, 31, 0.18); }
[data-theme="light"] .orbit .ring.r3 { border-color: rgba(138, 113, 70, 0.3); }
.orbit .axis-line {
  position: absolute; left: 50%; top: 50%; width: 480px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow) 30%, var(--accent) 50%, var(--accent-glow) 70%, transparent);
  transform: translate(-50%, -50%) rotate(-32deg);
}
.orbit .core {
  position: absolute; left: 50%; top: 50%; width: 12px; height: 12px;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px 6px var(--accent-glow);
  animation: corePulse 5s ease-in-out infinite;
}
@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 24px 6px var(--accent-glow); }
  50%      { box-shadow: 0 0 44px 14px var(--accent-glow); }
}
.orbit .sat {
  position: absolute; left: 50%; top: 50%; width: 7px; height: 7px;
  border-radius: 50%; background: var(--brass);
  animation: orbitSpin 26s linear infinite;
}
.orbit .sat.s2 { width: 5px; height: 5px; background: var(--accent-bright); animation-duration: 15s; animation-direction: reverse; }
@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(170px); }
  to   { transform: translate(-50%, -50%) rotate(360deg) translateX(170px); }
}
.orbit .sat.s2 { animation-name: orbitSpin2; }
@keyframes orbitSpin2 {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(118px); }
  to   { transform: translate(-50%, -50%) rotate(360deg) translateX(118px); }
}

/* == buttons ============================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 12px 24px; border-radius: 99px;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, border-color 0.18s;
}
.btn.primary {
  color: #04211d;
  background: linear-gradient(120deg, var(--accent-bright), var(--accent));
  box-shadow: 0 4px 28px var(--accent-glow);
}
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 8px 36px var(--accent-glow); }
[data-theme="light"] .btn.primary { color: #f7f6f2; }
.btn.ghost { border: 1px solid var(--line-strong); color: var(--text); }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent-bright); }
[data-theme="light"] .btn.ghost:hover { color: var(--accent); }
.btn.small { font-size: 13.5px; padding: 9px 18px; }
.btn[disabled] { opacity: 0.55; cursor: default; }
.btn[disabled]:hover { transform: none; }

/* == cards ================================================================ */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 860px) { .grid3, .grid2 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), var(--accent-soft), transparent 55%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card h3 { font-size: 19px; margin: 16px 0 8px; }
.card p { font-size: 14.5px; color: var(--text-2); }
.card .glyph {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  color: var(--accent-bright);
  background: var(--accent-soft);
  border: 1px solid var(--line);
}
[data-theme="light"] .card .glyph { color: var(--accent); }
.card .glyph svg { width: 22px; height: 22px; }

/* == product rows ========================================================= */
.product {
  position: relative;
  display: grid; grid-template-columns: 84px 1fr auto; gap: 26px;
  align-items: start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.product:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.product::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(520px circle at var(--mx, 30%) var(--my, 0%), var(--app-soft, var(--accent-soft)), transparent 55%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.product:hover::before { opacity: 1; }
.product .glyph {
  width: 84px; height: 84px; border-radius: 20px;
  display: grid; place-items: center;
  color: var(--app, var(--accent-bright));
  background: var(--app-soft, var(--accent-soft));
  border: 1px solid var(--line);
}
.product .glyph svg { width: 40px; height: 40px; }
.product h3 { font-size: 26px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.product .etym {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: 19px; color: var(--brass); letter-spacing: 0;
}
.product .desc { margin-top: 10px; color: var(--text-2); font-size: 15.5px; max-width: 640px; }
.product .ai-line {
  margin-top: 16px; display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--text-2);
  border-left: 2px solid var(--app, var(--accent));
  padding-left: 14px;
}
.product .ai-line b { color: var(--text); font-weight: 600; }
.chip {
  font-family: var(--font-display); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 99px;
  border: 1px solid var(--line-strong); color: var(--text-2);
  white-space: nowrap;
}
.chip.live { color: var(--app, var(--accent-bright)); border-color: currentColor; }
@media (max-width: 720px) {
  .product { grid-template-columns: 1fr; }
  .product .glyph { width: 64px; height: 64px; }
}

/* == serif statement block =============================================== */
.statement {
  text-align: center; max-width: 760px; margin: 0 auto;
}
.statement .serif {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(26px, 3.6vw, 40px); line-height: 1.3;
  color: var(--text);
}
.statement .serif em { color: var(--brass); }
.statement p { margin-top: 20px; color: var(--text-2); font-size: 16px; }

/* == pricing ============================================================== */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 860px; margin: 0 auto; }
@media (max-width: 720px) { .plans { grid-template-columns: 1fr; } }
.plan {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 0;
}
.plan.pro { border-color: var(--accent); box-shadow: 0 0 60px -18px var(--accent-glow); }
.plan .name { font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-2); }
.plan.pro .name { color: var(--accent-bright); }
[data-theme="light"] .plan.pro .name { color: var(--accent); }
.plan .price { font-family: var(--font-display); font-size: 52px; font-weight: 600; letter-spacing: -0.03em; margin: 14px 0 2px; }
.plan .price span { font-size: 17px; font-weight: 500; color: var(--text-3); letter-spacing: 0; }
.plan .tagline {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  color: var(--brass-dim); font-size: 18px; margin-bottom: 24px;
}
.plan ul { list-style: none; margin: 0 0 30px; flex: 1; }
.plan li { display: flex; gap: 11px; padding: 9px 0; font-size: 14.5px; color: var(--text-2); border-top: 1px solid var(--line); }
.plan li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 4px; color: var(--accent); }
.plan li b { color: var(--text); font-weight: 600; }

/* == tables (build page permissions) ===================================== */
.spec-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.spec-table th {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3);
  text-align: left; padding: 10px 16px;
}
.spec-table td { padding: 13px 16px; border-top: 1px solid var(--line); color: var(--text-2); vertical-align: top; font-family: var(--font-fine); font-size: 14px; }
.spec-table td:first-child { font-family: "JetBrains Mono", Consolas, monospace; font-size: 13px; color: var(--accent-bright); white-space: nowrap; }
[data-theme="light"] .spec-table td:first-child { color: var(--accent); }

/* == code block =========================================================== */
.code {
  background: var(--bg1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  font-family: Consolas, "JetBrains Mono", monospace;
  font-size: 13.5px; line-height: 1.8;
  color: var(--text-2);
  overflow-x: auto;
}
.code .k { color: var(--accent-bright); }
.code .s { color: var(--brass); }
[data-theme="light"] .code .k { color: var(--accent); }

/* == CTA band ============================================================= */
.cta-band {
  position: relative;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 72px 32px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 120% at 50% 130%, var(--accent-soft), transparent 60%),
    var(--panel);
}
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.cta-band p { color: var(--text-2); max-width: 480px; margin: 0 auto 32px; }

/* == footer =============================================================== */
footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
  margin-top: 40px;
}
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-brand .brand { margin-bottom: 12px; }
.foot-brand .serif-tag {
  font-family: var(--font-serif); font-style: italic; font-size: 19px;
  color: var(--brass-dim);
}
.foot-col h5 {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3);
  margin-bottom: 14px;
}
.foot-col a { display: block; font-size: 14px; color: var(--text-2); padding: 4px 0; transition: color 0.2s; }
.foot-col a:hover { color: var(--text); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 36px; height: 36px; border-radius: 99px;
  display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--text-2);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.socials a:hover { color: var(--accent-bright); border-color: var(--accent); transform: translateY(-2px); }
[data-theme="light"] .socials a:hover { color: var(--accent); }
.socials svg { width: 16px; height: 16px; }
.foot-base {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-fine); font-size: 13px; color: var(--text-3);
}

/* == page hero (inner pages) ============================================= */
.page-hero { padding: 96px 0 40px; text-align: center; }
.page-hero h1 { font-size: clamp(34px, 5vw, 58px); max-width: 800px; margin: 0 auto 18px; }
.page-hero .sub { color: var(--text-2); font-size: 17px; max-width: 600px; margin: 0 auto; }

/* == reveal on scroll ==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  filter: blur(9px);
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
}
.reveal.in { opacity: 1; transform: none; filter: none; }

/* the axis draws itself across the page as you arrive at a section */
.axis-divider {
  position: relative; height: 2px; max-width: 880px; margin: 0 auto;
  background: linear-gradient(90deg, transparent 2%, var(--accent-glow) 30%, var(--accent) 50%, var(--accent-glow) 70%, transparent 98%);
  transform: scaleX(0);
  transition: transform 1.4s cubic-bezier(0.2, 0.6, 0.15, 1);
}
.axis-divider.in { transform: scaleX(1); }
.axis-divider::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-bright);
  box-shadow: 0 0 18px 5px var(--accent-glow);
  opacity: 0; transition: opacity 0.6s ease 0.9s;
}
.axis-divider.in::after { opacity: 1; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* == toast ================================================================ */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 16px);
  background: var(--bg1); border: 1px solid var(--line-strong);
  border-radius: 99px; padding: 12px 22px;
  font-family: var(--font-display); font-size: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  opacity: 0; pointer-events: none; z-index: 90;
  transition: opacity 0.25s, transform 0.25s;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* == enterprise pillars =================================================== */
.pillar { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-top: 1px solid var(--line); }
.pillar svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 4px; color: var(--accent-bright); }
[data-theme="light"] .pillar svg { color: var(--accent); }
.pillar h4 { font-size: 16.5px; margin-bottom: 4px; }
.pillar p { font-size: 14.5px; color: var(--text-2); }
