:root {
  --bg: #040614;
  --ink: #f4f7ff;
  --muted: #b1bedb;
  --accent: #3be1ff;
  --secondary: #ffcf5b;
  --card: rgba(12, 18, 38, 0.85);
  --stroke: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(3, 8, 22, 0.55);
}

@font-face {
  font-family: "One World One Future";
  src: url("assets/OneworldonefutureExtrabold-ARdM.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jet Set";
  src: url("assets/JetSet-8j1J.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jet Set", sans-serif;
  background: radial-gradient(circle at top, #0b1b45 0%, #040614 52%, #02020b 100%);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.nebula {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(0, 163, 255, 0.3), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(160, 80, 255, 0.35), transparent 55%),
    radial-gradient(circle at 60% 90%, rgba(33, 227, 192, 0.2), transparent 45%);
  filter: blur(10px);
  opacity: 0.7;
  z-index: 0;
}

.stars {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(#ffffff 1px, transparent 1px),
    radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 100px 100px, 160px 160px;
  background-position: 0 0, 40px 60px;
  opacity: 0.12;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(2, 6, 20, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw;
  border-bottom: 1px solid var(--stroke);
  gap: 16px;
}

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

.brand-pk {
  width: 42px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
}

.brand-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-tag {
  font-size: 0.85rem;
  color: var(--muted);
}

.cta,
.ghost {
  font-family: inherit;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  border: 1px solid var(--stroke);
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta {
  background: linear-gradient(120deg, #00c6ff, #2ee6c5);
  color: #02101a;
  border: none;
  box-shadow: 0 12px 30px rgba(0, 198, 255, 0.35);
}

.ghost.small {
  padding: 6px 14px;
  font-size: 0.8rem;
}

.insta-link {
  padding: 10px 18px;
}

.insta-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #ffffff;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 110px 7vw 70px;
  min-height: calc(90vh - 80px);
  align-items: center;
  background-image: url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(3, 6, 18, 0.88),
    rgba(3, 6, 18, 0.45) 45%,
    rgba(3, 6, 18, 0.85)
  );
  z-index: 0;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-box img {
  width: 50%;
  height: auto;
  transform: translateX(-20px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
}

.hero-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 14px 0 10px;
  flex-wrap: wrap;
}

.hero-pk {
  width: 70px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
}

h1,
h2,
h3 {
  font-family: "One World One Future", sans-serif;
  letter-spacing: 0.04em;
}

.hero-sub {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  gap: 28px;
  color: var(--muted);
}

.meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.meta-value {
  font-weight: 600;
}

.hero-card {
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subscribe-form {
  margin-top: 32px;
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  max-width: 480px;
}

.subscribe-form h3 {
  margin-bottom: 6px;
}

.subscribe-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.subscribe-fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-fields input {
  flex: 1;
  min-width: 140px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.9rem;
}

.subscribe-fields input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.subscribe-fields input:focus {
  outline: none;
  border-color: var(--accent);
}

.subscribe-msg {
  margin-top: 10px;
  font-size: 0.85rem;
}

.subscribe-msg.success {
  color: var(--secondary);
}

.subscribe-msg.error {
  color: #f87171;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 90px 7vw 50px;
  }

  .hero-meta {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
  }

  .hero-copy,
  .hero-visual {
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .cta,
  .hero-actions .ghost {
    width: 100%;
    text-align: center;
  }

  .hero-title-row {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 16px 6vw;
  }

  .hero {
    padding: 80px 6vw 40px;
  }

  .hero-pk {
    width: 56px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-tag {
    font-size: 0.75rem;
  }
}
