/* ───── Brutalist Bold — Sarı Etiket ───── */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --y: #FFE600;
  --y-2: #FFD60A;
  --ink: #000;
  --paper: #FFFFFF;
  --gray: #F4F4F4;
  --shadow: 6px 6px 0 0 var(--ink);
  --shadow-lg: 10px 10px 0 0 var(--ink);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ───── Top notice (kayan üst şerit) ───── */
.notice {
  background: var(--ink);
  color: var(--y);
  overflow: hidden;
  padding: 8px 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-bottom: 3px solid var(--ink);
}
.notice-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: marq 30s linear infinite;
}
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ───── Header ───── */
.hd {
  position: sticky; top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  background: var(--y);
  padding: 14px 24px;
  border-bottom: 4px solid var(--ink);
  z-index: 50;
}
.hd-back {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 8px 14px;
  transition: background .15s, transform .15s;
}
.hd-back:hover { background: var(--ink); color: var(--y); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 0 var(--ink); }
.hd-logo {
  display: flex; align-items: center; gap: 10px;
}
.hd-mark {
  width: 36px; height: 36px;
  background: var(--ink);
  color: var(--y);
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  font-weight: 700; font-size: 16px;
  letter-spacing: -0.02em;
}
.hd-mark.big { width: 56px; height: 56px; font-size: 24px; }
.hd-name { font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.hd-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; opacity: 0.6;
}
.hd-nav {
  display: flex; gap: 4px;
}
.hd-nav a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  padding: 8px 14px;
  border: 2px solid transparent;
  transition: background .15s, border-color .15s;
}
.hd-nav a:hover { background: var(--paper); border-color: var(--ink); }
.hd-nav a.active { background: var(--ink); color: var(--y); }
.hd-r { display: flex; gap: 8px; }
.hd-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  background: var(--paper);
  transition: transform .15s, box-shadow .15s;
}
.hd-btn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 0 var(--ink); }
.hd-btn-y { background: var(--ink); color: var(--y); }
.hd-btn-y:hover { background: var(--y); color: var(--ink); }

/* ───── HERO ───── */
.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  background: var(--y);
  border-bottom: 4px solid var(--ink);
  min-height: calc(100vh - 80px);
}
.hero-l {
  padding: 60px 60px 40px;
  display: flex; flex-direction: column;
  border-right: 4px solid var(--ink);
}
.hero-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
  display: inline-block;
  background: var(--ink); color: var(--y);
  padding: 8px 14px;
  width: fit-content;
}
.hero-h {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.05em;
}
.hero-line {
  display: block;
  font-size: clamp(80px, 14vw, 220px);
}
.hero-line--big {
  background: var(--ink);
  color: var(--y);
  padding: 0 16px;
  display: inline-block;
  margin: 4px 0;
  transform: rotate(-2deg);
  transform-origin: left;
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 0 var(--paper);
}
.hero-sub-row {
  margin-top: auto;
  display: flex; gap: 40px; align-items: end;
  padding-top: 60px;
  border-top: 2px solid var(--ink);
  flex-wrap: wrap;
}
.hero-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  line-height: 1.6;
  text-transform: uppercase;
}
.hero-sub span {
  display: inline-block;
  font-size: 28px; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.03em;
  margin-right: 6px;
}
.hero-cta-stack {
  display: flex; flex-direction: column; gap: 12px;
  margin-left: auto;
}
.big-btn {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 30px;
  background: var(--ink); color: var(--y);
  border: 3px solid var(--ink);
  padding: 18px 24px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  min-width: 260px;
  transition: transform .15s, box-shadow .15s;
}
.big-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 0 var(--paper), 6px 6px 0 3px var(--ink);
}
.big-btn--ghost { background: var(--y); color: var(--ink); }
.big-btn--ghost:hover { background: var(--paper); }
.big-btn-arrow { font-size: 22px; }

.hero-r {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
}
.hero-card {
  border-bottom: 4px solid var(--ink);
  border-right: 4px solid var(--ink);
  padding: 30px;
  position: relative;
  transition: background .25s;
  cursor: pointer;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-card:nth-child(2n) { border-right: 0; }
.hero-card:nth-last-child(-n+2) { border-bottom: 0; }
.hero-card--1 { background: var(--paper); }
.hero-card--1:hover { background: var(--ink); color: var(--y); }
.hero-card--2 { background: var(--ink); color: var(--y); }
.hero-card--2:hover { background: var(--paper); color: var(--ink); }
.hero-card--img { padding: 0; overflow: hidden; }
.hero-card--img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.hero-card--img:hover img { transform: scale(1.08); }
.hc-img-tag {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--y); color: var(--ink);
  padding: 6px 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 12px;
  border: 2px solid var(--ink);
}
.hero-card--stat { background: var(--y); color: var(--ink); }
.hero-card--stat:hover { background: var(--paper); }
.hc-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
}
.hc-num, .hc-pct, .hc-stat-num {
  font-weight: 700;
  font-size: 96px;
  line-height: 0.8;
  letter-spacing: -0.05em;
  margin: auto 0;
  font-variant-numeric: tabular-nums;
}
.hc-stat-num { font-size: 110px; }
.hc-cap, .hc-stat-cap {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 12px; letter-spacing: 0.08em;
  margin-top: auto;
}

/* ───── BIG MARQUEE ───── */
.big-marquee {
  background: var(--ink);
  color: var(--y);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
  padding: 18px 0;
}
.big-marquee-track {
  display: flex; gap: 50px;
  align-items: center;
  white-space: nowrap;
  animation: marq 25s linear infinite;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.04em;
}
.big-marquee-track .star { color: var(--paper); font-size: 0.7em; }

/* ───── Section common ───── */
.sect-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: end;
  padding: 60px 40px 30px;
  border-bottom: 4px solid var(--ink);
}
.sect-head--white { color: var(--y); border-bottom-color: var(--y); }
.sect-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
}
.sect-head h2 {
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.85;
  letter-spacing: -0.045em;
}
.sect-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 500;
  text-align: right;
}
.sect-meta--white { color: var(--y); opacity: 0.8; }
.sect-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 600;
  background: var(--ink); color: var(--y);
  padding: 12px 16px;
  border: 2px solid var(--ink);
  transition: background .15s, color .15s, transform .15s;
}
.sect-link:hover { background: var(--y); color: var(--ink); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 0 var(--ink); }

/* ───── KATEGORİLER ───── */
.cats-section { border-bottom: 4px solid var(--ink); }
.cats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cat-cell {
  border-right: 4px solid var(--ink);
  border-top: 4px solid var(--ink);
  padding: 36px 30px;
  background: var(--paper);
  cursor: pointer;
  transition: background .25s;
  position: relative;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 200px;
}
.cat-cell:nth-child(4n) { border-right: 0; }
.cat-cell:hover { background: var(--y); }
.cat-cell:nth-child(odd):hover { background: var(--ink); color: var(--y); }
.cat-emoji { font-size: 40px; }
.cat-name {
  font-weight: 700; font-size: 28px;
  letter-spacing: -0.03em;
}
.cat-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 500;
  margin-top: auto;
}

/* ───── KAMPANYALAR ───── */
.camps-section { border-bottom: 4px solid var(--ink); }
.camps {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.camp {
  border-right: 4px solid var(--ink);
  border-top: 4px solid var(--ink);
  background: var(--paper);
  cursor: pointer;
  position: relative;
  transition: background .25s;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}
.camp:nth-child(2n) { border-right: 0; }
.camp:hover { background: var(--y); }
.camp:nth-child(odd):hover { background: var(--ink); color: var(--y); }
.camp-img {
  position: relative;
  overflow: hidden;
  border-right: 4px solid var(--ink);
  background: #ddd;
}
.camp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.camp:hover .camp-img img { transform: scale(1.07); }
.camp-img::before {
  content: ""; position: absolute; inset: 0;
  background: var(--ink); mix-blend-mode: multiply; opacity: 0.06;
}
.camp-meta {
  padding: 30px;
  display: flex; flex-direction: column;
}
.camp-tag {
  background: var(--y); color: var(--ink);
  padding: 6px 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 11px; letter-spacing: 0.08em;
  border: 2px solid var(--ink);
  width: fit-content;
}
.camp:nth-child(odd):hover .camp-tag { background: var(--y); border-color: var(--y); }
.camp-brand {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 30px;
}
.camp-title {
  font-weight: 700; font-size: 38px;
  letter-spacing: -0.04em; line-height: 0.95;
  margin-top: 10px;
}
.camp-foot {
  margin-top: auto; padding-top: 24px;
  border-top: 2px solid var(--ink);
  display: flex; justify-content: space-between; align-items: end;
}
.camp:nth-child(odd):hover .camp-foot { border-top-color: var(--y); }
.camp-discount {
  font-weight: 700; font-size: 24px; letter-spacing: -0.03em;
}
.camp-end {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  text-align: right;
}

/* ───── BIG QUOTE ───── */
.big-quote {
  background: var(--ink); color: var(--y);
  padding: 100px 60px;
  border-bottom: 4px solid var(--ink);
  position: relative;
  text-align: left;
}
.bq-mark {
  font-size: 220px; line-height: 0.6;
  font-weight: 700;
  color: var(--y);
  height: 80px;
}
.big-quote p {
  font-weight: 700;
  font-size: clamp(36px, 5vw, 80px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 1200px;
}
.bq-y { color: var(--paper); background: var(--ink); padding: 0 8px; }
.big-quote em { font-style: italic; color: var(--paper); }
.bq-by {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 13px; letter-spacing: 0.1em;
  margin-top: 50px;
  border-top: 2px solid var(--y);
  padding-top: 16px;
  width: fit-content;
}

/* ───── ÜRÜNLER ───── */
.prods-section { border-bottom: 4px solid var(--ink); }
.prods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.prod {
  border-right: 4px solid var(--ink);
  border-top: 4px solid var(--ink);
  background: var(--paper);
  cursor: pointer;
  position: relative;
  transition: background .25s;
  display: flex; flex-direction: column;
}
.prod:nth-child(4n) { border-right: 0; }
.prod:hover { background: var(--y); }
.prod-img {
  aspect-ratio: 1/1;
  background: var(--gray);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.prod:hover .prod-img img { transform: scale(1.08) rotate(-1deg); }
.prod-disc {
  position: absolute; top: 14px; left: 14px;
  background: var(--ink); color: var(--y);
  padding: 6px 10px;
  border: 2px solid var(--ink);
  font-weight: 700; font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.prod-fav {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .15s;
}
.prod-fav:hover { background: var(--y); }
.prod-fav.on svg { fill: var(--ink); }
.prod-stock {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--y); color: var(--ink);
  padding: 4px 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 11px;
  border: 2px solid var(--ink);
  display: none;
}
.prod-stock.show { display: block; }
.prod-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.prod-brand {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.prod-title {
  font-weight: 700; font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 6px;
  flex: 1;
}
.prod-foot {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
  display: flex; justify-content: space-between; align-items: end;
}
.prod-prices { display: flex; flex-direction: column; }
.prod-price { font-weight: 700; font-size: 22px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.prod-old { font-size: 12px; text-decoration: line-through; opacity: 0.5; font-family: 'IBM Plex Mono', monospace; }
.prod-rate {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600;
  background: var(--ink); color: var(--y);
  padding: 4px 8px;
  border: 2px solid var(--ink);
}

/* ───── BRAND TAPE ───── */
.brand-tape {
  background: var(--paper);
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
}
.brand-tape-track {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: marq 32s linear infinite;
}
.brand-tape-track > span {
  display: inline-flex; align-items: center;
  padding: 24px 36px;
  border-right: 2px solid var(--ink);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  background: var(--paper);
  transition: background .2s, color .2s;
}
.brand-tape-track > span:hover { background: var(--y); }
.brand-tape-track > span.dark { background: var(--ink); color: var(--y); }
.brand-tape-track > span.dark:hover { background: var(--y); color: var(--ink); }

/* ───── VIP ───── */
.vip-section {
  background: var(--ink); color: var(--y);
  border-bottom: 4px solid var(--ink);
}
.vip-section .sect-head { border-bottom-color: var(--y); }
.vips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.vip {
  border-right: 4px solid var(--y);
  padding: 40px;
  cursor: pointer;
  transition: background .25s, color .25s;
  display: flex; flex-direction: column;
  min-height: 380px;
}
.vip:last-child { border-right: 0; }
.vip:hover { background: var(--y); color: var(--ink); }
.vip.featured { background: var(--y); color: var(--ink); }
.vip.featured:hover { background: var(--paper); }
.vip-tier {
  font-weight: 700; font-size: 36px; letter-spacing: -0.04em;
}
.vip-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px; font-weight: 500; opacity: 0.7;
  margin-top: 8px;
  margin-bottom: 30px;
}
.vip ul { list-style: none; flex: 1; }
.vip li {
  padding: 12px 0;
  border-top: 2px solid currentColor;
  font-size: 13px;
  font-weight: 500;
  display: flex; gap: 10px;
}
.vip li::before {
  content: "→";
  font-weight: 700;
}
.vip-cta {
  margin-top: 24px;
  padding: 14px 18px;
  border: 2px solid currentColor;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px;
  text-align: center;
  transition: background .2s, color .2s;
}
.vip:hover .vip-cta { background: var(--ink); color: var(--y); }
.vip.featured .vip-cta { background: var(--ink); color: var(--y); }
.vip.featured:hover .vip-cta { background: var(--y); color: var(--ink); }

/* ───── TRUST ───── */
.trust-section { border-bottom: 4px solid var(--ink); }
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-cell {
  padding: 36px 30px;
  border-right: 4px solid var(--ink);
  display: flex; gap: 16px; align-items: center;
}
.trust-cell:last-child { border-right: 0; }
.trust-icon {
  width: 48px; height: 48px;
  background: var(--y);
  border: 3px solid var(--ink);
  display: grid; place-items: center;
  font-size: 22px; font-weight: 700;
  flex-shrink: 0;
}
.trust-h6 { font-weight: 700; font-size: 16px; letter-spacing: -0.02em; }
.trust-p { font-family: 'IBM Plex Mono', monospace; font-size: 12px; opacity: 0.7; margin-top: 4px; }

/* ───── NEWS BANNER ───── */
.news-banner {
  background: var(--y);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  border-bottom: 4px solid var(--ink);
}
.news-l h2 {
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.045em;
  line-height: 0.85;
}
.news-l p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  margin-top: 16px;
}
.news-form {
  display: flex; gap: 0;
  border: 4px solid var(--ink);
  background: var(--paper);
}
.news-form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 18px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em;
}
.news-form input:focus { outline: none; }
.news-form input::placeholder { color: rgba(0,0,0,0.4); }
.news-form button {
  background: var(--ink); color: var(--y);
  padding: 18px 28px;
  font-weight: 700;
  font-size: 14px; letter-spacing: 0.06em;
  border-left: 4px solid var(--ink);
  transition: background .15s;
}
.news-form button:hover { background: var(--y); color: var(--ink); }

/* ───── FOOTER ───── */
.ft {
  background: var(--paper);
  padding: 60px 40px 24px;
}
.ft-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 4px solid var(--ink);
}
.ft-logo { display: flex; gap: 14px; align-items: center; }
.ft-name { font-weight: 700; font-size: 22px; letter-spacing: -0.03em; }
.ft-tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; opacity: 0.6; margin-top: 4px; }
.ft-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.ft-cols h5 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 8px;
}
.ft-cols a {
  display: block;
  padding: 6px 0;
  font-size: 13px; font-weight: 500;
  transition: padding .25s, background .15s;
}
.ft-cols a:hover { padding-left: 12px; background: var(--y); }
.ft-base {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
}
.ft-arrow { cursor: pointer; transition: color .15s; }
.ft-arrow:hover { background: var(--ink); color: var(--y); padding: 2px 8px; }

/* ───── Responsive ───── */
@media (max-width: 1100px) {
  .hd-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-l { border-right: 0; border-bottom: 4px solid var(--ink); padding: 40px 30px; }
  .hero-r { grid-template-columns: 1fr 1fr; }
  .hero-card { min-height: 200px; }
  .hero-line { font-size: clamp(60px, 14vw, 120px); }
  .cats-row { grid-template-columns: 1fr 1fr; }
  .cat-cell:nth-child(2n) { border-right: 0; }
  .camps { grid-template-columns: 1fr; }
  .camp { grid-template-columns: 1fr; border-right: 0; }
  .camp-img { border-right: 0; border-bottom: 4px solid var(--ink); aspect-ratio: 16/9; }
  .prods { grid-template-columns: 1fr 1fr; }
  .prod:nth-child(2n) { border-right: 0; }
  .vips { grid-template-columns: 1fr; }
  .vip { border-right: 0; border-bottom: 4px solid var(--y); }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .news-banner { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; }
  .ft-cols { grid-template-columns: 1fr 1fr 1fr; }
}

/* ───── Reveal ───── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity: 1; transform: translateY(0); }
