/* ==========================================================================
   TZAi / Tira Zebra AI  ·  Ecosystem homepage
   Dark mode only. Black canvas, single neon chartreuse accent.
   ========================================================================== */

:root {
  /* Color */
  --bg: #000000;
  --text: #ffffff;
  --text-muted: hsla(0, 0%, 100%, 0.6);
  --text-faint: hsla(0, 0%, 100%, 0.42);
  --accent: #f0fe91;
  --accent-text: #000000;
  --accent-40: rgba(240, 254, 145, 0.4);
  --accent-15: rgba(240, 254, 145, 0.15);
  --accent-08: rgba(240, 254, 145, 0.08);
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);

  /* Type */
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
  --section-y: 140px;
  --radius-card: 22px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  overflow-wrap: break-word;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--accent); color: #000; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #000;
  padding: 10px 18px;
  z-index: 200;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* --------------------------------------------------------------------------
   Eyebrow labels
   -------------------------------------------------------------------------- */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  flex: 0 0 26px;
}
.eyebrow--plain { display: block; }
.eyebrow--plain::before { content: none; }

/* Preserve TZAi brand casing anywhere inside an uppercased element */
.brand-mark { text-transform: none; }

.card-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.005em;
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 15px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease,
    color 0.2s ease, transform 0.2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
}
.btn-primary:hover { background: #e4f871; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover { border-color: var(--accent); }

.btn-sm { padding: 11px 22px; font-size: 13.5px; }
.btn-block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.micro {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-faint);
  margin: 14px 0 0;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex: 0 0 auto;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
@media (min-width: 861px) {
  .logo-img { height: 46px; }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  transition: color 0.18s ease;
}
.site-nav a:hover { color: var(--text); }

.header-cta { margin-left: 14px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  width: 42px;
  height: 38px;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}
.section:first-of-type { border-top: none; }

.section-head { max-width: 780px; }

.section-title {
  font-size: clamp(38px, 5.6vw, 62px);
  font-weight: 900;
  margin: 0 0 20px;
}

.section-sub {
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 22px;
  max-width: 46ch;
}

.section-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 62ch;
}

.small-note {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 54px 0 26px;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: 108px 0 120px;
  overflow: hidden;
}

.hero-stripes {
  position: absolute;
  inset: 0 0 0 auto;
  width: 46%;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(240, 254, 145, 0.075) 0px,
    rgba(240, 254, 145, 0.075) 12px,
    transparent 12px,
    transparent 34px
  );
  -webkit-mask-image: linear-gradient(to left, #000, transparent 82%);
  mask-image: linear-gradient(to left, #000, transparent 82%);
}

.hero-inner { position: relative; z-index: 1; max-width: 860px; }

.hero h1 {
  font-size: clamp(46px, 9vw, 96px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 0 24px;
}
.hero h1 .accent { color: var(--accent); }

.hero-sub {
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.35;
  font-weight: 500;
  max-width: 30ch;
  margin: 0 0 34px;
}

.hero-body { max-width: 66ch; color: var(--text-muted); font-size: 17px; }

.trust-line {
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s ease, background-color 0.22s ease;
}
.card:hover { border-color: var(--accent-40); background: var(--surface-2); }

.card-status {
  position: absolute;
  top: 26px;
  right: 26px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #000;
  font-weight: 600;
}
.card-status--soon {
  background: transparent;
  border: 1px solid var(--accent-40);
  color: var(--accent);
}

.card-relative { position: relative; }

.card h3 {
  font-size: clamp(27px, 3vw, 34px);
  font-weight: 800;
  margin: 0 0 12px;
  padding-right: 96px;
}

.card-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 20px;
}

.card-body { color: var(--text-muted); font-size: 16px; }
.card-body strong { color: var(--text); font-weight: 600; }

.check-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-muted);
}
.check-list li:last-child { margin-bottom: 0; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.check-list strong { color: var(--text); font-weight: 600; }

.card-spacer { flex: 1 1 auto; min-height: 26px; }

.price-lockup {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--accent-08);
  border: 1px solid var(--accent-40);
  border-radius: 14px;
  padding: 14px 18px;
  margin: 26px 0 22px;
  display: block;
  overflow-wrap: break-word;
}
.price-lockup .price-strong {
  font-weight: 700;
  font-size: 16px;
}
.price-stack { display: grid; gap: 7px; }
.price-stack > span { display: block; }
.price-stack .price-muted { color: var(--text-muted); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 62px;
  align-items: stretch;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 62px;
  align-items: stretch;
}

/* --------------------------------------------------------------------------
   Velvet rope filter
   -------------------------------------------------------------------------- */

.rope {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.rope-col {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  background: var(--surface);
}
.rope-col--yes { border-color: var(--accent-40); }

.rope-col h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  margin: 0 0 18px;
}
.rope-col--yes h4 { color: var(--accent); }

.rope-col ul { list-style: none; margin: 0; padding: 0; }
.rope-col li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.rope-col li:last-child { margin-bottom: 0; }
.rope-col li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mono);
  font-size: 13px;
}
.rope-col--yes li::before { content: "+"; color: var(--accent); }
.rope-col--no li::before { content: "x"; color: var(--text-faint); }

.filter-line {
  font-size: 15.5px;
  color: var(--text-muted);
  border-left: 2px solid var(--accent-40);
  padding-left: 16px;
  margin: 24px 0 0;
}
.filter-line strong { color: var(--accent); font-weight: 600; }

.rope-footnote {
  text-align: center;
  font-style: italic;
  color: var(--text-faint);
  font-size: 15.5px;
  margin: 34px auto 0;
  max-width: 60ch;
}

/* --------------------------------------------------------------------------
   Value stack tables
   -------------------------------------------------------------------------- */

.stack-rows {
  display: grid;
  gap: 26px;
  margin-top: 62px;
}

.stack-card {
  padding: 42px 40px;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 48px;
  row-gap: 26px;
  align-items: start;
}
.stack-head { grid-column: 1; grid-row: 1; }
.stack-foot { grid-column: 1; grid-row: 2; align-self: end; }
.stack-main { grid-column: 2; grid-row: 1 / span 2; min-width: 0; }

.lead-in {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 26px;
}

.value-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 0 0 22px;
}
.value-table caption {
  caption-side: top;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-bottom: 12px;
}
.value-table th,
.value-table td {
  text-align: left;
  vertical-align: top;
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
}
.value-table thead th {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
  padding-bottom: 10px;
}
.value-table td:first-child {
  color: var(--text);
  font-weight: 500;
  width: 40%;
}
.value-table td:nth-child(2) {
  color: var(--text-faint);
  font-size: 13.5px;
  width: 42%;
}
.value-table td:last-child {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  white-space: nowrap;
  text-align: right;
  width: 20%;
}
.value-table td:first-child strong { font-weight: 700; }

.totals {
  border-top: 1px solid var(--accent-40);
  padding-top: 20px;
  margin-top: 26px;
}
.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
}
.totals-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.totals-value {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.totals-row--price .totals-label { color: var(--text); font-size: 16px; }
.totals-row--price .totals-value {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}
.savings-line {
  display: block;
  margin-top: 18px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--accent-text);
  border-radius: 16px;
  padding: 18px 22px;
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.015em;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 28px rgba(240, 254, 145, 0.14);
}
@media (max-width: 640px) {
  .savings-line {
    font-size: 20px;
    padding: 16px 18px;
    border-radius: 14px;
  }
}

.stack-card .btn { margin-top: 24px; }

/* --------------------------------------------------------------------------
   AI Training callout
   -------------------------------------------------------------------------- */

.callout {
  margin-top: 34px;
  border: 1px solid var(--accent-40);
  border-radius: var(--radius-card);
  background: linear-gradient(
    140deg,
    rgba(240, 254, 145, 0.07),
    rgba(255, 255, 255, 0.02) 62%
  );
  padding: 52px 44px;
  display: grid;
  grid-template-columns: minmax(250px, 350px) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.callout-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 4.6vw, 62px);
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.045em;
  overflow-wrap: normal;
  margin: 0;
}
.callout-caption {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 16px;
}

.callout-story h4 {
  font-size: clamp(21px, 2.4vw, 27px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
}
.callout-story p { color: var(--text-muted); font-size: 16px; }

/* --------------------------------------------------------------------------
   Comparison strip
   -------------------------------------------------------------------------- */

.compare-strip {
  margin-top: 34px;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 18px 26px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: 0.05em;
}
.compare-row:last-child { border-bottom: none; }
.compare-row .tier {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.compare-row .save { color: var(--accent); font-weight: 600; }

/* --------------------------------------------------------------------------
   Three paths
   -------------------------------------------------------------------------- */

.paths-head {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin: 96px 0 30px;
}

.path-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s ease;
}
.path-card:hover { border-color: var(--accent-40); }
.path-card h4 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.15;
}
.path-card h4 .nowrap { white-space: nowrap; }
.path-card p { color: var(--text-muted); font-size: 15.5px; }
.path-card .btn { margin-top: auto; align-self: flex-start; }
.path-card .card-spacer { min-height: 20px; }

.final-line {
  margin: 56px auto 0;
  max-width: 62ch;
  text-align: center;
  font-style: italic;
  font-size: 15.5px;
  color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   Founders
   -------------------------------------------------------------------------- */

.founders .section-sub { max-width: 62ch; }

.founders-hero {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  margin-top: 62px;
}

.founders-figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface);
}
.founders-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.founders-figure--lead { max-width: 480px; }
.founders-figure--family { max-width: 440px; }

.founders-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 1.15em;
}
.founders-intro p:first-child {
  font-size: 21px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 500;
}

.founders-prose {
  max-width: 74ch;
  margin-top: 54px;
}
.founders-prose > p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 1.2em;
}
.founders-prose strong { color: var(--text); font-weight: 600; }

.founders-roles {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 22px;
  margin: 26px 0 8px;
}
.founders-roles p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 8px;
}
.founders-roles p:last-child { margin-bottom: 0; }
.founders-roles strong { color: var(--accent); font-weight: 700; }

.founders-h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 31px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin: 56px 0 20px;
  padding-bottom: 14px;
  position: relative;
}
.founders-h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  background: var(--accent);
}
.founders-h3--wide { margin-top: 0; }

.founders-quote {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 5.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--accent);
  text-align: center;
  max-width: 20ch;
  margin: 72px auto 78px;
  overflow-wrap: break-word;
}

.founders-family {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  gap: 54px;
  align-items: start;
  margin-top: 8px;
}
.founders-family-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 1.2em;
}
.founders-family-copy strong { color: var(--text); font-weight: 600; }

.founders-signature {
  margin: 62px 0 0;
  max-width: 68ch;
  border-left: 3px solid var(--accent);
  background: var(--accent-08);
  border-radius: 0 18px 18px 0;
  padding: 34px 38px;
}
.founders-signature p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}
.founders-signature-name {
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--accent);
  font-style: normal;
}

@media (max-width: 900px) {
  .founders-hero,
  .founders-family {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .founders-figure--lead,
  .founders-figure--family { max-width: 100%; }
  .founders-figure--lead img { max-height: 520px; }
  .founders-figure--family { order: -1; }
  .founders-figure--family img { max-height: 460px; }
  .founders-prose { margin-top: 40px; }
  .founders-quote { margin: 54px auto 58px; }
  .founders-h3 { margin-top: 44px; }
  .founders-signature { padding: 28px 24px; margin-top: 48px; }
}

/* --------------------------------------------------------------------------
   Notify form
   -------------------------------------------------------------------------- */

.notify-form {
  display: none;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.notify-form.is-open { display: flex; }
.notify-form input {
  flex: 1 1 200px;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 14px 20px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
}
.notify-form input::placeholder { color: var(--text-faint); }
.notify-form input:focus { border-color: var(--accent); outline: none; }
.notify-thanks {
  display: none;
  margin-top: 16px;
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
}
.notify-thanks.is-open { display: block; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-faint);
}
.footer-brand svg { height: 26px; width: auto; color: var(--accent); }
.footer-links {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13.5px;
  color: var(--text-faint);
}
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-links .sep { opacity: 0.4; }

/* --------------------------------------------------------------------------
   Reveal animation
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  :root { --section-y: 104px; }

  .grid-3 { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .stack-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    row-gap: 28px;
    padding: 34px 30px;
  }
  .stack-head,
  .stack-main,
  .stack-foot { grid-column: 1; grid-row: auto; }
  .stack-main { grid-row: auto; }
  .totals { margin-top: 0; }
  .callout {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    padding: 40px 32px;
  }
  .card h3 { padding-right: 0; }
  .card-status {
    position: static;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 16px;
  }
  .card-relative .card-eyebrow { margin-bottom: 10px; }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #000;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 14px var(--gutter) 22px;
    gap: 4px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 4px; font-size: 16px; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .site-nav .nav-cta {
    display: inline-flex;
    margin-top: 10px;
    color: #000;
    background: var(--accent);
    justify-content: center;
    font-weight: 700;
  }
}

@media (min-width: 901px) {
  .site-nav .nav-cta { display: none; }
}

@media (max-width: 860px) {
  :root { --section-y: 88px; --gutter: 20px; }

  .grid-2,
  .grid-4 { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .grid-2, .grid-3 { margin-top: 46px; }
  .rope { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .hero { padding: 72px 0 84px; }
  .hero-stripes { width: 62%; opacity: 0.7; }
  .card { padding: 30px 24px; }
  .stack-card { padding: 30px 22px; row-gap: 24px; }
  .totals-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .totals-label { white-space: normal; }
  .stack-rows { margin-top: 46px; }
  .paths-head { margin-top: 68px; }

  /* Value tables collapse to labelled stacks */
  .value-table thead { display: none; }
  .value-table,
  .value-table tbody,
  .value-table tr,
  .value-table td { display: block; width: 100%; }
  .value-table tr {
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
  }
  .value-table tr:last-child { border-bottom: none; }
  .value-table td {
    border: none;
    padding: 0;
    width: 100% !important;
    text-align: left !important;
  }
  .value-table td::before {
    content: attr(data-label);
    display: block;
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 4px;
  }
  .value-table td:nth-child(2),
  .value-table td:last-child { margin-top: 12px; }
  .value-table td:last-child { white-space: normal; font-size: 15px; }

  .compare-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    padding: 16px 20px;
  }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .btn { width: 100%; padding: 15px 22px; }
  .btn-row { gap: 12px; }
  .logo-img { height: 36px; }
  .callout { padding: 32px 22px; }
  .price-lockup { font-size: 13px; }
}

/* --------------------------------------------------------------------------
   V2 · Sculptor Profile card (Section 2, Card C)
   -------------------------------------------------------------------------- */

.card--nostatus h3 { padding-right: 0; }

.card-eyebrow--asis { text-transform: none; }

.mission-ask {
  margin-top: 24px;
  border-left: 2px solid var(--accent);
  background: var(--accent-08);
  border-radius: 0 14px 14px 0;
  padding: 18px 20px;
}
.mission-ask p {
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.mission-ask p:last-child { margin-bottom: 0; }
.mission-ask strong { color: var(--text); font-weight: 700; }

.price-lockup--free {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 600;
}

/* Section 2 diagnose grid: three equal columns, tightened padding */
.grid-diagnose { align-items: stretch; }
.grid-diagnose > .card { padding: 34px 30px; }
.grid-diagnose .card h3 { font-size: clamp(24px, 2.1vw, 30px); }
.grid-diagnose .card-sub { font-size: 16.5px; }

@media (max-width: 1024px) {
  .grid-diagnose > .card { padding: 32px 26px; }
}

/* --------------------------------------------------------------------------
   V2 · TZAi Remote Experience callout (Section 5)
   -------------------------------------------------------------------------- */

.callout--stack {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  scroll-margin-top: 96px;
}

.callout-story .remote-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin: 0 0 26px;
  max-width: 24ch;
  overflow-wrap: break-word;
}

.remote-body p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 68ch;
}

.remote-emphasis {
  border-left: 2px solid var(--accent);
  padding-left: 18px;
  margin-top: 28px;
  font-size: 19px !important;
  color: var(--text) !important;
}
.remote-emphasis strong { font-weight: 700; }
.remote-emphasis em { font-style: italic; }

.remote-close {
  font-style: italic;
  color: var(--text) !important;
  margin-top: 26px;
}

@media (max-width: 480px) {
  .callout-story .remote-display { max-width: none; }
  .remote-body p { font-size: 16.5px; }
  .remote-emphasis { font-size: 17px !important; }
}

@media (max-width: 860px) {
  .grid-diagnose > .card { padding: 30px 24px; }
}

/* ================= POSITIONING PILL ================= */
.positioning-pill {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-text);
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  padding: 14px 26px;
  border-radius: 999px;
  margin: 26px 0 32px;
  max-width: 100%;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.04), 0 6px 22px rgba(240, 254, 145, 0.08);
}

@media (max-width: 640px) {
  .positioning-pill {
    display: block;
    font-size: 15px;
    padding: 14px 20px;
    border-radius: 22px;
    margin: 22px auto 26px;
    text-align: center;
    line-height: 1.4;
  }
}

.positioning-bookend {
  padding: 84px 0 72px;
  text-align: center;
}

.positioning-bookend .container {
  display: flex;
  justify-content: center;
}

.positioning-pill--bookend {
  font-size: clamp(16px, 1.7vw, 20px);
  padding: 16px 30px;
  margin: 0;
}

@media (max-width: 640px) {
  .positioning-bookend { padding: 60px 0 48px; }
  .positioning-pill--bookend {
    font-size: 15px;
    padding: 14px 20px;
  }
}

/* ================= STAY IN ORBIT (disqualification on-ramp) ================= */
.stay-in-orbit {
  margin-top: 68px;
  padding: 44px 40px 46px;
  border: 1px solid var(--accent-40);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(240,254,145,0.04) 0%, rgba(240,254,145,0.015) 100%);
  text-align: center;
}
.stay-lead {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255,255,255,0.7);
  max-width: 62ch;
  margin: 0 auto 18px;
  line-height: 1.55;
}
.stay-invite {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--text);
  max-width: 62ch;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.stay-invite strong { color: var(--accent); font-weight: 700; }
.social-row {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid var(--accent-40);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.social-row a:hover,
.social-row a:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-text);
  transform: translateY(-1px);
}
.social-row svg { flex-shrink: 0; }
.social-also {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  letter-spacing: 0.005em;
}
.social-also a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  margin: 0 2px;
  transition: color 180ms ease, border-color 180ms ease;
}
.social-also a:hover,
.social-also a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
@media (max-width: 640px) {
  .stay-in-orbit { padding: 34px 22px 36px; margin-top: 52px; border-radius: 18px; }
  .social-row { gap: 10px; }
  .social-row a { padding: 10px 14px; font-size: 14px; gap: 8px; }
  .social-row a span { font-size: 14px; }
}

/* ================= ECOSYSTEM SECTION ================= */
.section-ecosystem { padding-top: 96px; padding-bottom: 96px; }
.grid-ecosystem {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 46px;
}
.grid-ecosystem .eco-card {
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
}
.grid-ecosystem .eco-card h3 {
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.15;
  margin: 8px 0 12px;
}
.grid-ecosystem .eco-card .card-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.45;
}
.grid-ecosystem .card-body p { font-size: 15.5px; line-height: 1.6; }
.eco-card--current {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(240,254,145,0.07) 0%, rgba(240,254,145,0.02) 100%);
  box-shadow: 0 12px 40px rgba(240, 254, 145, 0.08);
}
.eco-card--current h3 { color: var(--accent); }
.btn-current {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  background: transparent;
  border: 1px dashed var(--accent-40);
  color: var(--accent);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: default;
  pointer-events: none;
}
.eco-card .micro a {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-decoration-color: rgba(240,254,145,0.35);
  text-underline-offset: 3px;
}
.eco-card .micro a:hover { color: var(--accent); }
@media (max-width: 960px) {
  .grid-ecosystem { grid-template-columns: 1fr; gap: 22px; }
  .grid-ecosystem .eco-card { padding: 30px 24px; }
  .section-ecosystem { padding-top: 76px; padding-bottom: 76px; }
}

/* ================= FLYWHEEL SECTION ================= */
.section-flywheel {
  padding-top: 110px;
  padding-bottom: 96px;
  background: radial-gradient(ellipse at center 40%, rgba(240,254,145,0.035) 0%, transparent 60%);
  scroll-margin-top: 96px;
}
.section-flywheel .section-intro {
  max-width: 720px;
  margin: 22px auto 0;
  text-align: center;
}
.section-flywheel .section-intro p {
  font-family: 'Inter', system-ui, sans-serif;
  color: rgba(255,255,255,0.72);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.6;
}

/* Flywheel container */
.flywheel {
  position: relative;
  width: 100%;
  max-width: 780px;
  aspect-ratio: 1 / 1;
  margin: 62px auto 32px;
}
.flywheel-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

/* Node buttons \u2014 all share base */
.node {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent-40);
  background: linear-gradient(180deg, rgba(20,24,26,0.94) 0%, rgba(14,16,18,0.92) 100%);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease, background 220ms ease;
  z-index: 2;
  backdrop-filter: blur(2px);
}
.node:hover,
.node:focus-visible,
.node.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(240,254,145,0.08), 0 12px 40px rgba(240,254,145,0.14);
  transform: translate(-50%, -50%) scale(1.04);
}
.node .node-label {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 4px;
}
.node .node-role {
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  line-height: 1.35;
}
.node .node-eyebrow {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 4px;
  font-weight: 700;
}

/* Dim non-selected when one is active */
.flywheel.has-selection .node:not(.is-selected) { opacity: 0.5; }
.flywheel.has-selection .node:not(.is-selected):hover { opacity: 1; }

/* Node positioning (percentages relative to square container) */
.node-loa,
.node-human,
.node-tzai,
.node-remote {
  width: 25%;
  height: 25%;
  transform: translate(-50%, -50%);
}
.node-loa    { top: 24%; left: 24%; }
.node-human  { top: 24%; left: 76%; }
.node-tzai   { top: 76%; left: 24%; }
.node-remote { top: 76%; left: 76%; }

.node-center {
  width: 32%;
  height: 32%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-color: var(--accent);
  background: radial-gradient(circle at 50% 40%, rgba(240,254,145,0.14) 0%, rgba(20,24,26,0.95) 65%);
  box-shadow: 0 0 0 8px rgba(240,254,145,0.06), 0 20px 60px rgba(240,254,145,0.15);
}
.node-center .node-label {
  font-size: clamp(15px, 1.7vw, 20px);
  color: var(--accent);
  margin-top: 2px;
}
.node-center:hover,
.node-center:focus-visible,
.node-center.is-selected {
  box-shadow: 0 0 0 10px rgba(240,254,145,0.1), 0 24px 70px rgba(240,254,145,0.22);
  transform: translate(-50%, -50%) scale(1.05);
}

/* Detail panel below flywheel */
.flywheel-detail {
  max-width: 820px;
  margin: 20px auto 0;
  min-height: 360px;
  position: relative;
  scroll-margin-top: 96px;
}
.detail-panel {
  position: absolute;
  inset: 0;
  padding: 40px 40px 42px;
  border: 1px solid var(--accent-40);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(240,254,145,0.06) 0%, rgba(20,24,26,0.72) 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms;
}
.detail-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
  inset: auto;
}
.detail-panel .detail-eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 10px;
}
.detail-panel h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--text);
}
.detail-panel .detail-lead {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0 0 18px;
  max-width: 60ch;
}
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.detail-list li {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--accent-40);
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  background: rgba(240,254,145,0.03);
  letter-spacing: 0.005em;
}
.detail-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.detail-actions .btn-current {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  background: transparent;
  border: 1px dashed var(--accent-40);
  color: var(--accent);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.detail-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  text-decoration: underline;
  text-decoration-color: rgba(240,254,145,0.35);
  text-underline-offset: 3px;
}
.detail-link:hover { color: var(--accent); }

/* The Cycle in Action strip */
.cycle-strip {
  margin: 60px auto 0;
  max-width: 900px;
  padding: 34px 28px 30px;
  border-top: 1px solid var(--accent-40);
  border-bottom: 1px solid var(--accent-40);
  text-align: center;
}
.cycle-title {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 20px;
  font-family: 'Inter', system-ui, sans-serif;
}
.cycle-chain {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 4px;
}
.cycle-chain li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cycle-chain li span {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid var(--accent-40);
  border-radius: 8px;
  color: var(--text);
  background: rgba(240,254,145,0.04);
  white-space: nowrap;
}
.cycle-chain li:not(:last-child)::after {
  content: "\2192";
  color: var(--accent);
  font-size: 16px;
  margin-left: 4px;
  opacity: 0.7;
}
.cycle-close {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.5;
}
.cycle-close strong { color: var(--accent); font-weight: 500; }

/* Four pillars footer */
.flywheel-pillars {
  margin: 40px auto 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.85);
}
.flywheel-pillars span[aria-hidden] { color: var(--accent); }

.flywheel-closer {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(17px, 1.9vw, 21px);
  color: var(--text);
  text-align: center;
  max-width: 620px;
  margin: 12px auto 0;
  line-height: 1.5;
}

/* Mobile: stack flywheel as vertical list */
@media (max-width: 760px) {
  .flywheel {
    aspect-ratio: auto;
    max-width: 480px;
    margin: 40px auto 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .flywheel-lines { display: none; }
  .node,
  .node-center,
  .node-loa,
  .node-human,
  .node-tzai,
  .node-remote {
    position: relative;
    width: 100%;
    height: auto;
    top: auto; left: auto;
    transform: none;
    border-radius: 16px;
    padding: 18px 22px;
    text-align: left;
    align-items: flex-start;
    aspect-ratio: auto;
  }
  .node:hover,
  .node.is-selected {
    transform: none;
  }
  .node-center {
    order: -1;
    padding: 22px 22px;
  }
  .node-center .node-label { text-align: left; }
  .cycle-chain li span { font-size: 12.5px; padding: 7px 11px; }
  .detail-panel { padding: 26px 22px; }

  /* Mobile: stack the Cycle in Action chain vertically with down-arrows */
  .cycle-chain {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .cycle-chain li {
    flex-direction: column;
    gap: 4px;
    width: 100%;
    justify-content: center;
  }
  .cycle-chain li span {
    text-align: center;
    width: auto;
  }
  .cycle-chain li:not(:last-child)::after {
    content: "\2193";
    margin-left: 0;
    margin-top: 2px;
    font-size: 18px;
    line-height: 1;
  }
}
