/* ════════════════════════════
   RESET
════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { font-family: "Cal Sans", sans-serif; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }


/* ════════════════════════════
   TOKENS
════════════════════════════ */
:root {
  --saya-black:      #0a0a0a;
  --saya-green:      #ADDC55;
  --saya-nav-bg:     #b8ff47;
  --saya-nav-text:   #111111;
  --saya-white:      #ffffff;
  --saya-pill:       999px;
  --saya-ease:       0.25s ease;
  --saya-navbar-h:   76px;
}


/* ════════════════════════════
   BASE
════════════════════════════ */
body {
  background: var(--saya-black);
  color: var(--saya-white);
  min-height: 100vh;
}

::-webkit-scrollbar        { width: 6px; }
::-webkit-scrollbar-track  { background: var(--saya-black); }
::-webkit-scrollbar-thumb  { background: var(--saya-green); border-radius: 3px; }


/* ════════════════════════════
   NAVBAR
════════════════════════════ */
.saya-navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--saya-navbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease;
}

.saya-navbar--scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.saya-navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 10%;
  min-width: 80px;
}

.saya-navbar__nav {
  background: var(--saya-nav-bg);
  border-radius: var(--saya-pill);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.saya-navbar__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--saya-nav-text);
  padding: 7px 20px;
  border-radius: var(--saya-pill);
  transition: background var(--saya-ease), color var(--saya-ease);
  white-space: nowrap;
  cursor: pointer;
}

.saya-navbar__link:hover,
.saya-navbar__link--active {
  background: var(--saya-nav-text);
  color: var(--saya-nav-bg);
}

.saya-navbar__spacer { width: 10%; min-width: 80px; }


/* ── Hamburger ── */
.saya-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  transition: border-color var(--saya-ease);
  z-index: 110;
}

.saya-hamburger:hover { border-color: var(--saya-green); }

.saya-hamburger__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--saya-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.saya-hamburger--open .saya-hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.saya-hamburger--open .saya-hamburger__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.saya-hamburger--open .saya-hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── Mobile drawer ── */
.saya-mobile-menu {
  display: none;
  position: fixed;
  top: var(--saya-navbar-h);
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  z-index: 99;
  padding: 24px 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.saya-mobile-menu--open { transform: translateY(0); opacity: 1; }

.saya-mobile-menu ul { display: flex; flex-direction: column; gap: 6px; }

.saya-mobile-menu__link {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--saya-white);
  padding: 12px 16px;
  border-radius: 10px;
  transition: background var(--saya-ease), color var(--saya-ease);
}

.saya-mobile-menu__link:hover,
.saya-mobile-menu__link--active {
  background: var(--saya-nav-bg);
  color: var(--saya-nav-text);
}


/* ════════════════════════════
   HERO
════════════════════════════ */
.saya-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  padding-top: var(--saya-navbar-h);
}

.saya-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.55) saturate(0.8);
  z-index: 0;
}

.saya-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, transparent 30%, rgba(0,0,0,0.65) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}


/* ════════════════════════════
   ABOUT
════════════════════════════ */
.saya-about {
  position: relative;
  padding: 120px 60px 100px;
  background: var(--saya-black);
}

.saya-about__corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  min-width: 60px;
  pointer-events: none;
}

.saya-about__welcome {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--saya-green);
  margin-bottom: 20px;
}

.saya-about__logo { width: 100%; }

.saya-about__label {
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.saya-about__words {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.saya-about__row {
  display: flex;
  flex-wrap: wrap;
}

.saya-about__word {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.saya-about__word--1 { background-image: linear-gradient(90deg, #D2F670 0%, #7DDB3A 100%); }
.saya-about__word--2 { background-image: linear-gradient(90deg, #47d4ff 0%, #006fff 100%); }
.saya-about__word--3 { background-image: linear-gradient(90deg, #ff8c47 0%, #ff2d78 100%); }
.saya-about__word--4 { background-image: linear-gradient(90deg, #c947ff 0%, #6a00ff 100%); }


/* ════════════════════════════
   THIRD SECTION — pinned horizontal slider
════════════════════════════ */
.saya-slider {
  height: 100vh;
  overflow: hidden;
  background: var(--saya-green);
  position: relative;
  display: flex;
  align-items: center;
}

.saya-slider__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  width: max-content;
  will-change: transform;
}

.saya-slider__box {
  flex-shrink: 0;
  width: 460px;
  height: 560px;
  border-radius: 20px;
  overflow: hidden;
}

.saya-slider__box--wide { width: 700px; }

.saya-slider__box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ════════════════════════════
   SAYA-TAG — hover expand pill
   Position: top-right of each slider box
════════════════════════════ */

/* Make sure the parent box is relative (already is) */
.saya-slider__box { position: relative; }

.saya-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;

  /* pill shape */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;

  /* collapsed: just the arrow circle */
  width: 52px;
  height: 52px;
  border-radius: 999px;

  /* dark fill */
  background: #111111;

  /* gradient border via box-shadow */
  box-shadow:
    0 0 0 2.5px #3a7fff,   /* blue inner */
    0 0 0 4px   #b8ff47;   /* green outer */

  overflow: hidden;
  cursor: pointer;

  /* smooth expand */
  transition:
    width 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

/* Gradient border glow on hover */
.saya-tag:hover {
  width: var(--saya-tag-w, 200px);   /* overridden per element by JS */
  box-shadow:
    0 0 0 2.5px #006fff,
    0 0 0 4px   #b8ff47,
    0 4px 24px rgba(184, 255, 71, 0.25);
}

/* ── Arrow icon ── */
.saya-tag__arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;   /* stays on the right */
}

.saya-tag__arrow svg {
  width: 22px;
  height: 22px;
  color: var(--saya-green);
  transition: transform 0.3s ease;
}

.saya-tag:hover .saya-tag__arrow svg {
  transform: translateX(2px);
}

/* ── Label text ── */
.saya-tag__label {
  order: 1;
  white-space: nowrap;
  font-family: "Cal Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--saya-white);
  padding-left: 18px;

  /* hidden until expanded */
  opacity: 0;
  transform: translateX(10px);
  transition:
    opacity 0.25s ease 0.15s,
    transform 0.3s ease 0.1s;
}

.saya-tag:hover .saya-tag__label {
  opacity: 1;
  transform: translateX(0);
}
/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 991px) {
  .saya-about        { padding: 80px 32px; }
  .saya-about__word  { font-size: clamp(30px, 7vw, 56px); }
}

@media (max-width: 768px) {
  .saya-navbar         { padding: 0 20px; }
  .saya-navbar__nav    { display: none; }
  .saya-navbar__spacer { display: none; }
  .saya-hamburger      { display: flex; }
  .saya-mobile-menu    { display: block; }

  .saya-about { padding: 60px 20px; }

  .saya-slider {
    height: auto;
    overflow: visible;
    padding: 32px 16px;
    display: block;
  }

  .saya-slider__track {
    flex-direction: column;
    width: 100%;
    padding: 0;
    gap: 16px;
  }

  .saya-slider__box,
  .saya-slider__box--wide {
    width: 100%;
    height: 260px;
    border-radius: 12px;
  }
}

@media (max-width: 576px) {
  .saya-about__word  { font-size: clamp(36px, 13vw, 56px); letter-spacing: -0.5px; }
  .saya-about__label { font-size: 13px; }
}

.saya-wwd {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  background: #0d0d12;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.saya-wwd__title {
  position: relative;
  z-index: 10;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--saya-green);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -1px;
  pointer-events: none;
}

/* ── Side panels ── */
.saya-wwd__side {
  position: absolute;   /* full height column */
  top: 0;
  bottom: 0;
  width: 22%;
  z-index: 4;
  pointer-events: none;
  /* NO display:flex here — children use position:absolute */
}

.saya-wwd__side--left  { left: 0; }
.saya-wwd__side--right { right: 0; }

/* ── Large word — sits at bottom ── */
.saya-wwd__big {
  position: absolute;
  bottom: 12%;
  font-size: clamp(32px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -2px;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--saya-green) 0%, #3a7fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.saya-wwd__side--left  .saya-wwd__big { left: 4vw; }
.saya-wwd__side--right .saya-wwd__big { right: 4vw; }

.saya-wwd__big--active {
  opacity: 1;
  transform: translateY(0) !important;
}

/* ── Small labels — each at a DIFFERENT vertical position ── */
.saya-wwd__small {
  position: absolute;
  font-size: clamp(12px, 1.2vw, 18px);
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--saya-green) 30%, #3a7fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;              /* always visible, just dim */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.saya-wwd__side--left  .saya-wwd__small { left: 4vw; }
.saya-wwd__side--right .saya-wwd__small { right: 4vw; }

/* Scattered vertical positions per slide */
.saya-wwd__small[data-slide="0"] { top: 18%; }
.saya-wwd__small[data-slide="1"] { top: 32%; }
.saya-wwd__small[data-slide="2"] { top: 50%; }
.saya-wwd__small[data-slide="3"] { top: 65%; }

/* Active = full brightness */
.saya-wwd__small--active {
  opacity: 1 !important;
}

/* ════════════════════════════
   SWIPER — vertical
════════════════════════════ */
.saya-wwd__swiper {
  position: relative;
  z-index: 5;
  width: 560px;
  height: 420px;
}

.saya-wwd__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100% !important;
}

.saya-wwd__card {
  width: 100%;
  border-radius: 18px;
  padding: 5px;
  background: linear-gradient(135deg, var(--saya-green) 0%, #3a7fff 100%);
}

.saya-wwd__card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* Pagination dots — vertical, right of card */
.saya-wwd__swiper .swiper-pagination {
  right: -28px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.saya-wwd__swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.3);
  opacity: 1;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s ease;
  margin: 0 !important;
}

.saya-wwd__swiper .swiper-pagination-bullet-active {
  background: var(--saya-green);
  transform: scale(1.3);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .saya-wwd__side   { display: none; }
  .saya-wwd__swiper { width: 88vw; height: 340px; }
  .saya-wwd__card img { height: 300px; }
}
/* ════════════════════════════
   COUNTRIES SECTION
════════════════════════════ */
.saya-countries {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* Blue background */
  background: #1a2ecc;
}

/* World map as pseudo background image */
.saya-countries__bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/world-map.png');   /* swap with your map image */
  background-size: 80% auto;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.18;                  /* dim overlay so text pops */
  pointer-events: none;
  z-index: 0;
}

/* Top subtitle label */
.saya-countries__label {
  position: relative;
  z-index: 2;
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  text-align: center;
}

/* ── Scrolling track (same pattern as saya-slider__track) ── */
.saya-countries__track {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 80px;
  padding: 0 80px;
  width: max-content;     /* expands beyond viewport */
  will-change: transform;
}

/* Country names */
.saya-countries__name {
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  letter-spacing: -1px;
  cursor: default;
  transition: color 0.25s ease, transform 0.25s ease;
}

.saya-countries__name:hover {
  color: var(--saya-green);
  transform: scale(1.05);
}

/* ── Responsive: vertical stack on mobile ── */
@media (max-width: 768px) {
  .saya-countries {
    height: auto;
    overflow: visible;
    padding: 60px 24px;
  }

  .saya-countries__track {
    flex-direction: column;
    width: 100%;
    padding: 0;
    gap: 24px;
    align-items: flex-start;
  }

  .saya-countries__name {
    font-size: clamp(28px, 10vw, 48px);
  }
}

* ════════════════════════════
   BRANDS SECTION
════════════════════════════ */
.saya-brands {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #111115;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 80px 60px;
  gap: 0;
}

/* bg glow blob */
.saya-brands__blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25,40,100,0.5) 0%, transparent 70%);
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* ════════════════════════════
   LEFT
════════════════════════════ */
.saya-brands__left {
  position: relative;
  z-index: 2;
  flex: 0 0 54%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-right: 48px;
}

.saya-brands__heading {
  font-size: clamp(36px, 4.2vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--saya-white);
  letter-spacing: -1.5px;
}

.saya-brands__heading--green { color: var(--saya-green); }

.saya-brands__desc {
  font-size: clamp(12px, 1vw, 15px);
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 440px;
}

/* Logo grid — text-based logos */
.saya-brands__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
}

.saya-brands__logo-text {
  font-size: clamp(11px, 0.95vw, 14px);
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
  cursor: default;
}

.saya-brands__logo-text--bold { font-weight: 800; }
.saya-brands__logo-text:hover { color: var(--saya-green); }

/* divider dots between logos */
.saya-brands__logo-text + .saya-brands__logo-text::before {
  content: '·';
  margin-right: 20px;
  color: rgba(255,255,255,0.2);
}

/* ════════════════════════════
   RIGHT — phones
════════════════════════════ */
.saya-brands__right {
  position: relative;
  z-index: 2;
  flex: 0 0 46%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  height: 680px;
  padding-right: 40px;
}

.saya-brands__phone-wrap {
  display: flex;
  align-items: flex-start;
}

/* offset second phone down */
.saya-brands__phone-wrap--offset {
  margin-top: 100px;
}

/* Phone shell */
.saya-brands__phone {
  position: relative;
  width: 200px;
  height: 430px;
  border-radius: 40px;
  background: #1c1c28;
  border: 3px solid rgba(255,255,255,0.1);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 30px 80px rgba(0,0,0,0.7),
    0 0 0 8px rgba(255,255,255,0.03);
  overflow: hidden;
}

/* Notch */
.saya-brands__phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 20px;
  background: #1c1c28;
  border-radius: 0 0 14px 14px;
  z-index: 10;
  border: 2px solid rgba(255,255,255,0.07);
  border-top: none;
}

/* Screen clips the reel */
.saya-brands__phone-screen {
  position: absolute;
  inset: 0;
  border-radius: 38px;
  overflow: hidden;
}

/* Top / bottom fade overlays */
.saya-brands__screen-fade {
  position: absolute;
  left: 0; right: 0;
  height: 90px;
  z-index: 5;
  pointer-events: none;
}

.saya-brands__screen-fade--top {
  top: 0;
  background: linear-gradient(to bottom, #1c1c28 0%, transparent 100%);
}

.saya-brands__screen-fade--bottom {
  bottom: 0;
  background: linear-gradient(to top, #1c1c28 0%, transparent 100%);
}

/* ════════════════════════════
   REEL — infinite upward scroll
════════════════════════════ */
.saya-brands__reel {
  display: flex;
  flex-direction: column;
  width: 100%;
  will-change: transform;
}

.saya-brands__reel img {
  width: 100%;
  height: 215px;      /* half the phone height × 2 images visible at once */
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

/* Keyframe: translate up exactly half (the duplicated set) */
@keyframes saya-scroll-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.saya-brands__reel {
  animation: saya-scroll-up 9s linear infinite;
}

.saya-brands__reel--slow {
  animation-duration: 13s;
  animation-delay: -4s;   /* offset so phones are out of sync */
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1100px) {
  .saya-brands__phone { width: 170px; height: 360px; }
  .saya-brands__reel img { height: 180px; }
}

@media (max-width: 991px) {
  .saya-brands {
    flex-direction: column;
    padding: 60px 24px;
    align-items: flex-start;
  }

  .saya-brands__left  { flex: none; width: 100%; padding-right: 0; }
  .saya-brands__right { flex: none; width: 100%; height: 380px; padding: 0; margin-top: 48px; }

  .saya-brands__phone      { width: 150px; height: 300px; }
  .saya-brands__reel img   { height: 150px; }
  .saya-brands__phone-wrap--offset { margin-top: 60px; }
}

@media (max-width: 576px) {
  .saya-brands__heading   { font-size: clamp(28px, 8vw, 44px); }
  .saya-brands__logo-text { font-size: 11px; }
}

/* ════════════════════════════
   AWARDS SECTION
════════════════════════════ */
.saya-awards {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  /* green → blue gradient exactly like screenshot */
  background: linear-gradient(110deg, #b8ff47 0%, #4060ff 55%, #1a1aee 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}


/* ── Ticker ── */
.saya-awards__ticker {
  flex-shrink: 0;
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.saya-awards__ticker-inner {
  display: flex;
  gap: 52px;
  width: max-content;
  animation: saya-tick 16s linear infinite;
}

.saya-awards__ticker-inner--rev {
  animation-direction: reverse;
}

@keyframes saya-tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.saya-awards__ticker span {
  font-size: 14px;
  font-weight: 800;
  color: #111111;
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* ── Card track — fills space between tickers ── */
.saya-awards__track {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  width: max-content;
  will-change: transform;
}


/* ── Individual card ── */
.saya-awards__card {
  position: relative;
  flex-shrink: 0;
  width: var(--saya-card-w, 420px);
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid var(--saya-card-border, #b8ff47);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.saya-awards__card:hover { transform: scale(1.012); }

/* Image fills card */
.saya-awards__card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

/* Gradient overlay — dark at top + bottom */
.saya-awards__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.52) 0%,
      transparent 35%,
      transparent 55%,
      rgba(0,0,0,0.72) 100%
    );
}

/* Text content */
.saya-awards__card-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 22px 20px;
}

.saya-awards__card-title {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.3px;
  max-width: 320px;
}

/* Footer row */
.saya-awards__card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.saya-awards__card-brand {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Arrow circle button */
.saya-awards__card-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(10,10,10,0.65);
  border: 2px solid var(--saya-card-border, #b8ff47);
  color: var(--saya-card-border, #b8ff47);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.saya-awards__card-btn:hover {
  background: var(--saya-card-border, #b8ff47);
  color: #111;
  transform: scale(1.1);
}


/* ── Mobile fallback ── */
@media (max-width: 768px) {
  .saya-awards {
    height: auto;
    overflow: visible;
  }

  .saya-awards__track {
    flex-direction: column;
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 12px 0;
    gap: 14px;
  }

  .saya-awards__card {
    width: 100% !important;
    height: 280px;
  }
}

/* ════════════════════════════
   SHOWREEL SECTION
════════════════════════════ */
.saya-showreel {
  position: relative;
  width: 100%;
  background: var(--saya-black);
  padding: 40px;            /* space around the frame for the border glow */
}

/* Gradient border frame */
.saya-showreel__frame {
  position: relative;
  width: 100%;
  height: 78vh;
  min-height: 480px;
  border-radius: 12px;
  overflow: hidden;

  /* gradient border using outline box-shadow */
  box-shadow:
    0 0 0 3px #1a1aee,      /* blue inner border */
    0 0 0 5px #b8ff47;      /* green outer border */
}

/* BG image */
.saya-showreel__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  transition: transform 0.6s ease;
}

.saya-showreel__frame:hover .saya-showreel__bg {
  transform: scale(1.03);
}

/* Dark overlay */
.saya-showreel__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.45);
}

/* Content */
.saya-showreel__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

/* Title */
.saya-showreel__title {
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 800;
  color: var(--saya-green);
  letter-spacing: -1px;
  text-align: center;
}

/* Play button */
.saya-showreel__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2.5px solid rgba(255,255,255,0.6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(4px);
  padding-left: 4px;   /* optical center for triangle */
}

.saya-showreel__play:hover {
  background: rgba(255,255,255,0.3);
  border-color: var(--saya-green);
  transform: scale(1.12);
}

.saya-showreel__play:active {
  transform: scale(0.96);
}


/* ════════════════════════════
   MODAL
════════════════════════════ */
.saya-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;

  /* hidden by default */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.saya-modal--open {
  opacity: 1;
  pointer-events: all;
}

/* Dark backdrop */
.saya-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  cursor: pointer;
}

/* Modal box */
.saya-modal__box {
  position: relative;
  z-index: 2;
  width: 90vw;
  max-width: 1000px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;

  /* gradient border */
  box-shadow:
    0 0 0 3px #1a1aee,
    0 0 0 5px #b8ff47,
    0 24px 80px rgba(0,0,0,0.8);

  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.saya-modal--open .saya-modal__box {
  transform: scale(1);
}

/* Close button */
.saya-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.saya-modal__close:hover {
  background: rgba(255,0,0,0.6);
  border-color: transparent;
}

/* 16:9 video wrapper */
.saya-modal__video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;   /* 16:9 ratio */
}

.saya-modal__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 768px) {
  .saya-showreel        { padding: 20px; }
  .saya-showreel__frame { height: 55vw; min-height: 280px; }
  .saya-showreel__play  { width: 56px; height: 56px; }
}
/* ════════════════════════════
   LATEST NEWS
════════════════════════════ */
.saya-news {
  background: #b8ff47;
  padding: 60px 40px 60px;
  width: 100%;
}

.saya-news__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #111111;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -1px;
}

/* 3-col grid */
.saya-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Card */
.saya-news__card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  transition: transform 0.3s ease;
}

.saya-news__card:hover { transform: translateY(-6px); }

.saya-news__card-img {
  position: relative;
  width: 100%;
  height: 420px;
}

.saya-news__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.saya-news__card:hover .saya-news__card-img img {
  transform: scale(1.06);
}

/* Gradient overlay bottom half */
.saya-news__card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.85) 100%);
}

/* Text sits on top of image */
.saya-news__card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.saya-news__card-text {
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.saya-news__card-date {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}


/* ════════════════════════════
   CTA SECTION
════════════════════════════ */
.saya-cta {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: #1a1aee;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

/* Deco SVGs */
.saya-cta__deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
}

.saya-cta__deco--tl { top: 0; left: 0; width: 100px; }
.saya-cta__deco--br { bottom: 0; right: 40px; width: 60px; }

/* Scattered eye icons */
.saya-cta__eye {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
}

/* Center content */
.saya-cta__center {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Logo eyes */
.saya-cta__logo-eyes {
  display: flex;
  gap: 6px;
  align-items: center;
}

.saya-cta__eye-ball {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #b8ff47;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: saya-eye-blink 3.5s ease-in-out infinite;
}

.saya-cta__eye-ball:nth-child(2) {
  animation-delay: 0.15s;
}

@keyframes saya-eye-blink {
  0%, 90%, 100% { transform: scaleY(1); }
  95%            { transform: scaleY(0.08); }
}

.saya-cta__pupil {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111111;
  animation: saya-pupil-move 4s ease-in-out infinite;
}

@keyframes saya-pupil-move {
  0%, 100% { transform: translate(0, 0); }
  25%       { transform: translate(8px, -4px); }
  50%       { transform: translate(-6px, 4px); }
  75%       { transform: translate(4px, 6px); }
}

/* Heading */
.saya-cta__heading {
  font-size: clamp(22px, 3.5vw, 48px);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.5px;
}

/* Proceed button */
.saya-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111111;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, gap 0.25s ease;
}

.saya-cta__btn:hover {
  background: #222;
  transform: scale(1.05);
  gap: 14px;
  color: #fff;
}


/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 900px) {
  .saya-news__grid { grid-template-columns: 1fr; max-width: 480px; }
  .saya-news__card-img { height: 300px; }
  .saya-news { padding: 48px 20px; }
  .saya-cta__eye-ball { width: 60px; height: 60px; }
  .saya-cta__pupil { width: 20px; height: 20px; }
}

@media (max-width: 600px) {
  .saya-news__grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.saya-footer {
  position: relative;
  width: 100%;
  background: #0e1117;
  overflow: hidden;
  padding: 60px 60px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;

  /* top border line — blue */
  border-top: 2px solid #1a1aee;
}

/* Decorative large bg shape (the V/hook shape visible in screenshot) */
.saya-footer__bg-shape {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 50%,
    rgba(20, 40, 80, 0.55) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Top row ── */
.saya-footer__top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 48px;
}

/* LEFT */
.saya-footer__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 0 0 40%;
}

.saya-footer__address-block,
.saya-footer__social-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.saya-footer__country {
  font-size: 15px;
  font-weight: 700;
  color: var(--saya-green);
  letter-spacing: 0.3px;
}

.saya-footer__address {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 380px;
}

/* Social links row */
.saya-footer__social-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.saya-footer__social-link {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}

.saya-footer__social-link:hover { color: var(--saya-green); }

/* RIGHT — nav columns */
.saya-footer__right {
  display: flex;
  gap: 80px;
  flex-shrink: 0;
}

.saya-footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.saya-footer__nav-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--saya-green);
  margin-bottom: 4px;
}

.saya-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.saya-footer__nav-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}

.saya-footer__nav-list a:hover { color: #ffffff; }

.saya-footer__nav-link--green {
  color: var(--saya-green) !important;
}

.saya-footer__nav-link--green:hover {
  opacity: 0.8;
}

/* ── Logo ── */
.saya-footer__logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 8px;
}

.saya-footer__logo {
  max-width: 520px;
  width: 38%;
  height: auto;
  display: block;
  /* off-white tint like screenshot */
  filter: brightness(0) invert(1) sepia(0.1);
}

/* Fallback text logo if image doesn't load */
.saya-footer__logo-fallback {
  display: none;
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 900;
  color: #f2f0e8;
  letter-spacing: -4px;
  text-transform: lowercase;
}

.saya-footer__logo:not([src]),
.saya-footer__logo[src=""] {
  display: none;
}

/* ── Countries row ── */
.saya-footer__countries {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 4px;
  padding: 20px 0 28px;
}

.saya-footer__country-item {
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.saya-footer__country-item--green { color: var(--saya-green); }
.saya-footer__country-item--blue  { color: #4a7aff; }

.saya-footer__country-dot {
  color: rgba(255,255,255,0.4);
  font-size: 16px;
}

/* ── Bottom ── */
.saya-footer__bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.saya-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.3px;
}


/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 991px) {
  .saya-footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .saya-footer__left  { flex: none; width: 100%; }
  .saya-footer__right { gap: 48px; }

  .saya-footer__logo  { width: 60%; }
}

@media (max-width: 600px) {
  .saya-footer { padding: 48px 24px 24px; }

  .saya-footer__right   { flex-direction: column; gap: 32px; }
  .saya-footer__logo    { width: 75%; }
  .saya-footer__social-links { gap: 16px; }
}
/* ════════════════════════════
   WHAT WE DO — card stack + dots
   Replace the old swiper CSS block
════════════════════════════ */

/* Card stack wrapper */
.saya-wwd__stack {
  position: relative;
  z-index: 5;
  width: 520px;
  height: 400px;
}

/* Each card — absolutely stacked */
.saya-wwd__card {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 5px;
  background: linear-gradient(135deg, var(--saya-green) 0%, #3a7fff 100%);
  will-change: transform, opacity;
  cursor: pointer;
}

/* Behind cards get dimmed gradient */
.saya-wwd__card[data-state="behind"] {
  background: linear-gradient(135deg, rgba(58,127,255,0.45) 0%, rgba(58,127,255,0.2) 100%);
}

.saya-wwd__card-inner {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.saya-wwd__card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Pagination dots — vertical, right of stack */
.saya-wwd__dots {
  position: absolute;
  right: calc(50% - 300px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.saya-wwd__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.saya-wwd__dot--active {
  background: var(--saya-green);
  transform: scale(1.4);
}

/* Responsive */
@media (max-width: 900px) {
  .saya-wwd__side   { display: none; }
  .saya-wwd__stack  { width: 88vw; height: 300px; }
  .saya-wwd__dots   { right: 8px; }
}