﻿:root {
  --red: #ff2338;
  --red-dark: #c91024;
  --ink: #1f2428;
  --muted: #626b73;
  --line: #e8ecef;
  --soft: #f6f7f8;
  --dark: #111417;
  --white: #fff;
  --max: 1280px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

figure,
.grid > *,
.split-section > *,
.content-block,
.media-card,
.visual-card,
.visual-slot,
.feature,
.card {
  min-width: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 23px;
  height: 2px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.nav-toggle-lines {
  position: relative;
}

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

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

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

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

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

.nav-toggle:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 136px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-dropdown-trigger:hover {
  color: var(--red);
}

.nav-links a:focus-visible,
.nav-dropdown-trigger:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 5px;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 12px;
}

.nav-dropdown-trigger::after {
  content: "▾";
  margin-left: 6px;
  color: var(--red);
  font-size: 11px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: none;
  min-width: 320px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 16px 36px rgba(17, 20, 23, .14);
  transform: translateX(-50%);
  z-index: 40;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 13px;
  color: var(--ink);
  letter-spacing: .03em;
  text-transform: none;
  white-space: nowrap;
  border-radius: 4px;
  line-height: 1.25;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--soft);
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 13px 22px;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
}

.button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-secondary {
  color: var(--red);
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--red);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}

.store-link:hover,
.store-link:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.hero {
  min-height: 650px;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 48%, rgba(255, 37, 55, .08), transparent 34%),
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.56) 43%, rgba(0,0,0,.22) 100%),
    linear-gradient(0deg, rgba(0,0,0,.42), rgba(0,0,0,.08) 34%, rgba(0,0,0,.22)),
    url("../images/hero-home-2026.webp") center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-inner,
.section-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 980px;
  margin: 0 0 28px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.no-break {
  white-space: nowrap;
}

.hero p {
  max-width: 720px;
  font-size: 19px;
  font-weight: 700;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 24px 0 34px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.section {
  background: var(--white);
}

.section.alt {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section.dark {
  background: var(--dark);
  color: var(--white);
}

.section-title {
  max-width: 860px;
  margin: 0 0 38px;
}

.section-title h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  text-transform: uppercase;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.dark .section-title p {
  color: #d7dde2;
}

.grid {
  display: grid;
  gap: 24px;
  min-width: 0;
}

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

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

.card,
.feature,
.faq-item {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 28px;
}

.card h3,
.feature h3,
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.2;
}

.card p,
.feature p,
.faq-item p {
  margin: 0 0 18px;
  color: var(--muted);
}

details.faq-item {
  cursor: default;
}

details.faq-item summary {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.18;
  cursor: pointer;
}

details.faq-item summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

details.faq-item[open] summary {
  margin-bottom: 14px;
}

.card-link {
  text-decoration: none;
}

.card-link:hover h3 {
  color: var(--red);
}

.media-card {
  overflow: hidden;
  border: 1px solid var(--white);
  background: var(--white);
}

.media-card img {
  width: 100%;
  height: clamp(220px, 22vw, 300px);
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.media-card .content {
  padding: 24px;
}

.placeholder {
  min-height: 270px;
  border: 2px dashed #cbd2d8;
  background: repeating-linear-gradient(135deg, #fafafa, #fafafa 12px, #f0f2f4 12px, #f0f2f4 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.contact-form {
  border: 1px solid var(--line);
  background: var(--white);
  padding: clamp(24px, 4vw, 42px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  line-height: 1.4;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form button:focus-visible {
  outline: 3px solid rgba(255, 35, 57, .35);
  outline-offset: 2px;
  border-color: var(--red);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .7;
}

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

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  font-weight: 500;
  color: var(--muted);
}

.form-consent input {
  width: auto;
  margin-top: 4px;
}

.form-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.contact-form-status {
  margin: 0 0 20px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.contact-form-status:empty {
  display: none;
}

.contact-form-status.is-success {
  border-color: #8fcf9a;
  background: #f0fff3;
}

.contact-form-status.is-error {
  border-color: #ffb7bf;
  background: #fff1f3;
}

.contact-form-status.is-info {
  border-color: #b8cadc;
  background: #f3f7fb;
}

.visual-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--white);
  background: var(--white);
}

.visual-card img {
  width: 100%;
  height: clamp(260px, 28vw, 420px);
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  display: block;
}

.visual-card figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  border-top: 1px solid var(--white);
}

.visual-card-wide,
.visual-card-pair {
  margin-top: 28px;
}

.visual-card-wide img {
  height: clamp(300px, 34vw, 520px);
}

.visual-card-pair .visual-card img {
  height: clamp(240px, 24vw, 340px);
}

.grid > img,
.visual-slot img {
  width: 100%;
  height: clamp(260px, 28vw, 420px);
  object-fit: contain;
  object-position: center;
  background: var(--white);
  border: 1px solid var(--white);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.partner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 16px;
}

.partner img {
  max-height: 48px;
  object-fit: contain;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.62) 48%, rgba(0,0,0,.34) 100%),
    linear-gradient(0deg, rgba(0,0,0,.38), rgba(0,0,0,.12)),
    url("../images/hero-tranchee-3d.webp") center / cover no-repeat;
  color: var(--white);
}

.page-hero-recolement {
  background:
    linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.64) 46%, rgba(0,0,0,.30) 100%),
    linear-gradient(0deg, rgba(0,0,0,.36), rgba(0,0,0,.10)),
    url("../images/hero-recolement-2d-plan.webp") center / cover no-repeat;
}

.page-hero-field {
  background:
    linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.62) 46%, rgba(0,0,0,.30) 100%),
    linear-gradient(0deg, rgba(0,0,0,.36), rgba(0,0,0,.10)),
    url("../images/hero-field-acquisition.webp") center / cover no-repeat;
}

.page-hero-data {
  background:
    linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.58) 46%, rgba(0,0,0,.26) 100%),
    linear-gradient(0deg, rgba(0,0,0,.34), rgba(0,0,0,.10)),
    url("../images/hero-recolement-2d-plan.webp") center / cover no-repeat;
}

.page-hero-enedis {
  background:
    linear-gradient(90deg, rgba(0,0,0,.80) 0%, rgba(0,0,0,.50) 44%, rgba(0,0,0,.18) 100%),
    linear-gradient(0deg, rgba(0,0,0,.26), rgba(0,0,0,.08)),
    url("../images/hero-enedis.webp") center / cover no-repeat;
}

.page-hero .hero-inner {
  padding-top: 92px;
  padding-bottom: 72px;
}

.content-block {
  max-width: 880px;
}

.content-block h2 {
  margin: 42px 0 14px;
  font-size: 34px;
  line-height: 1.2;
}

.content-block h3 {
  margin: 28px 0 10px;
  font-size: 24px;
}

.content-block p,
.content-block li {
  color: var(--muted);
  font-size: 17px;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.process-flow-six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.process-flow li {
  position: relative;
  min-height: 230px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(17, 20, 23, .07);
  text-align: center;
}

.process-flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 48%;
  right: -27px;
  z-index: 1;
  color: var(--red);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.process-icon {
  display: block;
  width: 112px;
  height: 112px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.process-flow span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin: 0 0 18px;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(255, 37, 55, .25);
}

.process-flow strong,
.process-flow em {
  display: block;
}

.process-flow strong {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.18;
  text-transform: uppercase;
}

.process-flow em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
}

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

.workflow-path {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.workflow-path span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.role-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.role-list li {
  margin-bottom: 8px;
  color: var(--muted);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: 44px;
  align-items: center;
}

.visual-placeholder {
  min-height: 320px;
  border: 2px dashed #cbd2d8;
  background: repeating-linear-gradient(135deg, #fff, #fff 12px, #f3f5f7 12px, #f3f5f7 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 26px;
  color: var(--muted);
  text-align: center;
}

.visual-placeholder span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.visual-placeholder strong {
  max-width: 280px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.22;
}

.visual-placeholder-wide {
  margin-top: 28px;
}

.delegation-flow {
  display: grid;
  max-width: 820px;
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
}

.delegation-flow li {
  position: relative;
  margin: 0 0 42px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(17, 20, 23, .06);
  text-align: center;
}

.delegation-flow li:not(:last-child)::after {
  content: "↓";
  position: absolute;
  left: 50%;
  bottom: -34px;
  color: var(--red);
  font-size: 28px;
  font-weight: 900;
  transform: translateX(-50%);
}

.delegation-flow strong,
.delegation-flow span {
  display: block;
}

.delegation-flow strong {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.delegation-flow span {
  color: var(--muted);
  font-size: 17px;
}

.compact-title {
  margin-bottom: 24px;
}

.use-case-list {
  columns: 2;
  column-gap: 34px;
}

.use-case-list li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.check-list {
  padding-left: 20px;
}

.article-meta {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.article-layout {
  max-width: 980px;
}

.article-hero-image {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  margin: 0 0 42px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.article-content {
  max-width: 860px;
}

.article-content hr {
  height: 1px;
  margin: 34px 0;
  border: 0;
  background: var(--line);
}

.article-content strong,
.article-content b {
  color: var(--ink);
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 44px;
  align-items: center;
}

.video-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  text-transform: uppercase;
}

.video-copy p {
  color: var(--muted);
  font-size: 18px;
}

.video-facade {
  border: 1px solid var(--line);
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(17, 20, 23, .12);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--dark);
}

.video-frame picture,
.video-frame img,
.video-frame iframe {
  width: 100%;
  height: 100%;
}

.video-frame img {
  object-fit: cover;
}

.video-frame iframe {
  display: block;
  border: 0;
}

.video-play-button {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 18px;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.video-play-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  font-size: 13px;
}

.video-meta {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 11px;
  background: rgba(9, 11, 14, .76);
  font-size: 13px;
  font-weight: 800;
}

.video-duration {
  color: #d9dde2;
}

.video-consent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(9, 11, 14, .88);
}

.video-consent[hidden] {
  display: none;
}

.video-consent-panel {
  max-width: 620px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.video-consent-panel h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.video-consent-panel p {
  margin: 0;
  color: var(--muted);
}

.video-play-button:focus-visible,
.video-consent button:focus-visible,
.video-card a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.video-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-card-content {
  padding: 24px;
}

.video-card-category {
  display: inline-flex;
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.video-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.2;
}

.video-card p {
  color: var(--muted);
}

.video-card-meta {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.steps-list li {
  margin: 0 0 10px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-list a,
.tag-list span {
  border: 1px solid var(--line);
  padding: 8px 11px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.tag-list a:hover {
  border-color: var(--red);
  color: var(--red);
}

.cta-band {
  background: var(--red);
  color: var(--white);
}

.cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  text-transform: uppercase;
}

.cta-band .button {
  background: var(--white);
  border-color: var(--white);
  color: var(--red);
}

.cta-band .button-secondary {
  border-color: var(--white);
  color: var(--white);
}

.cta-band .button-secondary:hover {
  background: var(--white);
  color: var(--red);
}

.site-footer {
  background: #090b0e;
  color: var(--white);
}

.notice-text,
.info-panel {
  border-left: 4px solid var(--red);
  background: #f6f8fa;
}

.notice-text {
  margin: 0 0 34px;
  padding: 18px 22px;
  color: var(--muted);
}

.info-panel {
  margin: 38px 0;
  padding: 28px 30px;
}

.info-panel h2 {
  margin-top: 0;
}

.regulatory-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.regulatory-timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--red);
}

.timeline-item {
  position: relative;
  padding: 76px 28px 30px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(17, 20, 23, .06);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 30px;
  width: 20px;
  height: 20px;
  border: 4px solid var(--red);
  border-radius: 50%;
  background: var(--white);
}

.timeline-date {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 7px 11px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.timeline-item h3 {
  margin: 0 0 12px;
  font-size: 23px;
}

.timeline-item p {
  margin: 0 0 12px;
  color: var(--muted);
}

.draft-status {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.draft-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 34px;
}

.draft-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.draft-section h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.6vw, 34px);
}

.draft-section p {
  max-width: 860px;
  color: var(--muted);
}

.draft-fields {
  display: grid;
  grid-template-columns: minmax(150px, .45fr) minmax(0, 1fr);
  gap: 10px 18px;
  margin: 0;
}

.draft-fields dt {
  color: var(--muted);
  font-weight: 700;
}

.draft-fields dd {
  margin: 0;
}

.draft-route-list {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 20px;
}

.draft-workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.draft-workflow span {
  position: relative;
  display: block;
  min-height: 110px;
  padding: 20px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 900;
  text-align: center;
}

.draft-workflow small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.visual-placeholder-compact {
  min-height: 170px;
  margin-top: 18px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
}

.site-footer a {
  color: #d9dde2;
  text-decoration: none;
}

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

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin: 0 0 9px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(17, 20, 23, .22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease, background .18s ease, color .18s ease;
}

.back-to-top svg {
  display: block;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--white);
  color: var(--red);
  outline: none;
}

@media (max-width: 880px) {
  .nav {
    position: relative;
    align-items: center;
    min-height: 76px;
    padding: 14px 18px;
  }

  .logo img {
    width: 128px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 18px 22px;
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 34px rgba(17, 20, 23, .14);
    letter-spacing: .04em;
    white-space: normal;
    z-index: 35;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-links > a,
  .nav-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 4px 0 10px 14px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    transform: none;
    background: transparent;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: flex;
  }

  .nav-dropdown-menu a {
    white-space: normal;
    padding: 11px 8px;
    border-radius: 0;
  }

  .hero-inner,
  .section-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 11vw, 52px);
    overflow-wrap: anywhere;
  }

  .no-break {
    white-space: normal;
  }

  .hero-tags,
  .hero-actions,
  .button-row,
  .store-links {
    max-width: 100%;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
  }

  .button,
  .button-secondary,
  .store-link {
    width: 100%;
    text-align: center;
  }

  .grid-3,
  .grid-2,
  .form-grid,
  .deliverables-grid,
  .process-flow,
  .process-flow-six,
  .split-section,
  .footer-grid,
  .video-layout,
  .video-card-grid,
  .logo-strip,
  .workflow-options {
    grid-template-columns: 1fr;
  }

  .process-flow li {
    min-height: 0;
  }

  .process-flow li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -33px;
    transform: translateX(50%) rotate(90deg);
  }

  .video-play-button {
    right: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
  }

  .video-meta {
    top: 14px;
    right: 14px;
  }

  .cta-band .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .use-case-list {
    columns: 1;
  }

  .visual-placeholder {
    min-height: 220px;
  }

  .regulatory-timeline {
    grid-template-columns: 1fr;
  }

  .draft-meta-grid,
  .draft-workflow {
    grid-template-columns: 1fr;
  }

  .regulatory-timeline::before {
    top: 0;
    bottom: 0;
    left: 38px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-item {
    padding-top: 62px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}
