/* Useful Performance — Design System */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #000000;
  --bg-secondary: #000000;
  --surface: #0A0A0A;
  --surface-2: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #A5AAA7;
  --text-muted: #6E7471;
  --accent: #3D9E4A;
  --accent-hover: #4DB35B;
  --accent-soft: rgba(61, 158, 74, 0.12);
  --accent-border: rgba(61, 158, 74, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --danger: #E05A5A;
  --success: #3D9E4A;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1280px;
  --page-gutter: 1.25rem;
  --header-h: 80px;
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: max(var(--page-gutter), env(safe-area-inset-left, 0px))
                   max(var(--page-gutter), env(safe-area-inset-right, 0px));
}

@media (min-width: 1400px) {
  :root { --container: 1400px; }
}
@media (min-width: 1600px) {
  :root { --container: 1560px; }
}
@media (min-width: 1800px) {
  :root { --container: 1680px; }
}

@media (max-width: 1024px) {
  :root { --page-gutter: 1.75rem; }
}
@media (max-width: 768px) {
  :root {
    --header-h: 68px;
    --page-gutter: 1.4rem;
  }
  .logo img { height: 40px; }
}
@media (max-width: 560px) {
  :root { --page-gutter: 1.25rem; }
}

/* Typography */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  max-width: 18ch;
}

.section-lead {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: min(100%, 72ch);
  margin-top: 1rem;
  text-wrap: pretty;
}
.section-header .section-lead {
  max-width: min(100%, 80ch);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: #041006;
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-secondary {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text-primary);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  padding-inline: 0.5rem;
  min-height: auto;
}
.btn-ghost:hover { color: var(--accent); }

.btn-block { width: 100%; }
.btn-sm { min-height: 42px; padding: 0 1.1rem; font-size: 0.78rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 560px) {
  .btn-group .btn { flex: 1 1 100%; }
}

/* Forms */
.form-group { margin-bottom: 1.15rem; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.45rem;
}
.form-control {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.form-check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.form-check input { margin-top: 0.25rem; accent-color: var(--accent); }
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

/* Cards */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.product-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
}
.product-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.product-card__media {
  aspect-ratio: 16/10;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
  display: block;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__media.is-logo-cover,
.product-detail__cover.is-logo-cover,
.blog-card__media.is-logo-cover,
.blog-article__cover.is-logo-cover {
  display: grid;
  place-items: center;
  background: #000;
}
.product-card__media.is-logo-cover img,
.product-detail__cover.is-logo-cover img,
.blog-card__media.is-logo-cover img,
.blog-article__cover.is-logo-cover img {
  width: 72%;
  height: auto;
  max-height: 70%;
  object-fit: contain;
  transform: none !important;
}
.product-card__media-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(61,158,74,0.15), transparent 50%),
    linear-gradient(180deg, #111111, #000000);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.product-card__body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.7rem;
}
.product-card__cat {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.product-card__title {
  font-size: 1.35rem;
  color: var(--text-primary);
}
.product-card:hover .product-card__title {
  color: var(--accent-hover);
}
.product-card:hover .btn-secondary {
  border-color: var(--accent);
  color: var(--accent);
}
.product-card__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  flex: 1;
}
.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.product-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
}
.product-card__price--hidden {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.product-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.product-card__features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1rem;
  position: relative;
}
.product-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.feature-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  height: 100%;
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.feature-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1.2rem;
  transition: transform 0.3s var(--ease);
}
.feature-card:hover .feature-card__icon { transform: translateY(-2px); }
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.55rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; margin: 0; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.3s var(--ease), border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 52px;
  width: auto;
}
@media (max-width: 768px) {
  .logo img { height: 40px; }
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-desktop a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}
.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--text-primary); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
}
.mobile-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-drawer.is-open .mobile-drawer__backdrop { opacity: 1; }
.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 380px);
  height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-drawer__nav a {
  padding: 0.9rem 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}
.mobile-drawer__nav a.is-active { color: var(--accent); }

@media (max-width: 1024px) {
  .nav-desktop, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  height: 100svh;
  max-height: 100vh;
  max-height: 100dvh;
  max-height: 100svh;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 0.75rem) 0 2rem;
  overflow: hidden;
  box-sizing: border-box;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}
.hero__bg-fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(61,158,74,0.18), transparent 55%),
    linear-gradient(160deg, #001408 0%, #000000 45%, #000000 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0.4) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.96) 0%, transparent 45%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  width: 100%;
}
.hero__title {
  font-size: clamp(2.2rem, 6.5vw, 4.75rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  white-space: pre-line;
}
.hero__title .accent { color: var(--accent); }
.hero__subtitle {
  margin: 1rem 0 1.35rem;
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  max-width: 46ch;
}
@media (max-height: 760px) {
  .hero__title {
    font-size: clamp(1.9rem, 7vh, 3.4rem);
  }
  .hero__subtitle {
    margin: 0.75rem 0 1.1rem;
  }
  .hero .btn-group { gap: 0.65rem; }
}
@media (max-height: 640px) {
  .hero {
    padding-bottom: 1rem;
  }
  .hero__title {
    font-size: clamp(1.7rem, 6.5vh, 2.8rem);
  }
  .hero__subtitle {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0.55rem 0 0.9rem;
  }
}

/* Stats */
.stats {
  background: var(--bg-secondary);
  border-block: 1px solid var(--border);
  padding: 3rem 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-item { text-align: center; }
.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.stat-item__label {
  margin-top: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}

/* About split */
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
.about-split__media {
  max-height: 320px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  position: relative;
  display: grid;
  place-items: center;
}
.about-split__media img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
}
.about-split__media-fallback {
  width: 100%;
  min-height: 200px;
  max-height: 320px;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(145deg, rgba(61,158,74,0.2), transparent 40%),
    linear-gradient(#111111, #000000);
}
.about-split .page-prose,
.about-split > :not(.about-split__media) {
  max-width: none;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}
.about-split .page-prose .eyebrow,
.about-split > :not(.about-split__media) .eyebrow {
  margin: 0;
}
.about-split .page-prose .section-title,
.about-split > :not(.about-split__media) .section-title {
  max-width: none;
  margin: 0;
  line-height: 1.2;
  text-wrap: balance;
}
.about-split .page-prose p,
.about-split .page-prose .section-lead,
.about-split > :not(.about-split__media) p,
.about-split > :not(.about-split__media) .section-lead {
  max-width: none;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  text-wrap: pretty;
}
.about-split .page-prose .page-quote {
  margin: 0;
}
.about-split .page-prose .btn-group,
.about-split > :not(.about-split__media) .btn-group {
  margin-top: 0.35rem;
}
.about-split > :not(.about-split__media) .about-features {
  margin: 0.15rem 0;
}
.about-features {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}
.about-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
.about-feature:last-child { border-bottom: 1px solid var(--border); }
.about-feature__dot {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}
.about-feature h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.about-feature p { margin: 0; color: var(--text-secondary); font-size: 0.92rem; }

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .about-split__media,
  .about-split__media img { max-height: 240px; }
  .about-split--reverse .about-split__media { order: -1; }
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
  .grid-2 { gap: 1.15rem; }
}
@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: minmax(0, 1fr); gap: 1rem; }
}

/* Process timeline */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
}
.process-step {
  position: relative;
  padding-top: 0.5rem;
}
.process-step__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--text-secondary); font-size: 0.92rem; margin: 0; }

@media (max-width: 900px) {
  .process {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 1.5rem;
    border-left: 1px solid var(--border);
    margin-left: 0.75rem;
  }
  .process::before { display: none; }
  .process-step {
    padding: 0 0 2rem 1.25rem;
    position: relative;
  }
  .process-step__num {
    position: absolute;
    left: -2.05rem;
    top: 0;
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(61,158,74,0.18), transparent 60%),
    var(--bg-secondary);
  border-block: 1px solid var(--border);
  text-align: center;
}
.cta-band .section-title { margin-inline: auto; }
.cta-band .section-lead { margin-inline: auto; margin-bottom: 2rem; }

/* Page hero (inner) */
.page-hero {
  padding: calc(var(--header-h) + 1.15rem) 0 2.25rem;
  background:
    radial-gradient(ellipse 60% 80% at 10% 20%, rgba(61,158,74,0.12), transparent 50%),
    var(--bg-primary);
  border-bottom: 1px solid var(--border);
}
.page-hero--rich {
  padding: calc(var(--header-h) + 1.15rem) 0 2.5rem;
}
.page-hero__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.page-hero__top .eyebrow { margin-bottom: 0; }
.page-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.page-hero__links a {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.page-hero__links a:hover,
.page-hero__links a.is-active {
  color: var(--accent-hover);
  border-color: rgba(61, 158, 74, 0.4);
  background: var(--accent-soft);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  text-transform: uppercase;
}
.page-hero p,
.page-hero__lead {
  color: var(--text-secondary);
  max-width: min(100%, 72ch);
  margin-top: 1rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.section--band {
  background: var(--bg-secondary);
  border-block: 1px solid var(--border);
}
.page-prose {
  max-width: 54ch;
}
.page-prose p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}
.page-quote {
  margin: 0;
  padding: 1.1rem 1.2rem;
  border-left: 3px solid var(--accent);
  background: rgba(61, 158, 74, 0.08);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
}
.about-split--reverse .about-split__media {
  order: -1;
}

.pillar-grid,
.commit-grid,
.value-grid {
  display: grid;
  gap: 1rem;
}
.pillar-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.commit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.pillar-card,
.commit-card,
.value-card,
.editorial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.4rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pillar-card:hover,
.commit-card:hover,
.value-card:hover,
.editorial-card:hover {
  border-color: rgba(61, 158, 74, 0.35);
  transform: translateY(-2px);
}
.pillar-card__n,
.commit-card__n,
.value-card__n {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.pillar-card h3,
.commit-card h3,
.value-card h3,
.editorial-card h2 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
}
.pillar-card p,
.commit-card p,
.value-card p,
.editorial-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.editorial-card {
  padding: 1.75rem 1.6rem;
  min-height: 220px;
}
.editorial-card .eyebrow { margin-bottom: 0.85rem; }
.editorial-card h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 0.9rem;
}

@media (max-width: 900px) {
  .pillar-grid,
  .value-grid,
  .editorial-grid,
  .commit-grid {
    grid-template-columns: 1fr;
  }
  .about-split--reverse .about-split__media { order: -1; }
}

/* Filters */
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-bar a {
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all 0.2s;
  white-space: nowrap;
}
.filter-bar a:hover,
.filter-bar a.is-active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
@media (max-width: 640px) {
  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
.product-detail__cover {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}
.product-detail__cover img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin: 1rem 0;
}
.product-detail__body {
  color: var(--text-secondary);
  line-height: 1.75;
}
.product-detail__body h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
}
.content-list li {
  padding: 0.55rem 0 0.55rem 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  position: relative;
}
.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.apply-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-top: 2rem;
}
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.85rem 1rem;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  gap: 0.75rem;
}
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body.has-sticky-cta { padding-bottom: 80px; }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.contact-item span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.contact-item p { margin: 0; }
.contact-item--social .social-links {
  margin-top: 0.65rem;
}
.footer-col__text {
  display: block;
  color: var(--text-secondary);
  padding: 0.28rem 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Social icon links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.social-links__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  background: var(--surface);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.social-links__item svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: block;
}
.social-links__item:hover {
  transform: translateY(-1px);
}
.social-links__item--instagram:hover {
  color: #E4405F;
  border-color: rgba(228, 64, 95, 0.45);
  background: rgba(228, 64, 95, 0.12);
}
.social-links__item--youtube:hover {
  color: #FF0000;
  border-color: rgba(255, 0, 0, 0.45);
  background: rgba(255, 0, 0, 0.12);
}
.social-links__item--tiktok:hover {
  color: #69C9D0;
  border-color: rgba(105, 201, 208, 0.45);
  background: rgba(105, 201, 208, 0.12);
}
.social-links__item--linkedin:hover {
  color: #0A66C2;
  border-color: rgba(10, 102, 194, 0.45);
  background: rgba(10, 102, 194, 0.12);
}
.social-links__item--whatsapp:hover {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.12);
}
.social-links--footer {
  margin-top: 1.15rem;
}
.social-links--footer .social-links__item,
.social-links--contact .social-links__item {
  width: 40px;
  height: 40px;
}
.social-links--footer .social-links__item svg,
.social-links--contact .social-links__item svg {
  width: 18px;
  height: 18px;
}

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

/* Footer */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 2.2fr);
  gap: 2.75rem 3rem;
  padding-bottom: 3rem;
  align-items: start;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem 1.5rem;
}
.footer-brand__logo img {
  height: 52px;
  width: auto;
}
.footer-brand p {
  color: var(--text-secondary);
  margin: 1rem 0 0;
  max-width: 34ch;
  font-size: 0.95rem;
  line-height: 1.55;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.9rem;
}
.footer-col a {
  display: block;
  color: var(--text-secondary);
  padding: 0.28rem 0;
  font-size: 0.92rem;
  line-height: 1.4;
  transition: color 0.2s;
  word-break: break-word;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-bottom__links {
  display: flex;
  gap: 0.35rem 1.15rem;
  flex-wrap: wrap;
}
.footer-bottom__links a:hover { color: var(--text-primary); }
.footer-copy {
  color: var(--text-muted);
  line-height: 1.45;
}
.footer-credit {
  color: var(--accent);
  text-decoration: none;
  margin-left: 0.25rem;
  transition: color 0.2s ease;
}
.footer-credit:hover {
  color: var(--accent-hover);
}

@media (max-width: 1024px) {
  .site-footer {
    padding-top: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-bottom: 2rem;
  }
  .footer-brand {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .footer-brand p {
    max-width: 48ch;
  }
  .footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem 1rem;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 2.5rem;
  }
  .footer-brand__logo img {
    height: 44px;
  }
  .footer-brand {
    padding-bottom: 1.25rem;
  }
  .footer-brand p {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    max-width: none;
  }
  .footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.15rem;
  }
  .footer-col:last-child {
    grid-column: 1 / -1;
    padding-top: 0.35rem;
    border-top: 1px solid var(--border);
  }
  .footer-col h4 {
    margin-bottom: 0.7rem;
  }
  .footer-col a {
    padding: 0.32rem 0;
    font-size: 0.9rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.15rem 0 1.4rem;
  }
  .footer-bottom__links {
    width: 100%;
    gap: 0.65rem 1rem;
  }
}

@media (max-width: 560px) {
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .footer-col:last-child {
    grid-column: auto;
    padding-top: 1.1rem;
    margin-top: 0.15rem;
  }
  .footer-col + .footer-col {
    padding-top: 1.1rem;
    border-top: 1px solid var(--border);
  }
  .footer-copy {
    font-size: 0.82rem;
  }
  .footer-bottom__links {
    gap: 0.55rem 0.9rem;
    font-size: 0.82rem;
  }
}

/* WhatsApp float widget */
.wa-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 2.75rem;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.wa-widget__bubble {
  width: min(280px, calc(100vw - 2.5rem));
  padding: 1rem 1.05rem 1.05rem;
  background: #0c0c0c;
  border: 1px solid rgba(61, 158, 74, 0.35);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
  position: relative;
}
.wa-widget.is-open .wa-widget__bubble,
.wa-widget:not(.is-dismissed):hover .wa-widget__bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-widget__bubble::after {
  content: '';
  position: absolute;
  right: 1.6rem;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: #0c0c0c;
  border-right: 1px solid rgba(61, 158, 74, 0.35);
  border-bottom: 1px solid rgba(61, 158, 74, 0.35);
  transform: rotate(45deg);
}
.wa-widget__close {
  position: absolute;
  top: 0.45rem;
  right: 0.55rem;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}
.wa-widget__close:hover { color: #fff; }
.wa-widget__bubble-title {
  margin: 0 1.5rem 0.35rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}
.wa-widget__bubble-text {
  margin: 0 0 0.85rem;
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.45;
}
.wa-widget__bubble-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: #041006;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.wa-widget__bubble-cta:hover { background: var(--accent-hover); }

.wa-widget__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 58px;
  padding: 0.45rem 1rem 0.45rem 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f8a3b, #3D9E4A 55%, #4DB35B);
  color: #041006;
  box-shadow:
    0 10px 28px rgba(61, 158, 74, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wa-widget__btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 34px rgba(61, 158, 74, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}
.wa-widget__icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.18);
  flex: 0 0 auto;
}
.wa-widget__icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.wa-widget__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  padding-right: 0.35rem;
  min-width: 0;
}
.wa-widget__copy strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #041006;
}
.wa-widget__copy small {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(4, 16, 6, 0.72);
  letter-spacing: 0.02em;
}
.wa-widget__pulse {
  position: absolute;
  left: 0.45rem;
  top: 0.45rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(61, 158, 74, 0.55);
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

@media (max-width: 900px) {
  body.has-sticky-cta .wa-widget { bottom: 8.25rem; }
}
@media (max-width: 1024px) {
  .wa-widget {
    right: 1rem;
    bottom: 4.25rem;
  }
  .wa-widget__copy { display: none; }
  .wa-widget__btn {
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .wa-widget__icon {
    width: 58px;
    height: 58px;
    background: transparent;
  }
  .wa-widget__icon svg {
    width: 28px;
    height: 28px;
  }
  .wa-widget__pulse {
    left: 0;
    top: 0;
    width: 58px;
    height: 58px;
  }
}
@media (max-width: 560px) {
  .wa-widget {
    right: 0.85rem;
    bottom: max(3.75rem, calc(3.25rem + env(safe-area-inset-bottom, 0px)));
  }
  .wa-widget__btn {
    width: 54px;
    height: 54px;
    min-height: 54px;
  }
  .wa-widget__icon {
    width: 54px;
    height: 54px;
  }
  .wa-widget__pulse {
    width: 54px;
    height: 54px;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  max-width: 520px;
  margin: 0 auto;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}
.cookie-banner__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* Alerts */
.alert {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}
.alert-success { background: var(--accent-soft); border-color: var(--accent-border); color: var(--accent-hover); }
.alert-error { background: rgba(224,90,90,0.1); border-color: rgba(224,90,90,0.35); color: #f0a0a0; }

/* Legal */
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 2.5rem;
  align-items: start;
  width: 100%;
}
.legal-content {
  min-width: 0;
  width: 100%;
  max-width: none;
  color: var(--text-secondary);
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.legal-content h2 {
  color: var(--text-primary);
  font-size: clamp(1.15rem, 2.8vw, 1.35rem);
  margin: 2.25rem 0 0.75rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
  line-height: 1.25;
  text-wrap: balance;
}
.legal-content h3 {
  color: var(--text-primary);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
.legal-content p { margin: 0 0 1rem; }
.legal-content a {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem !important;
  line-height: 1.5;
}
.legal-callout {
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  background: rgba(61, 158, 74, 0.06);
  border-radius: 0 10px 10px 0;
  margin-bottom: 1.5rem;
}
.legal-callout p { margin: 0; }

.legal-toc {
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-secondary);
  margin-bottom: 1.75rem;
}
.legal-toc strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.85rem;
  margin-bottom: 0.55rem;
}
.legal-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.35rem;
  list-style: decimal;
}
.legal-toc a {
  font-size: 0.88rem;
  text-decoration: none;
  display: inline;
}
.legal-toc a:hover { text-decoration: underline; }

.legal-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1rem 0 1.25rem;
}
.legal-card {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-secondary);
}
.legal-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}
.legal-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 0.45rem;
}

.legal-list {
  margin: 0 0 1.15rem;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.45rem;
  list-style: disc;
}
.legal-list li {
  padding-left: 0.15rem;
  line-height: 1.55;
}

.legal-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0 1.15rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  max-width: 100%;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  min-width: 0;
}
.legal-table th,
.legal-table td {
  padding: 0.7rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}
.legal-table th {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table code {
  font-size: 0.78rem;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  word-break: break-all;
}

.legal-contact {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  min-width: 0;
  padding: 1.15rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(61, 158, 74, 0.1), transparent 55%),
    var(--bg-secondary);
}
.legal-contact h3 {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.legal-contact dl {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.legal-contact dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.legal-contact dd {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.legal-contact a { color: var(--accent-hover); }

/* Tablet */
@media (max-width: 1100px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .legal-contact {
    position: static;
  }
}

@media (max-width: 900px) {
  .legal-cards {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .legal-card {
    padding: 0.85rem;
  }
  .legal-callout,
  .legal-toc {
    padding: 0.9rem 1rem;
  }
  .legal-content {
    line-height: 1.7;
    font-size: 0.95rem;
  }
  .legal-content h2 {
    margin-top: 1.75rem;
  }
}

/* Mobile: stacked table cards */
@media (max-width: 720px) {
  .legal-cards {
    grid-template-columns: 1fr;
  }
  .legal-meta {
    font-size: 0.78rem;
  }
  .legal-toc ol {
    padding-left: 1.1rem;
  }
  .legal-toc a {
    font-size: 0.84rem;
  }
  .legal-list {
    padding-left: 1.1rem;
  }

  .table-scroll {
    border: none;
    border-radius: 0;
    overflow: visible;
  }
  .legal-table,
  .legal-table tbody {
    display: block;
    width: 100%;
  }
  .legal-table thead {
    display: none;
  }
  .legal-table tr {
    display: block;
    margin-bottom: 0.75rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-secondary);
  }
  .legal-table tr:last-child {
    margin-bottom: 0;
  }
  .legal-table td {
    display: block;
    padding: 0.35rem 0;
    border: none;
  }
  .legal-table td:first-child {
    padding-top: 0;
    color: var(--text-primary);
    font-weight: 650;
  }
  .legal-table td:last-child {
    padding-bottom: 0;
  }
  .legal-table td::before {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  /* Çerez tablosu: Ad / Tür / Amaç / Süre */
  .legal-table--cookies td:nth-child(1)::before { content: "Ad / Anahtar"; }
  .legal-table--cookies td:nth-child(2)::before { content: "Tür"; }
  .legal-table--cookies td:nth-child(3)::before { content: "Amaç"; }
  .legal-table--cookies td:nth-child(4)::before { content: "Süre"; }
  /* KVKK tablosu: Kategori / Örnek / Kaynak */
  .legal-table--kvkk td:nth-child(1)::before { content: "Kategori"; }
  .legal-table--kvkk td:nth-child(2)::before { content: "Örnek veriler"; }
  .legal-table--kvkk td:nth-child(3)::before { content: "Kaynak"; }

  .legal-contact {
    padding: 1rem;
  }
  .legal-contact dl {
    gap: 0.65rem;
  }
}

@media (max-width: 480px) {
  .legal-content {
    font-size: 0.92rem;
  }
  .legal-content h2 {
    font-size: 1.1rem;
  }
  .legal-callout {
    padding: 0.85rem 0.9rem;
  }
}

/* 404 */
.error-page {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1rem 4rem;
}
.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 800;
  line-height: 0.85;
  color: var(--accent);
  opacity: 0.9;
}
.error-page h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 1rem 0 1.5rem;
  text-transform: uppercase;
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.12s; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.19s; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.26s; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.33s; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 0.4s; }
[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}

.hero [data-hero] {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.9s var(--ease) forwards;
}
.hero [data-hero="1"] { animation-delay: 0.15s; }
.hero [data-hero="2"] { animation-delay: 0.35s; }
.hero [data-hero="3"] { animation-delay: 0.55s; }
.hero [data-hero="4"] { animation-delay: 0.7s; }
@keyframes heroIn {
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], [data-reveal-stagger] > *, .hero [data-hero] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Blog */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.blog-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
}
.blog-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.blog-card__media {
  aspect-ratio: 16/10;
  background: var(--surface-2);
  overflow: hidden;
  display: block;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card__media img { transform: scale(1.04); }
.blog-card__body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}
.blog-card__meta {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.blog-card__meta span { color: var(--accent); }
.blog-card__title {
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--text-primary);
}
.blog-card:hover .blog-card__title {
  color: var(--accent-hover);
}
.blog-card__excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  flex: 1;
}
.blog-card__link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.blog-article {
  max-width: min(920px, 100%);
  margin: 0 auto;
}
.blog-article__cover {
  aspect-ratio: 21/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  background: var(--surface);
}
.blog-article__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-article__meta {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.blog-article__content {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.85;
}
.blog-article__content h2,
.blog-article__content h3 {
  color: var(--text-primary);
  margin: 2rem 0 0.75rem;
}
.blog-article__content p { margin: 0 0 1.1rem; }
.blog-article__content strong { font-weight: 700; color: #fff; }
.blog-article__content em { font-style: italic; color: var(--muted); }
.blog-article__content u { text-decoration: underline; text-underline-offset: 0.18em; }
.blog-article__content .blog-size { line-height: 1.35; }
.blog-article__content .blog-size--sm { font-size: 0.9em; }
.blog-article__content .blog-size--md { font-size: 1em; }
.blog-article__content .blog-size--lg { font-size: 1.25em; font-weight: 600; }
.blog-article__content .blog-size--xl { font-size: 1.55em; font-weight: 700; letter-spacing: -0.01em; }
.blog-article__content ul,
.blog-article__content ol {
  margin: 0 0 1.1rem;
  padding-left: 1.25rem;
  list-style: disc;
}
.blog-article__content a { color: var(--accent); }

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 1.75rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Utility */
.text-secondary { color: var(--text-secondary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Campaign popup */
body.has-campaign-popup { overflow: hidden; }
.campaign-popup {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s var(--ease), visibility 0.32s var(--ease);
}
.campaign-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.campaign-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}
.campaign-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(90vh, 760px);
  overflow: auto;
  background:
    linear-gradient(180deg, rgba(61, 158, 74, 0.06), transparent 28%),
    var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(61, 158, 74, 0.08),
    0 28px 70px rgba(0, 0, 0, 0.55);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.36s var(--ease);
  -webkit-overflow-scrolling: touch;
}
.campaign-popup.is-open .campaign-popup__dialog {
  transform: translateY(0) scale(1);
}
.campaign-popup__accent {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent 85%);
}
.campaign-popup__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.72);
  color: var(--text-secondary);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.campaign-popup__close:hover {
  color: #fff;
  border-color: var(--accent-border);
  background: rgba(0, 0, 0, 0.85);
}
.campaign-popup__media {
  position: relative;
  background: #050505;
  border-bottom: 1px solid var(--border);
}
.campaign-popup__media img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}
.campaign-popup__media-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  background: linear-gradient(transparent, var(--surface-2));
  pointer-events: none;
}
.campaign-popup__body {
  padding: 1.35rem 1.6rem 1.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.campaign-popup__body--solo {
  padding-top: 1.65rem;
}
.campaign-popup__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin: 0;
  padding: 0.35rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
}
.campaign-popup__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.campaign-popup__text {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 42ch;
}
.campaign-popup__actions {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0.7rem;
  margin-top: 0.35rem;
}
.campaign-popup__actions .btn {
  min-height: 48px;
  width: 100%;
  justify-content: center;
}
.campaign-popup__cta {
  font-weight: 700;
}
.campaign-popup__note {
  margin: 0.15rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}
@media (max-width: 900px) {
  .campaign-popup {
    padding: max(1rem, var(--page-gutter));
    place-items: center;
    align-items: center;
    justify-items: center;
  }
  .campaign-popup__dialog {
    width: min(100%, 480px);
    max-height: min(86vh, 720px);
    margin: auto;
    border-radius: var(--radius-lg);
  }
}
@media (max-width: 540px) {
  .campaign-popup {
    padding: max(0.85rem, var(--page-gutter));
    place-items: center;
    align-items: center;
  }
  .campaign-popup__dialog {
    width: 100%;
    max-height: min(86vh, 680px);
    border-radius: var(--radius-lg);
  }
  .campaign-popup__media img { max-height: 200px; }
  .campaign-popup__body { padding: 1.15rem 1.15rem 1.3rem; gap: 0.75rem; }
  .campaign-popup__actions {
    grid-template-columns: 1fr;
  }
  .campaign-popup__title {
    font-size: 1.35rem;
  }
}


/* ========== Responsive polish: tablet + mobile ========== */
@media (max-width: 1024px) {
  .site-header {
    z-index: 1200;
    background: rgba(0, 0, 0, 0.94);
    border-bottom-color: var(--border);
  }
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: var(--header-h) 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
  }
  .hero__bg {
    position: relative;
    inset: auto;
    z-index: 0;
    order: 1;
    background: #000;
    flex: 0 0 auto;
  }
  .hero__bg img,
  .hero__bg video {
    width: 100%;
    height: auto;
    object-fit: unset;
    object-position: center;
    transform: none !important;
    will-change: auto;
    display: block;
  }
  .hero__bg-fallback {
    min-height: 42vh;
  }
  .hero__overlay {
    display: none;
  }
  .hero__content {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 2;
    order: 2;
    max-width: none;
    width: 100%;
    margin-top: 1.25rem;
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
  }
  .section {
    padding: clamp(2.75rem, 6vw, 4.5rem) 0;
  }
  .section-header {
    margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
  }
  .section-title {
    max-width: none;
    line-height: 1.15;
  }
  .section-lead {
    margin-top: 0.75rem;
    font-size: 1rem;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__subtitle {
    max-width: 100%;
  }
  .page-hero {
    padding: calc(var(--header-h) + 1rem) 0 1.75rem;
  }
  .page-hero--rich {
    padding: calc(var(--header-h) + 1rem) 0 1.9rem;
  }
  .page-hero h1 {
    font-size: clamp(1.85rem, 5.5vw, 2.75rem);
    line-height: 1.12;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }
  .page-hero__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
  .page-hero__links {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .page-hero__links::-webkit-scrollbar { display: none; }
  .page-hero__links a {
    flex: 0 0 auto;
  }
  .pillar-grid,
  .value-grid,
  .commit-grid,
  .editorial-grid {
    gap: 0.85rem;
  }
  .editorial-card {
    min-height: 0;
    padding: 1.35rem 1.25rem;
  }
  .product-card__body,
  .blog-card__body {
    padding: 1.15rem 1.15rem 1.25rem;
  }
  .apply-form {
    padding: 1.35rem 1.2rem;
    margin-top: 1.5rem;
  }
  .cta-band .section-lead {
    margin-bottom: 1.35rem;
  }
  .blog-article {
    padding-block: 0;
  }
  .blog-article__cover {
    aspect-ratio: 16 / 9;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 900px) {
  .about-split {
    gap: 1.35rem;
  }
  .about-split__media,
  .about-split__media img {
    max-height: 220px;
  }
  .about-split .page-prose .section-title,
  .about-split > :not(.about-split__media) .section-title {
    font-size: clamp(1.45rem, 5vw, 2rem);
  }
  .process {
    margin-left: 0.35rem;
    padding-left: 1.25rem;
  }
  .process-step {
    padding: 0 0 1.5rem 1.1rem;
  }
  .process-step__num {
    left: -1.85rem;
  }
  .contact-grid {
    gap: 1.35rem;
  }
  .product-detail {
    gap: 1.5rem;
  }
  .product-detail__cover {
    aspect-ratio: 16 / 10;
    max-height: 360px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15.5px;
  }
  .btn {
    min-height: 48px;
    padding: 0 1.2rem;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
  .btn-group {
    gap: 0.65rem;
    width: 100%;
  }
  .btn-group .btn {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 0;
  }
  .hero__content {
    margin-top: 1rem;
    padding-bottom: 0;
  }
  .hero__title {
    font-size: clamp(2rem, 9.5vw, 2.85rem);
    line-height: 1.02;
  }
  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0.75rem 0 1.1rem;
  }
  .stats {
    padding: 2rem 0;
  }
  .stats__grid {
    gap: 1.35rem 0.85rem;
  }
  .stat-item__num {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }
  .stat-item__label {
    font-size: 0.82rem;
    margin-top: 0.35rem;
  }
  .feature-card,
  .pillar-card,
  .commit-card,
  .value-card {
    padding: 1.15rem 1.1rem;
  }
  .page-quote {
    padding: 0.95rem 1rem;
    font-size: 0.98rem;
  }
  .page-prose {
    max-width: none;
  }
  .filter-bar {
    margin-bottom: 1.5rem;
  }
  .cookie-banner {
    left: max(1rem, env(safe-area-inset-left));
    right: max(1rem, env(safe-area-inset-right));
    bottom: 0.75rem;
    padding: 1rem;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner__actions .btn {
    flex: 1 1 auto;
  }
  .sticky-cta {
    padding: 0.75rem max(1.15rem, var(--page-gutter));
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  }
  body.has-sticky-cta {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
  .blog-article__content {
    font-size: 1rem;
    line-height: 1.75;
  }
  .blog-article__cover {
    border-radius: var(--radius-md);
  }
}

@media (max-width: 560px) {
  .section {
    padding: 2.35rem 0;
  }
  .section-header {
    margin-bottom: 1.35rem;
  }
  .btn-group .btn {
    flex: 1 1 100%;
  }
  .hero .btn-group .btn {
    flex: 1 1 100%;
  }
  .page-hero h1 {
    font-size: clamp(1.7rem, 8.5vw, 2.15rem);
  }
  .page-hero__lead {
    margin-top: 0.75rem;
    font-size: 0.95rem;
  }
  .about-split__media,
  .about-split__media img {
    max-height: 190px;
  }
  .product-card__media {
    aspect-ratio: 16 / 11;
  }
  .product-detail__price {
    font-size: 1.65rem;
  }
  .wa-widget {
    right: 0.85rem;
    bottom: max(3.75rem, calc(3.25rem + env(safe-area-inset-bottom, 0px)));
  }
  body.has-sticky-cta .wa-widget {
    bottom: calc(7.25rem + env(safe-area-inset-bottom, 0px));
  }
  .mobile-drawer__panel {
    width: min(100%, 100%);
    padding: 1.15rem 1.15rem 1.5rem;
  }
  .mobile-drawer__nav a {
    font-size: 1.1rem;
    padding: 0.8rem 0.15rem;
  }
  .campaign-popup__text {
    max-width: none;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
    padding-left: 0;
    border-left: 0;
    margin-left: 0;
  }
  .process::before { display: none; }
  .process-step {
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    padding: 1.15rem 1.15rem 1.25rem;
  }
  .process-step__num {
    position: static;
    width: 44px;
    height: 44px;
    margin-bottom: 0.9rem;
  }
}
