/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 0.85rem;
  --btn-pad-x: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--grad-flame);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(255, 95, 46, 0.55);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px -8px rgba(255, 95, 46, 0.65);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--text-900);
}

.section-dark .btn-ghost,
.hero .btn-ghost,
.breadcrumb-bar .btn-ghost,
.cta-band .btn-ghost {
  color: var(--text-on-dark);
  border-color: var(--ink-border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--ink-900);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--dur-fast) var(--ease-out);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: padding var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.75rem;
}

.site-header.is-scrolled {
  padding: 0.7rem 0;
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.5);
}

/* Blur/background live on a pseudo-element (not .site-header itself) so that
   backdrop-filter doesn't create a new containing block for the fixed-position
   mobile nav nested inside the header — that would trap it to the header's own
   height instead of the full viewport. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: rgba(5, 7, 12, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  transition: opacity var(--dur-fast) var(--ease-out);
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand img {
  height: 62px;
  width: auto;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 2.6vw, 2.75rem);
}

.main-nav a {
  color: var(--text-on-dark-muted);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--dur-fast) var(--ease-out);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #fff;
}

.main-nav a.btn-primary,
.main-nav a.btn-primary:hover {
  color: #fff;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--grad-flame);
  transition: width var(--dur-fast) var(--ease-out);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav .btn-primary {
  display: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 10;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--ink-900);
    transform: translateY(-100%);
    transition: transform var(--dur-med) var(--ease-out);
    padding: 6rem 2rem 2rem;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    font-size: 1.4rem;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .main-nav .btn-primary {
    display: inline-flex;
    margin-top: 1rem;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: var(--text-on-dark);
  padding-top: clamp(8.5rem, 16vw, 12rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(60% 60% at 50% 30%, black, transparent);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem 0.5rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-on-dark-muted);
  margin-bottom: 1.5rem;
}

.hero-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-flame);
  box-shadow: 0 0 0 4px rgba(255, 95, 46, 0.18);
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.1rem;
}

.hero .lede {
  max-width: 540px;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  margin-bottom: 2.25rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 3 / 4;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 7, 12, 0.85));
}

.hero-visual-card {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  background: rgba(10, 14, 23, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.hero-visual-card .ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad-tech);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-visual-card .ico svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.hero-visual-card strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.hero-visual-card span {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    aspect-ratio: 16 / 11;
    max-width: 480px;
  }
}

/* ---------- Marquee ---------- */
.marquee-band {
  background: var(--paper-50);
  border-top: 1px solid var(--paper-border);
  border-bottom: 1px solid var(--paper-border);
  padding: 1.75rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text-400);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.marquee-track span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-flame);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  gap: var(--gap);
}

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

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 640px) {
  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: #fff;
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 2.5vw, 2.1rem);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.feature-card .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad-flame);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card .ico svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--text-600);
}

/* dark variant */
.section-dark .feature-card {
  background: var(--ink-700);
  border-color: var(--ink-border);
}

.section-dark .feature-card p {
  color: var(--text-on-dark-muted);
}

/* glass card */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 2.5vw, 2.1rem);
}

/* Service detail card with image */
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--paper-border);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.service-card .media {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.service-card:hover .media img {
  transform: scale(1.08);
}

.service-card .body {
  padding: clamp(1.4rem, 2vw, 1.9rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--paper-100);
  color: var(--text-600);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Stats */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  text-align: center;
}

@media (max-width: 780px) {
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-900);
}

.section-dark .stat-item .num {
  color: #fff;
}

.stat-item .label {
  color: var(--text-600);
  font-size: 0.95rem;
}

.section-dark .stat-item .label {
  color: var(--text-on-dark-muted);
}

/* Timeline / process */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--paper-border);
}

.process-item:first-child {
  border-top: none;
}

.process-item .step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--flame-500);
}

/* Sensor grid */
.sensor-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 640px) {
  .sensor-list {
    grid-template-columns: 1fr;
  }
}

.sensor-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: var(--ink-700);
  border: 1px solid var(--ink-border);
}

.sensor-item .ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(47, 215, 224, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sensor-item .ico svg {
  width: 22px;
  height: 22px;
  color: var(--cyan-400);
}

.sensor-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.sensor-item p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-on-dark-muted);
}

/* ---------- Accordion (FAQ) ---------- */
.accordion {
  border-top: 1px solid var(--paper-border);
}

.accordion-item {
  border-bottom: 1px solid var(--paper-border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: none;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-900);
}

.accordion-trigger .plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--paper-border);
  flex-shrink: 0;
  position: relative;
}

.accordion-trigger .plus::before,
.accordion-trigger .plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text-900);
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}

.accordion-trigger .plus::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.accordion-trigger .plus::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.accordion-item.is-open .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.accordion-item.is-open .accordion-trigger {
  color: var(--flame-600);
}

.accordion-panel {
  height: 0;
  overflow: hidden;
}

.accordion-panel-inner {
  padding-bottom: 1.5rem;
  color: var(--text-600);
  max-width: 760px;
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-900);
}

.section-dark .form-field label {
  color: var(--text-on-dark);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--paper-border);
  background: var(--paper-50);
  color: var(--text-900);
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.section-dark .form-field input,
.section-dark .form-field textarea,
.section-dark .form-field select {
  background: var(--ink-700);
  border-color: var(--ink-border);
  color: var(--text-on-dark);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--flame-500);
  background: #fff;
}

.section-dark .form-field input:focus,
.section-dark .form-field textarea:focus,
.section-dark .form-field select:focus {
  background: var(--ink-600);
  color: var(--text-on-dark);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-field .error-msg {
  font-size: 0.78rem;
  color: #e0453c;
  min-height: 1em;
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: #e0453c;
}

.form-status {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1.25rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: rgba(23, 184, 106, 0.12);
  color: #17b86a;
  border: 1px solid rgba(23, 184, 106, 0.35);
}

.form-status.error {
  background: rgba(224, 69, 60, 0.1);
  color: #e0453c;
  border: 1px solid rgba(224, 69, 60, 0.35);
}

/* Newsletter inline form */
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--ink-border);
  background: var(--ink-700);
  color: var(--text-on-dark);
}

.newsletter-form input:focus {
  border-color: var(--flame-500);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: var(--text-on-dark-muted);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--ink-border);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 1.1rem;
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.92rem;
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--ink-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.social-row a:hover {
  background: var(--grad-flame);
  transform: translateY(-3px);
}

.social-row svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  font-size: 0.92rem;
  transition: color var(--dur-fast) var(--ease-out);
}

.footer-col a:hover {
  color: #fff;
}

.footer-col address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.75rem 0;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--text-on-dark-muted);
}

.footer-bottom a:hover {
  color: #fff;
}

.todo-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 95, 46, 0.16);
  color: var(--flame-glow);
  border: 1px dashed rgba(255, 95, 46, 0.5);
  padding: 0.1rem 0.5rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-flame);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
  box-shadow: var(--shadow-soft);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb-bar {
  background: var(--grad-hero);
  color: var(--text-on-dark);
  padding-top: clamp(7.5rem, 14vw, 10.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.breadcrumb-bar .eyebrow {
  color: var(--flame-glow);
}

.breadcrumb-bar h1 {
  color: #fff;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  margin-top: 1rem;
}

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

/* ---------- Loader ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--flame-500);
  animation: spin 0.9s linear infinite;
}

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

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-lg);
  background: var(--grad-hero);
  border: 1px solid var(--ink-border);
  color: var(--text-on-dark);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}

.cta-band h2 {
  margin-bottom: 0.5rem;
  max-width: 560px;
  color: #fff;
}

.cta-band p {
  color: var(--text-on-dark-muted);
  margin-bottom: 0;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Table (for structured data e.g. compliance) ---------- */
.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--paper-border);
  font-size: 0.95rem;
}

.info-table th {
  color: var(--text-900);
  font-family: var(--font-display);
}
