:root {
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Outfit", sans-serif;
  --font-impact: "Syne", sans-serif;

  --brand-orange: #F27D26;
  --brand-cyan: #00F2FF;
  --dark-bg: #050505;
  --dark-card: #0A0A0C;

  --text: #0a0a0a;
  --muted: rgba(0, 0, 0, .6);
  --muted2: rgba(0, 0, 0, .5);
  --border: rgba(0, 0, 0, .08);
  --border2: rgba(0, 0, 0, .06);
  --glass-bg: rgba(0, 0, 0, .02);
  --glass-border: rgba(0, 0, 0, .08);
  --shadow: 0 30px 80px -50px rgba(0, 0, 0, .35);
  --container: 1120px;
}

html.dark {
  --text: #fff;
  --muted: rgba(255, 255, 255, .65);
  --muted2: rgba(255, 255, 255, .5);
  --border: rgba(255, 255, 255, .14);
  --border2: rgba(255, 255, 255, .08);
  --glass-bg: rgba(255, 255, 255, .05);
  --glass-border: rgba(255, 255, 255, .12);
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%;
}

/* Simple, slim, and transparent scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

html.dark {
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

html::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

html.dark::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}

html.dark::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: #fff;
  transition: background-color .5s ease, color .5s ease;
  overflow-x: hidden;
}

html.dark body {
  background: var(--dark-bg)
}

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

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

button {
  font: inherit
}

::selection {
  background: rgba(242, 125, 38, .3)
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .02;
  transition: opacity .5s ease;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

html.dark .noise {
  opacity: .05
}

.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: background-color .5s ease, border-color .5s ease, transform .3s ease;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 1000;
  background: transparent;
}

.scroll-progress__bar {
  height: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-cyan));
}

.text-gradient-fire {
  background: linear-gradient(90deg, var(--brand-orange), #fb923c, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-cool {
  background: linear-gradient(90deg, var(--brand-cyan), #60a5fa, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.shimmer {
  display: inline-block;
  animation: shimmer 4s ease-in-out infinite;
  filter: brightness(1);
}

.shimmer--delay {
  animation-delay: 2s
}

@keyframes shimmer {

  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
    text-shadow: 0 0 0 rgba(0, 0, 0, 0)
  }

  50% {
    transform: scale(1.05);
    filter: brightness(1.4);
    text-shadow: 0 0 18px rgba(242, 125, 38, .35)
  }
}

.i {
  width: 22px;
  height: 22px
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 16px 24px;
}

.navbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 999px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.brand__logo {
  width: 32px;
  height: 32px;
  object-fit: contain
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand-orange);
  font-size: 20px;
}

.navlinks {
  display: none;
  gap: 28px;
  align-items: center
}

.navlinks__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted2);
  transition: color .2s ease, transform .2s ease;
}

.navlinks__link:hover {
  color: var(--text);
  transform: translateY(-1px)
}

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

.icon-btn {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted2);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.icon-btn:hover {
  color: var(--text);
  border-color: color-mix(in srgb, var(--brand-orange) 55%, var(--border))
}

/* Theme icon (sun / moon) */
.theme-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .35s ease, opacity .25s ease;
}

.icon-btn:hover .theme-icon {
  transform: rotate(20deg);
}

/* Light mode → show moon, hide sun */
.theme-icon--sun {
  display: none;
}

.theme-icon--moon {
  display: block;
}

/* Dark mode → show sun, hide moon */
html.dark .theme-icon--sun {
  display: block;
}

html.dark .theme-icon--moon {
  display: none;
}

.burger {
  width: 44px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.burger span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: color-mix(in srgb, var(--text) 55%, transparent);
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-menu {
  max-width: var(--container);
  margin: 12px auto 0;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__link {
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
}

.mobile-menu__link:hover {
  color: var(--text)
}

@media (min-width: 768px) {
  .navlinks {
    display: flex
  }

  .burger {
    display: none
  }

  .icon-btn {
    display: flex
  }

  .mobile-menu {
    display: none
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero__blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(120px);
  opacity: .12;
}

html.dark .hero__blob {
  opacity: .14
}

.hero__blob--orange {
  top: 20%;
  left: 18%;
  background: color-mix(in srgb, var(--brand-orange) 100%, transparent)
}

.hero__blob--cyan {
  bottom: 18%;
  right: 18%;
  background: color-mix(in srgb, var(--brand-cyan) 100%, transparent)
}

.hero__image {
  position: absolute;
  inset: 0;
  background-image: url("images/background1.png");
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  opacity: .14;
  transition: opacity .5s ease;
}

html.dark .hero__image {
  opacity: .2
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  text-align: center;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 46px;
  line-height: .92;
  letter-spacing: -0.06em;
  margin: 0 0 18px;
}

.hero__line {
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
}

.hero__line--visible {
  opacity: 1;
  transition: opacity .2s ease-out;
}

.hero__subtitle {
  margin: 0 auto 34px;
  max-width: 740px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 88px
  }

  .hero__subtitle {
    font-size: 20px
  }
}

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

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
  }
}

.stat {
  border-radius: 22px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: default;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.stat:hover {
  transform: translateY(-3px) scale(1.02)
}

.stat__icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  opacity: .9;
}

.stat__icon--orange {
  color: var(--brand-orange)
}

.stat__icon--cyan {
  color: var(--brand-cyan)
}

.stat__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.stat__label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--text) 40%, transparent);
}

html.dark .stat__label {
  color: rgba(255, 255, 255, .35)
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid color-mix(in srgb, var(--text) 20%, transparent);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6px;
  transition: border-color .2s ease;
}

.scroll-indicator:hover {
  border-color: color-mix(in srgb, var(--brand-orange) 60%, transparent)
}

.scroll-indicator__dot {
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 38%, transparent);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(12px)
  }
}

/* Carousel */
.carousel {
  position: relative;
  margin-top: 40px;
  padding: 44px 0;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  background: #fff;
  transition: background-color .5s ease, border-color .5s ease;
}

html.dark .carousel {
  background: #000
}

.carousel__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.carousel__fade--left {
  left: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--text) 0%, #fff) 0%, transparent 100%)
}

html.dark .carousel__fade--left {
  background: linear-gradient(90deg, #000 0%, transparent 100%)
}

.carousel__fade--right {
  right: 0;
  background: linear-gradient(270deg, color-mix(in srgb, var(--text) 0%, #fff) 0%, transparent 100%)
}

html.dark .carousel__fade--right {
  background: linear-gradient(270deg, #000 0%, transparent 100%)
}

.carousel__track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee 40s linear infinite;
  padding: 0 24px;
}

.carousel__group {
  display: flex;
  gap: 48px;
  align-items: center
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.logochip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 6px
}

.logochip img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .04);
  border: 1px solid var(--border);
  object-fit: cover;
  filter: grayscale(1);
  transition: filter .5s ease, border-color .25s ease, transform .25s ease;
}

html.dark .logochip img {
  background: rgba(255, 255, 255, .05)
}

.logochip:hover img {
  filter: grayscale(0);
  border-color: rgba(242, 125, 38, .45);
  transform: scale(1.02)
}

.logochip span {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-size: 13px;
  color: color-mix(in srgb, var(--text) 20%, transparent);
  transition: color .25s ease;
}

.logochip:hover span {
  color: color-mix(in srgb, var(--text) 80%, transparent)
}

/* Explore CTA */
.explore-cta {
  display: flex;
  justify-content: center;
  padding: 64px 24px
}

.explore-cta__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: color-mix(in srgb, var(--text) 30%, transparent);
  transition: color .3s ease, transform .3s ease;
}

.explore-cta__link:hover {
  color: var(--brand-orange);
  transform: translateY(-1px)
}

.explore-cta__text {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.explore-cta__line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--text) 18%, transparent), transparent);
}

.explore-cta__link:hover .explore-cta__line {
  background: linear-gradient(180deg, rgba(242, 125, 38, .5), transparent);
}

/* Universe / grid */
.universe {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 24px;
  text-align: center;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px
}

.section-head__title {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 36px;
  margin: 0 0 10px;
}

@media (min-width:768px) {
  .section-head__title {
    font-size: 48px
  }
}

.section-head__subtitle {
  margin: 0;
  color: var(--muted2);
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  text-align: left;
}

@media (min-width:768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
  }
}

.channel-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--border2);
  background: #fff;
  padding: 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}

html.dark .channel-card {
  background: #0D0D0F;
  border-color: rgba(255, 255, 255, .06)
}

.channel-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--glow) 65%, var(--border));
  box-shadow: 0 20px 60px -10px var(--glow), 0 0 18px color-mix(in srgb, var(--glow) 30%, transparent);
  background-color: color-mix(in srgb, #fff 98%, var(--glow));
}

html.dark .channel-card:hover {
  background-color: rgba(255, 255, 255, .06)
}

.channel-card__logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, .04);
  overflow: hidden;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: border-color .25s ease, background-color .25s ease;
}

html.dark .channel-card__logo {
  background: rgba(255, 255, 255, .05)
}

.channel-card:hover .channel-card__logo {
  border-color: rgba(0, 242, 255, .25)
}

.channel-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.channel-card__body h3 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 22px;
  margin: 0 0 6px;
}

.channel-card__body p {
  margin: 0 0 18px;
  font-weight: 700;
  font-size: 13px;
  color: color-mix(in srgb, var(--text) 40%, transparent);
}

html.dark .channel-card__body p {
  color: rgba(255, 255, 255, .4)
}

.channel-card__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border2);
}

.channel-card__links a {
  color: color-mix(in srgb, var(--text) 40%, transparent);
  transition: transform .2s ease, color .2s ease;
}

.channel-card__links a:hover {
  transform: scale(1.15);
  color: color-mix(in srgb, var(--text) 85%, transparent);
}

.divider {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.divider::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* About */
.about {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 24px 0;
}

.about__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
}

@media (min-width: 900px) {
  .about__wrap {
    flex-direction: row;
    align-items: center;
    gap: 90px
  }
}

.about__orb {
  flex-shrink: 0
}

.about__orbInner {
  width: 290px;
  height: 290px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border2);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 0 120px rgba(0, 242, 255, .08);
  transition: background-color .5s ease, border-color .5s ease;
}

html.dark .about__orbInner {
  background: var(--dark-card)
}

.about__orbGlow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 242, 255, .06), transparent 60%);
}

.about__orbInner img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  position: relative;
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(-10px) rotate(-2deg)
  }

  50% {
    transform: translateY(10px) rotate(2deg)
  }
}

.about__content {
  flex: 1
}

.about__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 42px;
  margin: 0 0 18px;
  color: var(--brand-orange);
  letter-spacing: -0.04em;
}

@media (min-width:768px) {
  .about__title {
    font-size: 56px
  }
}

.about__text {
  font-family: "Quicksand", sans-serif;
  font-size: 17px;
  line-height: 1.9;
  color: color-mix(in srgb, var(--text) 85%, transparent);
  text-align: justify;
  font-weight: 400;
  letter-spacing: 0.01em;
}

html.dark .about__text {
  color: rgba(255, 255, 255, .82)
}

.about__text p {
  margin: 0 0 16px
}

.muted {
  color: var(--muted2)
}


.about__cta {
  padding-top: 14px
}

.btn {
  display: inline-block;
  background: var(--brand-cyan);
  color: var(--dark-bg);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 28px rgba(0, 242, 255, .25);
  filter: saturate(1.1)
}

.about-marquee {
  margin-top: 88px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 40px 0;
}

.about-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none
}

.about-marquee__fade--left {
  left: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--text) 0%, #fff) 0%, transparent 100%)
}

html.dark .about-marquee__fade--left {
  background: linear-gradient(90deg, var(--dark-bg) 0%, transparent 100%)
}

.about-marquee__fade--right {
  right: 0;
  background: linear-gradient(270deg, color-mix(in srgb, var(--text) 0%, #fff) 0%, transparent 100%)
}

html.dark .about-marquee__fade--right {
  background: linear-gradient(270deg, var(--dark-bg) 0%, transparent 100%)
}

.about-marquee__track {
  display: flex;
  width: max-content;
  gap: 64px;
  animation: marquee 40s linear infinite;
  padding: 0 24px;
}

.about-marquee__group {
  display: flex;
  gap: 64px;
  align-items: center
}

.bigchip {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.bigchip img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, .04);
  object-fit: cover;
  filter: grayscale(1);
  transition: filter .5s ease, border-color .25s ease, transform .25s ease, background-color .25s ease;
}

html.dark .bigchip img {
  background: rgba(255, 255, 255, .05)
}

.bigchip:hover img {
  filter: grayscale(0);
  border-color: rgba(0, 242, 255, .4);
  transform: scale(1.02)
}

.bigchip span {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 26px;
  color: color-mix(in srgb, var(--text) 12%, transparent);
  transition: color .3s ease;
}

.bigchip:hover span {
  color: color-mix(in srgb, var(--text) 30%, transparent)
}

/* Contact Section */
.contact-section {
  padding: 80px 24px 20px;
  border-top: 1px solid var(--border2);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

html.dark .contact-section {
  background: var(--dark-bg)
}

.contact-wrapper {
  max-width: var(--container);
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.contact-card {
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card__desc {
  margin: 18px 0 32px;
  color: var(--muted2);
  line-height: 1.6;
  max-width: 440px;
}

.contact-card__visit h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--text);
}

.contact-card__visit ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted2);
  font-size: 15px;
  line-height: 1.6;
}

.contact__phone {
  color: var(--brand-orange);
  font-weight: 800;
}

.contact-card__subtitle {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.contact__email {
  display: inline-block;
  font-weight: 800;
  font-size: 24px;
  color: var(--brand-orange);
  word-break: break-all;
  transition: color .2s ease;
}

.contact__email:hover {
  color: var(--brand-cyan);
}

.box-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  background: var(--glass-bg);
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 125, 38, .5);
  background-color: color-mix(in srgb, var(--text) 5%, transparent);
}

/* Footer Section */
.site-footer {
  padding: 0 24px 16px;
}

html.dark .site-footer {
  background: var(--dark-bg);
}

.site-footer .footer__wrap {
  max-width: var(--container);
  margin: 0 auto;
}

.site-footer .footer__bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer .footer__bottom {
    flex-direction: row;
    justify-content: center;
  }
}

.footer__policies {
  display: flex;
  gap: 26px
}

.tiny {
  font-size: 13px;
  color: color-mix(in srgb, var(--text) 40%, transparent);
  transition: color .2s ease;
  font-weight: 500;
}

.tiny:hover {
  color: var(--brand-orange)
}

@media (prefers-reduced-motion: reduce) {

  .carousel__track,
  .about-marquee__track,
  .scroll-indicator__dot,
  .shimmer,
  .about__orbInner img {
    animation: none !important
  }

  .channel-card:hover,
  .stat:hover,
  .btn:hover,
  .logochip:hover img {
    transform: none !important
  }
}


/* Mobile Specific Adjustments (Screens smaller than 768px) */
@media (max-width: 767px) {

  /* 1. Full Width Navbar */
  .navbar {
    padding: 12px 0px;
    width: 100%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .navbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 360px;
    margin: 0 auto;
    border-radius: 0;
    padding: 8px 16px;
    border-radius: 999px;
  }

  .brand {
    justify-content: flex-start;
    gap: 8px;
  }

  .brand__logo {
    width: 20px;
    height: 20px;
  }

  .brand__name {
    font-size: 14px;
    letter-spacing: -0.02em;
  }

  /* Hide Desktop Navigation */
  .navlinks {
    display: none !important;
  }

  .navactions {
    margin-left: auto;
  }

  .navactions .icon-btn {
    display: flex !important;
    /* This makes it visible */
    padding: 6px;
    /* Adjust padding for mobile */
  }




  .burger {
    display: flex !important;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    justify-content: center;
    align-items: center;
    gap: 3px;
  }

  .burger span {
    width: 14px;
  }

  /* Mobile Menu */
  .mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border-top: 1px solid var(--glass-border);
    padding: 10px;
    flex-direction: column;
    z-index: 1000;
  }

  .mobile-menu:not([hidden]) {
    display: flex !important;
  }

  .mobile-menu__link {
    font-size: 15px;
    padding: 14px;
    text-align: center;
    border-bottom: 1px solid var(--border2);
  }

  .mobile-menu__link:last-child {
    border-bottom: none;
  }

  /* Content Scaling */
  .hero {
    padding: 100px 16px 40px;
  }

  .hero__title {
    font-size: 28px;
    line-height: 1.1;
  }

  .about__text {
    text-align: justify;
    text-justify: inter-word;
    font-size: 15px;
    line-height: 1.6;
  }

  .about__orbInner {
    width: 200px;
    height: 200px;
  }

  .hero__blob--cyan {
    display: none;
  }



}

/* 1. Fix Carousel Container Overflow */
.carousel {
  width: 100%;
  max-width: 100vw;
  /* Strictly prevents the carousel from widening the page */
  overflow: hidden;
  /* Clips the moving track */
  padding: 30px 0;
  /* Slightly more compact for mobile */
}

.carousel__track {
  gap: 24px;
  /* Reduce gap between chips for smaller screens */
  /* speed up or slow down marquee if needed */
  animation-duration: 25s;
}

.carousel__group {
  gap: 24px;
  /* Matches the track gap */
}

/* 2. Resize Logo Chips for Mobile */
.logochip {
  gap: 8px;
}

.logochip img {
  width: 36px;
  /* Smaller images (was 48px) */
  height: 36px;
  border-radius: 10px;
}

.logochip span {
  font-size: 11px;
  /* Smaller text */
  letter-spacing: -0.02em;
}

/* 3. Reduce Gradient Fades */
.carousel__fade {
  width: 60px;
  /* Smaller fades so more logos are visible at once */
}

/* 1. Move Scroll Indicator Lower */
.scroll-indicator {
  bottom: 10px;
  /* Moved down from 28px */
  width: 20px;
  /* Slightly slimmer for mobile */
  height: 34px;
  /* Slightly shorter for mobile */
}

.scroll-indicator__dot {
  width: 3px;
  height: 7px;
  /* Smaller dot to match the smaller housing */
}

/* 2. Hero Section Adjustment */
/* Ensures the content doesn't overlap the lowered mouse icon */
.hero {
  padding-bottom: 60px;
}

/* Desktop Upscaling (Screens 1024px and wider) */
@media (min-width: 1024px) {
  :root {
    --container: 1280px;
    /* Increased from 1120px for a wider feel */
  }

  .hero {
    padding: 60px 16px 40px;
    /* Reduced top padding from 100px to 60px */
  }

  /* Increase Global Base Size */
  body {
    font-size: 18px;
  }

  /* 1. Navbar Scaling */
  .brand__logo {
    width: 38px;
    /* Slightly larger logo */
    height: 38px;
  }

  .brand__name {
    font-size: 24px;
  }

  .navlinks__link {
    font-size: 16px;
    /* Larger menu items */
  }

  /* 2. Hero Scaling */
  .hero__title {
    font-size: 100px;
    /* Increased from 88px */
    max-width: 1100px;
  }

  .hero__subtitle {
    font-size: 24px;
    /* More readable subtext */
    max-width: 850px;
  }

  /* 3. Stats Scaling */
  .stat {
    padding: 32px 24px;
  }

  .stat__value {
    font-size: 36px;
  }

  .stat__label {
    font-size: 12px;
  }

  /* 4. About Section Scaling */
  .about__orbInner {
    width: 380px;
    /* Larger brand orb */
    height: 380px;
  }

  .about__title {
    font-size: 64px;
  }

  .about__text {
    font-size: 20px;
  }

  /* 5. Grid/Cards Scaling */
  .section-head__title {
    font-size: 56px;
  }

  .channel-card__body h3 {
    font-size: 26px;
  }

  .channel-card__body p {
    font-size: 15px;
  }
}


/* hide both first */
.mobile-email,
.desktop-email {
  display: none;
}

/* mobile */
@media (max-width: 768px) {
  .mobile-email {
    display: inline-block;
  }
}

/* laptop / desktop */
@media (min-width: 769px) {
  .desktop-email {
    display: inline-block;
  }
}