@charset "UTF-8";

:root {
  --ink: #101418;
  --ink-soft: #3a454d;
  --muted: #6b7780;
  --paper: #f3f5f7;
  --paper-2: #e8ecef;
  --white: #ffffff;
  --night: #070a0c;
  --night-2: #0e1418;
  --night-3: #161d23;
  --line: rgba(16, 20, 24, 0.1);
  --line-dark: rgba(255, 255, 255, 0.1);
  --swiss: #e30613;
  --swiss-hot: #ff2a36;
  --teal: #14c4b0;
  --teal-deep: #0a8f9a;
  --teal-glow: rgba(20, 196, 176, 0.35);
  --radius: 1.15rem;
  --radius-sm: 0.7rem;
  --max: 70rem;
  --header-h: 4.75rem;
  --font: "Manrope", "Segoe UI", sans-serif;
  --display: "Sora", "Manrope", sans-serif;
  --shadow: 0 24px 60px rgba(7, 10, 12, 0.18);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--swiss);
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
}

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

.wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
}

/* —— Header —— */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 10, 12, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  border-bottom-color: var(--line-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 2.55rem;
  width: auto;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-burger {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  display: block;
  width: 1.05rem;
  height: 2px;
  background: #fff;
  position: relative;
}

.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-burger span::before { top: -5px; }
.nav-burger span::after { top: 5px; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav a:hover {
  color: #fff;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-mobile-cta {
  display: none;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.95rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 650;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--swiss-hot), var(--swiss));
  color: #fff;
  box-shadow: 0 12px 28px rgba(227, 6, 19, 0.32);
}

.btn-primary:hover {
  color: #fff;
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #06201d;
  box-shadow: 0 12px 28px var(--teal-glow);
}

.btn-teal:hover {
  color: #06201d;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-outline:hover {
  border-color: #fff;
  color: #fff;
}

.btn-outline-dark {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.nav-cta .btn {
  min-height: 2.15rem;
  padding: 0 0.95rem;
  font-size: 0.8rem;
  box-shadow: none;
}

.nav-cta .btn:hover {
  transform: none;
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(20, 196, 176, 0.22), transparent 55%),
    radial-gradient(700px 420px at 0% 100%, rgba(227, 6, 19, 0.18), transparent 50%),
    linear-gradient(160deg, #050708 0%, #0b1115 48%, #121a20 100%);
  padding: 4.2rem 0 5.5rem;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orbit svg {
  position: absolute;
  right: -8%;
  top: 50%;
  width: min(46rem, 70vw);
  transform: translateY(-50%);
  opacity: 0.55;
}

.orbit-ring {
  fill: none;
  stroke: url(#orbitGrad);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 14 18;
  animation: orbit-spin 28s linear infinite;
  transform-origin: 200px 200px;
}

.orbit-ring.slow {
  animation-duration: 42s;
  animation-direction: reverse;
  opacity: 0.7;
}

.orbit-node {
  fill: #fff;
  filter: drop-shadow(0 0 8px var(--teal));
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-brand {
  margin: 0 0 1.4rem;
  width: min(22rem, 92%);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #fff;
  max-width: 18ch;
}

.hero-lead {
  margin: 0 0 1.7rem;
  max-width: 36rem;
  color: rgba(220, 232, 236, 0.84);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-meta li {
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 22rem;
}

.hero-badge {
  position: relative;
  width: min(17rem, 78%);
  aspect-ratio: 1;
  border-radius: 32% 40% 34% 42%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.12), transparent 45%),
    linear-gradient(145deg, #152028, #0a1014);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}

.hero-badge img {
  width: 68%;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
}

.hero-chip {
  position: absolute;
  right: 4%;
  bottom: 12%;
  max-width: 14rem;
  padding: 0.95rem 1.1rem;
  border-radius: 1rem;
  background: rgba(14, 20, 24, 0.88);
  border: 1px solid rgba(20, 196, 176, 0.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero-chip strong {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.hero-chip span {
  color: rgba(220, 232, 236, 0.72);
  font-size: 0.86rem;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-rise {
  animation: rise 0.75s ease both;
}

.hero-rise:nth-child(2) { animation-delay: 0.08s; }
.hero-rise:nth-child(3) { animation-delay: 0.14s; }
.hero-rise:nth-child(4) { animation-delay: 0.2s; }
.hero-rise:nth-child(5) { animation-delay: 0.26s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* —— Sections —— */
.section {
  padding: 5.2rem 0;
}

.section-head {
  max-width: 40rem;
  margin: 0 0 2.4rem;
}

.section-head h2,
.page-head h1 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.kicker {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.band-dark {
  background: var(--night-2);
  color: #fff;
}

.band-dark .kicker {
  color: var(--teal);
}

.band-dark .lead,
.band-dark .feature p,
.band-dark .rail p {
  color: rgba(220, 232, 236, 0.78);
}

.band-dark .section-head h2 {
  color: #fff;
}

.band-soft {
  background: var(--white);
  border-block: 1px solid var(--line);
}

/* Editorial feature rail */
.rail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.rail-sticky {
  position: sticky;
  top: calc(var(--header-h) + 1.2rem);
}

.story {
  display: grid;
  gap: 0;
}

.story article {
  padding: 1.5rem 0 1.5rem 1.35rem;
  border-left: 2px solid var(--paper-2);
  position: relative;
}

.band-dark .story article {
  border-left-color: rgba(255, 255, 255, 0.12);
}

.story article::before {
  content: "";
  position: absolute;
  left: -0.4rem;
  top: 1.75rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(20, 196, 176, 0.18);
}

.story h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.15rem;
}

.story p {
  margin: 0;
}

/* Feature mosaic – not identical card grid */
.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.feature {
  padding: 1.55rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.feature-lg {
  grid-row: span 2;
  background:
    radial-gradient(420px 240px at 100% 0%, rgba(20, 196, 176, 0.22), transparent 58%),
    linear-gradient(160deg, #e8f7f4, #f4fbf9);
  color: var(--ink);
  border-color: rgba(10, 143, 154, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.feature-lg p {
  color: var(--ink-soft);
}

.feature h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.12rem;
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.feature-icon {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.9rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(20, 196, 176, 0.16), rgba(227, 6, 19, 0.1));
  color: var(--teal-deep);
}

.feature-lg .feature-icon {
  background: linear-gradient(145deg, rgba(20, 196, 176, 0.28), rgba(227, 6, 19, 0.12));
  color: var(--teal-deep);
}

/* Audience strips */
.strip {
  display: grid;
  gap: 0;
}

.strip article {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.strip article:last-child {
  border-bottom: 0;
}

.strip strong {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--swiss);
}

.strip h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.2rem;
}

.strip p {
  margin: 0;
  color: var(--ink-soft);
}

/* Steps as numbered path */
.path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: path;
}

.path article {
  position: relative;
  padding: 0 1.2rem 0 0;
}

.path article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 3.2rem;
  right: 0.4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(20, 196, 176, 0.15));
}

.path article::before {
  counter-increment: path;
  content: counter(path, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  color: #06201d;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  position: relative;
  z-index: 1;
}

.path h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.05rem;
}

.path p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.65rem;
  max-width: 46rem;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 1.1rem;
  border-left: 3px solid var(--swiss);
}

.faq summary {
  cursor: pointer;
  font-family: var(--display);
  font-weight: 650;
  padding: 1rem 0;
  list-style: none;
}

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

.faq p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

/* CTA */
.cta {
  padding: 0 0 5rem;
}

.cta-box {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 2.4rem;
  border-radius: 1.5rem;
  color: #fff;
  background:
    radial-gradient(500px 200px at 100% 0%, rgba(20, 196, 176, 0.28), transparent 55%),
    radial-gradient(400px 180px at 0% 100%, rgba(227, 6, 19, 0.22), transparent 50%),
    linear-gradient(125deg, #0a1014, #152028);
}

.cta-box h2 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.cta-box p {
  margin: 0;
  color: rgba(220, 232, 236, 0.78);
}

.cta-actions {
  display: grid;
  gap: 0.65rem;
  flex-shrink: 0;
}

.cta-mid {
  padding: 1rem 0 0;
}

/* Footer */
.footer {
  background: var(--night);
  color: rgba(220, 232, 236, 0.7);
  padding: 3.2rem 0 1.6rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand img {
  height: 2.6rem;
  width: auto;
  margin-bottom: 0.9rem;
}

.footer-brand p {
  margin: 0;
  max-width: 22rem;
}

.footer h2 {
  margin: 0 0 0.7rem;
  color: #fff;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.1rem;
  font-size: 0.86rem;
}

/* Pages / form */
.page {
  padding: 3.2rem 0 5rem;
  background: var(--paper);
}

.page-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.page .header,
.header-light {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
}

.header-light .nav a,
.page-shell .nav a {
  color: var(--ink-soft);
}

.header-light .nav a:hover,
.page-shell .nav a:hover {
  color: var(--ink);
}

.header-light .nav a[aria-current="page"] {
  color: var(--ink);
}

.header-light.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(7, 10, 12, 0.06);
}

.header-light .nav-burger span,
.header-light .nav-burger span::before,
.header-light .nav-burger span::after {
  background: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.form {
  display: grid;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form label,
.form-check {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 650;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
}

.form textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-check {
  grid-template-columns: 1.1rem 1fr;
  align-items: start;
  font-weight: 400;
  color: var(--muted);
}

.form-check input {
  width: 1.1rem;
  min-height: 1.1rem;
  margin-top: 0.2rem;
}

.form-error {
  padding: 0.85rem 1rem;
  border: 1px solid #f0d39a;
  background: #fff6e5;
  border-radius: 10px;
  color: #8a5a00;
  font-size: 0.92rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

altcha-widget {
  display: block;
}

.aside-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.aside-card + .aside-card {
  margin-top: 1rem;
}

.aside-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 2rem 0 0.6rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0 1.6rem;
  font-size: 0.95rem;
}

.prose th,
.prose td {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.prose th {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--paper-2);
}

.prose code {
  font-size: 0.9em;
  background: var(--paper-2);
  padding: 0.12rem 0.4rem;
  border-radius: 0.35rem;
}

.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.95rem;
}

.compare th,
.compare td {
  padding: 0.95rem 1.05rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare tr:last-child th,
.compare tr:last-child td {
  border-bottom: 0;
}

.compare thead th {
  background: var(--night-2);
  color: #fff;
  font-family: var(--display);
  font-weight: 650;
}

.compare thead th:first-child {
  width: 28%;
}

.compare tbody th {
  font-weight: 650;
  color: var(--ink);
  background: var(--paper);
}

.compare .yes {
  color: var(--teal-deep);
  font-weight: 650;
}

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

.paths-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.path-card {
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.path-card.accent {
  background:
    radial-gradient(420px 200px at 100% 0%, rgba(20, 196, 176, 0.18), transparent 55%),
    linear-gradient(160deg, #0e1418, #161d23);
  color: #fff;
  border-color: transparent;
}

.path-card.accent p {
  color: rgba(220, 232, 236, 0.78);
}

.path-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: 1.25rem;
}

.path-card p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
}

.path-card ul {
  margin: 0 0 1.3rem;
  padding: 0 0 0 1.1rem;
  color: inherit;
}

.path-card.accent ul {
  color: rgba(220, 232, 236, 0.84);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.guide-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.3rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.guide-card:hover {
  border-color: var(--teal);
  color: inherit;
  transform: translateY(-2px);
}

.guide-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.05rem;
}

.guide-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  flex: 1;
}

.guide-card span {
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-deep);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  margin: 0 0 1.2rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--teal-deep);
}

.toc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  margin-bottom: 2rem;
}

.toc strong {
  display: block;
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.toc ol {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.35rem;
}

.related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.related h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 0 0 0.85rem;
}

.related ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

@media (max-width: 980px) {
  .paths-2,
  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .paths-2,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .compare {
    display: block;
    overflow-x: auto;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .rail,
  .mosaic,
  .path,
  .footer-grid,
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .feature-lg {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .path {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .path article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 800px) {
  .nav-burger {
    display: grid;
  }

  .nav {
    display: none;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  .nav-cta .btn-outline,
  .nav-cta .btn-outline-dark {
    display: none;
  }

  .nav-mobile-cta {
    display: inline-flex;
    margin-top: 0.35rem;
  }

  .header {
    height: auto;
    min-height: var(--header-h);
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .logo { grid-column: 1; grid-row: 1; }
  .nav-cta { grid-column: 2; grid-row: 1; }
  .nav-burger { grid-column: 3; grid-row: 1; }
  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.4rem 0 1rem;
    gap: 0.75rem;
  }

  .hero {
    min-height: 0;
    padding-top: 2.6rem;
  }

  .hero-grid,
  .rail,
  .mosaic,
  .path,
  .footer-grid,
  .split,
  .cta-box,
  .form-row,
  .strip article {
    grid-template-columns: 1fr;
  }

  .cta-box {
    display: grid;
  }

  .hero-stage {
    min-height: 0;
    order: -1;
  }

  .hero-badge {
    width: min(12rem, 55%);
  }

  .hero-chip {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
    max-width: none;
  }

  .rail-sticky {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn,
  .orbit-ring,
  .hero-badge,
  .hero-rise {
    animation: none;
    transition: none;
  }
}
