﻿:root {
  --bg: #090909;
  --bg-soft: #101010;
  --surface: #141414;
  --surface-2: #1a1a1a;
  --surface-3: #202020;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.78);
  --text-muted: rgba(255, 255, 255, 0.63);
  --text-faint: rgba(255, 255, 255, 0.42);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --brand: #c8f135;
  --brand-hover: #d6f667;
  --brand-contrast: #0a0a0a;
  --brand-glow: rgba(200, 241, 53, 0.18);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --container: 1360px;

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 22px 60px rgba(0, 0, 0, 0.34);
  --shadow-nav: 0 8px 24px rgba(0, 0, 0, 0.18);

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top left, rgba(200, 241, 53, 0.06), transparent 28%),
    radial-gradient(circle at top right, rgba(200, 241, 53, 0.04), transparent 22%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 64px, var(--container));
  margin-inline: auto;
}

h1,
h2,
h3,
h4,
p,
ol,
ul {
  margin-top: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 800;
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 700;
}

.lead {
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.45;
  color: var(--text-soft);
  max-width: 760px;
}

.hero__sublead,
.text-soft {
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.text-faint {
  color: var(--text-faint);
  font-size: 0.95rem;
  line-height: 1.55;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.text-link {
  color: var(--brand);
  font-weight: 700;
}

.text-link:hover {
  opacity: 0.92;
}

.stack-text {
  display: grid;
  gap: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

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

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

.btn-primary {
  background: var(--brand);
  color: var(--brand-contrast);
  box-shadow: 0 10px 28px rgba(200, 241, 53, 0.18);
}

.btn-primary:hover {
  background: var(--brand-hover);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 9, 0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-nav);
}

.site-header__inner {
  width: min(100% - 64px, var(--container));
  height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  color: var(--brand);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav a {
  font-size: 0.98rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
}

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

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.language-switch a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.language-switch a:hover,
.language-switch a.is-active {
  color: var(--accent);
}

.language-switch span {
  color: rgba(255, 255, 255, 0.22);
}

.language-switch--footer {
  margin-top: 18px;
  justify-content: flex-start;
}

.btn-header {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle--open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 76px 0 72px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 72px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
}

.hero__content .lead {
  margin-bottom: 0;
}

.hero__sublead {
  max-width: 700px;
  margin: 18px 0 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__actions--center {
  justify-content: center;
}

.hero__microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
  color: var(--text-faint);
  font-size: 0.93rem;
}

.hero__microcopy span {
  position: relative;
}

.hero__microcopy span:not(:last-child)::after {
  content: "\2022";
  position: absolute;
  right: -12px;
  top: 0;
  color: rgba(255, 255, 255, 0.2);
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.proof-chip {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
}

.proof-chip strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.proof-chip span {
  display: block;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.hero__visuals {
  display: grid;
  gap: 18px;
}

.hero__media {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #151515 0%, #0f0f0f 100%);
  border: 1px solid rgba(200, 241, 53, 0.28);
  box-shadow: var(--shadow-strong), 0 0 0 1px rgba(200, 241, 53, 0.05);
}

.hero__media--main {
  padding: 10px;
}

.hero__media img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.hero-side-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(200, 241, 53, 0.10), rgba(255, 255, 255, 0.03));
}

.hero-side-card__label {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-side-card h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin-bottom: 10px;
}

.hero-side-card p {
  margin: 0;
  color: var(--text-soft);
}

.trust-strip {
  padding: 0 0 24px;
}

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

.trust-item {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 1rem;
  margin-bottom: 6px;
}

.trust-item span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.content-section {
  padding: 92px 0;
}

.content-section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-intro {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-intro--center {
  text-align: center;
  max-width: 940px;
  margin-inline: auto;
}

.section-intro--center .text-soft {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

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

.align-center {
  align-items: center;
}

.content-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.content-card--contrast {
  background: linear-gradient(180deg, rgba(200, 241, 53, 0.08), rgba(255, 255, 255, 0.03));
}

.content-image img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.content-image--framed {
  position: relative;
}

.content-image--framed::before {
  content: "";
  position: absolute;
  inset: -12px 18px auto;
  height: 70px;
  background: radial-gradient(circle, rgba(200, 241, 53, 0.18), transparent 70%);
  filter: blur(14px);
  z-index: -1;
}

.quote-block {
  margin-top: 28px;
  padding: 24px;
  border-left: 4px solid var(--brand);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
}

.quote-stat {
  margin: 0 0 10px;
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  color: var(--brand);
}

.quote-text {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: var(--text);
}

.quote-source {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.9rem;
}

.pilot-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
  gap: 56px;
  align-items: center;
}

.pilot-media img {
  width: 100%;
  max-width: 620px;
  border-radius: 30px;
  border: 1px solid rgba(200, 241, 53, 0.3);
  box-shadow: var(--shadow-strong);
}

.pilot-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pilot-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 6px;
}

.mini-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
}

.mini-card strong {
  font-size: 0.98rem;
}

.mini-card span {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.pilot-highlight {
  margin-top: 12px;
  padding-left: 22px;
  border-left: 4px solid var(--brand);
}

.pilot-highlight p {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  line-height: 1.08;
  font-weight: 800;
}

.pilot-highlight p:last-child {
  color: var(--text-faint);
  margin-top: 6px;
}

.hand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.hand-grid--enhanced .hand-card {
  min-height: 190px;
}

.hand-card {
  min-height: 160px;
  padding: 24px 22px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.hand-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hand-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
}

.inline-panel {
  margin-top: 28px;
  padding: 20px 24px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.inline-panel strong,
.inline-panel span {
  display: block;
}

.inline-panel strong {
  margin-bottom: 4px;
}

.inline-panel span {
  color: var(--text-muted);
}

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

.metier-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.metier-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  aspect-ratio: 0.84 / 1;
  background: #111;
}

.metier-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.metier-thumb:hover img {
  transform: scale(1.03);
}

.metier-thumb::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0));
}

.metier-thumb span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  font-weight: 700;
  color: #fff;
  font-size: 0.98rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.stats-grid--tight .content-card {
  padding-top: 26px;
  padding-bottom: 26px;
}

.stat-value {
  margin: 14px 0 10px;
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--brand);
}

.section-cta {
  margin-top: 24px;
}

.steps-list {
  padding-left: 0;
  margin: 24px 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.steps-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--text-soft);
}

.steps-list strong {
  color: var(--brand);
}

.feature-list {
  padding-left: 0;
  margin: 18px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  color: var(--text-soft);
  position: relative;
  padding-left: 18px;
}

.feature-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
}

.feature-list--inline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
}

.inline-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(200, 241, 53, 0.28);
  border-radius: var(--radius-pill);
  background: rgba(200, 241, 53, 0.08);
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 700;
}

.pricing-section {
  padding-top: 96px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.pricing-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card--featured {
  border-color: rgba(200, 241, 53, 0.42);
  box-shadow: 0 0 0 1px rgba(200, 241, 53, 0.14), 0 16px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-6px);
}

.pricing-kicker {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-faint);
}

.multisite-card {
  margin-top: 24px;
}

.final-cta {
  padding-top: 36px;
  padding-bottom: 100px;
}

.cta-box {
  padding: 44px;
  border-radius: 30px;
  border: 1px solid rgba(200, 241, 53, 0.18);
  background:
    radial-gradient(circle at top center, rgba(200, 241, 53, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(200, 241, 53, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 72px 0 36px;
  margin-top: 16px;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
}

.site-footer__brand {
  max-width: 320px;
}

.site-footer__brand p {
  margin-top: 14px;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-faint);
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 44px;
}

.site-footer h4 {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.site-footer li + li {
  margin-top: 10px;
}

.site-footer a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.site-footer__bottom {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-faint);
}

.how-page {
  padding-bottom: 36px;
}

.how-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.how-section--compact {
  padding-top: 10px;
  padding-bottom: 10px;
}

.how-hero {
  padding: 78px 0 68px;
}

.how-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.92fr);
  gap: 64px;
  align-items: center;
}

.how-hero__title {
  color: var(--brand);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.how-hero__content .eyebrow {
  margin-bottom: 24px;
}

.how-hero__content .lead {
  margin: 26px 0 0;
  max-width: 620px;
}

.how-hero__text {
  max-width: 650px;
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 1.14rem;
  line-height: 1.55;
}

.how-hero__text--strong {
  margin-top: 18px;
  color: var(--text);
  font-weight: 700;
}

.how-media-card {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(200, 241, 53, 0.35);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-strong);
}

.how-media-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.how-media-card--small img {
  aspect-ratio: 0.95 / 1;
}

.how-panel {
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow-soft);
}

.how-panel--wide {
  padding: 34px 30px 28px;
}

.how-panel--outlined {
  border-color: rgba(200, 241, 53, 0.22);
  box-shadow: inset 0 0 0 1px rgba(200, 241, 53, 0.05), var(--shadow-soft);
}

.how-panel .eyebrow {
  margin-bottom: 22px;
}

.how-panel__lead {
  max-width: 820px;
  margin-top: 22px;
}

.how-panel__note {
  margin: 20px 0 0;
  color: var(--text-faint);
  font-size: 0.98rem;
}

.how-panel__note strong {
  color: var(--brand);
  font-weight: 700;
}

.how-panel__closing {
  margin: 22px 0 0;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.45;
  font-weight: 700;
}

.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.how-step-card {
  min-height: 118px;
  padding: 22px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 10, 0.48);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.how-step-card__index {
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.how-step-card h3 {
  font-size: 1.05rem;
}

.how-card-grid {
  gap: 26px;
}

.how-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.how-check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.5;
}

.how-check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 800;
}

.how-check-list--plain {
  margin-top: 18px;
}

.how-check-list--plain li {
  font-size: 0.98rem;
}

.how-inline-text {
  margin: 22px 0 0;
  color: var(--text-faint);
  font-size: 0.98rem;
}

.how-mini-panel {
  margin-top: 28px;
  padding: 18px 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 10, 0.45);
}

.how-mini-panel--accent {
  border-color: rgba(200, 241, 53, 0.22);
  box-shadow: inset 0 0 0 1px rgba(200, 241, 53, 0.04);
}

.how-mini-panel .eyebrow {
  margin-bottom: 16px;
}

.how-mini-panel__strong {
  margin: 16px 0 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.day-flow {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.day-flow__item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 10, 0.42);
}

.day-flow__icon {
  color: var(--brand);
  font-size: 1.1rem;
  line-height: 1;
}

.day-flow__item strong,
.day-flow__item span {
  display: block;
}

.day-flow__item strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.day-flow__item span {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.control-card {
  min-height: 238px;
  padding: 18px 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 10, 0.4);
}

.control-card__icon {
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 800;
}

.control-card h3 {
  margin-top: 16px;
  font-size: 1.2rem;
}

.control-card .how-check-list {
  margin-top: 16px;
}

.control-card .how-check-list li {
  font-size: 0.98rem;
}

.control-card .text-soft {
  margin-top: 16px;
  font-size: 1rem;
}

.how-section--image {
  padding-top: 18px;
  padding-bottom: 18px;
}

.how-feature-image {
  width: min(100%, 660px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-soft);
}

.how-feature-image img {
  width: 100%;
  aspect-ratio: 2.2 / 1;
  object-fit: cover;
}

.how-side-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.compare-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 10, 0.42);
}

.compare-card--highlight {
  border-color: rgba(200, 241, 53, 0.25);
  background: linear-gradient(180deg, rgba(200, 241, 53, 0.12), rgba(200, 241, 53, 0.04));
}

.compare-card__label {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.compare-card--highlight .compare-card__label {
  color: var(--brand);
}

.how-badge-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  margin-top: 28px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 10, 0.42);
}

.how-badge-line__icon {
  color: var(--brand);
  font-size: 1.05rem;
}

.how-footnote {
  text-align: center;
  color: var(--text-faint);
  font-size: 0.98rem;
}

.how-footnote p + p {
  margin-top: 10px;
}

.how-final-cta {
  padding-top: 56px;
}

.cta-box--narrow {
  width: min(100%, 860px);
  margin: 0 auto;
}

.eyebrow--center {
  justify-content: center;
}

.trades-page {
  padding-bottom: 36px;
}

.trades-hero {
  padding: 64px 0 76px;
}

.trades-hero__inner {
  max-width: 1180px;
}

.trades-hero__title {
  max-width: 860px;
  margin: 0 auto;
  color: var(--brand);
  font-size: clamp(2.8rem, 5.4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-align: center;
}

.trades-hero__lead {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--text-soft);
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
}

.trade-search-card {
  width: min(100%, 760px);
  margin: 34px auto 0;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(200, 241, 53, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-soft);
}

.trade-search-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--text);
}

.trade-search-card__icon {
  color: var(--brand);
  font-size: 1.1rem;
}

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

.trade-field {
  display: grid;
  gap: 8px;
}

.trade-field span {
  color: var(--text-faint);
  font-size: 0.85rem;
  font-weight: 700;
}

.trade-field__input {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.45);
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trade-field__input::after {
  content: "\2304";
  color: var(--text-faint);
}

.trade-field__input--muted {
  color: var(--text-faint);
}

.trade-field__select {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.45);
  color: var(--text-soft);
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.55) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.55) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.trade-field__select:disabled {
  color: var(--text-faint);
  opacity: 0.75;
}

.trade-search-status {
  min-height: 26px;
  margin: 16px 4px 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.trade-search-status--success {
  color: var(--brand);
  font-weight: 700;
}

.trade-search-status--warning {
  color: #e5c26a;
  font-weight: 700;
}

.trades-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.trades-section--text {
  padding-top: 56px;
}

.trades-section--altband {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.trades-section--coherence {
  background: #090909;
  text-align: center;
}

.trades-copy {
  max-width: 860px;
}

.trades-copy h2 {
  max-width: 840px;
  margin-bottom: 28px;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
}

.trades-copy p {
  margin-bottom: 24px;
  color: var(--text-soft);
  font-size: 1.18rem;
  line-height: 1.6;
}

.trades-copy__muted {
  color: var(--text-muted);
}

.trades-copy__intro {
  color: var(--text-muted);
}

.trade-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
}

.trade-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
}

.trade-gallery__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.trades-copy--after-gallery {
  max-width: 920px;
  margin-top: 28px;
}

.trade-pill-section {
  margin-top: 34px;
}

.trade-pill-section__label,
.trade-pill-section__closing {
  color: var(--text);
  font-size: 1.22rem;
  font-weight: 700;
}

.trade-pill-section__closing {
  margin-top: 24px;
}

.trade-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  max-width: 980px;
}

.trade-pill-card {
  min-height: 92px;
  padding: 14px 12px;
  border-radius: 18px;
  border: 1px solid rgba(200, 241, 53, 0.2);
  background: rgba(200, 241, 53, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.trade-pill-card__icon {
  color: var(--brand);
  font-size: 1.15rem;
  font-weight: 800;
}

.trade-pill-card strong {
  font-size: 0.94rem;
}

.trade-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.trade-bullet-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.5;
}

.trade-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
  transform: translateY(-50%);
}

.trade-bullet-list--danger li::before {
  width: auto;
  height: auto;
  background: transparent;
  color: #d96363;
  content: "\00D7";
  top: 0;
  transform: none;
  font-size: 1.4rem;
  line-height: 1;
}

.trade-bullet-list--warning li::before {
  width: auto;
  height: auto;
  background: transparent;
  color: #d2a332;
  content: "\26A0";
  top: -1px;
  transform: none;
  font-size: 1rem;
}

.trade-bullet-list--check li::before {
  width: auto;
  height: auto;
  background: transparent;
  color: var(--brand);
  content: "\2713";
  top: 0;
  transform: none;
  font-size: 1.1rem;
  font-weight: 800;
}

.trade-quote {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 4px solid var(--brand);
}

.trade-quote p {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
}

.trade-quote p:last-child {
  color: var(--text-faint);
  margin-top: 6px;
}

.trade-strong-lines {
  margin-top: 34px;
}

.trade-strong-lines p {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 700;
}

.trade-profile-card {
  width: min(100%, 740px);
  margin-left: auto;
  margin-right: auto;
  padding: 28px 28px 24px;
  border-radius: 26px;
  border: 1px solid rgba(200, 241, 53, 0.22);
  background: rgba(10, 10, 10, 0.46);
}

.trade-profile-card .eyebrow {
  margin-bottom: 20px;
}

.trade-profile-list {
  display: grid;
  gap: 18px;
}

.trade-profile-row {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: start;
}

.trade-profile-row__icon {
  color: var(--brand);
  font-size: 1.1rem;
  line-height: 1;
}

.trade-profile-row strong,
.trade-profile-row span {
  display: block;
}

.trade-profile-row strong {
  margin-bottom: 3px;
}

.trade-profile-row span {
  color: var(--text-muted);
}

.trade-centered-note {
  margin-top: 32px;
  text-align: center;
}

.trade-centered-note h3 {
  margin-bottom: 10px;
  font-size: 1.9rem;
}

.trade-centered-note p {
  margin: 0;
  color: var(--text-faint);
  font-size: 1.08rem;
}

.trade-centered-copy {
  text-align: center;
}

.trade-centered-copy h2 {
  max-width: 900px;
  margin: 0 auto 26px;
}

.trade-centered-copy p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 1.18rem;
}

.trade-centered-copy strong {
  color: var(--brand);
}

.trade-detail-page {
  padding-bottom: 36px;
}

.trade-detail-cover {
  padding: 0 0 40px;
}

.trade-detail-cover__media {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 620px;
}

.trade-detail-cover__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trade-detail-cover__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.40) 0%, rgba(5, 5, 5, 0.66) 32%, rgba(5, 5, 5, 0.82) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.46) 0%, rgba(5, 5, 5, 0.18) 45%, rgba(5, 5, 5, 0.52) 100%);
}

.trade-detail-cover__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 58px 0 72px;
  text-align: center;
}

.trade-detail-cover__content h1 {
  color: var(--brand);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.trade-detail-cover__content .lead {
  max-width: 820px;
  margin: 22px auto 0;
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1.5;
}

.trade-detail-cover__content p {
  max-width: 860px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.65;
}

.trade-detail-cover__content p strong {
  color: var(--text);
}

.trade-detail-cover__content .text-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
}

.trade-detail-cover__content .hero__actions {
  justify-content: center;
  margin-top: 22px;
}

.trade-detail-hero {
  padding: 58px 0 48px;
}

.trade-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
  gap: 56px;
  align-items: center;
}

.trade-detail-hero__title {
  max-width: 760px;
  color: var(--brand);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.trade-detail-hero__lead {
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 1.34rem;
  line-height: 1.5;
}

.trade-detail-hero__sublead {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.62;
}

.trade-detail-hero__sublead + .trade-detail-hero__sublead {
  margin-top: 10px;
}

.trade-detail-hero__media {
  width: 100%;
  justify-self: center;
}

.trade-detail-hero__image {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(200, 241, 53, 0.28);
  box-shadow: var(--shadow-strong);
}

.trade-detail-hero__image img {
  width: 100%;
  aspect-ratio: 0.96 / 1;
  object-fit: cover;
}

.trade-detail-section {
  padding-top: 44px;
  padding-bottom: 44px;
}

.trade-detail-section--band {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.trade-detail-copy {
  max-width: 920px;
}

.trade-detail-copy h2 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.trade-detail-copy p {
  margin: 0 0 20px;
  color: var(--text-soft);
  font-size: 1.14rem;
  line-height: 1.65;
}

.trade-detail-copy p strong {
  color: var(--brand);
}

.trade-detail-text-link {
  display: inline-block;
  margin: 6px 0 16px;
  color: var(--brand);
  font-weight: 700;
}

.trade-detail-timeline {
  display: grid;
  gap: 20px;
  max-width: 780px;
  margin-top: 28px;
}

.trade-detail-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}

.trade-detail-step__count {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--brand);
  color: #111;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trade-detail-step__body h3 {
  margin: 0 0 6px;
  font-size: 1.16rem;
}

.trade-detail-step__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.trade-detail-step-cta {
  margin-top: 34px;
  text-align: center;
}

.trade-detail-step-cta p {
  margin: 0 0 16px;
  color: var(--text-faint);
}

.trade-detail-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.trade-detail-card {
  min-height: 100%;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(200, 241, 53, 0.18);
  background: rgba(10, 10, 10, 0.36);
}

.trade-detail-card__icon {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 800;
}

.trade-detail-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.trade-detail-card p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 1rem;
}

.trade-detail-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.trade-detail-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.55;
}

.trade-detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  transform: translateY(-50%);
}

.trade-detail-card--warning li::before {
  width: auto;
  height: auto;
  background: transparent;
  content: "\26A0";
  color: #d2a332;
  top: -1px;
  transform: none;
  font-size: 1rem;
}

.trade-detail-banner {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(200, 241, 53, 0.4);
  color: var(--text);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.025);
}

.trade-detail-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.trade-detail-compare-card {
  min-height: 100%;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.trade-detail-compare-card--brand {
  border-color: rgba(200, 241, 53, 0.28);
  background: rgba(200, 241, 53, 0.08);
}

.trade-detail-compare-card .eyebrow {
  margin-bottom: 16px;
}

.trade-detail-compare-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.trade-detail-compare-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
  line-height: 1.5;
}

.trade-detail-compare-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}

.trade-detail-compare-card--classic li::before {
  content: "\00D7";
  color: #d96363;
  font-size: 1.2rem;
  line-height: 1;
}

.trade-detail-compare-card--brand li::before {
  content: "\2713";
  color: var(--brand);
  font-size: 1rem;
}

.trade-detail-types {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trade-detail-type-images {
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trade-detail-type-image {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
}

.trade-detail-type-image img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.trade-detail-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
  max-width: 760px;
  width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
}

.trade-detail-type-card {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(200, 241, 53, 0.22);
  background: rgba(200, 241, 53, 0.07);
}

.trade-detail-type-card h3 {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 1.04rem;
}

.trade-detail-type-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.trade-detail-centered {
  text-align: center;
}

.trade-detail-centered h2 {
  margin-bottom: 18px;
}

.trade-detail-centered p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 1.18rem;
}

.trade-detail-centered strong {
  color: var(--brand);
}

.trade-detail-final {
  text-align: center;
}

.trade-detail-final h2 {
  margin-bottom: 10px;
}

.trade-detail-final p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.16rem;
}

.trade-detail-final p strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.08;
}

.trade-detail-linkout {
  margin-top: 20px;
  text-align: center;
}

.trade-detail-linkout p {
  margin: 0;
  color: var(--text-faint);
}

.trade-detail-related {
  padding-top: 24px;
  text-align: center;
}

.trade-detail-related h2 {
  margin-bottom: 24px;
}

.trade-detail-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.trade-detail-related-card {
  min-height: 54px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  font-weight: 600;
}

.trade-detail-related-card--active {
  border-color: rgba(200, 241, 53, 0.55);
  background: rgba(200, 241, 53, 0.10);
  color: var(--brand);
}

.trade-detail-related-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  margin-top: 22px;
}

.trade-detail-related-links a {
  color: var(--text-faint);
}

.trade-detail-related-links a:hover {
  color: var(--brand);
}

.trade-selector {
  text-align: center;
}

.trade-selector h2 {
  margin-bottom: 16px;
}

.trade-selector__lead,
.trade-selector__sublead {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.18rem;
}

.trade-selector__lead strong {
  color: var(--brand);
}

.trade-selector__sublead {
  margin-top: 10px;
  color: var(--text-muted);
}

.trade-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.trade-tag {
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

.trade-tag::before {
  content: "\266B";
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
}

.trade-tag--active {
  border-color: rgba(200, 241, 53, 0.56);
  background: rgba(200, 241, 53, 0.10);
  color: var(--brand);
}

.trade-tag--active::before {
  color: var(--brand);
}

.trade-selector__footnote {
  max-width: 980px;
  margin: 28px auto 0;
}

.trade-selector__footnote p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.trade-selector__footnote strong {
  color: var(--brand);
}

.trade-selector__links {
  display: inline-flex;
  gap: 26px;
  margin-top: 20px;
}

.trades-final-cta {
  padding-top: 56px;
}

.cta-box--trade {
  padding-top: 56px;
  padding-bottom: 56px;
  text-align: center;
}

.trade-cta__note {
  margin-top: 18px;
  color: var(--text-faint);
}

.faq-page {
  padding-bottom: 36px;
}

.faq-hero {
  padding: 60px 0 70px;
}

.faq-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.faq-hero__content h1 {
  max-width: 620px;
}

.faq-hero__lead {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 1.26rem;
  line-height: 1.55;
}

.faq-hero__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  justify-self: end;
}

.faq-hero__image {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
}

.faq-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-hero__image--wide {
  grid-column: 1 / -1;
}

.faq-hero__image--wide img {
  aspect-ratio: 2.45 / 1;
}

.faq-hero__image:not(.faq-hero__image--wide) img {
  aspect-ratio: 0.92 / 1;
}

.faq-section {
  padding-top: 20px;
}

.faq-stack {
  display: grid;
  gap: 22px;
}

.faq-category {
  padding: 24px 24px 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
}

.faq-category h2 {
  margin-bottom: 18px;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.faq-category h2 span {
  color: var(--brand);
  margin-right: 10px;
}

.faq-category__intro {
  margin: -6px 0 16px 26px;
  color: var(--text-faint);
  font-size: 1rem;
}

.faq-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 10, 0.34);
}

.faq-item + .faq-item {
  margin-top: 16px;
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(200, 241, 53, 0.22);
  background: rgba(200, 241, 53, 0.08);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
}

.faq-item__body h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.faq-item__body p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.faq-linkout {
  padding-top: 34px;
  padding-bottom: 18px;
}

.faq-linkout p {
  margin: 0;
  text-align: center;
  color: var(--text-faint);
  font-size: 1rem;
}

.faq-final-cta {
  padding-top: 30px;
}

.cta-box--faq {
  width: min(100%, 770px);
  margin: 0 auto;
}

.legal-page {
  padding-bottom: 36px;
}

.legal-hero {
  padding: 56px 0 60px;
}

.legal-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 54px;
  align-items: center;
}

.legal-hero__title {
  max-width: 620px;
  color: var(--brand);
  font-size: clamp(2.35rem, 4.2vw, 3.7rem);
  line-height: 1.02;
}

.legal-hero__lead {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 1.28rem;
  line-height: 1.55;
}

.legal-media-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(200, 241, 53, 0.28);
  box-shadow: var(--shadow-strong);
}

.legal-hero__media {
  width: 100%;
  justify-self: start;
}

.legal-media-card img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.legal-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.legal-section--compact {
  padding-top: 8px;
}

.legal-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.legal-stat-card {
  min-height: 96px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 10, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.legal-stat-card strong {
  color: var(--brand);
  font-size: 1rem;
  line-height: 1.35;
}

.legal-panel {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.legal-panel--wide {
  padding: 30px 28px;
}

.legal-panel--highlight {
  border-color: rgba(200, 241, 53, 0.22);
  background: linear-gradient(180deg, rgba(200, 241, 53, 0.10), rgba(255, 255, 255, 0.03));
}

.legal-panel h2 {
  margin-bottom: 20px;
}

.legal-panel p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.legal-panel p strong {
  color: var(--text);
}

.legal-panel__muted {
  color: var(--text-faint);
  font-size: 1rem;
}

.legal-two-col {
  gap: 26px;
}

.legal-btn {
  min-height: 50px;
  padding-inline: 22px;
}

.legal-input-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.legal-input-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 62px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 10, 0.35);
}

.legal-input-row__icon {
  color: var(--brand);
  font-size: 1rem;
  line-height: 1;
}

.legal-note-box,
.legal-mini-box {
  margin-top: 26px;
  padding: 18px 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(200, 241, 53, 0.22);
  background: rgba(200, 241, 53, 0.08);
}

.legal-note-box p,
.legal-mini-box p {
  margin: 0;
}

.legal-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(200, 241, 53, 0.55);
  color: var(--brand);
  background: rgba(10, 10, 10, 0.22);
}

.legal-chip__icon {
  font-size: 0.95rem;
}

.legal-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.legal-feature-card {
  min-height: 92px;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 10, 0.34);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.legal-feature-card__icon {
  color: var(--brand);
  font-size: 1rem;
}

.legal-banner-box {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(200, 241, 53, 0.18);
  background: rgba(200, 241, 53, 0.10);
}

.legal-banner-box p {
  margin: 0;
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.45;
  font-weight: 700;
}

.legal-linkout {
  padding-top: 28px;
  padding-bottom: 18px;
}

.legal-linkout p {
  margin: 0;
  text-align: center;
  color: var(--text-faint);
  font-size: 1rem;
}

.legal-final-cta {
  padding-top: 36px;
}

.cta-box--legal {
  width: min(100%, 780px);
  margin: 0 auto;
}

.pricing-page {
  padding-bottom: 36px;
}

.pricing-hero {
  padding: 58px 0 54px;
}

.pricing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.pricing-hero__title {
  max-width: 660px;
  color: var(--brand);
}

.pricing-hero__lead {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 1.28rem;
  line-height: 1.55;
}

.pricing-hero__image {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(200, 241, 53, 0.28);
  box-shadow: var(--shadow-strong);
}

.pricing-hero__image img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.pricing-hero__after {
  margin-top: 28px;
  text-align: center;
}

.pricing-hero__after p {
  margin: 0 0 12px;
  color: var(--text-faint);
  font-size: 1rem;
}

.pricing-summary {
  padding-top: 24px;
}

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

.plan-card {
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  display: flex;
  flex-direction: column;
}

.plan-card--featured {
  border-color: rgba(200, 241, 53, 0.38);
  background: linear-gradient(180deg, rgba(200, 241, 53, 0.08), rgba(255, 255, 255, 0.03));
}

.plan-card__eyebrow {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 0.88rem;
  line-height: 1.4;
  font-weight: 700;
}

.plan-card h2 {
  margin-bottom: 10px;
}

.plan-card__price {
  margin: 0;
  color: var(--text);
  font-size: 2.2rem;
  font-weight: 800;
}

.plan-card__price span {
  color: var(--text-faint);
  font-size: 1rem;
  font-weight: 600;
}

.plan-card__meta {
  margin: 8px 0 0;
  color: var(--text-faint);
}

.plan-card__tags,
.plan-card__list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.plan-card__tags li,
.plan-card__list li {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.plan-card__list li {
  position: relative;
  padding-left: 18px;
}

.plan-card__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 800;
}

.plan-card__benefit {
  margin-top: auto;
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 10, 0.32);
}

.plan-card__benefit p {
  margin: 0;
  color: var(--text-soft);
}

.plan-card__benefit-label {
  margin-bottom: 8px;
  color: var(--text-faint);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.multisite-panel {
  margin-top: 20px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.multisite-panel .eyebrow {
  margin-bottom: 16px;
}

.multisite-panel__lead,
.multisite-panel__note {
  margin: 0;
  color: var(--text-soft);
}

.multisite-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.multisite-grid div {
  min-height: 52px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 10, 0.3);
  display: flex;
  align-items: center;
}

.pricing-choice {
  padding-top: 46px;
  text-align: center;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.choice-card {
  min-height: 70px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.choice-card strong {
  color: var(--brand);
}

.choice-card--pro strong {
  color: #5ba6ff;
}

.choice-card--premium strong {
  color: #b289ff;
}

.choice-card--signature strong {
  color: #f0cc63;
}

.choice-card span {
  color: var(--text-soft);
}

.choice-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 24px;
  margin-top: 30px;
  color: var(--text-soft);
}

.choice-bullets span {
  position: relative;
  padding-left: 24px;
}

.choice-bullets span::before {
  content: "\25CF";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--brand);
}

.choice-linkout {
  margin: 30px 0 0;
  color: var(--text-faint);
}

.pricing-details__title {
  margin-bottom: 34px;
  text-align: center;
}

.detail-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.detail-card + .detail-card,
.pricing-inline-image + .detail-card,
.detail-card + .pricing-inline-image {
  margin-top: 30px;
}

.detail-card--pro {
  border-color: rgba(91, 166, 255, 0.3);
}

.detail-card--premium {
  border-color: rgba(178, 137, 255, 0.32);
}

.detail-card--signature {
  border-color: rgba(240, 204, 99, 0.36);
}

.detail-card__eyebrow {
  margin: 0 0 16px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.detail-card--free .detail-card__eyebrow {
  color: var(--brand);
}

.detail-card--pro .detail-card__eyebrow {
  color: #5ba6ff;
}

.detail-card--premium .detail-card__eyebrow {
  color: #b289ff;
}

.detail-card--signature .detail-card__eyebrow {
  color: #f0cc63;
}

.detail-card h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
}

.detail-card__lead {
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.6;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.detail-badges span {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  color: var(--text-soft);
}

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

.detail-box {
  min-height: 100%;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 10, 0.32);
}

.detail-box h4 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.detail-box ul,
.detail-box ol {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  display: grid;
  gap: 10px;
}

.detail-banner {
  margin: 24px 0;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(200, 241, 53, 0.4);
  color: var(--text);
  font-weight: 700;
}

.detail-banner--pro {
  border-color: rgba(91, 166, 255, 0.55);
}

.detail-banner--premium {
  border-color: rgba(178, 137, 255, 0.55);
}

.detail-banner--signature {
  border-color: rgba(240, 204, 99, 0.55);
}

.pricing-inline-image {
  width: min(100%, 640px);
  margin: 30px auto 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-inline-image img {
  width: 100%;
  aspect-ratio: 2.15 / 1;
  object-fit: cover;
}

.pricing-final-cta {
  padding-top: 56px;
}

.cta-box--pricing {
  width: min(100%, 760px);
  margin: 0 auto;
}

.pricing-faq-link {
  padding-top: 34px;
  padding-bottom: 10px;
  text-align: center;
}

.pricing-faq-link h2 {
  margin-bottom: 14px;
}

.pricing-faq-link p {
  margin: 0 0 10px;
  color: var(--text-faint);
}

.legal-doc-page {
  padding-bottom: 36px;
}

.legal-doc-hero {
  padding: 54px 0 26px;
}

.legal-doc-hero__title {
  max-width: 900px;
  margin-bottom: 16px;
}

.legal-doc-hero__lead {
  max-width: 760px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.14rem;
  line-height: 1.65;
}

.legal-doc-meta {
  margin-top: 14px;
  color: var(--text-faint);
  font-size: 0.96rem;
}

.legal-doc-section {
  padding-top: 18px;
  padding-bottom: 18px;
}

.legal-doc-layout {
  display: grid;
  gap: 22px;
}

.legal-doc-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.legal-doc-card h2 {
  margin-bottom: 18px;
}

.legal-doc-card h3 {
  margin: 28px 0 14px;
  font-size: 1.22rem;
}

.legal-doc-card p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.legal-doc-card p strong {
  color: var(--text);
}

.legal-doc-card ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--text-soft);
  display: grid;
  gap: 10px;
}

.legal-doc-card li {
  line-height: 1.6;
}

.legal-doc-card li strong {
  color: var(--text);
}

.legal-doc-card a {
  color: var(--brand);
}

.legal-doc-note {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(200, 241, 53, 0.22);
  background: rgba(200, 241, 53, 0.07);
}

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

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

.legal-doc-mini {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 10, 0.3);
}

.legal-doc-mini p:last-child,
.legal-doc-mini ul:last-child {
  margin-bottom: 0;
}

.legal-doc-keyvals {
  display: grid;
  gap: 14px;
}

.legal-doc-keyval {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 10, 0.3);
}

.legal-doc-keyval span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-faint);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.legal-doc-keyval strong,
.legal-doc-keyval a {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
  word-break: break-word;
}

.legal-doc-keyval a:hover {
  color: var(--brand);
}

.legal-doc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 10px;
}

.legal-doc-links a {
  color: var(--brand);
  font-weight: 700;
}

.legal-doc-footer {
  padding-top: 22px;
}

@media (max-width: 1260px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .site-header__inner,
  .container {
    width: min(100% - 48px, var(--container));
  }

  .hero-proof-grid,
  .trust-strip__inner,
  .benefit-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .how-hero__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .how-hero__media {
    max-width: 760px;
  }

  .how-steps-grid,
  .control-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .faq-hero__grid {
    grid-template-columns: 1fr;
  }

  .legal-hero__grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero__grid,
  .pricing-card-grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero__media {
    max-width: 760px;
  }

  .trade-detail-hero__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .trade-detail-hero__media {
    max-width: 520px;
  }

  .trade-detail-cover__media {
    min-height: 560px;
  }
}

@media (max-width: 1180px) {
  .how-hero__media {
    max-width: 440px;
  }

  .faq-hero__gallery {
    max-width: 420px;
  }

  .pricing-hero__media {
    max-width: 420px;
  }

  .legal-hero__media {
    max-width: 300px;
  }
}

@media (max-width: 980px) {
  html {
    font-size: 16px;
  }

  .hero__grid,
  .two-col,
  .pilot-grid,
  .stats-grid,
  .pricing-grid,
  .benefit-grid,
  .site-footer__cols,
  .feature-list--inline {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 54px 0 60px;
  }

  .site-header__inner {
    position: relative;
    grid-template-columns: 1fr auto;
    height: auto;
    min-height: 72px;
    padding: 12px 0;
  }

  .brand {
    font-size: 1.7rem;
  }

  .site-header__actions {
    justify-self: end;
  }

  .site-header__actions .btn-secondary {
    display: none;
  }

  .language-switch {
    font-size: 0.74rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 10px;
    padding: 12px 0 6px;
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

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

  .nav a {
    width: 100%;
    font-size: 1rem;
  }

  .nav-login-mobile {
    display: block;
    color: var(--accent) !important;
    font-weight: 800;
  }

  .hero-proof-grid,
  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .hero__media,
  .pilot-media img {
    max-width: 760px;
    margin: 0 auto;
  }

  .content-section {
    padding: 72px 0;
  }

  .pricing-card--featured {
    transform: none;
  }

  .inline-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-box {
    padding: 30px;
  }

  .how-hero {
    padding: 52px 0 40px;
  }

  .how-section {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .how-steps-grid,
  .control-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .how-feature-image {
    width: 100%;
  }

  .trades-hero {
    padding: 46px 0 54px;
  }

  .trade-search-grid {
    grid-template-columns: 1fr;
  }

  .trades-copy p,
  .trade-bullet-list li,
  .trade-selector__footnote p {
    font-size: 1.05rem;
  }

  .trade-selector__links {
    flex-direction: column;
    gap: 12px;
  }

  .faq-hero {
    padding: 46px 0 44px;
  }

  .faq-hero__gallery {
    max-width: 520px;
    justify-self: start;
  }

  .legal-stat-grid,
  .legal-feature-grid {
    grid-template-columns: 1fr;
  }

  .legal-hero__media {
    max-width: 320px;
  }

  .multisite-grid,
  .choice-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero__media {
    max-width: 560px;
  }

  .legal-doc-grid {
    grid-template-columns: 1fr;
  }

  .trade-detail-card-grid,
  .trade-detail-compare,
  .trade-detail-related-grid {
    grid-template-columns: 1fr;
  }

  .trade-detail-type-images {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 840px) {
  .trade-pill-grid,
  .trade-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container,
  .site-header__inner {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: clamp(2.15rem, 9vw, 3.2rem);
    line-height: 1;
  }

  .lead,
  .hero__sublead,
  .text-soft {
    font-size: 1.02rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn,
  .btn {
    width: 100%;
  }

  .btn {
    min-height: 56px;
  }

  .site-header__inner {
    min-height: 68px;
    padding: 10px 0;
  }

  .brand {
    font-size: 1.45rem;
  }

  .btn-header {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.82rem;
    width: auto;
  }

  .language-switch {
    gap: 5px;
    font-size: 0.7rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .content-card,
  .pricing-card,
  .quote-block,
  .hero-side-card,
  .trust-item {
    padding: 22px;
  }

  .quote-stat {
    font-size: 2.4rem;
  }

  .metier-strip,
  .hand-grid {
    grid-template-columns: 1fr;
  }

  .metier-thumb {
    aspect-ratio: 1.15 / 1;
  }

  .hero__microcopy {
    flex-direction: column;
    gap: 8px;
  }

  .hero__microcopy span::after {
    display: none;
  }

  .inline-badges {
    flex-direction: column;
  }

  .badge {
    width: 100%;
    justify-content: flex-start;
  }

  .site-footer {
    padding: 56px 0 28px;
  }

  .site-footer__top {
    flex-direction: column;
  }

  .site-footer__cols {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .how-hero__title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .how-panel,
  .how-panel--wide {
    padding: 22px;
    border-radius: 24px;
  }

  .how-step-card,
  .control-card,
  .compare-card,
  .day-flow__item {
    padding: 18px 16px;
  }

  .how-media-card,
  .how-feature-image {
    border-radius: 22px;
  }

  .how-feature-image img,
  .how-media-card img,
  .how-media-card--small img {
    aspect-ratio: 1.18 / 1;
  }

  .how-badge-line {
    width: 100%;
    justify-content: flex-start;
  }

  .trades-hero__title {
    font-size: clamp(2.2rem, 9vw, 3.3rem);
  }

  .trades-hero__lead {
    font-size: 1.08rem;
  }

  .trade-search-card,
  .trade-profile-card,
  .cta-box--trade {
    padding: 22px;
  }

  .trades-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .trades-copy h2,
  .trade-centered-copy h2 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .trade-pill-card {
    min-height: 104px;
  }

  .trade-pill-section__label,
  .trade-pill-section__closing,
  .trade-centered-copy p {
    font-size: 1rem;
  }

  .trade-tag {
    min-height: 50px;
    font-size: 0.95rem;
  }

  .trade-gallery {
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .trade-gallery__item img {
    aspect-ratio: 1 / 1;
  }

  .trade-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .trade-pill-card {
    min-height: 88px;
    padding: 12px 10px;
    border-radius: 16px;
  }

  .trade-pill-card strong {
    font-size: 0.9rem;
  }

  .trade-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .trade-tag {
    min-height: 48px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .faq-hero__grid {
    gap: 28px;
  }

  .faq-hero__lead {
    font-size: 1.08rem;
  }

  .faq-category {
    padding: 20px;
    border-radius: 24px;
  }

  .faq-item {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .faq-item__icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .faq-item__body h3 {
    font-size: 0.98rem;
  }

  .faq-item__body p {
    font-size: 0.97rem;
  }

  .legal-hero {
    padding: 44px 0 40px;
  }

  .legal-hero__title {
    font-size: clamp(1.95rem, 6.8vw, 2.8rem);
    line-height: 1.04;
  }

  .legal-hero__lead {
    font-size: 1.08rem;
  }

  .legal-hero__media {
    max-width: 300px;
  }

  .legal-stat-grid,
  .legal-panel,
  .legal-panel--wide {
    padding: 22px;
    border-radius: 24px;
  }

  .legal-stat-card,
  .legal-feature-card {
    min-height: 82px;
    padding: 16px 14px;
  }

  .legal-input-row {
    min-height: 58px;
  }

  .legal-banner-box p {
    font-size: 1.05rem;
  }

  .trade-centered-note h3 {
    font-size: 1.45rem;
  }

  .pricing-hero {
    padding: 44px 0 38px;
  }

  .pricing-hero__lead {
    font-size: 1.08rem;
  }

  .pricing-hero__media {
    max-width: 360px;
  }

  .plan-card,
  .multisite-panel,
  .detail-card {
    padding: 22px;
    border-radius: 24px;
  }

  .detail-card h3 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .detail-box {
    padding: 16px;
  }

  .legal-doc-hero {
    padding: 42px 0 18px;
  }

  .legal-doc-hero__lead {
    font-size: 1.02rem;
  }

  .legal-doc-card {
    padding: 22px;
    border-radius: 24px;
  }

  .legal-doc-card h3 {
    font-size: 1.08rem;
  }

  .legal-doc-keyval,
  .legal-doc-mini {
    padding: 16px;
  }

  .trade-detail-hero {
    padding: 42px 0 34px;
  }

  .trade-detail-cover {
    padding-bottom: 26px;
  }

  .trade-detail-cover__media {
    min-height: 520px;
    border-radius: 0 0 24px 24px;
  }

  .trade-detail-cover__content {
    padding: 42px 0 56px;
  }

  .trade-detail-cover__content h1 {
    font-size: clamp(2.2rem, 8.4vw, 3.5rem);
  }

  .trade-detail-cover__content .lead {
    font-size: 1.08rem;
  }

  .trade-detail-cover__content p {
    font-size: 1rem;
  }

  .trade-detail-hero__title {
    font-size: clamp(2.1rem, 8vw, 3.2rem);
  }

  .trade-detail-hero__lead {
    font-size: 1.08rem;
  }

  .trade-detail-hero__sublead,
  .trade-detail-copy p,
  .trade-detail-centered p {
    font-size: 1.02rem;
  }

  .trade-detail-hero__media {
    max-width: 360px;
  }

  .trade-detail-card,
  .trade-profile-card {
    padding: 20px;
    border-radius: 22px;
  }

  .trade-detail-type-images {
    gap: 10px;
  }

  .trade-detail-type-card {
    padding: 14px 16px;
  }

  .pricing-inline-image {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 420px) {
  .trade-gallery {
    gap: 6px;
  }

  .trade-pill-grid,
  .trade-tags {
    grid-template-columns: 1fr;
  }

  .faq-hero__gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 360px;
  }

  .legal-hero__title {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .legal-hero__media {
    max-width: 300px;
  }

  .pricing-hero__media {
    max-width: 300px;
  }

  .pricing-inline-image {
    border-radius: 22px;
  }

  .trade-detail-hero__media {
    max-width: 300px;
  }

  .trade-detail-cover__media {
    min-height: 480px;
  }

  .trade-detail-type-images {
    grid-template-columns: 1fr;
  }

  .faq-hero__image {
    border-radius: 18px;
  }

  .faq-hero__image--wide {
    grid-column: 1 / -1;
  }

  .faq-hero__image--wide img {
    aspect-ratio: 2.1 / 1;
  }

  .faq-hero__image:not(.faq-hero__image--wide) img {
    aspect-ratio: 0.95 / 1;
  }
}

/* HERO MOBILE FIX */
@media (max-width: 768px) {

  .hero {
    padding: 20px 0 44px;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hero__visuals {
    display: contents;
  }

  /* Par defaut, tout passe apres */
  .hero__grid > * {
    order: 5;
  }

  .hero__media {
    order: 1;
    height: 260px;
    overflow: hidden;
    border-radius: 18px;
    margin: 0 0 6px;
  }

  .hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Texte principal juste apres */
  .hero__content {
    order: 2;
    padding-top: 0;
    text-align: left;
  }

  .hero__content h1 {
    font-size: 26px;
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .lead {
    font-size: 1.05rem;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  /* CTA apres le texte */
  .hero__actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-side-card {
    order: 3;
    padding: 20px;
  }
}

.hero__media,
.faq-hero__image,
.legal-media-card,
.pricing-hero__image,
.pricing-inline-image,
.content-image,
.trade-gallery__item,
.trade-detail-hero__image,
.trade-detail-cover__media,
.trade-detail-type-image,
.trade-detail-cover__photo,
.trade-detail-single-media,
.how-media-card,
.how-feature-image {
  border: 1px solid rgba(198, 255, 71, 0.22) !important;
}

.content-image,
.trade-detail-hero__media,
.trade-detail-cover__media,
.trade-detail-type-images,
.trade-detail-type-grid,
.trade-detail-fact-sheet,
.pricing-inline-image {
  margin-left: auto;
  margin-right: auto;
}

.trade-detail-type-images,
.trade-detail-type-grid,
.trade-detail-fact-sheet {
  max-width: 760px;
}

.cookie-ui-open {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1200;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(12, 12, 12, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-banner__copy h2 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.cookie-banner__copy p {
  margin: 0;
  color: var(--text-soft);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.cookie-modal__dialog {
  position: relative;
  width: min(940px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: #121212;
  box-shadow: 0 36px 96px rgba(0, 0, 0, 0.45);
}

.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 1.55rem;
  cursor: pointer;
}

.cookie-modal__eyebrow {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-modal__header h2 {
  margin-bottom: 10px;
}

.cookie-modal__header p {
  margin: 0 0 12px;
  color: var(--text-soft);
}

.cookie-modal__link {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 700;
}

.cookie-modal__cards {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.cookie-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.015);
}

.cookie-card__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.cookie-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.cookie-card p {
  margin: 0;
  color: var(--text-soft);
}

.cookie-card__status {
  display: inline-block;
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-card__status--on {
  color: var(--accent);
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  width: 56px;
  height: 32px;
}

.cookie-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.cookie-switch span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.2s ease;
}

.cookie-switch input:checked + span {
  border-color: rgba(198, 255, 71, 0.24);
  background: rgba(198, 255, 71, 0.22);
}

.cookie-switch input:checked + span::after {
  transform: translateX(24px);
}

.cookie-switch input:disabled + span {
  cursor: default;
  background: rgba(198, 255, 71, 0.18);
}

.cookie-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

.cookie-modal__footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-modal__text-link {
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 900px) {
  .cookie-banner__content,
  .cookie-card__main,
  .cookie-modal__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions,
  .cookie-modal__footer-actions {
    justify-content: stretch;
  }

  .cookie-banner__actions .btn,
  .cookie-modal__footer-actions .btn,
  .cookie-modal__text-link {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 18px;
    border-radius: 20px;
  }

  .cookie-modal__dialog {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    margin: 8px auto;
    padding: 22px 18px;
    border-radius: 22px;
  }
}
