/* ============================================================
   Nautilyx — production styles
   Baked theme: Direction B "Deep Current" (dark navy) + Gold accent
   Heading font: GEOMETRIC (Manrope 800, tracking -0.03em)
   Derived from the design handoff index.html (styling source of truth);
   prototype-only scaffolding (ProtoBar / Tweaks) removed.
   ============================================================ */

/* ============================ RESET ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text);
  line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================ BAKED THEME (B + Gold + Geometric) ============================ */
:root {
  /* colors — Direction B */
  --bg: #060c18;
  --bg-soft: #0a1322;
  --bg-elev: #0d1a2d;
  --bg-invert: #020610;
  --text: #e9eff7;
  --text-dim: #9eb0c6;
  --text-mute: #647892;
  --border: rgba(255,255,255,.09);
  --border-strong: rgba(255,255,255,.17);

  /* accent — Gold */
  --accent: oklch(0.76 0.12 88);
  --accent-2: oklch(0.70 0.11 70);
  --on-accent: #2a2105;
  --accent-soft: color-mix(in oklch, var(--accent) 13%, var(--bg));
  --glow: 0 8px 26px -8px color-mix(in oklch, var(--accent) 60%, transparent);

  /* radius — Direction B */
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --pill-radius: 999px;

  /* shadows — Direction B */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow: 0 8px 30px rgba(0,0,0,.5);
  --shadow-lg: 0 30px 70px -20px rgba(0,0,0,.7);

  /* type — GEOMETRIC heading variant + Manrope body */
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --display-weight: 800;       /* geometric */
  --display-tracking: -0.03em; /* geometric */
  --display-leading: 1.04;

  --maxw: 1180px;
  --hero-grid: linear-gradient(rgba(45,224,208,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(45,224,208,.12) 1px, transparent 1px);
}

/* ============================ LAYOUT ============================ */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section.tight { padding: 64px 0; }
.section.soft { background: var(--bg-soft); }
.eyebrow { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); font-weight: 500; display: inline-flex;
  align-items: center; gap: 8px; }
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--accent); display: inline-block; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }

/* ============================ TYPE ============================ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking); line-height: var(--display-leading); color: var(--text); }
.h-display { font-size: clamp(40px, 6.2vw, 78px); }
.h1 { font-size: clamp(34px, 4.6vw, 56px); }
.h2 { font-size: clamp(27px, 3.2vw, 40px); }
.h3 { font-size: clamp(20px, 2vw, 26px); }
.lede { font-size: clamp(17px, 1.5vw, 21px); color: var(--text-dim); line-height: 1.5;
  max-width: 56ch; font-weight: 400; }
.muted { color: var(--text-mute); }
.dim { color: var(--text-dim); }
.balance { text-wrap: balance; }
.pretty { text-wrap: pretty; }

/* ============================ BUTTONS ============================ */
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: var(--pill-radius); transition: all .18s ease;
  border: 1px solid transparent; white-space: nowrap; }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--accent); color: var(--on-accent); box-shadow: var(--glow); }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--text); background: rgba(255,255,255,.04); }
.btn-soft { background: var(--accent-soft); color: var(--accent); }
.btn-soft:hover { filter: brightness(.97); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ============================ CARDS ============================ */
.card { background: rgba(255,255,255,.025); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm); transition: all .2s ease; backdrop-filter: blur(8px); }
.card.hover:hover { transform: translateY(-3px);
  border-color: color-mix(in oklch, var(--accent) 50%, transparent); box-shadow: var(--glow); }

.pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px;
  border-radius: var(--pill-radius); font-size: 13px; font-weight: 500; background: rgba(255,255,255,.04);
  color: var(--text-dim); border: 1px solid var(--border); }

.tag { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; }

/* icon chip */
.chip { width: 52px; height: 52px; border-radius: var(--radius); display: grid; place-items: center;
  background: color-mix(in oklch, var(--accent) 14%, transparent); color: var(--accent); flex: none; }
.chip svg { width: 24px; height: 24px; }

/* ============================ PLACEHOLDER / GRAPHICS ============================ */
.ph { position: relative; border-radius: var(--radius-lg); border: 1px dashed var(--border-strong);
  background-color: var(--bg-soft);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 9px, rgba(255,255,255,.04) 9px, rgba(255,255,255,.04) 10px);
  display: grid; place-items: center; overflow: hidden; }
.ph-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; color: var(--text-mute);
  text-transform: uppercase; background: var(--bg); padding: 6px 12px; border-radius: var(--pill-radius);
  border: 1px solid var(--border); }

/* abstract geometric blocks */
.abstract { position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(150deg, color-mix(in oklch, var(--accent) 18%, var(--bg)), var(--bg));
  border: 1px solid var(--border); }

/* ============================ GRID HELPERS ============================ */
.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.between { justify-content: space-between; }
.items-center { align-items: center; }
.wrap { flex-wrap: wrap; }
.gap-sm { gap: 10px; }
.gap { gap: 18px; }
.gap-lg { gap: 32px; }
.stack { display: flex; flex-direction: column; }
.mt-sm { margin-top: 12px; } .mt { margin-top: 20px; } .mt-lg { margin-top: 36px; }
.divider { height: 1px; background: var(--border); width: 100%; }

/* ============================ NAV ============================ */
.nav { position: sticky; top: 0; z-index: 40; background: color-mix(in oklch, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 9px 14px; border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 500;
  color: var(--text-dim); transition: all .15s ease; position: relative; }
.nav-link:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-link.active { color: var(--text); font-weight: 600; }

/* logo */
.logo { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display);
  font-weight: 700; font-size: 19px; letter-spacing: -0.02em; color: var(--text); }
.logo-mark { width: 30px; height: 30px; flex: none; }

/* segmented control (currency toggle) */
.seg { display: inline-flex; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--pill-radius); padding: 4px; gap: 2px; }
.seg button { padding: 9px 18px; border-radius: var(--pill-radius); font-size: 14px; font-weight: 500;
  color: var(--text-dim); transition: all .15s ease; white-space: nowrap; }
.seg button.on { background: var(--accent); color: var(--on-accent); font-weight: 600; }

/* mobile menu (designed in for production per handoff) */
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); align-items: center; justify-content: center; color: var(--text); }
.nav-toggle:hover { background: rgba(255,255,255,.05); }
.mobile-menu { display: none; border-bottom: 1px solid var(--border); background: var(--bg);
  position: sticky; top: 68px; z-index: 39; }
.mobile-menu.open { display: block; }
.mobile-menu .container { padding-top: 12px; padding-bottom: 18px; }
.mobile-menu a.nav-link { display: block; padding: 12px 8px; font-size: 16px; border-bottom: 1px solid var(--border); }
.mobile-menu a.nav-link:last-of-type { border-bottom: none; }
.mobile-menu .seg { margin-top: 14px; }

/* ============================ FEAT LIST ============================ */
.feat-list { display: flex; flex-direction: column; gap: 12px; }
.feat-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--text-dim); }
.feat-list li > span:last-child { flex: 1; min-width: 0; }
.feat-list li strong { color: var(--text); font-weight: 600; }
.feat-list .check { color: var(--accent); flex: none; margin-top: 3px; }

/* ============================ HERO GRID BG ============================ */
.hero-grid { position: absolute; inset: 0; background-image: var(--hero-grid); background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 70% 30%, #000, transparent 72%); pointer-events: none; opacity: .6; }

/* ============================ CTA BAND ============================ */
.cta-band { background: linear-gradient(135deg, color-mix(in oklch, var(--accent) 26%, var(--bg)), var(--bg));
  color: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 64px 56px;
  position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }

/* ============================ FOOTER ============================ */
.footer { background: #030812; color: #fff; padding: 72px 0 36px; border-top: 1px solid var(--border); }
.footer a { color: rgba(255,255,255,.62); transition: color .15s; font-size: 14.5px; }
.footer a:hover { color: #fff; }
.footer h5 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 16px; font-weight: 500; }
.footer .logo { color: #fff; }

/* ============================ ANIMATION ============================ */
.page-enter { animation: fadeUp .45s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.stagger > * { animation: fadeUp .5s ease both; }
.stagger > *:nth-child(2){ animation-delay: .05s; }
.stagger > *:nth-child(3){ animation-delay: .1s; }
.stagger > *:nth-child(4){ animation-delay: .15s; }
.stagger > *:nth-child(5){ animation-delay: .2s; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 940px){
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .g3 { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .seg.hide-sm { display: none; }
  .section { padding: 68px 0; }
  .hero-split { grid-template-columns: 1fr !important; }
  .flagship-split { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px){
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .cta-band { padding: 40px 26px; }
  .hide-sm { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   ENHANCEMENTS — technological tone (aurora, mockups, reveal)
   ============================================================ */

/* page grain/texture overlay */
.grain { position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* animated aurora behind hero */
.hero-aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob { position: absolute; width: 48vw; height: 48vw; max-width: 620px; max-height: 620px;
  border-radius: 50%; filter: blur(80px); opacity: .5; will-change: transform; mix-blend-mode: screen; }
.blob.b1 { background: radial-gradient(circle at 50% 50%, color-mix(in oklch, var(--accent) 75%, transparent), transparent 62%);
  top: -16%; right: -6%; animation: drift1 19s ease-in-out infinite alternate; }
.blob.b2 { background: radial-gradient(circle at 50% 50%, rgba(45,150,224,.55), transparent 62%);
  bottom: -24%; left: -10%; animation: drift2 23s ease-in-out infinite alternate; }
.blob.b3 { background: radial-gradient(circle at 50% 50%, color-mix(in oklch, var(--accent-2) 65%, transparent), transparent 60%);
  top: 22%; left: 34%; animation: drift3 27s ease-in-out infinite alternate; }
@keyframes drift1 { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-40px,40px,0) scale(1.12); } }
@keyframes drift2 { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(50px,-30px,0) scale(1.15); } }
@keyframes drift3 { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(30px,30px,0) scale(.9); } }

/* gradient shimmer text (key phrase) */
.grad-text { background: linear-gradient(100deg, var(--accent) 0%, #ffe9a8 32%, var(--accent-2) 62%, var(--accent) 100%);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; animation: shimmer 7s linear infinite; }
@keyframes shimmer { to { background-position: 200% center; } }

/* ---- browser-window mockup ("real" website screenshot) ---- */
.browser { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-strong);
  background: var(--bg-elev); box-shadow: var(--shadow-lg); }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 11px 13px;
  background: rgba(255,255,255,.04); border-bottom: 1px solid var(--border); }
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--text-mute); opacity: .45; display: block; flex: none; }
.browser-url { flex: 1; margin-left: 8px; font-family: var(--font-mono); font-size: 11px; color: var(--text-mute);
  background: var(--bg); border: 1px solid var(--border); border-radius: 999px; padding: 4px 12px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* faux website rendered inside the browser */
.shot { background: linear-gradient(180deg, #0b1424, #060c18); }
.shot-nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.shot-brand { display: flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 800;
  font-size: 12px; letter-spacing: -.02em; color: var(--text); }
.shot-brand b { width: 14px; height: 14px; border-radius: 4px; background: var(--accent); display: block; }
.shot-links { display: flex; gap: 9px; }
.shot-links span { width: 26px; height: 6px; border-radius: 3px; background: rgba(255,255,255,.12); display: block; }
.shot-hero { padding: 22px 16px 14px; }
.shot-eyebrow { width: 82px; height: 8px; border-radius: 3px; background: color-mix(in oklch, var(--accent) 60%, transparent); margin-bottom: 12px; }
.shot-title { font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; font-size: 19px; line-height: 1.12; color: var(--text); }
.shot-title em { font-style: normal; color: var(--accent); }
.shot-sub { margin-top: 9px; display: flex; flex-direction: column; gap: 5px; }
.shot-sub span { height: 6px; border-radius: 3px; background: rgba(255,255,255,.10); display: block; }
.shot-btns { display: flex; gap: 8px; margin-top: 14px; }
.shot-btns b { display: block; height: 22px; border-radius: 999px; }
.shot-btns .p { width: 92px; background: var(--accent); box-shadow: var(--glow); }
.shot-btns .g { width: 68px; background: transparent; border: 1px solid var(--border-strong); }
.shot-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 4px 16px 18px; }
.shot-card { border-radius: 8px; border: 1px solid var(--border); background: rgba(255,255,255,.03);
  display: flex; flex-direction: column; gap: 6px; padding: 9px; }
.shot-card i { width: 18px; height: 18px; border-radius: 5px; background: color-mix(in oklch, var(--accent) 25%, transparent); display: block; }
.shot-card u { height: 5px; border-radius: 3px; background: rgba(255,255,255,.12); display: block; text-decoration: none; }

/* float the hero mockup gently */
.float { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---- laptop + phone device composition (flagship band) ---- */
.devices { position: relative; width: 100%; max-width: 520px; margin: 0 auto; padding: 24px 8px 8px; }
.devices .browser { transform: perspective(1600px) rotateY(-9deg) rotateX(3deg); transform-origin: center left; }
.device-phone { position: absolute; right: 2%; bottom: -6px; width: 116px; border: 7px solid #0a1322;
  border-radius: 22px; overflow: hidden; background: var(--bg-elev); box-shadow: var(--shadow-lg); }
.phone-shot { background: linear-gradient(180deg, #0b1424, #060c18); padding: 13px 10px; }
.phone-top { height: 44px; border-radius: 8px; background: color-mix(in oklch, var(--accent) 22%, transparent); margin-bottom: 11px; }
.phone-rows { display: flex; flex-direction: column; gap: 7px; }
.phone-rows span { height: 7px; border-radius: 3px; background: rgba(255,255,255,.12); display: block; }
.phone-rows span:nth-child(odd) { width: 78%; }

/* ---- scroll reveal ---- */
[data-reveal] { opacity: 0; transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }

@media (max-width: 640px) {
  .devices .browser { transform: none; }
  .device-phone { right: -4px; }
}

@media (prefers-reduced-motion: reduce) {
  .blob, .grad-text, .float { animation: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   MULTI-PAGE COMPONENTS (nav dropdown, faq, pricing, work, currents)
   ============================================================ */

/* ---- currency dropdown ---- */
.cur-dd { position: relative; }
.cur-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 13px; border-radius: var(--pill-radius);
  border: 1px solid var(--border); background: var(--bg-soft); color: var(--text); font-size: 14px; font-weight: 600; }
.cur-btn:hover { border-color: var(--border-strong); }
.cur-btn svg { transition: transform .2s ease; opacity: .7; }
.cur-dd.open .cur-btn svg { transform: rotate(180deg); }
.cur-menu { position: absolute; right: 0; top: calc(100% + 8px); min-width: 220px; z-index: 50;
  background: var(--bg-elev); border: 1px solid var(--border-strong); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 6px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s; backdrop-filter: blur(12px); }
.cur-dd.open .cur-menu { opacity: 1; visibility: visible; transform: none; }
.cur-menu li { list-style: none; }
.cur-menu button { display: flex; align-items: center; gap: 8px; width: 100%; text-align: left; padding: 10px 12px;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; color: var(--text); }
.cur-menu button:hover { background: rgba(255,255,255,.05); }
.cur-menu button.on { background: var(--accent-soft); color: var(--accent); }
.cur-menu .cur-name { color: var(--text-mute); font-weight: 400; font-size: 12.5px; margin-left: auto; }
.mobile-menu .cur-dd { margin-top: 14px; }
.mobile-menu .cur-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
  display: none; margin-top: 6px; }
.mobile-menu .cur-dd.open .cur-menu { display: block; }

/* ---- pricing table ---- */
.ptable { width: 100%; border-collapse: collapse; }
.ptable th, .ptable td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--border); font-size: 15px; }
.ptable th { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-mute); font-weight: 500; }
.ptable .yes { color: var(--accent); font-weight: 700; }
.ptable .col-hi { background: color-mix(in oklch, var(--accent) 12%, transparent); }
.ptable tr:last-child td { border-bottom: none; }

/* ---- price card ---- */
.price-card { display: flex; flex-direction: column; gap: 18px; position: relative; }
.price-card.featured { border-color: var(--accent); box-shadow: var(--glow); }
.price-tag { font-family: var(--font-display); font-weight: var(--display-weight); line-height: 1; font-size: clamp(34px, 4vw, 46px); letter-spacing: -0.03em; }
.price-tag .per { font-size: 15px; font-weight: 500; color: var(--text-mute); letter-spacing: 0; }
.ribbon { position: absolute; top: 18px; right: 18px; background: var(--accent); color: var(--on-accent); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: var(--pill-radius); box-shadow: var(--glow); }

/* ---- pricing tabs ---- */
.tab-panel { display: none; animation: fadeUp .4s ease both; }
.tab-panel.on { display: block; }

/* ---- hosting & care band ---- */
.hosting-aside { background: linear-gradient(155deg, color-mix(in oklch, var(--accent) 30%, var(--bg)), var(--bg-invert)); border-left: 1px solid var(--border); padding: clamp(28px,3.4vw,44px); display: flex; flex-direction: column; gap: 24px; justify-content: center; }
.hosting-price .price-tag { color: #fff; }
.hosting-price .per { color: rgba(255,255,255,.7); }
.limits-title { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.limits-list { display: flex; flex-direction: column; }
.limits-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; }
.limits-list li:last-child { border-bottom: none; }
.limits-list li span { color: rgba(255,255,255,.7); }
.limits-list li b { color: #fff; font-weight: 600; text-align: right; }

/* ---- care plan tiers ---- */
.care-card { display: flex; flex-direction: column; gap: 16px; }
.care-card .price-tag { font-size: clamp(30px, 3.4vw, 40px); }
.care-sub { font-size: 13px; color: var(--text-mute); font-family: var(--font-mono); letter-spacing: .02em; margin-top: 4px; }
.save-pill { color: var(--accent); font-weight: 600; }
.care-card .feat-x { opacity: .6; }
.care-card .xmark { color: var(--text-mute); flex: none; margin-top: 2px; width: 17px; text-align: center; font-weight: 700; }
.feat-list .feat-head { color: var(--text-mute); font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; padding-bottom: 2px; }
.care-limits { font-size: 12.5px; font-family: var(--font-mono); color: var(--text-mute); letter-spacing: .02em; line-height: 1.5; display: flex; align-items: baseline; gap: 8px; padding-top: 14px; border-top: 1px solid var(--border); margin-top: 4px; }
.care-limits .live-dot { flex: none; position: relative; top: 1px; }
.care-limits .ast { margin-left: 2px; }
#care-billing button { font-size: 13.5px; }
/* center the CTA in each care card */
.care-card > div:last-child { text-align: center; }
.care-card > div:last-child .btn { justify-content: center; min-width: 190px; }

/* asterisk + footnote */
.ast { color: var(--accent); font-weight: 700; text-decoration: none; padding: 0 1px; }
.ast:hover { text-decoration: underline; }
.footnote { margin-top: 32px; font-size: 13px; line-height: 1.7; color: var(--text-mute); width: 100%; padding: 22px 26px; border: 1px dashed var(--border-strong); border-radius: var(--radius); background: rgba(255,255,255,.02); scroll-margin-top: 90px; }
.footnote strong { color: var(--text-dim); }
.care-limits-text { display: block; }

/* ---- segmented control ---- */
.seg { display: inline-flex; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--pill-radius); padding: 4px; gap: 2px; flex-wrap: wrap; justify-content: center; }
.seg button { padding: 9px 18px; border-radius: var(--pill-radius); font-size: 14px; font-weight: 500; color: var(--text-dim); transition: all .15s ease; white-space: nowrap; }
.seg button.on { background: var(--accent); color: var(--on-accent); font-weight: 600; }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--text); text-align: left; width: 100%; }
.faq-icon { flex: none; transition: transform .25s ease; color: var(--text-mute); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, opacity .3s ease; opacity: 0; }
.faq-item.open .faq-a { max-height: 360px; opacity: 1; padding-bottom: 22px; }
.faq-a p { color: var(--text-dim); font-size: 15.5px; max-width: 68ch; }

/* ---- chip tag (service labels) ---- */
.chip-tag { font-size: 12px; font-weight: 500; padding: 5px 11px; border-radius: var(--pill-radius); background: rgba(255,255,255,.04); border: 1px solid var(--border); color: var(--text-dim); font-family: var(--font-mono); letter-spacing: .02em; }

/* ---- solutions split art ---- */
.sol-split .abstract { display: grid; place-items: center; padding: 28px; }
.sol-art { width: 100%; max-width: 360px; }

/* ---- WORK ---- */
.work-card { display: flex; flex-direction: column; }
.work-thumb { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: linear-gradient(150deg, color-mix(in oklch, var(--accent) 16%, var(--bg)), var(--bg)); padding: 18px 18px 0; }
.work-thumb .browser { transform: translateY(6px); box-shadow: var(--shadow); }
.metrics-band { padding: 8px; }
.metric { text-align: center; padding: 24px 16px; }
.metric-n { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(28px, 4vw, 44px); letter-spacing: -.03em; line-height: 1; }
.case-block { margin-bottom: 36px; }
.case-body { color: var(--text-dim); font-size: 16.5px; line-height: 1.7; margin-top: 12px; }
.case-quote { margin: 8px 0 0; padding: 28px 32px; border-left: 3px solid var(--accent); background: var(--bg-soft); border-radius: 0 var(--radius) var(--radius) 0; }
.case-quote p { font-family: var(--font-display); font-weight: 600; font-size: clamp(19px, 2.2vw, 24px); letter-spacing: -.02em; line-height: 1.35; color: var(--text); }
.case-quote cite { display: block; margin-top: 14px; font-style: normal; color: var(--text-mute); font-size: 14px; font-family: var(--font-mono); }
.back-link { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-family: var(--font-mono); color: var(--text-mute); letter-spacing: .03em; }
.back-link:hover { color: var(--accent); }

/* ---- CURRENTS ---- */
.cat-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.cat-tab { padding: 8px 16px; border-radius: var(--pill-radius); font-size: 14px; font-weight: 500; color: var(--text-dim); border: 1px solid var(--border); background: var(--bg-soft); transition: all .15s ease; }
.cat-tab:hover { color: var(--text); border-color: var(--border-strong); }
.cat-tab.active { background: var(--accent); color: var(--on-accent); border-color: var(--accent); font-weight: 600; }
.cat-pill { display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; padding: 4px 10px; border-radius: var(--pill-radius); border: 1px solid; }
.cat-guides      { color: var(--accent);  border-color: color-mix(in oklch, var(--accent) 40%, transparent); background: color-mix(in oklch, var(--accent) 12%, transparent); }
.cat-comparisons { color: #7bb6e0; border-color: rgba(123,182,224,.4); background: rgba(123,182,224,.12); }
.cat-playbooks   { color: #8fd3b6; border-color: rgba(143,211,182,.4); background: rgba(143,211,182,.12); }
.cat-glossary    { color: #c9a6e0; border-color: rgba(201,166,224,.4); background: rgba(201,166,224,.12); }
.cat-insights    { color: #e0b87b; border-color: rgba(224,184,123,.4); background: rgba(224,184,123,.12); }
.article-card { display: flex; flex-direction: column; }
.featured-article { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; overflow: hidden; }
.featured-art { background: linear-gradient(150deg, color-mix(in oklch, var(--accent) 16%, var(--bg)), var(--bg)); padding: 32px; display: grid; place-items: center; }
.featured-art .browser { max-width: 340px; box-shadow: var(--shadow); }
.featured-copy { padding: clamp(28px, 3.4vw, 44px); display: flex; flex-direction: column; justify-content: center; }
.cat-cards .card { display: flex; flex-direction: column; align-items: flex-start; }

/* ---- article body ---- */
.article-body p { color: var(--text-dim); font-size: 17px; line-height: 1.75; margin-bottom: 20px; }
.article-h2 { font-size: clamp(22px, 2.4vw, 28px); margin: 36px 0 4px; }
.article-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* ---- responsive for new components ---- */
@media (max-width: 940px) {
  .sol-split, .featured-article, .addon-split, .hosting-split { grid-template-columns: 1fr !important; }
  .sol-split .abstract { min-height: 240px; }
  .hosting-aside { border-left: none; border-top: 1px solid var(--border); }
}
@media (max-width: 640px) {
  .price-2up { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .work-grid, .cat-cards { grid-template-columns: 1fr; }
  .article-cta { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ============================================================
   TECH ANIMATION — moving accents
   ============================================================ */

/* animated gradient beam under the sticky nav */
.nav::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 35%, #ffe9a8 50%, var(--accent) 65%, transparent 100%);
  background-size: 50% 100%; opacity: .8; animation: beam 5.5s linear infinite;
}
@keyframes beam { 0% { background-position: -60% 0; } 100% { background-position: 160% 0; } }

/* scan sweep across browser "screenshots" — reads as a live refresh */
.browser { position: relative; }
.browser .shot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, color-mix(in oklch, var(--accent) 22%, transparent) 48%, color-mix(in oklch, var(--accent) 8%, transparent) 52%, transparent 100%);
  height: 36%; transform: translateY(-120%); animation: scan 4.5s ease-in-out infinite; mix-blend-mode: screen;
}
.shot { position: relative; overflow: hidden; }
@keyframes scan { 0% { transform: translateY(-120%); } 55% { transform: translateY(320%); } 100% { transform: translateY(320%); } }

/* live status dot (used in browser url bars / labels) */
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); display: inline-block;
  box-shadow: 0 0 0 0 color-mix(in oklch, var(--accent) 70%, transparent); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--accent) 55%, transparent); }
  70% { box-shadow: 0 0 0 8px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

/* animated marquee — tech capability ticker */
.ticker { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-soft); padding: 16px 0; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker-track { display: inline-flex; gap: 44px; white-space: nowrap; animation: marquee 32s linear infinite; }
.ticker-track span { font-family: var(--font-mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mute); display: inline-flex; align-items: center; gap: 44px; }
.ticker-track span::after { content: "◆"; color: var(--accent); opacity: .55; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .nav::after, .browser .shot::after, .live-dot, .ticker-track { animation: none !important; }
  .browser .shot::after { display: none; }
}
