/* Innsegall · brand tokens · v10 calm sea */
:root {
  --fjord-deep: #0b1d2e;
  --fjord-mid: #122a42;
  --aurora-green: #3daa8c;
  --beam-gold: #f4c95d;
  --beam-gold-dim: #d4a84a;
  --laser-edge: #a8d8ff;
  --ember-warm: #e8a87c;
  --gremlin-smoke: #8b9cb3;
  --mist-pale: #b8c6d4;
  --text-primary: #e8eef4;
  --alert-ember: #d97757;
  --mist: rgba(168, 216, 255, 0.08);
  --page-max: 68rem;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-pill: 999px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --claymore: " · ";
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--fjord-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--laser-edge);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.12s ease, text-decoration-color 0.12s ease;
}

a:hover {
  color: var(--beam-gold);
  text-decoration-color: rgba(244, 201, 93, 0.55);
}

a:focus-visible {
  outline: 2px solid var(--beam-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--beam-gold);
  color: var(--fjord-deep);
  font-weight: 600;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Beam atmosphere */
@keyframes beam-breathe {
  0%,
  100% {
    opacity: 0.92;
    transform: translateX(-50%) scaleY(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleY(1.03);
  }
}

@keyframes beam-drift {
  0%,
  100% {
    background-position: 50% 0%, 80% 100%, 0 0;
  }
  50% {
    background-position: 48% 2%, 78% 98%, 0 0;
  }
}

@keyframes sea-swell {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate3d(-1.5%, 1%, 0) scale(1.02);
    opacity: 0.72;
  }
}

@keyframes voyage-drift {
  0% {
    background-position: 0% 0%, 100% 100%, 50% 50%;
  }
  100% {
    background-position: 100% 50%, 0% 0%, 50% 50%;
  }
}

.beam-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 75% at 50% -8%, rgba(244, 201, 93, 0.2), transparent 58%),
    radial-gradient(ellipse 90% 55% at 85% 105%, rgba(61, 170, 140, 0.1), transparent 52%),
    radial-gradient(ellipse 70% 45% at 8% 92%, rgba(168, 216, 255, 0.06), transparent 48%),
    linear-gradient(180deg, #0b1d2e 0%, #071018 55%, #081521 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  animation: beam-drift 32s ease-in-out infinite;
}

.beam-bg::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(168, 216, 255, 0.04) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(244, 201, 93, 0.035) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(61, 170, 140, 0.03) 0 1px, transparent 1px);
  background-size: 120px 120px, 160px 160px, 200px 200px;
  animation: voyage-drift 90s linear infinite;
  opacity: 0.85;
}

.beam-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(28rem, 40vw);
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(244, 201, 93, 0.14) 0%,
    rgba(168, 216, 255, 0.06) 35%,
    transparent 70%
  );
  filter: blur(1px);
  animation: beam-breathe 14s ease-in-out infinite, sea-swell 48s ease-in-out infinite;
}

.page {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 clamp(var(--space-4), 4vw, var(--space-6)) var(--space-8);
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 2rem;
  flex-wrap: wrap;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.brand-lockup:focus-visible {
  outline: 2px solid var(--laser-edge);
  outline-offset: 4px;
}

.brand-lockup:hover {
  color: inherit;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}

.brand-word {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-pronounce {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gremlin-smoke);
  margin-top: 0.15rem;
}

.header-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.header-nav a {
  color: var(--gremlin-smoke);
  text-decoration: none;
  padding: 0.35rem 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color 0.12s ease;
}

.header-nav a:hover {
  color: var(--beam-gold);
  background-color: rgba(168, 216, 255, 0.06);
}

.header-nav a[aria-current="page"] {
  color: var(--beam-gold);
  background-color: rgba(244, 201, 93, 0.08);
}

.header-nav a:focus-visible {
  outline: 2px solid var(--laser-edge);
  outline-offset: 3px;
}

.lay-map {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

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

.lay-map article {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(168, 216, 255, 0.12);
  background: rgba(18, 42, 66, 0.45);
}

.lay-map h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--beam-gold);
}

.lay-map p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--mist-pale);
}

.lay-ladder {
  margin-top: var(--space-5);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(244, 201, 93, 0.28);
  background: rgba(11, 29, 46, 0.55);
}

.lay-ladder ol {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  line-height: 1.65;
  color: var(--mist-pale);
}

.lay-ladder li {
  margin-bottom: 0.35rem;
}

.lay-ladder strong {
  color: var(--beam-gold);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 2.75rem;
  padding: 0 var(--space-5);
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, #f8d574 0%, var(--beam-gold) 50%, var(--beam-gold-dim) 100%);
  color: var(--fjord-deep);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 3px 0 #8f6420,
    0 8px 24px rgba(244, 201, 93, 0.28);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.header-cta:hover {
  color: var(--fjord-deep);
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 3px 0 #8f6420,
    0 12px 32px rgba(244, 201, 93, 0.36);
}

.header-cta:active {
  transform: translateY(1px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 1px 0 #8f6420,
    0 4px 16px rgba(244, 201, 93, 0.22);
}

.header-cta:focus-visible {
  outline: 2px solid var(--laser-edge);
  outline-offset: 3px;
}

.header-cta svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* Hero */
.hero {
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aurora-green);
  margin: 0 0 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 3.85rem);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 var(--space-4);
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
}

.hero-tag {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--laser-edge);
  margin: 0 0 0.5rem;
  font-weight: 500;
}

.hero-manifesto {
  font-size: 1.05rem;
  color: var(--gremlin-smoke);
  max-width: 42ch;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

@keyframes horn-shimmer {
  0% {
    transform: translateX(-120%) skewX(-18deg);
  }
  100% {
    transform: translateX(220%) skewX(-18deg);
  }
}

.btn-horn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: min(100%, 22rem);
  min-height: 3.25rem;
  padding: var(--space-4) var(--space-6);
  border: none;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  color: var(--fjord-deep);
  background: linear-gradient(180deg, #f8d574 0%, var(--beam-gold) 45%, var(--beam-gold-dim) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 4px 0 #8f6420,
    0 14px 44px rgba(244, 201, 93, 0.38);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.14s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.14s ease,
    filter 0.14s ease;
}

.btn-horn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.42) 50%,
    transparent 62%
  );
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none;
  z-index: 0;
}

.btn-horn:hover::after {
  animation: horn-shimmer 0.75s ease-out;
}

.btn-horn > * {
  position: relative;
  z-index: 1;
}

.btn-horn:hover {
  color: var(--fjord-deep);
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 4px 0 #8f6420,
    0 20px 52px rgba(244, 201, 93, 0.45);
}

.btn-horn:active {
  transform: translateY(3px) scale(0.985);
  filter: brightness(0.98);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 1px 0 #8f6420,
    0 6px 20px rgba(244, 201, 93, 0.24);
  transition-duration: 0.06s;
}

.btn-horn:focus-visible {
  outline: 2px solid var(--laser-edge);
  outline-offset: 3px;
}

.btn-horn--compact {
  min-width: auto;
  min-height: 2.75rem;
  padding: var(--space-3) var(--space-5);
  font-size: 0.95rem;
  width: 100%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(168, 216, 255, 0.35);
  background: rgba(18, 42, 66, 0.55);
  color: var(--laser-edge);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease, transform 0.1s ease;
}

.btn-secondary:hover {
  color: var(--text-primary);
  border-color: rgba(244, 201, 93, 0.45);
  background: rgba(18, 42, 66, 0.85);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--beam-gold);
  outline-offset: 2px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 2.75rem;
  padding: var(--space-2) var(--space-3);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gremlin-smoke);
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color 0.12s ease, background 0.12s ease;
}

.btn-link:hover {
  color: var(--laser-edge);
  background: rgba(168, 216, 255, 0.06);
}

.btn-link:focus-visible {
  outline: 2px solid var(--laser-edge);
  outline-offset: 2px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--gremlin-smoke);
}

.trust-strip li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-strip li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--aurora-green);
}

/* Sections */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--mist);
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aurora-green);
  margin: 0 0 0.75rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 var(--space-4);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-lead {
  color: var(--gremlin-smoke);
  max-width: 52ch;
  margin: 0 0 2rem;
}

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1rem;
}

.card {
  background: rgba(18, 42, 66, 0.65);
  border: 1px solid var(--mist);
  border-radius: 0.75rem;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 2px 8px rgba(8, 21, 33, 0.35);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s cubic-bezier(0.34, 1.15, 0.64, 1),
    box-shadow 0.2s ease;
}

.card:hover {
  border-color: rgba(168, 216, 255, 0.32);
  background: rgba(18, 42, 66, 0.82);
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(168, 216, 255, 0.12),
    0 0 24px rgba(168, 216, 255, 0.08),
    0 12px 32px rgba(8, 21, 33, 0.55);
}

.card h3,
.card .card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--laser-edge);
  line-height: 1.3;
}

.card .card-title a {
  text-decoration: none;
  color: inherit;
}

.card .card-title a:hover {
  color: var(--beam-gold);
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gremlin-smoke);
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.25rem;
  background: rgba(18, 42, 66, 0.5);
  border-radius: 0.75rem;
  border: 1px solid var(--mist);
}

.step-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--beam-gold);
  line-height: 1;
  min-width: 2rem;
}

.steps strong {
  display: block;
  margin-bottom: 0.25rem;
}

.steps span {
  color: var(--gremlin-smoke);
  font-size: 0.95rem;
}

/* Download block */
.download-panel {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(165deg, rgba(61, 170, 140, 0.12), rgba(18, 42, 66, 0.8));
  border: 1px solid rgba(61, 170, 140, 0.25);
  border-radius: 1rem;
  margin-top: 1rem;
}

.download-panel h2 {
  margin-bottom: 0.5rem;
}

.download-note {
  font-size: 0.9rem;
  color: var(--gremlin-smoke);
  margin: 1rem 0 0;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--gremlin-smoke);
}

/* FAQ for SEO */
.faq details {
  border-bottom: 1px solid var(--mist);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  padding: 0.35rem 1.75rem 0.35rem 0;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: var(--radius-sm);
}

.faq summary:focus-visible {
  outline: 2px solid var(--laser-edge);
  outline-offset: 2px;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--beam-gold);
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0.75rem 0 0;
  color: var(--gremlin-smoke);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  margin-top: var(--space-8);
  padding: var(--space-6) 0 var(--space-5);
  border-top: 1px solid var(--mist);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-5) var(--space-6);
  font-size: 0.85rem;
  color: var(--gremlin-smoke);
}

.site-footer > p {
  margin: 0;
  max-width: 28ch;
  line-height: 1.55;
}

.footer-note {
  flex: 1 1 100%;
  max-width: none;
  font-size: 0.8rem;
  color: var(--mist-pale);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  align-items: center;
}

.footer-links a {
  color: var(--mist-pale);
  text-decoration: none;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  cursor: pointer;
}

.footer-links a:focus-visible {
  outline: 2px solid var(--laser-edge);
  outline-offset: 3px;
}

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

@media (max-width: 520px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
  }

  .header-nav {
    justify-content: center;
    gap: 0.5rem 1.25rem;
  }

  .header-cta {
    justify-content: center;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer > p {
    max-width: none;
  }

  .footer-links {
    justify-content: center;
  }
}

/* Legal documents */
.legal-doc {
  max-width: 46rem;
}

.legal-doc h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.legal-doc .legal-meta {
  font-size: 0.9rem;
  color: var(--gremlin-smoke);
  margin: 0 0 2rem;
}

.legal-doc .alpha-notice {
  padding: 1rem 1.15rem;
  margin-bottom: 2rem;
  background: rgba(217, 119, 87, 0.12);
  border: 1px solid rgba(217, 119, 87, 0.35);
  border-radius: 0.65rem;
  font-size: 0.92rem;
  color: #f0d4c8;
}

.legal-doc section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--mist);
}

.legal-doc section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-doc h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--laser-edge);
}

.legal-doc p,
.legal-doc li {
  color: var(--gremlin-smoke);
  font-size: 0.95rem;
}

.legal-doc p {
  margin: 0 0 0.85rem;
}

.legal-doc ul,
.legal-doc ol {
  margin: 0 0 0.85rem;
  padding-left: 1.35rem;
}

.legal-doc li {
  margin-bottom: 0.4rem;
}

.legal-doc li:last-child {
  margin-bottom: 0;
}

.legal-doc strong {
  color: #e8eef4;
  font-weight: 600;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: rgba(18, 42, 66, 0.65);
  border: 1px solid var(--mist);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: 0 2px 10px rgba(8, 21, 33, 0.4);
  transition:
    border-color 0.2s ease,
    transform 0.2s cubic-bezier(0.34, 1.15, 0.64, 1),
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.pricing-card:hover {
  border-color: rgba(168, 216, 255, 0.36);
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(168, 216, 255, 0.14),
    0 0 28px rgba(168, 216, 255, 0.1),
    0 16px 40px rgba(8, 21, 33, 0.58);
}

.pricing-card .pricing-actions {
  margin-top: auto;
  padding-top: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pricing-card .pricing-actions .btn-horn,
.pricing-card .pricing-actions .btn-secondary,
.pricing-card .pricing-actions .innsegall-checkout {
  width: 100%;
}

button.innsegall-checkout {
  cursor: pointer;
  font-family: inherit;
}

button.innsegall-checkout:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.pricing-card.featured {
  border-color: rgba(244, 201, 93, 0.45);
  background: linear-gradient(165deg, rgba(244, 201, 93, 0.1), rgba(18, 42, 66, 0.85));
  box-shadow: 0 8px 32px rgba(244, 201, 93, 0.12);
}

.pricing-card.featured:hover {
  border-color: rgba(244, 201, 93, 0.65);
  box-shadow:
    0 0 0 1px rgba(244, 201, 93, 0.2),
    0 0 32px rgba(244, 201, 93, 0.14),
    0 16px 44px rgba(244, 201, 93, 0.22);
}

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aurora-green);
  margin: 0;
}

.pricing-card.featured .pricing-tier {
  color: var(--beam-gold);
}

.pricing-price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: #e8eef4;
}

.pricing-price span {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gremlin-smoke);
}

.pricing-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gremlin-smoke);
  flex: 1;
}

.pricing-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Alpha / install page */
.req-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.req-list li {
  padding: 0.85rem 1rem;
  background: rgba(18, 42, 66, 0.5);
  border: 1px solid var(--mist);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  color: var(--gremlin-smoke);
}

.req-list strong {
  color: var(--laser-edge);
}

.code-block {
  position: relative;
  margin: 0 0 2rem;
  background: rgba(8, 21, 33, 0.9);
  border: 1px solid var(--mist);
  border-radius: 0.65rem;
  overflow: hidden;
}

.code-block pre {
  margin: 0;
  padding: 1.15rem 1.25rem;
  overflow-x: auto;
  font-size: 0.82rem;
  line-height: 1.5;
}

.code-block code {
  font-family: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
  color: var(--laser-edge);
}

.btn-copy {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  min-height: 2.75rem;
  min-width: 2.75rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--mist);
  border-radius: 0.4rem;
  background: rgba(18, 42, 66, 0.9);
  color: var(--gremlin-smoke);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-copy:hover {
  color: var(--beam-gold);
  border-color: rgba(244, 201, 93, 0.35);
}

.btn-copy:focus-visible {
  outline: 2px solid var(--beam-gold);
  outline-offset: 2px;
}

.code-inline {
  display: block;
  margin-top: 0.35rem;
  font-family: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
  color: var(--laser-edge);
  word-break: break-all;
}

.install-alt-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.install-steps .code-inline {
  margin-top: 0.5rem;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.legal-nav a {
  font-weight: 600;
  text-decoration: none;
}

/* Blog article typography */
.article-body {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gremlin-smoke);
}

.article-body > * + * {
  margin-top: 1.25rem;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 2.5rem 0 0.85rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.article-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--laser-edge);
  margin: 2rem 0 0.65rem;
  line-height: 1.3;
}

.article-body p {
  margin: 0;
}

.article-body ul,
.article-body ol {
  margin: 0;
  padding-left: 1.35rem;
}

.article-body li {
  margin-bottom: 0.45rem;
}

.article-body li:last-child {
  margin-bottom: 0;
}

.article-body a {
  color: var(--laser-edge);
}

.article-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.article-body code {
  font-family: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 0.88em;
  padding: 0.12em 0.4em;
  border-radius: 0.3rem;
  background: rgba(8, 21, 33, 0.75);
  color: var(--laser-edge);
}

.article-lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--laser-edge);
  margin: 0 0 2rem;
  max-width: 38ch;
}

.article-pullquote {
  position: relative;
  margin: 2.25rem 0;
  padding: 1.35rem 1.5rem 1.35rem 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(244, 201, 93, 0.08), rgba(61, 170, 140, 0.06));
  border: 1px solid rgba(244, 201, 93, 0.22);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(8, 21, 33, 0.35);
}

.article-pullquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--beam-gold), var(--aurora-green));
}

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

  .beam-bg,
  .beam-bg::before,
  .beam-bg::after {
    animation: none;
  }

  .btn-horn::after {
    display: none;
  }

  .btn-horn,
  .btn-secondary,
  .header-cta,
  .card,
  .pricing-card {
    transition: none;
  }

  .card:hover,
  .pricing-card:hover {
    transform: none;
  }
}

/* v6 · clan army + warrior enlist */
.clan-hero {
  position: relative;
  padding: var(--space-7) var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(244, 201, 93, 0.28);
  background: linear-gradient(145deg, rgba(18, 42, 66, 0.95), rgba(11, 29, 46, 0.98));
  box-shadow: 0 12px 48px rgba(8, 21, 33, 0.55), inset 0 1px 0 rgba(244, 201, 93, 0.12);
  overflow: hidden;
}

.clan-hero h2 {
  margin-top: 0;
}

.clan-hero .section-lead {
  margin-bottom: var(--space-4);
}

.clan-hero::before {
  content: "";
  position: absolute;
  inset: -40% 20% auto;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(244, 201, 93, 0.12), transparent 65%);
  pointer-events: none;
}

.clan-shield-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.clan-shield {
  text-align: center;
  padding: var(--space-5) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(168, 216, 255, 0.15);
  background: rgba(8, 21, 33, 0.45);
  color: var(--gremlin-smoke);
  font-size: 0.92rem;
  line-height: 1.55;
}

.clan-shield strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--beam-gold);
  margin-bottom: var(--space-2);
}

.clan-fomo {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  color: var(--laser-edge);
  border-left: 3px solid var(--aurora-green);
  padding-left: var(--space-4);
  margin: var(--space-5) 0;
}

.warrior-ledger {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-5) 0;
  font-size: 0.95rem;
}

.warrior-ledger th,
.warrior-ledger td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid rgba(168, 216, 255, 0.12);
}

.warrior-ledger th {
  color: var(--beam-gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.warrior-ledger tr:hover td {
  background: rgba(244, 201, 93, 0.04);
}

.recruit-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  margin-top: var(--space-6);
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, rgba(61, 170, 140, 0.12), rgba(244, 201, 93, 0.08));
  border: 1px solid rgba(61, 170, 140, 0.25);
}

@media (min-width: 48rem) {
  .recruit-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .recruit-banner .btn-horn--compact {
    width: auto;
    flex-shrink: 0;
  }
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-4) 0;
}

.lane-table {
  min-width: 36rem;
}
