:root {
  --blue-900: #11279b;
  --blue-800: #2038b2;
  --blue-700: #2c45bb;
  --blue-600: #3751cb;
  --blue-100: #dce8fa;
  --page-bg: #efefef;
  --paper: #ffffff;
  --text: #12215d;
  --muted: rgba(18, 33, 93, 0.82);
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 18px 46px rgba(5, 20, 79, 0.14);
  --container: 1240px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Neue Haas Grotesk Display Pro", Arial, sans-serif;
}

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

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

.container {
  width: min(calc(100% - 84px), var(--container));
  margin: 0 auto;
}

@media (min-width: 1540px) {
  .container {
    width: calc(100% - 300px);
    max-width: none;
  }
}

@font-face {
  font-family: 'IvyPresto Display Light Italic';
  src: url('assets/fonts/Ivy-Presto-Display-Light.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'IvyPresto Headline Bold';
  src: url('assets/fonts/Ivy-Presto-Headline-Semi-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'IvyPresto Headline';
  src: url('assets/fonts/Ivy-Presto-Headline-Light.otf') format('opentype');
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('assets/fonts/NeueHaasGrotDisp-45Light-Trial.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro 56 Italic';
  src: url('assets/fonts/NeueHaasGrotDisp-56Italic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

.serif-italic {
  font-family: "IvyPresto Display Light Italic", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  border-radius: 999px;
  padding: 10px 32px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  gap: 12px;
  outline: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-solid,
.btn-primary {
  background: #081E79;
  color: #FFFFFF;
  border: 1px solid #081E79;
}

.btn-solid:hover,
.btn-primary:hover {
  background: #0000AB;
  border-color: #0000AB;
  color: #FFFFFF;
}

.btn-outline,
.btn-secondary {
  background: transparent;
  color: #081E79;
  border: 1px solid #081E79;
}

.btn-outline:hover,
.btn-secondary:hover {
  background: #0000AB;
  color: #FFFFFF;
  border-color: #0000AB;
}

.btn-small {
  padding: 10px 60px;
  font-size: 24px;
}

/* Specific Sizes from Design Image */
.btn-cta {
  padding: 10px 60px !important;
  font-size: 24px !important;
}

.btn-watch {
  padding: 10px 40px !important;
  font-size: 24px !important;
}

.btn-disabled {
  background: #7D88B0 !important;
  color: #FFFFFF !important;
  border-color: #7D88B0 !important;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.hero {
  position: relative;
  min-height: 880px;
  background:
    linear-gradient(90deg, rgba(8, 13, 25, 0.74) 0%, rgba(8, 13, 25, 0.63) 24%, rgba(8, 13, 25, 0.22) 58%, rgba(8, 13, 25, 0.08) 100%),
    url("assets/banners/homepage1.webp") right top / cover no-repeat;
  overflow: hidden;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;

  background: rgba(235, 235, 235, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: "Neue Haas Grotesk Display Pro 95 light", Arial, sans-serif;
  box-sizing: border-box;
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
  z-index: 102;
  /* Above panel and overlay */
}

.brand {
  display: block;
  max-height: 32px;
}

.brand img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 95px;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-size: 20px;
  color: #202020;
}

.nav-links a.active {
  color: #051143;
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

.btn-nav {
  min-width: 102px;
  height: 39px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  z-index: 103;
  /* Above navbar content */
}

.icon-menu {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 16px;
}

.icon-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: 0.3s;
}

/* Header Overlay */
.header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 99;
}

.header-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Work Panel */
.work-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 240px;
  background: #DCEAFF;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
  z-index: 100;
  overflow: hidden;
  display: flex;
  visibility: hidden;
  pointer-events: none;
}

.work-panel.active {
  transform: translateY(0);
  visibility: visible;
  pointer-events: all;
}

.work-panel-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.work-panel-visual {
  height: 180px;
  width: 460px;
  border-radius: 8px;
  overflow: hidden;
}

.work-panel-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: opacity 0.25s ease-in-out;
}

.work-panel-links {
  width: 280px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-panel-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

.work-panel-links li {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to left, rgba(8, 30, 121, 0.3) 0%, rgba(8, 30, 121, 0) 100%) 1;
}

.work-panel-links li:last-child {
  border-bottom: none;
}

.work-panel-links a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  color: #081E79;
  font-family: inherit;
  font-weight: 500;
  font-style: normal;
  transition: all 0.3s ease;
}


.work-panel-links a:hover {
  color: #0000AB;
  transform: translateX(-5px);
  font-style: italic;
  font-weight: 600;
}

.nav-wrap {
  position: fixed;
  /* Changed to fixed for consistency across all pages */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(235, 235, 235, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: "Neue Haas Grotesk Display Pro 95 light", Arial, sans-serif;
  box-sizing: border-box;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 210px;
}

.hero-content h1 {
  margin: 0;
  max-width: 616px;
  color: #fff;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 350;

  font-family: "Neue Haas Grotesk Display Pro 95 Light", Arial, sans-serif;
}

.hero-content h1 span {
  display: block;
  font-size: 48px;
  line-height: 0.98;
  margin-top: 6px;
}

.hero-content .btn {
  margin-top: 42px;
}

.domains-sticky-container {
  height: auto;
  position: relative;
}

.domains-wrap {
  position: relative;
  z-index: 3;
  margin-top: -120px;
  padding-bottom: 140px;
}

.domains-card {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.domains-head {
  display: grid;
  grid-template-columns: 1.4fr 240px 1.5fr;
  align-items: center;
  gap: 40px;
  padding: 38px 44px 34px;
  background: #081E79;
  color: #f6f8ff;
}

.domains-head p {
  grid-column: 2 / -1;
  margin: 0;
  font-size: 32px;
  line-height: 1.4;
  font-family: "Neue Haas Grotesk Display Pro 95 Light", Arial, sans-serif;
}

.domains-title {
  font-family: 'IvyPresto Headline', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: 0;
}

.domains-head a {
  font-size: 14px;
  font-family: "Neue Haas Grotesk Display Pro 95 Light", Arial, sans-serif;
}

.domains-head a {
  text-decoration: underline;
}

.domain-row {
  display: flex;
  align-items: center;
  height: 82px;
  padding: 0 44px;
  background: #081E79;
  color: #fff;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.domain-row:not(.last-row)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 44px;
  right: 44px;
  height: 1px;
  background: #fff;
  opacity: 0.2;
}

.domain-row .domain-name {
  font-family: inherit;
  font-weight: 450;
  font-style: italic;
  font-size: 32px;
  line-height: 1.2;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1.6;
  opacity: 1;
  margin: 0;
}

.active-row {
  display: grid;
  grid-template-columns: 1.4fr 240px 1.5fr;
  height: auto;
  min-height: 212px;
  padding: 40px 44px;
  background: linear-gradient(91.17deg, #081E79 -5.72%, #374FB5 53.12%, #081E79 110.46%);
  color: #fff;
  align-items: center;
}

.active-row .domain-name {
  color: #fff;
  opacity: 1;
  line-height: 1.3;
  margin: 0;
}

.domain-preview {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: none;
  /* Hide when not active to prevent overflow */
}

.active-row .domain-preview {
  display: block;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.domain-preview img {
  width: 240px;
  height: 122px;
  object-fit: cover;
  border-radius: 4px;
}

.domain-copy {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  /* Hide when not active to prevent overflow */
}

.active-row .domain-copy {
  display: block;
  font-size: 22px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  opacity: 1;
  transform: translateX(0);
}

.last-row {
  border-bottom: none;
}

.active-row.last-row {
  height: auto;
}

@media (min-width: 761px) {

  /* Prevent the default .active-row class from pre-expanding rows unless hovered on desktop */
  .domain-row {
    display: grid !important;
    grid-template-columns: 1fr 0px 0px !important;
    gap: 0px !important;
    align-items: center !important;
    height: 82px !important;
    padding: 0 44px !important;
    background-color: #081E79 !important;
    background-image: none !important;
    color: #fff !important;
    min-height: unset !important;
    overflow: hidden !important;
    transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
      grid-template-columns 0.5s cubic-bezier(0.25, 1, 0.5, 1),
      gap 0.5s cubic-bezier(0.25, 1, 0.5, 1),
      background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1),
      padding 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
  }

  .domain-row .domain-preview {
    display: block !important;
    visibility: hidden !important;
    opacity: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transform: translateY(15px) !important;
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s !important;
    pointer-events: none !important;
  }

  .domain-row .domain-copy {
    display: block !important;
    visibility: hidden !important;
    font-size: 22px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    margin: 0 !important;
    opacity: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transform: translateY(15px) !important;
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s !important;
    pointer-events: none !important;
  }

  .domain-row .domain-name {
    opacity: 1 !important;
    transition: opacity 0.4s ease !important;
  }

  /* Expand the row ONLY on hover with buttery smooth GPU transition */
  .domain-row:hover {
    height: 212px !important;
    padding: 40px 44px !important;
    background: linear-gradient(91.17deg, #081E79 -5.72%, #374FB5 53.12%, #081E79 110.46%) !important;
    grid-template-columns: 1.4fr 240px 1.5fr !important;
    gap: 40px !important;
  }

  .domain-row:hover .domain-name {
    color: #fff !important;
    opacity: 1 !important;
  }

  .domain-row:hover .domain-preview {
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 300px !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1) 0.1s,
      transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) 0.1s,
      visibility 0s 0.1s !important;
  }

  .domain-row:hover .domain-copy {
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 300px !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1) 0.15s,
      transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) 0.15s,
      visibility 0s 0.15s !important;
  }
}


.stats-section {
  background: #DCEAFF;
  padding: 88px 0 84px;
}

.intro-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.section_header {
  font-family: 'IvyPresto Display Light Italic';
  font-weight: 400;
  font-style: italic;
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 24px;
}

.intro-copy {
  margin: 0;
  width: 100%;
  max-width: 900px;
  font-family: "Neue Haas Grotesk Display Pro 95 light", Arial, sans-serif;
  font-weight: 350;
  font-style: normal;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: -1.9%;
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 88px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: 0;
}

.stat-item strong {
  display: block;
  color: #1832b9;
  font-family: 'IvyPresto Headline', Georgia, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -1.9%;
}

.stat-item span {
  display: block;
  margin-top: 12px;
  font-family: "Neue Haas Grotesk Display Pro 95 light", Arial, sans-serif;
  font-weight: 350;
  font-style: normal;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: capitalize;
  color: rgba(18, 33, 93, 0.7);
}

.streams-section {
  background: #f4f4f4;
  padding: 118px 0 108px;
}

.streams-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 82px;
  align-items: start;
}

.streams-copy h2 {
  margin: 0 0 28px;
  font-family: "Neue Haas Grotesk Display Pro 95 light", Arial, sans-serif;
  font-weight: 450;
  font-style: normal;
  font-size: 42px;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--text);
}

.streams-copy h2 span {
  font-family: "Neue Haas Grotesk Display Pro", Arial, sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 42px;
  line-height: 1.3;
  letter-spacing: 0;
}

.streams-copy p {
  margin: 0;
  max-width: 950px;
  font-size: 24px;
  line-height: 1.75;
  color: var(--muted);
  font-family: "Neue Haas Grotesk Display Pro 95 light", Arial, sans-serif;
}

.streams-copy .btn {
  margin-top: 34px;
}

.streams-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.stream-card {
  min-height: 250px;
  background: #081E79;
  color: #fff;
  border-radius: 6px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stream-card:hover {
  background: linear-gradient(0deg, rgba(217, 217, 217, 0.1), rgba(217, 217, 217, 0.1)),
    linear-gradient(158.5deg, #081E79 14.13%, #4360D8 108.94%);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(8, 30, 121, 0.3);
}

.stream-card-header {
  display: flex;
  flex-direction: column;
  margin-bottom: auto;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stream-card:hover .stream-card-header {
  flex-direction: row;
  align-items: center;
  gap: 16px;
}




.mini-bars {
  display: flex;
  max-height: 40px;
  gap: 4px;
}

.stream-card-header h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  font-family: "Neue Haas Grotesk Display Pro";
  font-style: italic;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stream-card:not(:hover) .stream-card-header h3 {
  position: absolute;
  bottom: 32px;
  left: 30px;
}


.mini-bars img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.mini-bars span {
  display: inline-block;
  width: 5px;
  border-radius: 2px 2px 0 0;
  background: rgba(160, 175, 255, 0.95);
}

.mini-bars span:nth-child(1) {
  height: 11px;
}

.mini-bars span:nth-child(2) {
  height: 16px;
}

.mini-bars span:nth-child(3) {
  height: 9px;
}

.stream-card-words {
  font-family: "Neue Haas Grotesk Display Pro", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}

.stream-card:hover .stream-card-words {
  opacity: 1;
  transform: translateY(0);
}


.media-section {
  background: #f4f4f4;
}

.media-band {
  min-height: 820px;
  background: url("assets/testimonial_card.png") center center / cover no-repeat;
  position: relative;
}

.media-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 250, 250, 0.10) 0%, rgba(250, 250, 250, 0.02) 42%, rgba(250, 250, 250, 0.06) 100%);
}

.media-inner {
  position: relative;
  z-index: 1;
  min-height: 820px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 90px;
}

.media-slider {
  position: relative;
  width: 100%;
}

.media-slide {
  display: none;
  width: 100%;
  animation: fadeEffect 0.6s ease-in-out;
}

.media-slide.active {
  display: block;
}

@keyframes fadeEffect {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

.media-card {
  width: min(100%, 660px);
  min-height: 290px;
  /* Set a consistent minimum height */
  background: rgba(249, 249, 249, 0.94);
  padding: 64px 34px 28px;
  border-radius: 6px;
  margin: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Title and para will stay together at the top */
}

.slider-dots {
  position: absolute;
  top: 40px;
  left: 34px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  background: rgba(18, 33, 93, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.slider-dots .dot.active {
  background: #12215d;
  transform: scale(1.1);
}

.media-card h2 {
  margin: 0 0 0.8em;
  font-size: 30px;
  line-height: 1.06;
}

.media-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.media-card a {
  color: #081E79;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  margin-top: auto;
  /* Pushes the link to the bottom of the flex container */
}

.contact-section {
  background: #f4f4f4;
  padding: 82px 0 84px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 0.5fr;
  gap: 88px;
  background: var(--blue-100);
  border-radius: 4px;
  padding: 64px 44px 60px;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-title {
  font-family: 'IvyPresto Headline', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
  line-height: 1.3;
  margin: 0;
}

.contact-main {
  font-size: 42px;
  line-height: 1.25;
  color: #051143;
}

.contact-actions {
  margin-top: 10px;
}

.contact-right {
  padding-top: 48px;
  /* Offset to align with main text */
}

.contact-info {
  margin-bottom: 40px;
}

.contact-info h3,
.contact-socials h3 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1;
  font-family: 'IvyPresto Headline', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: #051143;
}

.contact-info p {
  margin: 0;
  font-size: 24px;
  color: #051143;
}

.contact-socials ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-socials li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 24px;
  color: #051143;
}

.dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(17, 39, 155, 0.12);
  color: #2c43b7;
  font-size: 11px;
  font-weight: 700;
}

.contact-actions {
  grid-column: 1 / 2;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 8px;
}

.text-link {
  color: #2440bf;
  font-size: 15px;
}

.footer {
  background: #081E79;
  color: rgba(255, 255, 255, 0.96);
  padding: 74px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.68fr 0.68fr 0.68fr 1.4fr;
  gap: 52px;
}

.footer h4 {
  margin: 0 0 40px;
  font-size: 32px;
  /* Reduced size to match display style better */
  line-height: 1;
  font-family: "Neue Haas Grotesk Display Pro 56 Italic";
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.05em;
}

.footer a {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-title {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.1;
  color: #FFFFFF;
}

.footer-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-form input {
  width: 500px;
  height: 59px;
  border-radius: 999px;
  border: none;
  outline: none;
  padding: 0 18px;
  background: rgba(223, 229, 255, 0.45);
  color: #fff;
  font-size: 13px;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.footer-form button {
  width: 200px;
  height: 59px;
  border-radius: 50px;
  padding: 8px 40px;
  font-weight: 500;
  cursor: pointer;
  background-color: #DCEAFF;
  color: #081E79;
  border: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-socials span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 18px;
  font-weight: 700;
}



.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 88px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.mobile-only {
  display: none;
}

@media (max-width: 1100px) {
  .mobile-only {
    display: none;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .hero-content h1,
  .streams-copy h2,
  .domains-head p,
  .contact-main,
  .footer-title {
    font-size: clamp(20px, 4vw, 38px);
  }

  .intro-row,
  .streams-grid,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .active-row {
    grid-template-columns: 1fr;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .domains-head {
    grid-template-columns: 1fr;
  }

  .domains-head p {
    grid-column: auto;
  }

  .domain-preview img {
    margin: 8px 0;
  }

  .contact-actions {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .navbar {
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .hero {
    min-height: 720px;
    background-position: 72% top;
  }

  .hero-content {
    padding-top: 160px;
  }

  .hero-content h1,
  .hero-content h1 span {
    max-width: 100%;
    font-size: 28px;
  }

  .domains-head,
  .contact-card {
    padding: 28px 20px;
  }

  .contact-card {
    gap: 44px;
  }

  .domain-row {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats-section {
    padding-top: 32px;
  }

  .streams-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stream-card {
    min-height: 160px;
    padding: 16px;
  }

  .stream-card-header h3 {
    font-size: 20px;
  }

  .stream-card:not(:hover) .stream-card-header h3 {
    bottom: 16px;
    left: 16px;
  }

  .stream-card-words {
    font-size: 13px;
  }

  .mini-bars img {
    height: 24px;
  }

  .intro-copy {
    font-size: 17px;
  }

  .streams-copy p {
    font-size: 17px;
  }

  .streams-copy h2 span {
    font-family: "Neue Haas Grotesk Display Pro", Arial, sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .media-section {
    padding-bottom: 300px;
  }

  .media-band,
  .media-inner {
    min-height: 350px;
  }

  .media-inner {
    padding-bottom: 0;
  }

  .media-slider {
    margin-bottom: -300px;
  }

  .media-card h2 {
    font-size: 26px;
    line-height: 1.1;
  }

  .media-card p {
    font-size: 17px;
    line-height: 1.7;
  }

  .contact-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-form input {
    width: 100%;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .footer-form button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile Menu Overrides */
@media (max-width: 760px) {
  .mobile-only {
    display: flex !important;
  }

  .nav-links {
    display: none;
  }

  .nav-wrap {
    background: #081E79;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-wrap.menu-open {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-wrap.menu-open .navbar {
    order: 1;
    width: 100%;
    padding: 10px 20px;
    max-height: none;
  }

  .nav-wrap.menu-open .work-panel {
    order: 2;
  }

  .brand {
    color: #fff;
  }

  .nav-wrap.menu-open .brand {
    color: #fff;
  }

  .nav-wrap.menu-open .btn-nav {
    color: #fff;
  }

  .nav-wrap.menu-open .btn-nav .icon-menu span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-wrap.menu-open .btn-nav .icon-menu span:nth-child(2) {
    opacity: 0;
  }

  .nav-wrap.menu-open .btn-nav .icon-menu span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .nav-wrap.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
    margin-top: 20px;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-wrap.menu-open .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav-wrap.menu-open .nav-links a {
    color: #fff;
    font-size: 24px;
    padding: 20px 0;
    display: block;
    text-decoration: none;
    font-weight: 300;
  }

  .btn-nav {
    font-size: 0;
    min-width: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    color: #fff;
  }

  .btn-nav .icon-menu {
    width: 24px;
    gap: 5px;
  }

  /* Hide desktop work panel completely on mobile */
  .work-panel {
    display: none !important;
  }

  /* Style the newly added mobile Work item */
  .work-mobile-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    border-bottom: none !important;
  }

  .work-mobile-label {
    color: #fff;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    text-decoration: underline;
    margin-bottom: 15px;
    padding: 20px 0;
  }

  .work-mobile-sub {
    list-style: none;
    padding-left: 50%;
    margin: -60px 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .work-mobile-sub li {
    border-bottom: none !important;
  }

  .work-mobile-sub a {
    padding: 0 !important;
    font-size: 20px !important;
    font-weight: 300 !important;
  }

  /* Mobile Domains Card */
  .domains-sticky-container {
    height: auto;
  }

  .about-gallery {
    padding: 0px 0 120px !important;
  }

  .domains-wrap {
    position: relative;
    top: auto;
    margin-top: -120px;
    z-index: 10;
    padding-bottom: 50px;
  }

  .domains-card {
    background: #081E79;
  }

  .domains-head {
    padding: 30px 20px 20px;
    gap: 16px;
  }

  .domains-head p {
    font-size: 18px;
    line-height: 1.4;
  }

  .domain-dots {
    display: none;
    gap: 8px;
    margin-top: 10px;
  }

  .domain-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
  }

  .domain-dots .dot.active {
    background: #fff;
  }

  .domain-row {
    display: none;
    padding: 0 20px 30px;
    border: none;
  }

  .domain-row.active-row {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 16px;
    background: transparent;
  }

  .domain-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 0;
  }

  .active-row .domain-name {
    font-size: 24px;
    line-height: 1.2;
    order: 2;
    align-self: flex-start;
    text-align: left;
  }

  .domain-preview {
    order: 1;
    width: 100%;
  }

  .active-row .domain-copy {
    font-size: 14px;
    order: 3;
    opacity: 1;
    transform: none;
  }
}