/*
Theme Name: Made To Trade
Theme URI: https://madetotrade.shop
Author: Mincan Marian
Author URI: https://madetotrade.shop
Description: Temă WordPress pentru Made To Trade — brand de merch pentru traderi.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: Unlicensed — use privat
Text Domain: made-to-trade
*/

/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --near-black: #121212;
  --charcoal: #1e1e1e;
  --gray-900: #2a2a2a;
  --gray-700: #4a4a4a;
  --gray-500: #7a7a7a;
  --gray-300: #b8b8b8;
  --gray-100: #e4e4e4;
  --white: #f7f7f5;
  --pure-white: #ffffff;
  --line: rgba(255,255,255,0.12);
  --line-soft: rgba(255,255,255,0.06);
  --font-display: 'Archivo Black', 'Space Grotesk', sans-serif;
  --font-body: 'Space Grotesk', -apple-system, sans-serif;
  --font-ethos: 'Fraunces', 'Georgia', serif; /* placeholder pentru Orpheus Pro (font licențiat, va fi înlocuit) */
  --max-width: 1280px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--gray-500);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gray-300);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* ============ LED DIVIDER ============ */
@keyframes led-pulse {
  0%, 100% {
    opacity: 0.4;
    box-shadow: 0 0 4px 0px rgba(255,255,255,0.35), 0 0 10px 1px rgba(255,255,255,0.15);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 10px 1px rgba(255,255,255,0.9), 0 0 24px 4px rgba(255,255,255,0.45);
  }
}

.led-divider { position: relative; border-bottom: none; }
.led-divider::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--white);
  animation: led-pulse 3.2s ease-in-out infinite;
  pointer-events: none;
}

.led-divider-top { position: relative; border-top: none; }
.led-divider-top::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: var(--white);
  animation: led-pulse 3.2s ease-in-out infinite;
  pointer-events: none;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo-dot { color: var(--gray-500); }

.main-nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-300);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--white); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.icon-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.icon-btn:hover { background: rgba(255,255,255,0.08); }

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ SEARCH ============ */
.search-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--near-black);
  border-bottom: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}
.search-panel.is-open {
  max-height: 480px;
  opacity: 1;
}

.search-panel-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 32px;
}

.search-input-row {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.search-input-icon { color: var(--gray-500); flex-shrink: 0; }

.search-input-row input {
  flex: 1;
  background: none;
  border: none;
  color: var(--white);
  font-family: inherit;
  font-size: 18px;
  outline: none;
}
.search-input-row input::placeholder { color: var(--gray-500); }

.search-close {
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 16px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.search-close:hover { color: var(--white); }

.search-results {
  max-height: 340px;
  overflow-y: auto;
  margin-top: 8px;
}

.search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.search-result:last-child { border-bottom: none; }
.search-result:hover { opacity: 0.6; }

.search-result-info { display: flex; flex-direction: column; gap: 2px; }
.search-result-name { font-size: 14px; font-weight: 600; }
.search-result-cat { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; }
.search-result-price { font-size: 13px; color: var(--gray-300); flex-shrink: 0; }

.search-empty, .search-hint {
  padding: 24px 4px;
  color: var(--gray-500);
  font-size: 14px;
}

@media (max-width: 860px) {
  .search-panel-inner { padding: 20px; }
  .search-input-row input { font-size: 16px; }
}

.search-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.search-backdrop.is-open { opacity: 1; visibility: visible; }

@keyframes found-flash {
  0%, 100% { box-shadow: none; }
  30% { box-shadow: 0 0 0 2px var(--white), 0 0 24px 4px rgba(255,255,255,0.5); }
}
.product-card.is-found { animation: found-flash 1.6s ease; }

/* ============ CART DRAWER ============ */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 92vw;
  background: var(--near-black);
  border-left: 1px solid var(--line);
  z-index: 110;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-header h3 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.02em;
}
.cart-close {
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 16px;
  width: 32px;
  height: 32px;
  transition: color 0.2s ease;
}
.cart-close:hover { color: var(--white); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px;
}

.cart-empty {
  color: var(--gray-500);
  font-size: 14px;
  padding: 40px 0;
  text-align: center;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cart-item-media {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 4px;
  background: repeating-linear-gradient(135deg, var(--charcoal) 0 2px, var(--near-black) 2px 14px);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-media svg { width: 60%; height: 60%; }

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13px; font-weight: 600; display: block; }
.cart-item-cat { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.qty-btn {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  background: none;
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.qty-btn:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.qty-value { font-size: 13px; min-width: 16px; text-align: center; }

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.cart-item-price { font-size: 13px; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 13px;
  transition: color 0.15s ease;
}
.cart-item-remove:hover { color: var(--white); }

.cart-drawer-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
#cartTotal { font-family: var(--font-display); font-size: 16px; }
.cart-checkout { width: 100%; }
.cart-checkout:disabled { opacity: 0.35; cursor: not-allowed; }

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.cart-backdrop.is-open { opacity: 1; visibility: visible; }

@media (max-width: 480px) {
  .cart-drawer { width: 100%; max-width: 100vw; }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 120px 32px 0;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 90%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding-bottom: 100px;
}

.hero-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 900px;
}

.outline-text {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray-300);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-marquee {
  position: relative;
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span { flex-shrink: 0; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--gray-700);
  white-space: nowrap;
  text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ MANIFESTO ============ */
.manifesto {
  padding: 120px 0;
}
.manifesto-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-ethos);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.5;
  color: var(--gray-100);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.manifesto-text strong {
  color: var(--white);
  font-weight: 700;
}
.manifesto-founder {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.founder-line {
  width: 48px;
  height: 1px;
  background: var(--gray-500);
}
.manifesto-founder p {
  font-family: var(--font-ethos);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 700;
}

/* ============ PILLARS ============ */
.pillars {
  padding: 120px 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}
.pillar-card {
  background: var(--black);
  padding: 40px 32px;
  transition: background 0.25s ease;
}
.pillar-card:hover { background: var(--near-black); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gray-500);
  display: block;
  margin-bottom: 24px;
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.pillar-card p {
  color: var(--gray-300);
  font-size: 15px;
  line-height: 1.6;
}

/* ============ SHOP ============ */
.shop { padding: 120px 0; }

.shop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}
.shop-header .section-title { margin-bottom: 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--near-black);
  transition: border-color 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--gray-500);
  transform: translateY(-4px);
}

.product-media {
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(135deg, var(--charcoal) 0 2px, var(--near-black) 2px 14px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.product-media svg { width: 42%; height: 42%; opacity: 0.9; }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.product-badge.soldout { background: var(--gray-700); color: var(--white); }

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.product-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.product-cat {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 15px;
}
.add-btn {
  background: none;
  border: 1px solid var(--line);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
}
.add-btn:hover:not(:disabled) {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.add-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ============ NEWSLETTER ============ */
.newsletter { padding: 120px 0; }
.newsletter-inner { max-width: 640px; text-align: left; }
.newsletter-inner p {
  color: var(--gray-300);
  font-size: 16px;
  margin-bottom: 36px;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 240px;
  background: var(--near-black);
  border: 1px solid var(--line);
  color: var(--white);
  padding: 16px 20px;
  font-size: 14px;
  border-radius: 2px;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--white);
}
.newsletter-form input::placeholder { color: var(--gray-500); }
.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-300);
}

/* ============ FOOTER ============ */
.site-footer {
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand p {
  margin-top: 16px;
  color: var(--gray-500);
  font-size: 14px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray-300);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-500);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { padding: 16px 20px; gap: 10px; }
  .logo { font-size: 14px; }
  .section-inner { padding: 0 20px; }
  .hero { padding: 100px 20px 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .manifesto, .pillars, .shop, .newsletter { padding: 72px 0; }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 24px;
    gap: 4px;
  }

  .main-nav.is-open a {
    padding: 12px 4px;
    font-size: 15px;
    border-bottom: 1px solid var(--line-soft);
  }

  .add-btn { width: 40px; height: 40px; font-size: 20px; }
}

@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 40px; }
  .footer-inner { grid-template-columns: 1fr; }
  .manifesto-founder p { font-size: 11px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 34px; }
}

/* ============ LEGAL PAGES ============ */
.legal-header {
  padding: 160px 0 40px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 64px;
}
.legal-header h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.legal-updated {
  font-size: 13px;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto 140px;
  color: var(--gray-300);
  font-size: 16px;
  line-height: 1.7;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 48px 0 16px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px 20px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.legal-content strong { color: var(--white); font-weight: 700; }

.legal-fill {
  display: inline-block;
  padding: 1px 8px;
  border: 1px dashed var(--gray-500);
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  color: var(--gray-100);
  font-style: italic;
  font-size: 0.95em;
}

.legal-note {
  margin-top: 56px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--near-black);
  font-size: 14px;
  color: var(--gray-300);
}
.legal-note strong { color: var(--white); }

@media (max-width: 860px) {
  .legal-header { padding: 130px 0 32px; }
  .legal-content { margin-bottom: 96px; }
}
