:root{
  --bg:#0b0b0f;
  --surface:#111117;
  --surface-2:#151520;
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --border:rgba(255,255,255,.10);

  --accent:#e1061b;   /* red */
  --accent-2:#ff3a4c; /* brighter red */
  --shadow: 0 18px 45px rgba(0,0,0,.35);

  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  background: #0b0b0f;
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,11,15,.70);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
  height: 72px;
}
.brand{
  display:flex; align-items:baseline; gap:10px;
  font-weight:800; letter-spacing:.3px;
}
.brand-mark{
  display:inline-flex; align-items:center; justify-content:center;
  width:46px; height:34px;
  border-radius:12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow);
}
.brand-name{font-weight:700; opacity:.95}

.nav{display:flex; align-items:center; gap:18px}
.nav a{opacity:.86}
.nav a:hover{opacity:1}
.nav a.active{opacity:1; position:relative}
.nav a.active::after{
  content:""; position:absolute; left:0; bottom:-8px; width:100%; height:2px;
  background: var(--accent);
  border-radius:999px;
}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:transparent;
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
}

/* ===== GTM-like HERO BAND (720 colors) ===== */
.hero{ padding: 56px 0 30px; }

.hero-band{
  position: relative;
  text-align: center;
  isolation: isolate;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero .container{
  max-width: 1400px;
}


/* The big blended panel */
.hero-band-bg{
  position:absolute;
  inset: 0;
  z-index: -2;

  /* Center blend like GTM's teal panel, but 720 red/black */
  background:
    radial-gradient(1100px 520px at 52% 35%, rgba(225,6,27,.45), transparent 60%),
    radial-gradient(900px 520px at 85% 40%, rgba(225,6,27,.22), transparent 60%),
    radial-gradient(900px 520px at 15% 45%, rgba(225,6,27,.18), transparent 60%),

    /* The main “panel” gradient */
    linear-gradient(135deg,
      rgba(30,30,40,.95) 0%,
      rgba(18,18,26,.92) 30%,
      rgba(225,6,27,.20) 55%,
      rgba(18,18,26,.92) 75%,
      rgba(12,12,16,.96) 100%
    );
}

/* Side fade/vignette like GTM edges */
.hero-band-vignette{
  position:absolute;
  inset: 0;
  z-index: -1;
  pointer-events:none;

  background:
    /* darker edges */
    radial-gradient(900px 480px at -10% 50%, rgba(0,0,0,.72), transparent 55%),
    radial-gradient(900px 480px at 110% 50%, rgba(0,0,0,.72), transparent 55%),
    /* soft top/bottom fade */
    linear-gradient(to bottom, rgba(0,0,0,.55), transparent 22%, transparent 78%, rgba(0,0,0,.65));
}

/* Keep your hero layout the same, just improve spacing/contrast */
.hero-grid{
  display:flex;
  align-items:flex-start;
}
.hero-grid > div{
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;  
}


.kicker{
  display:inline-block;
  color: rgba(255,255,255,.90);
  border:1px solid rgba(255,255,255,.16);
  padding:8px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.18);
  margin:0 0 14px;
}

h1{
  font-size: clamp(38px, 4.2vw, 60px);
  line-height:1.02;
  margin:0 0 12px;
}

.lead{
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  margin:0 0 18px;
  max-width: none;
}

/* Slightly “panel-ish” cards like GTM sections */
.hero-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,10,14,.35);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  overflow:hidden;
}

/* Optional: make the hero card look more like a floating window */
.hero-card-top{
  display:flex; gap:8px; padding:14px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.dot{ width:10px; height:10px; border-radius:999px; background: rgba(255,255,255,.22); }

/* Responsive */
@media (max-width: 900px){
  .hero-band{ padding: 58px 0 36px; }
  .hero-grid{ grid-template-columns: 1fr; }
}


/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  font-weight:650;
  transition: transform .08s ease, opacity .2s ease;
  white-space:nowrap;
}
.btn:active{transform: translateY(1px)}
.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}
.btn-ghost{background: transparent}
.btn:hover{opacity:.96}

/* Hero */
.hero{padding:56px 0 30px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap:26px;
  align-items:stretch;
}
.kicker{
  display:inline-block;
  color: rgba(255,255,255,.86);
  border:1px solid var(--border);
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.03);
  margin:0 0 12px;
}
h1{font-size: clamp(34px, 4vw, 54px); line-height:1.05; margin:0 0 12px}
.lead{font-size: 1.05rem; color: var(--muted); margin:0 0 18px; max-width: 60ch}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin: 0 0 16px}

.trust-row{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding:8px 10px;
  border-radius:999px;
  color: rgba(255,255,255,.84);
  font-size:.9rem;
}


/* Cards & sections */
.section{padding:44px 0}
.section-alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-head{margin-bottom:16px}
.section-head h2{margin:0 0 8px; font-size:1.9rem}
.section-foot{margin-top:16px}

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

.card{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding:18px;
  box-shadow: 0 6px 22px rgba(0,0,0,.18);
}
.card h3{margin:0 0 6px}
.muted{color: var(--muted)}
.small{font-size:.92rem}

.hero-card{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card-top{
  display:flex; gap:8px; padding:14px;
  border-bottom:1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.dot{width:10px; height:10px; border-radius:999px; background: rgba(255,255,255,.2)}
.hero-card-body{padding:18px}
.quote{font-size:1.1rem; margin: 8px 0}
.text-link:hover{text-decoration: underline}

.checklist{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.checklist li{
  padding-left:28px;
  position:relative;
  color: rgba(255,255,255,.86);
}
.checklist li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  color: var(--accent-2);
  font-weight:800;
}

.spacer{height:14px}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:start;
}
.form .form-row{display:grid; gap:6px; margin-bottom:12px}
label{font-size:.92rem; color: rgba(255,255,255,.86)}
input, textarea{
  width:100%;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.22);
  color: var(--text);
  padding:12px 12px;
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(225,6,27,.75);
  box-shadow: 0 0 0 4px rgba(225,6,27,.16);
}
.form-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px}

.contact-items{display:grid; gap:12px; margin-top:12px}
.contact-item{
  display:flex; justify-content:space-between; gap:14px;
  border-bottom:1px dashed rgba(255,255,255,.12);
  padding-bottom:10px
}
.contact-item .label{color: rgba(255,255,255,.62)}
.divider{height:1px; background: rgba(255,255,255,.10); margin:14px 0}

/* Footer */
.site-footer{
  padding:26px 0;
  border-top:1px solid var(--border);
  background: rgba(11,11,15,.65);
}
.footer-inner{display:flex; justify-content:space-between; align-items:flex-start; gap:16px; flex-wrap:wrap}
.footer-links{display:flex; gap:14px; opacity:.85}
.footer-links a:hover{opacity:1}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .nav{display:none}
  .nav-toggle{display:inline-flex}
  .nav.open{
    display:flex;
    flex-direction:column;
    position:absolute;
    right:20px;
    top:70px;
    background: rgba(11,11,15,.95);
    border:1px solid var(--border);
    border-radius:16px;
    padding:12px;
    min-width: 220px;
  }
}

.cta-row{
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.center-hero {
  display: flex;
  justify-content: center;
}


.lead {
  text-align: center;
}
.work-slider-section {
  padding: 64px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}
.capabilities-title {
  font-weight: 700;            /* stronger presence */
  letter-spacing: -0.02em;     /* tighter, more premium */
  position: relative;
  display: inline-block;
}
.capabilities-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 14px;
  background: #e11d2e;
  box-shadow: 0 0 8px rgba(225, 29, 46, 0.5);
}

.section-subtitle {
  font-size: 1rem;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.work-slider { 
  position: relative; 
}

.work-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
}

.work-prev { left: -22px; }
.work-next { right: -22px; }

.work-track {
  display: flex;
  gap: 18px;

  overflow-x: auto;          /* allow horizontal scrolling */
  overflow-y: hidden;

  scroll-behavior: smooth;

  scroll-snap-type: x mandatory;   /* optional but recommended */

  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* old Edge / IE */
}

.work-track::-webkit-scrollbar {
  display: none;              /* Chrome / Safari */
}



.work-card {
  min-width: 320px;
  flex: 0 0 320px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.35);
}

.work-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);

  color: #ffffff;
}

.work-icon .icon {
  width: 32px;
  height: 32px;
}


.work-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.work-card p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

/* Responsive: show 1 card at a time on small screens */
@media (max-width: 900px) {
  .work-card {
    min-width: 85%;
    flex-basis: 85%;
  }
}

.work-prev,
.work-next {
  display: none;
}

.subsidiaries {
  min-height: 50vh;            /* half page feel */
  display: flex;
  align-items: center;         /* vertical center */
  justify-content: center;     /* horizontal center */
  text-align: center;
  padding: 80px 20px;
}


.subs-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  margin-top: 28px;
}

.subs-list {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.subs-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 10px 0;
}

.subs-item h3 {
  font-size: 56px;     /* big editorial title like your screenshot */
  line-height: 1.05;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.subs-item p {
  margin: 0;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
}

.subs-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 22px;
  background: rgba(255,45,45,0.95); /* 720 red accent */
  box-shadow: 0 0 0 6px rgba(255,45,45,0.12);
  flex: 0 0 auto;
}

.subs-divider {
  height: 1px;
  background: rgba(255,255,255,0.14);
  width: 100%;
}

.subs-visual {
  display: flex;
  justify-content: flex-end;
}

.subs-image-placeholder {
  width: min(420px, 100%);
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* Hover: subtle premium lift */
.subs-item:hover h3 {
  opacity: 0.95;
}
.subs-item:hover .subs-bullet {
  box-shadow: 0 0 0 6px rgba(255,45,45,0.18);
}

/* Responsive */
@media (max-width: 1000px) {
  .subs-grid {
    grid-template-columns: 1fr;
  }
  .subs-visual {
    justify-content: flex-start;
  }
  .subs-item h3 {
    font-size: 44px;
  }
}

/* Subsidiary item typography + spacing */
.subs-text h3 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 750;
  margin: 0 0 10px;
  line-height: 1.05;
}

.subs-text p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* Give each subsidiary item its own “module” feel */
.subs-item {
  display: flex;
  gap: 14px;
  padding: 26px 0;
  text-decoration: none;
  color: inherit;
}

.subs-item + .subs-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.product-lines {
  padding: 90px 0 110px;
}

.pl-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pl-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 26px 22px 22px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.35);
  position: relative;
}

.pl-icon {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;

  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.95);
}

.pl-icon .icon {
  width: 30px;
  height: 30px;
}

.pl-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.pl-card p {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.pl-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: rgba(255,45,45,0.95);
  font-weight: 600;
}

.pl-card:hover {
  border-color: rgba(255,45,45,0.28);
}

.pl-card:hover .pl-icon {
  color: rgba(255,45,45,0.95);
  border-color: rgba(255,45,45,0.35);
}

@media (max-width: 1100px) {
  .pl-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .pl-grid { grid-template-columns: 1fr; }
}
/* Default icon state */
.work-icon {
  color: #fff; /* icon stroke uses currentColor */
  transition: color 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

/* Hover state: when the whole card is hovered */
.work-card:hover .work-icon {
  color: #e11d2e; /* your brand red */
  filter: drop-shadow(0 0 8px rgba(225, 29, 46, 0.6));
  transform: translateY(-2px);
}
.collabs {
  padding: 90px 0;
  background: radial-gradient(900px 400px at 50% 0%, rgba(225, 29, 46, 0.12), transparent 60%);
}

.collabs-inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.collabs-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.collabs-header p {
  margin: 0;
  opacity: 0.85;
  max-width: 620px;
}

.collabs-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 28px 0 34px;
}

/* Logo wall */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;                     /* ⬅️ spacing between cards */
  justify-items: center;         /* ⬅️ center each logo-chip */
  align-items: center;
  margin: 0 auto;                /* ⬅️ center the whole group */
}


.logo-chip {
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.logo-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 29, 46, 0.55);
  background: rgba(225, 29, 46, 0.08);
}

/* Details box */
.collabs-details {
  border-radius: 22px;
  padding: 26px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.collabs-details h3 {
  margin: 0 0 12px;
  font-size: 18px;
  opacity: 0.9;
}

.collabs-details ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.collabs-details li {
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 980px) {
  .logo-wall { grid-template-columns: repeat(3, minmax(120px, 1fr)); }
}

@media (max-width: 520px) {
  .logo-wall { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  .logo-chip { height: 56px; border-radius: 14px; }
}
.logo-img{
  max-height: 28px;
  max-width: 120px;
  opacity: 0.92;
  filter: grayscale(100%);
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.logo-chip:hover .logo-img{
  filter: grayscale(0%);
  opacity: 1;
}
.logo-chip {
  height: 150px;              /* ⬅️ bigger stage */
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}


/* Single logos */
.logo-img {
  max-height: 54px;
  max-width: 170px;
  width: auto;
  opacity: 0.95;
  filter: grayscale(100%);
  transition: 
    filter 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.logo-chip:hover .logo-img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}

/* Dual logo refinement */
.dual-logo .logo-img {
  max-height: 44px;
}
/* Default (BBC, Spotify) */
.logo-img {
  max-height: 62px;
  max-width: 190px;
  width: auto;
}

/* Logos that need presence */
.logo-lg {
  max-height: 90px;           /* 🔥 THIS is the jump */
  max-width: 260px;
}

/* Dual logos (Gondwana + Komplex) */
.dual-logo .logo-lg {
  max-height: 72px;
}
.logo-chip {
  overflow: visible;
}
.logo-chip:hover .logo-img {
  transform: scale(1.08);
}

body {
  background: #07070b;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 50% 30%, rgba(225, 29, 46, 0.28), transparent 60%),
    radial-gradient(700px 420px at 80% 15%, rgba(225, 29, 46, 0.18), transparent 62%);
}

.hero h1 {
  text-shadow:
    0 0 30px rgba(225, 29, 46, 0.25),
    0 0 80px rgba(225, 29, 46, 0.15);
}

@keyframes glowDrift {
  0% { background-position: 50% 30%, 80% 15%; }
  100% { background-position: 48% 32%, 78% 18%; }
}

body::before {
  animation: glowDrift 20s ease-in-out infinite alternate;
}

.btn-primary {
  box-shadow: 0 10px 30px rgba(225, 29, 46, 0.45);
}

.btn-secondary {
  opacity: 0.85;
}

.nav {
  background: rgba(7, 7, 11, 0.55);
  backdrop-filter: blur(12px);
}

.hero {
  padding-bottom: 140px;
}

.section-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px; /* adjust to match your navbar height */
}

.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

@media (max-width: 600px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cta-row .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 16px; /* bigger tap target */
    border-radius: 14px;
  }
}

.hero-subtext {
  text-align: center;
  margin: 18px auto 28px;
  max-width: 520px;
  opacity: 0.85;
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.6;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Logo size + rotation */
.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  animation: logo-spin 14s linear infinite;
  transform-origin: center;
}

/* Smooth continuous rotation */
@keyframes logo-spin {
  from { transform: rotate(0deg) scale(1.8); }
  to   { transform: rotate(360deg) scale(1.8); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo {
    animation: none;
  }
}

.brand:hover .brand-logo {
  animation-play-state: paused;
}

.header-inner {
  min-height: 80px;
}

.brand-logo{
  transform: scale(1.8);       /* try 1.4 – 1.8 */
  transform-origin: center;
}

.header,
.header-inner{
  overflow: visible;
}

.site-footer {
  background: #000;
  padding: 70px 24px 30px;
  color: #fff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}

/* Brand / Subscribe */
.footer-brand {
  background: #121212;
  border-radius: 18px;
  padding: 28px;
}

.footer-logo {
  width: 90px;
  height: auto;
  margin-bottom: 16px;
}

.footer-brand h4 {
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 18px;
}

.subscribe-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  margin-bottom: 12px;
}

.subscribe-form button {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #e11d2e; /* 720 red */
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.subscribe-form button:hover {
  background: #ff2f45;
}

/* Columns */
.footer-col h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

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

/* Contact */
.contact-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-icon {
  color: #e11d2e;
}

.footer-phone {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 18px;
  background: #1a1a1a;
  color: #e11d2e;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.footer-email {
  display: block;
  margin-top: 10px;
  color: #ccc;
  text-decoration: none;
}

.footer-email:hover {
  color: #fff;
}

/* Divider */
.footer-divider {
  margin: 50px auto 20px;
  max-width: 1200px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #777;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    order: 1;
  }
}


.subsidiaries {
  min-height: 50vh;              /* half-page feel */
  display: flex;
  align-items: center;           /* vertical centering */
  justify-content: center;       /* horizontal centering */
  text-align: center;
  padding: 80px 20px;
}

.subsidiaries .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.highlight-720 {
  color: #e11d2e; /* your red */
}

.section-subtitle {
  margin-bottom: 18px;     /* space before 720 Music Lab */
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}

.ecosystem-eyebrow {
  margin-top: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: #e11d2e; /* 720 red */
  position: relative;
  display: inline-block;
  opacity: 0.9;
}

.ecosystem-eyebrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 8px;
  background: #e11d2e;
  box-shadow: 0 0 6px rgba(225, 29, 46, 0.4); /* subtle glow */
}

.pl-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.pl-card {
  pointer-events: auto;
}

.pl-card::before,
.pl-card::after {
  pointer-events: none;
}

html {
  scroll-behavior: smooth;
}

#contact {
  scroll-margin-top: 120px;
}

/* About Intro (NEW) */
/* About intro — more dramatic */
.about-intro{
  max-width: 1020px;
  margin: 0 0 40px;
  padding: 28px 26px 18px;
  border-left: 2px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  border-radius: 18px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}


.about-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  opacity: 0.9;
  margin: 0 0 16px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

/* tiny red dot like the ecosystem bullets */
.about-kicker::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.95);
  box-shadow: 0 0 18px rgba(220, 38, 38, 0.35);
}


.about-headline{
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.about-lead:last-of-type{
  margin-bottom: 18px;
}

.about-chips{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}


.about-lead {
  margin: 0 0 12px;
  font-size: 1.02rem;
  line-height: 1.7;
  opacity: 0.88;
}

/* Optional: tighten the existing subtitle spacing since we added an intro */
.work-slider-section .section-subtitle {
  margin-top: 18px;
}

/* Make the intro feel like a manifesto */
.about-intro {
  margin-top: 60px;
  max-width: 980px;
  margin: 0 0 28px;
  padding: 18px 18px 0;
  border-left: 2px solid rgba(255,255,255,0.12);
}

.about-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.9;
}

/* Proof chips */
.about-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip{
  font-size: 0.88rem;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  opacity: 0.92;
  backdrop-filter: blur(10px);
}
/* Section spacing divider (luxury breathing space) */
.about-divider{
  margin-top: clamp(48px, 8vw, 90px);  /* the “space” before the whole slider block */
  padding-top: clamp(28px, 5vw, 60px); /* 👈 this pushes the subtitle down INSIDE the slider */
}

/* Slider intro text */
.slider-intro {
  margin-top: 0;
  margin-bottom: 28px;
  max-width: 600px;
  opacity: 0.8;
}

/* Red highlight for key words */
.highlight {
  color: #dc2626; /* your brand red */
  font-weight: 600;
}

/* =========================
   MUSIC LAB PILLARS (dramatic)
   ========================= */

.ml-pillars{
  padding: 70px 0 110px;
}

.ml-pillars-kicker{
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin: 0 0 28px;
}

.ml-pillars-list{
  display: grid;
  gap: 26px;
}

.ml-pillar{
  position: relative;
  padding-left: 56px; /* room for the cut-off card */
}

.ml-pillar-text h2{
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.ml-pillar-text p{
  margin: 10px 0 0;
  font-size: 1.05rem;
  opacity: 0.85;
}

.ml-line{
  margin-top: 22px;
  height: 1px;
  width: min(880px, 100%);
  background: linear-gradient(90deg,
    rgba(220,38,38,0.0),
    rgba(220,38,38,0.45),
    rgba(255,255,255,0.10)
  );
  opacity: 0.9;
}

/* The “incomplete card” accent */
.ml-peek{
  position: absolute;
  left: 0;
  top: 10px;
  width: 42px;
  height: 64px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(120px 80px at 60% 20%, rgba(220,38,38,0.22), transparent 65%),
    rgba(255,255,255,0.04);
  box-shadow: 0 18px 70px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Make it feel “cut off” + more designed */
.ml-peek::before{
  content:"";
  position:absolute;
  left: -14px;
  top: 12px;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  opacity: 0.55;
}

.ml-peek::after{
  content:"";
  position:absolute;
  right: -22px;
  bottom: -22px;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(220,38,38,0.18);
  filter: blur(1px);
  opacity: 0.7;
}

/* Subtle hover: feels premium */
.ml-pillar:hover .ml-peek{
  border-color: rgba(220,38,38,0.35);
}
.ml-pillar:hover .ml-line{
  background: linear-gradient(90deg,
    rgba(220,38,38,0.0),
    rgba(220,38,38,0.65),
    rgba(255,255,255,0.10)
  );
}

/* Scale up Music Lab pillars typography */
.ml-pillars .subs-text h2 {
  font-size: 45px;        /* adjust: 42–48px sweet spot */
  line-height: 1.15;
}

.ml-pillars .subs-text p {
  font-size: 17px;
  margin-top: 8px;
}

/* Space after 720 Tech before Contact section */
.subs-tech {
  margin-bottom: 160px;
}

/* ===== 720 CTA Card ===== */
.cta720 {
  padding: 70px 0;
}

.cta720-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 52px 56px;
  max-width: 1180px;
  margin: 0 auto;

  /* 720 theme background */
  background:
    radial-gradient(900px 400px at 75% 30%, rgba(180, 0, 35, 0.35), transparent 60%),
    radial-gradient(700px 420px at 30% 70%, rgba(255, 0, 60, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.96));

  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cta720-content {
  max-width: 650px;
}

.cta720 h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 650;
  color: #fff;
}

.cta720 p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
}

/* Button */
.cta720-btn {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;

  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.cta720-btn:hover {
  transform: translateY(-50%) scale(1.03);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.cta720-btn:active {
  transform: translateY(-50%) scale(0.99);
}

/* Scribble accents */
.cta720-scribble {
  position: absolute;
  width: 280px;
  height: 120px;
  opacity: 0.22;
  filter: blur(0.2px);
  background:
    repeating-linear-gradient(
      10deg,
      rgba(255, 0, 60, 0.9) 0px,
      rgba(255, 0, 60, 0.9) 10px,
      transparent 10px,
      transparent 22px
    );
  border-radius: 999px;
  pointer-events: none;
}

.cta720-scribble--tl {
  top: -38px;
  left: -30px;
  transform: rotate(-8deg);
}

.cta720-scribble--br {
  bottom: -42px;
  right: -34px;
  transform: rotate(12deg);
}

/* Responsive */
@media (max-width: 900px) {
  .cta720-card {
    padding: 42px 26px;
  }

  .cta720-btn {
    position: static;
    transform: none;
    margin-top: 22px;
  }

  .cta720-btn:hover,
  .cta720-btn:active {
    transform: none;
  }
}
html {
  scroll-behavior: smooth;
}

/* ===== Home services teaser (lighter pl-card variant) ===== */
.services-teaser {
  padding: 90px 0;
}

.services-teaser-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.pl-card--tease {
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 22px 24px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.pl-card--tease:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

/* tighten typography */
.pl-card--tease h3 {
  font-size: 22px;
  margin: 0;
}

.pl-card--tease p {
  font-size: 14.5px;
  margin-top: 6px;
  opacity: 0.75;
}

/* icon slightly smaller */
.pl-card--tease .pl-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

/* CTA */
.services-teaser-cta {
  margin-top: 28px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;

  font-weight: 600;
  text-decoration: none;
  color: #fff;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

section[id] {
  scroll-margin-top: 110px; /* match navbar height */
}

#about h2 {
  margin-bottom: 100px;
}

section[id] { scroll-margin-top: 110px; }



/* ===== HERO: TRUE CENTERED VERSION ===== */
#home .container.hero-grid.center-hero {
  display: grid;
  place-items: center;          /* centers content horizontally + vertically */
  text-align: center;
}

/* Limit width so it feels premium */
#home .container.hero-grid.center-hero > div {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

/* Center all hero text */
#home .kicker,
#home h1,
#home .hero-subtext {
  text-align: center;
}

/* Center CTA buttons */
#home .cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Default (desktop): hide hamburger */
.nav-toggle {
  display: none;
}

/* Mobile: show hamburger + hide desktop links */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav .nav-link,
  .nav .btn {
    display: none;
  }
}

/* Desktop: hide hamburger */
.nav-toggle { display: none; }

/* Mobile menu base */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  /* turn your nav into a slide-down panel */
  .nav {
    position: absolute;
    top: 72px;              /* adjust to your navbar height */
    right: 16px;
    left: 16px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(10,10,12,0.92);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    display: none;          /* hidden by default */
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
  }

  /* show menu when header/nav is open */
  .nav.is-open {
    display: flex;
  }

  /* make links look good in the panel */
  .nav .nav-link { display: block; }
  .nav .btn { width: 100%; text-align: center; }
}

@media (max-width: 900px) {
  .nav {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.is-open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.footer-socials {
  display: flex;
  gap: 18px;              /* more breathing room */
  margin-top: 14px;
}

.footer-socials a {
  width: 48px;            /* ⬅️ bigger click area */
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bdbdbd;
  border-radius: 50%;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-socials svg {
  width: 26px;            /* ⬅️ actual icon size */
  height: 26px;
}

.footer-socials a:hover {
  color: #ff1f3d;         /* 720 red */
  transform: translateY(-3px);
}

/* Mobile hamburger menu */
.nav-toggle {
  width: 36px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff; /* matches your nav text */
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Always hide hamburger by default (desktop) */
.nav-toggle {
  display: none !important;
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
  }
}

.brand-name {
  margin-top: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: #e11d2e; /* 720 red */
  position: relative;
  display: block;
  opacity: 0.9;
  width: fit-content;
  margin-bottom: 10px;
}

.brand-name::after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 8px;
  background: #e11d2e;
  box-shadow: 0 0 6px rgba(225, 29, 46, 0.4);
}

.hero-labels{
  display: flex;
  flex-direction: column;
  align-items: center; /* use center if your hero is centered */
  gap: 10px;
}

/* Show line breaks on desktop */
.br-desktop { display: inline; }

/* Hide those line breaks on mobile */
@media (max-width: 600px){
  .br-desktop { display: none; }
}

.hero-title .line{
  display: block;
}


