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

:root {
  --c-bg:       #f7f5f2;
  --c-surface:  #ffffff;
  --c-ink:      #1a1a18;
  --c-ink-soft: #4a4a45;
  --c-accent:   #2a5038;
  --c-accent-light: #edf3ef;
  --c-line:     rgba(26,26,24,0.10);

  --font-body: 'DM Sans', sans-serif;
  --font-display: 'DM Serif Display', serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --max-w: 1120px;
  --gutter: clamp(20px, 5vw, 60px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 400;
}

p, dd {
  text-align: justify;
}

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

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

/* ===========================
   SKIP LINK
   =========================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: top 0.15s;
}

.skip-link:focus {
  top: 0;
  outline: 2.5px solid #fff;
  outline-offset: -4px;
}

/* ===========================
   FOCUS STYLES
   =========================== */
:focus:not(:focus-visible) {
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2.5px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ===========================
   UTILITIES
   =========================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-label {
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--c-ink);
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-block;
  background: var(--c-accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.2s var(--ease-out), transform 0.15s var(--ease-out);
}

.btn-primary:hover {
  background: #2e5339;
  transform: translateY(-1px);
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-1px);
}
.btn-whatsapp svg { flex-shrink: 0; }

.badge {
  display: inline-block;
  background: var(--c-accent-light);
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.nav.scrolled {
  background: rgba(247,245,242,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--c-ink-soft);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--c-ink);
}

/* ===========================
   LANGUAGE SWITCHER
   =========================== */
.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-ink);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-line);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-whatsapp:hover {
  color: #128C7E;
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.06);
}
.nav-whatsapp svg { flex-shrink: 0; }

.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--c-ink-soft);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.lang-btn:hover {
  color: var(--c-ink);
  border-color: rgba(26,26,24,0.25);
}

.lang-btn svg {
  transition: transform 0.2s;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(26,26,24,0.10);
  padding: 6px;
  display: none;
  flex-direction: column;
  min-width: 130px;
  z-index: 200;
}

.lang-dropdown.open {
  display: flex;
}

.lang-option {
  background: none;
  border: none;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-ink-soft);
  cursor: pointer;
  text-align: left;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}

.lang-option:hover {
  background: var(--c-accent-light);
  color: var(--c-accent);
}

.lang-option.active {
  color: var(--c-accent);
  font-weight: 500;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-ink);
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease-out);
}

.mobile-menu.open {
  max-height: 340px;
}

.mobile-menu a {
  padding: 16px var(--gutter);
  font-size: 16px;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line);
}
.nav-contact-icons {
  display: none;
  align-items: center;
  gap: 2px;
}
.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--c-ink);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nav-icon-btn:hover { background: rgba(0,0,0,0.06); }

.mobile-lang {
  display: flex;
  align-items: center;
  padding: 10px var(--gutter);
  border-bottom: 1px solid var(--c-line);
  gap: 4px;
}
.mobile-lang-btn {
  flex: 1;
  padding: 7px 2px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-align: center;
  color: var(--c-ink-soft);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.mobile-lang-btn.active,
.mobile-lang-btn:hover {
  color: var(--c-accent);
  background: var(--c-accent-light);
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 62px);
  color: var(--c-ink);
  margin-bottom: 22px;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--c-accent);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--c-ink-soft);
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.7;
  text-align: justify;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.net-preview {
  width: 100%;
  max-width: 480px;
  height: 480px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--c-surface);
  box-shadow: 0 4px 40px rgba(26,26,24,0.06), 0 1px 2px rgba(26,26,24,0.04);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#netSvg {
  width: 100%;
  height: 100%;
}

.hero-scroll-hint {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--c-ink-soft);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hero-scroll-hint.hidden {
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-ink), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.8; }
}

/* ===========================
   FEATURES
   =========================== */
.features {
  padding: clamp(80px, 12vw, 140px) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feature-card {
  background: var(--c-surface);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: #fafaf8;
}

.feature-icon {
  color: var(--c-accent);
  margin-bottom: 4px;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--c-ink);
}

.feature-card p {
  font-size: 14px;
  color: var(--c-ink-soft);
  line-height: 1.7;
  text-align: justify;
}

/* ===========================
   SPECS
   =========================== */
.specs {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--c-surface);
}

.specs-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.specs-intro {
  font-size: 16px;
  color: var(--c-ink-soft);
  line-height: 1.7;
  max-width: 380px;
  text-align: justify;
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-line);
}

.spec-row:first-child {
  border-top: 1px solid var(--c-line);
}

.spec-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  align-self: center;
}

.spec-value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--c-ink);
  text-align: right;
}

.spec-note {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--c-ink-soft);
  line-height: 1.55;
  padding-top: 4px;
  text-align: justify;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works {
  padding: clamp(80px, 12vw, 140px) 0;
}

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

.step {
  background: var(--c-surface);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--c-accent);
  opacity: 0.25;
  line-height: 1;
}

.step-content h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  color: var(--c-ink-soft);
  line-height: 1.7;
  text-align: justify;
}

/* ===========================
   SCENE BREAK
   =========================== */
.scene-break {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--c-surface);
}

.scene-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--c-accent-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px);
}

.scene-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

#sceneSvg {
  width: 100%;
  height: auto;
  max-width: 320px;
  display: block;
}

/* ===========================
   SVG ILLUSTRATIONS — ANIMATIONS
   =========================== */
@keyframes netFloat {
  0%, 100% { transform: translate(0px, 0px); }
  25%       { transform: translate(0.8px, -0.5px); }
  50%       { transform: translate(0px,  0.7px); }
  75%       { transform: translate(-0.8px, -0.3px); }
}
.net-grid-group {
  animation: netFloat 9s ease-in-out infinite;
}

@keyframes catBob {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(1.5px); }
}
.cat-bob {
  animation: catBob 2.5s ease-in-out infinite;
}

@keyframes tailSway {
  0%, 100% { transform: rotate(0deg); }
  50%       { transform: rotate(12deg); }
}
.cat-tail {
  transform-box: fill-box;
  transform-origin: 0% 60%;
  animation: tailSway 2s ease-in-out infinite;
}

@keyframes catBlink {
  0%, 88%, 100% { transform: scaleY(1); }
  93%            { transform: scaleY(0.12); }
}
.cat-eye {
  transform-box: fill-box;
  transform-origin: center;
  animation: catBlink 4.5s ease-in-out infinite;
}
.cat-eye:nth-of-type(2) { animation-delay: 0.05s; }

@keyframes catWhiskerSway {
  0%, 100% { transform: rotate(0deg); }
  50%       { transform: rotate(2deg); }
}
.cat-whiskers {
  transform-box: fill-box;
  transform-origin: center;
  animation: catWhiskerSway 2s ease-in-out infinite;
}

@keyframes cloudDrift {
  0%, 100% { transform: translateX(0px); }
  50%       { transform: translateX(4px); }
}
.cloud-1 { animation: cloudDrift 9s  ease-in-out infinite; }
.cloud-2 { animation: cloudDrift 12s ease-in-out infinite 1.5s; }

@media (prefers-reduced-motion: reduce) {
  .net-grid-group, .cat-bob, .cat-tail, .cat-eye,
  .cat-whiskers, .cloud-1, .cloud-2 { animation: none; }
}

.scene-text h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--c-ink);
  margin-bottom: 20px;
}

.scene-text p {
  font-size: 16px;
  color: var(--c-ink-soft);
  line-height: 1.75;
  text-align: justify;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: clamp(80px, 12vw, 140px) 0;
}

.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--c-line);
}

.faq-item:first-child {
  border-top: 1px solid var(--c-line);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-ink);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--c-accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s var(--ease-out), opacity 0.25s;
}

.faq-icon::before {
  width: 18px; height: 1.5px;
  top: 50%; left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 1.5px; height: 18px;
  top: 0; left: 50%;
  transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--c-ink-soft);
  line-height: 1.75;
  text-align: justify;
}

/* ===========================
   CTA
   =========================== */
.cta {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--c-accent);
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta .section-label {
  color: rgba(255,255,255,0.6);
}

.cta h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  margin-bottom: 20px;
}

.cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  text-align: justify;
}

.cta .btn-primary {
  background: #fff;
  color: var(--c-accent);
}

.cta .btn-primary:hover {
  background: #f0f0ed;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.55);
  padding: 64px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  color: #fff;
  font-size: 20px;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

.footer-copyright {
  text-align: center;
}

.footer-bottom > span:last-child {
  text-align: right;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-whatsapp { display: none; }
  .lang-switcher { display: none; }
  .nav-contact-icons { display: flex; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .net-preview {
    max-width: 320px;
    margin: 0 auto;
  }

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

  .specs-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .scene-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    gap: 36px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-bottom > span:last-child {
    text-align: center;
  }
}

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

  .footer-links {
    flex-direction: column;
    gap: 24px;
  }

  .hero-text h1 {
    font-size: clamp(34px, 10vw, 48px);
  }
}

/* ===========================
   LEGAL PAGES
   =========================== */
.nav.nav-opaque {
  background: rgba(247,245,242,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-line);
}

.legal-content {
  padding: calc(64px + 60px) 0 100px;
  min-height: 60vh;
}

.legal-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--c-ink);
  margin-bottom: 56px;
}

.legal-section {
  margin-bottom: 52px;
}

.legal-section h2 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
}

.legal-dl {
  border-top: 1px solid var(--c-line);
}

.legal-dl-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: baseline;
}

.legal-dl-row dt {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink-soft);
}

.legal-dl-row dd {
  font-size: 14px;
  color: var(--c-ink);
}

.legal-section > p {
  font-size: 15px;
  color: var(--c-ink-soft);
  line-height: 1.8;
}

@media (max-width: 600px) {
  .legal-dl-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }

  .legal-dl-row dd {
    color: var(--c-ink);
  }
}

/* ===========================
   COOKIE TABLE
   =========================== */

.cookie-table-wrap {
  overflow-x: auto;
  margin-top: 1.25rem;
  border: 1px solid var(--c-line);
  border-radius: 8px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.cookie-table th {
  text-align: left;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: transparent;
  border-bottom: 1px solid var(--c-line);
  white-space: nowrap;
}

.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink-soft);
  line-height: 1.5;
  vertical-align: top;
}

.cookie-table tbody tr:last-child td {
  border-bottom: none;
}

.cookie-table td:first-child {
  white-space: nowrap;
}

.cookie-table code {
  font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', monospace;
  font-size: 12px;
  background: var(--c-line);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--c-ink);
}

/* ===========================
   REDUCED MOTION
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-scroll-hint {
    display: none;
  }
}
