/* Mercan Kurumsal — navy/orange kimlik + görsel geçişler */
:root {
  --navy: #0b1f3a;
  --navy-deep: #061528;
  --navy-mid: #123056;
  --orange: #f97316;
  --orange-soft: #fb923c;
  --ink: #0f172a;
  --muted: #64748b;
  --paper: #f8fafc;
  --surface: #ffffff;
  --line: rgba(15, 23, 42, 0.1);
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Manrope", system-ui, sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
  --radius: 1.25rem;
  --radius-sm: 0.7rem;
  --shadow-sm: 0 1px 2px rgba(6, 21, 40, 0.06), 0 8px 24px rgba(6, 21, 40, 0.06);
  --shadow-lg: 0 24px 60px rgba(6, 21, 40, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 99;
  background: #fff;
  padding: 0.5rem 0.75rem;
}

.shell {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 21, 40, 0.55);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.topbar.is-stuck {
  background: rgba(6, 21, 40, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(2, 8, 18, 0.35);
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 4rem;
  transition: min-height 0.3s var(--ease);
}

.topbar.is-stuck .topbar-inner {
  min-height: 3.5rem;
}

.logo img {
  width: clamp(118px, 15vw, 158px);
  height: auto;
  filter: brightness(0) invert(1);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  margin-inline: auto;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.topbar.is-open .nav-toggle span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.topbar.is-open .nav-toggle span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.nav {
  display: none;
  gap: 0.15rem;
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: rgba(226, 232, 240, 0.78);
  padding: 0.45rem 0.65rem;
  border-radius: 0.45rem;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav a.is-active {
  color: #fff;
  background: rgba(249, 115, 22, 0.16);
}

.pill {
  display: inline-flex;
  align-items: center;
  height: 2.4rem;
  padding: 0 1.05rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-soft), var(--orange));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.28);
}

.pill:hover {
  filter: brightness(1.06);
}

.topbar.is-open .nav {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1.25rem 1.1rem;
  background: rgba(6, 21, 40, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar.is-open .nav a {
  padding: 0.75rem 0.65rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #f8fafc;
  background: var(--navy-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.1s var(--ease);
}

.hero-media .hero-slide.is-on {
  opacity: 1;
  z-index: 1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 14, 28, 0.88) 0%, rgba(6, 21, 40, 0.72) 38%, rgba(6, 21, 40, 0.28) 68%, rgba(6, 21, 40, 0.12) 100%),
    linear-gradient(180deg, rgba(4, 14, 28, 0.35) 0%, transparent 28%, transparent 70%, rgba(4, 14, 28, 0.25) 100%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: clamp(5.5rem, 14vh, 8rem) 0 4.5rem;
  max-width: 42rem;
  animation: rise 0.85s var(--ease) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.1rem;
  padding: 0.35rem 0.85rem 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-badge .dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  margin: 2.5rem 0 0;
  padding: 1.4rem 0 0;
  max-width: 34rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stats dt {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 1.9rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-stats dd {
  margin: 0.3rem 0 0;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.75);
}

.hero-dots {
  position: absolute;
  right: max(1.25rem, calc((100vw - var(--max)) / 2));
  bottom: 2rem;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
}

.hero-dots button {
  width: 1.75rem;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
}

.hero-dots button.is-on {
  width: 2.75rem;
  background: var(--orange);
}

/* Marka şeridi */
.ticker {
  overflow: hidden;
  padding: 1.1rem 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ticker-mask {
  display: flex;
  width: max-content;
  animation: slide-left 32s linear infinite;
}

.ticker:hover .ticker-mask {
  animation-play-state: paused;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0 0.75rem;
  list-style: none;
}

.ticker-track a {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(226, 232, 240, 0.72);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.ticker-track a:hover {
  color: #fff;
}

.tick-dot {
  color: rgba(249, 115, 22, 0.6);
  font-size: 0.7rem;
}

.logo-hero {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-size: clamp(2.55rem, 7vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: #fff;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.55),
    0 1px 2px rgba(0, 0, 0, 0.8);
}

.hero h1 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 18ch;
  color: #fff;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.5),
    0 1px 2px rgba(0, 0, 0, 0.75);
}

.sub {
  margin: 0 0 1.65rem;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.2rem;
  border-radius: 0.55rem;
  background: linear-gradient(180deg, var(--orange-soft), var(--orange));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}

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

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(248, 250, 252, 0.35);
  color: #f8fafc;
}

.btn-ghost:hover {
  border-color: rgba(248, 250, 252, 0.75);
  background: rgba(255, 255, 255, 0.06);
  filter: none;
}

/* Bands + split visuals */
.band {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--surface);
}

.band-soft {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(249, 115, 22, 0.05), transparent 50%),
    var(--paper);
}

.band-tight {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

/* Neden biz kartları */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.feature-card {
  position: relative;
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fbfcfe);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: var(--shadow-lg);
}

.feature-num {
  display: block;
  margin-bottom: 0.9rem;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--navy);
}

.feature-card p {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.eyebrow-light {
  color: var(--orange-soft);
}

.band h2 {
  margin: 0 0 0.95rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
}

.band p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38ch;
  font-weight: 500;
}

.lead-left {
  max-width: 30ch;
}

.text-link {
  display: inline-block;
  color: var(--orange);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(249, 115, 22, 0.4);
}

.text-link:hover {
  border-bottom-color: var(--orange);
}

.split-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  min-height: 300px;
  background: var(--navy-deep);
  box-shadow: 0 24px 48px rgba(6, 21, 40, 0.12);
}

.split-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.1s var(--ease);
}

[data-reveal].is-in .split-visual img {
  transform: scale(1);
}

.split-copy .mega {
  margin-top: 1.25rem;
}

/* Stage SDS */
.stage {
  position: relative;
  overflow: hidden;
  color: #f8fafc;
  background: var(--navy-deep);
  min-height: 520px;
  display: grid;
  align-items: center;
}

.stage-media {
  position: absolute;
  inset: 0;
}

.stage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease);
}

.stage.is-in .stage-media img {
  transform: scale(1);
}

.stage-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(249, 115, 22, 0.25), transparent 50%),
    linear-gradient(180deg, rgba(6, 21, 40, 0.55), rgba(6, 21, 40, 0.88));
}

.stage-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 0;
}

.stage h2 {
  color: #fff;
}

.stage p {
  margin-inline: auto;
  color: rgba(226, 232, 240, 0.86);
}

.center {
  text-align: center;
}

.center h2,
.center p {
  margin-inline: auto;
}

/* Mega links */
.mega {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  border-top: 1px solid var(--line);
}

.mega li {
  border-bottom: 1px solid var(--line);
}

.mega a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-decoration: none;
  color: var(--navy);
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
}

.mega a::after {
  content: "→";
  flex: none;
  font-size: 0.9em;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.mega a:hover {
  color: var(--orange);
  padding-left: 0.35rem;
}

.mega a:hover::after,
.mega a:focus-visible::after {
  opacity: 1;
  transform: none;
}

.mega-brands a {
  font-family: var(--serif);
  font-weight: 600;
}

.mega-quiet {
  margin-top: 2rem;
}

.mega-quiet a {
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.85rem 0;
}

/* Story cards */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.75rem 0 0.5rem;
}

.story {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  min-height: 190px;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.story:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.story img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(6, 21, 40, 0.9));
}

.story span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.95rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.story span::after {
  content: "→";
  color: var(--orange-soft);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.story:hover span::after {
  opacity: 1;
  transform: none;
}

.story:hover img {
  transform: scale(1.07);
}

.contact-lines {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 1.9rem) !important;
  font-weight: 600;
  color: var(--navy) !important;
  max-width: none !important;
  line-height: 1.35;
}

.contact-lines a {
  text-decoration: none;
}

.contact-lines a:hover {
  color: var(--orange);
}

.band-contact {
  background: var(--navy-deep);
  color: #e2e8f0;
}

.band-contact h2 {
  color: #fff;
}

.band-contact p {
  color: rgba(226, 232, 240, 0.82);
}

.contact-block {
  display: grid;
  gap: 2.25rem;
}

.contact-intro .btn {
  margin-top: 0.35rem;
}

.contact-card {
  font-style: normal;
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-soft);
}

.contact-card p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.45;
}

.contact-card a {
  text-decoration: none;
  color: #fff;
}

.contact-card a:hover {
  color: var(--orange-soft);
}

@media (min-width: 860px) {
  .contact-block {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }

  .contact-card {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    padding-top: 0;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 2rem;
  }
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* Footer */
.site-foot {
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(249, 115, 22, 0.12), transparent 55%),
    linear-gradient(180deg, #0a1a30 0%, var(--navy-deep) 100%);
  color: #94a3b8;
  font-size: 0.8125rem;
  padding: clamp(2.75rem, 6vw, 4rem) 0 2.25rem;
}

.foot-top {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.75rem;
}

.foot-intro {
  max-width: 28rem;
}

.foot-brand {
  margin: 0 0 0.4rem;
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.foot-tagline {
  margin: 0 0 1rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}

.foot-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.foot-cta a {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s;
}

.foot-cta a:hover {
  background: rgba(249, 115, 22, 0.16);
  border-color: rgba(249, 115, 22, 0.45);
  color: #fff;
}

.foot-cols {
  display: grid;
  gap: 1.5rem;
}

.foot-cols h3,
.foot-brands-head h3 {
  margin: 0 0 0.7rem;
  color: #f8fafc;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.foot-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.foot-cols .dense {
  display: block;
  columns: 2;
  column-gap: 1.25rem;
}

.foot-cols .dense li {
  break-inside: avoid;
  margin-bottom: 0.35rem;
}

.foot-cols a,
.foot-contact a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.15s;
}

.foot-cols a:hover,
.foot-contact a:hover {
  color: #fff;
}

.foot-contact {
  gap: 0.45rem !important;
}

.foot-brands {
  margin-bottom: 1.5rem;
}

.foot-brands-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.85rem;
}

.foot-brands-head h3 {
  margin: 0;
}

.foot-all-link {
  color: var(--orange-soft);
  font-weight: 750;
  font-size: 0.78rem;
  text-decoration: none;
}

.foot-all-link:hover {
  color: #fff;
}

.foot-brands-note {
  margin: 0;
  color: #64748b;
  font-size: 0.72rem;
}

.foot-brand-row,
.foot-brand-cloud {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.foot-brand-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s,
    transform 0.2s var(--ease);
}

.foot-brand-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-1px);
}

.foot-brand-chip.is-hot {
  min-height: 2.35rem;
  padding: 0.4rem 0.95rem;
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.35);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 750;
}

.foot-brand-chip.is-hot:hover {
  background: rgba(249, 115, 22, 0.22);
  border-color: rgba(249, 115, 22, 0.55);
}

.foot-brands-all .foot-brand-chip {
  min-height: 1.75rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
}

.foot-brand-cloud {
  position: relative;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.foot-brand-cloud.is-clamped {
  max-height: 6.25rem;
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
}

.brand-cloud-toggle {
  margin-top: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #e2e8f0;
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.brand-cloud-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  justify-content: space-between;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.foot-copy {
  margin: 0;
  color: #64748b;
  font-size: 0.72rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes drift {
  to {
    transform: scale(1.12) translate3d(-1.2%, 0.6%, 0);
  }
}

@keyframes slide-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
    margin-left: auto;
    align-items: center;
  }

  .pill {
    margin-left: 0.35rem;
  }

  .topbar.is-open .nav {
    position: static;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .split-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .split-reverse .split-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split-reverse .split-copy {
    order: 2;
  }

  .split-reverse .split-visual {
    order: 1;
  }

  .split-visual,
  .split-visual img {
    min-height: 420px;
  }

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

  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .foot-top {
    grid-template-columns: 1.1fr 1.6fr;
    gap: 2.5rem;
    align-items: start;
  }

  .foot-cols {
    grid-template-columns: 0.9fr 1.2fr 0.9fr;
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media .hero-slide {
    transition: none !important;
    transform: none !important;
  }

  .ticker-mask {
    animation: none !important;
  }

  .hero-copy,
  [data-reveal],
  .split-visual img,
  .stage-media img,
  .feature-card {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
