/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.93);
  background-color: #1C1C1C;
  background-image: radial-gradient(ellipse at center, rgba(54, 57, 61, 1) 0%, rgba(28, 28, 28, 1) 100%);
  background-attachment: fixed;
  background-size: cover;
  min-height: 100vh;
  line-height: 1.7;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================== */
/*    NAV                */
/* ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav-scrolled {
  background: rgba(28, 28, 28, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-family: 'Krona One', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.nav-logo {
  width: 28px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

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

.nav-cta {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ===================== */
/*    HERO               */
/* ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 6rem 2rem 2rem;
  background: linear-gradient(129deg, rgba(0,0,0,0.212) 0%, rgba(13,13,13,0.588) 62%),
              url('../assets/images/hero-bg.png') center center / cover no-repeat;
  background-attachment: fixed;
}

.hero-content {
  max-width: 1100px;
  width: 100%;
  padding: 0 2rem;
}

.logo {
  display: block;
  margin: 2rem auto 1.5rem;
  width: 4.75rem;
  height: auto;
}

.hero h1 {
  font-family: 'Krona One', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, #00FFA3 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.3em;
}

.tagline {
  font-size: 1.1em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  background: linear-gradient(180deg, #FFE8AD 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.intro {
  font-size: 1em;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.85;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.scroll-arrow {
  display: block;
  margin: 0 auto;
  width: fit-content;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s, color 0.3s;
  animation: bounce 2s infinite;
}

.scroll-arrow:hover {
  color: #00FFA3;
  transform: scale(1.2);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===================== */
/*    BUTTONS            */
/* ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  height: 3.5rem;
  padding: 0 2rem;
  color: #fff;
  text-decoration: none;
  border-radius: 2.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  background: #00FFA3;
  color: #111;
  border-color: #00FFA3;
}

.btn-primary:hover {
  background: #00e090;
  border-color: #00e090;
}

.btn-ghost {
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-lg {
  height: 4.5rem;
  padding: 0 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.35rem;
  background-image: linear-gradient(135deg, rgba(94, 94, 94, 0.3) 0%, transparent 50%);
}

.btn-lg.btn-primary {
  background: #00FFA3;
  background-image: none;
  color: #111;
}

/* ===================== */
/*    SECTIONS (shared)  */
/* ===================== */
section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  -webkit-text-fill-color: #fff;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-sub {
  text-align: center;
  font-size: 1rem;
  opacity: 0.65;
  margin-bottom: 3.5rem;
}

/* ===================== */
/*    PLATFORMS BAR       */
/* ===================== */
.platforms {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.platforms-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.4;
  margin-bottom: 1.5rem;
}

.platforms-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.platform-item:hover {
  opacity: 0.8;
}

.platform-item svg {
  width: 24px;
  height: 24px;
}

.platform-item span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ===================== */
/*    SERVICES           */
/* ===================== */
.services {
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 163, 0.2);
}

.service-num {
  font-family: 'Krona One', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  opacity: 0.3;
  display: block;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(180deg, #00FFA3 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.92rem;
  opacity: 0.7;
  line-height: 1.7;
}

/* ===================== */
/*    HOW IT WORKS       */
/* ===================== */
.how {
  padding: 6rem 0;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 250px;
}

.step-num {
  display: block;
  font-family: 'Krona One', sans-serif;
  font-size: 1.8rem;
  background: linear-gradient(180deg, #00FFA3 0%, rgba(0, 255, 163, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.88rem;
  opacity: 0.65;
  line-height: 1.6;
}

.step-line {
  width: 60px;
  height: 1px;
  background: rgba(0, 255, 163, 0.2);
  margin-top: 1.8rem;
  flex-shrink: 0;
}

/* ===================== */
/*    THE PLATFORM       */
/* ===================== */
.platform-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.platform-section .section-heading {
  text-align: left;
  margin-bottom: 1.5rem;
}

.platform-text p {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 2rem;
}

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

.badge {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(0, 255, 163, 0.25);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 255, 163, 0.05);
}

/* ===================== */
/*    MARKETS            */
/* ===================== */
.markets {
  padding: 6rem 0;
  text-align: center;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0 2rem;
}

.market-card {
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s;
}

.market-card:hover {
  border-color: rgba(255, 232, 173, 0.25);
}

.market-card h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.market-lang {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: linear-gradient(180deg, #FFE8AD 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.market-card p:last-child {
  font-size: 0.85rem;
  opacity: 0.5;
}

.markets-note {
  font-size: 0.82rem;
  opacity: 0.5;
  font-style: italic;
  margin-bottom: 2rem;
}

.markets-body {
  font-size: 1rem;
  opacity: 0.75;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===================== */
/*    AUDIENCE           */
/* ===================== */
.audience {
  padding: 6rem 0;
  text-align: center;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 3rem auto 3rem;
}

.audience-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
  transition: border-color 0.3s;
}

.audience-card:hover {
  border-color: rgba(0, 255, 163, 0.15);
}

.audience-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.audience-card p {
  font-size: 0.88rem;
  opacity: 0.55;
}

.pull-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===================== */
/*    ABOUT              */
/* ===================== */
.about {
  padding: 6rem 0;
  text-align: center;
}

.about-text {
  max-width: 650px;
  margin: 2.5rem auto 3rem;
}

.about-text p {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

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

.stat-value {
  font-family: 'Krona One', sans-serif;
  font-size: 1.5rem;
  background: linear-gradient(180deg, #00FFA3 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.45;
}

/* ===================== */
/*    CTA                */
/* ===================== */
.cta {
  text-align: center;
  padding: 8rem 0 6rem;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: #fff;
  -webkit-text-fill-color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta h2 em {
  font-style: italic;
  background: linear-gradient(180deg, #00FFA3 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-body {
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  opacity: 0.75;
}

.cta-email {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  opacity: 0.4;
}

/* ===================== */
/*    FOOTER             */
/* ===================== */
footer {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

footer p {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-bottom: 0.3rem;
}

footer .company {
  font-weight: 600;
  opacity: 0.7;
}

.footer-heading {
  font-weight: 700 !important;
  opacity: 0.7 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem !important;
  font-size: 0.72rem !important;
}

footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: #00FFA3;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  opacity: 0.3;
  font-size: 0.75rem;
}

/* ===================== */
/*    ANIMATIONS         */
/* ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== */
/*    RESPONSIVE         */
/* ===================== */
@media (max-width: 1280px) {
  html { font-size: 16px; }
}

@media (max-width: 980px) {
  html { font-size: 15px; }

  .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .markets-grid { grid-template-columns: 1fr; max-width: 350px; margin: 3rem auto 2rem; }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step { max-width: 400px; margin-bottom: 1rem; }

  .step-line {
    width: 1px;
    height: 40px;
    margin: 0;
  }

  .hero {
    background-attachment: scroll;
  }
  body {
    background-attachment: scroll;
  }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .about-stats { gap: 2.5rem; }
}

@media (max-width: 736px) {
  html { font-size: 16px; }

  .nav { padding: 0.75rem 1.25rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(28, 28, 28, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; }

  .hero {
    min-height: 100svh;
    padding: 5rem 1.5rem 2rem;
  }

  .hero-content { padding: 0; }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .tagline {
    letter-spacing: 0.2em;
    font-size: 0.9em;
  }

  .intro {
    font-size: 1em;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .logo {
    width: 3.5rem;
    margin: 1rem auto 1rem;
  }

  .section-heading { font-size: 2.2rem; }
  .cta h2 { font-size: 2.2rem; }

  .platforms-row {
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
  }

  .audience-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 1.5rem; }
  .pull-quote { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .btn { letter-spacing: 0.15rem; padding: 0 1.5rem; }
  .btn-lg { padding: 0 1.75rem; letter-spacing: 0.2rem; }
  .platform-item span { display: none; }
  .platforms-row { gap: 2rem; }
}
