﻿* {
  box-sizing: border-box;
}

:root {
  --bg: #07131f;
  --bg-soft: #0d1e31;
  --card: rgba(16, 33, 53, 0.74);
  --card-strong: rgba(12, 26, 44, 0.92);
  --line: rgba(138, 188, 255, 0.18);
  --text: #eef5ff;
  --muted: rgba(238, 245, 255, 0.74);
  --accent: #7ec4ff;
  --accent-2: #ffb764;
  --accent-3: #3ee0b8;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius-lg: 30px;
  --radius-md: 18px;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 15% -10%, #244e78 0%, #07131f 40%), var(--bg);
  color: var(--text);
  font-family: "Urbanist", sans-serif;
  overflow-x: hidden;
  transition: background 0.35s ease;
}

body.theme-minimal {
  --bg: #081018;
  --bg-soft: #0f1a25;
  --card: rgba(13, 24, 37, 0.88);
  --card-strong: rgba(10, 20, 30, 0.95);
  --line: rgba(121, 172, 226, 0.16);
  --accent: #78b9ef;
  --accent-2: #9fd6ff;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  background: linear-gradient(180deg, #081018 0%, #0a1521 100%);
}

.aurora {
  position: fixed;
  pointer-events: none;
  z-index: -3;
  filter: blur(60px);
  opacity: 0.45;
}

.aurora-left {
  width: 440px;
  height: 440px;
  left: -120px;
  top: 12%;
  border-radius: 50%;
  background: #2e6cd0;
}

.aurora-right {
  width: 360px;
  height: 360px;
  right: -90px;
  bottom: -110px;
  border-radius: 42%;
  background: #ff934d;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 0.45px, transparent 0.45px);
  background-size: 3px 3px;
}

.note-rain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.falling-note {
  position: absolute;
  top: -8%;
  color: rgba(160, 214, 255, 0.18);
  text-shadow: 0 0 8px rgba(122, 190, 255, 0.14);
  animation-name: note-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  user-select: none;
}

@keyframes note-fall {
  to {
    transform: translateY(112vh) rotate(16deg);
  }
}

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(7, 19, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-kicker,
.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  color: var(--accent);
  font-weight: 800;
}

.brand strong {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.07em;
  font-size: 1.62rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text);
  border-radius: 999px;
  min-height: 42px;
  padding: 0 14px;
  font-weight: 700;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.visual-toggle {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.visual-toggle:hover {
  border-color: rgba(126, 196, 255, 0.7);
}

.nav-links a {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.hero {
  min-height: 96svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7, 19, 31, 0.96) 8%, rgba(7, 19, 31, 0.84) 52%, rgba(7, 19, 31, 0.42) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  padding: 88px 0 62px;
}

.hero-copy h1 {
  margin: 14px 0 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  line-height: 0.93;
  letter-spacing: 0.01em;
}

.hero-lead {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.03rem;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: linear-gradient(130deg, var(--accent-2), #ff8c42);
  color: #111;
  box-shadow: 0 14px 34px rgba(255, 159, 79, 0.34);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.stats-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stats-strip article {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(14, 29, 47, 0.65);
  padding: 14px;
}

.stats-strip strong {
  display: block;
  color: #b8dcff;
  margin-bottom: 5px;
}

.stats-strip span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero-side {
  position: relative;
}

.portrait-frame {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card-strong);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: 14px;
  left: 60px;
  bottom: 18px;
  border-radius: 18px;
  border: 1px solid rgba(126, 196, 255, 0.34);
  background: rgba(6, 18, 31, 0.82);
  backdrop-filter: blur(8px);
  padding: 14px 16px;
  transform-origin: center;
  transition: transform 0.3s ease;
}

body.theme-minimal .aurora,
body.theme-minimal .noise-layer {
  display: none;
}

body.theme-minimal .note-rain {
  opacity: 0.38;
}

body.theme-minimal .hero-overlay {
  background: linear-gradient(105deg, rgba(7, 19, 31, 0.95) 15%, rgba(7, 19, 31, 0.82) 65%, rgba(7, 19, 31, 0.54) 100%);
}

body.theme-minimal .panel-platforms {
  background: rgba(14, 28, 44, 0.86);
}

body.theme-minimal .btn-primary {
  background: linear-gradient(130deg, #9fd6ff, #76afe4);
  box-shadow: 0 10px 24px rgba(119, 176, 230, 0.3);
}

.hero-badge span {
  color: #97d0ff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  font-weight: 800;
}

.hero-badge h2 {
  margin: 8px 0 0;
  font-size: 1.15rem;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 24px;
}

.panel h2,
.section-head h2,
.contact-copy h2 {
  margin: 12px 0 10px;
  line-height: 1.05;
  font-size: clamp(2rem, 3.1vw, 3rem);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
}

.panel p,
.section-head p,
.contact-copy p,
.video-card p,
.process-card p {
  color: var(--muted);
  line-height: 1.74;
}

.launch-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: start;
}

.panel-player {
  display: grid;
  align-content: start;
}

.panel-player .section-kicker {
  margin-bottom: 4px;
}

.panel-player h2 {
  margin: 4px 0 6px;
}

.panel-player > p {
  margin: 0;
  line-height: 1.58;
}

.panel-player .main-player {
  margin-top: 6px;
}

.preview-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.preview-chip {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.preview-chip.active {
  border-color: rgba(255, 183, 100, 0.82);
  background: rgba(255, 183, 100, 0.22);
}

.preview-player-shell {
  margin-top: 12px;
}

#previewPlayer {
  width: 100%;
  height: 100%;
}

.preview-status {
  margin: 12px 0 0;
  color: #b8dcff;
  font-weight: 700;
  font-size: 0.9rem;
}

.preview-cta {
  margin-top: 12px;
  border: 1px solid rgba(255, 183, 100, 0.42);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 183, 100, 0.08);
}

.preview-cta p {
  margin: 0 0 10px;
}

.preview-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.panel-platforms {
  background: linear-gradient(145deg, rgba(31, 61, 104, 0.46), rgba(15, 30, 49, 0.85));
}

.platform-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.platform-grid a {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.platform-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(126, 196, 255, 0.82);
}

.platform-grid .full {
  grid-column: 1 / -1;
}

.platform-showcase {
  margin-top: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 183, 100, 0.18), transparent 34%),
    linear-gradient(155deg, rgba(8, 18, 30, 0.92), rgba(12, 28, 46, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.platform-showcase-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffd59a;
}

.platform-showcase h3 {
  margin: 10px 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.platform-showcase p:not(.platform-showcase-kicker) {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.platform-showcase-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.platform-showcase .platform-grid a {
  background: rgba(255, 255, 255, 0.04);
}

.platform-showcase-meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-showcase-meta span {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dbecff;
  font-size: 0.82rem;
  font-weight: 700;
}

.section-head {
  margin-bottom: 22px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(13, 28, 47, 0.74);
  box-shadow: var(--shadow);
  padding: 16px;
}

.process-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(126, 196, 255, 0.58);
  color: #b7ddff;
  font-weight: 800;
}

.process-card h3 {
  margin: 14px 0 8px;
  font-size: 1.1rem;
}

.yt-status {
  margin-top: 8px;
  color: #b8dcff;
  font-weight: 700;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.video-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 16px;
}

.video-card h3 {
  margin: 14px 0 8px;
}

.contact-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(30, 59, 103, 0.52), rgba(13, 26, 43, 0.9));
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 16, 28, 0.88);
  color: var(--text);
  font: inherit;
  padding: 14px;
  resize: vertical;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(126, 196, 255, 0.88);
  box-shadow: 0 0 0 3px rgba(126, 196, 255, 0.14);
}

.form-feedback {
  min-height: 24px;
  margin: 2px 0 0;
  font-weight: 700;
  color: #a3ffd2;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0 34px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.74s ease, transform 0.74s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .launch-grid,
  .video-grid,
  .contact-wrap,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .portrait-frame img {
    aspect-ratio: 16 / 10;
  }

  .hero-badge {
    position: static;
    margin-top: 14px;
    left: auto;
    right: auto;
  }

}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(7, 19, 31, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .visual-toggle {
    width: 100%;
    justify-content: center;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .section {
    padding: 72px 0;
  }

  .panel,
  .video-card,
  .contact-wrap {
    padding: 18px;
  }

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