:root {
  --blue: #0874f9;
  --blue-strong: #005be8;
  --orange: #ff9d00;
  --orange-strong: #ff7a00;
  --navy: #061b3a;
  --navy-soft: #0c2b57;
  --white: #ffffff;
  --muted: #aebfd4;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(8, 116, 249, 0.18), transparent 31rem),
    radial-gradient(circle at 88% 88%, rgba(255, 157, 0, 0.10), transparent 27rem),
    linear-gradient(145deg, #04142b 0%, var(--navy) 48%, #04142b 100%);
  font-family: "Inter", sans-serif;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.glow {
  position: fixed;
  width: 360px;
  height: 360px;
  z-index: -2;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
}

.glow-blue {
  top: -90px;
  right: 7%;
  background: var(--blue);
}

.glow-orange {
  left: 5%;
  bottom: -140px;
  background: var(--orange);
}

.topbar {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 205px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.top-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.top-contact svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-contact:hover {
  border-color: rgba(255, 157, 0, 0.55);
  background: rgba(255, 157, 0, 0.12);
  transform: translateY(-2px);
}

.hero {
  min-height: calc(100vh - 210px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 68px;
  padding-block: 48px 62px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 9px 14px;
  border: 1px solid rgba(8, 116, 249, 0.30);
  border-radius: 999px;
  color: #cfe4ff;
  background: rgba(8, 116, 249, 0.10);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 157, 0, 0.12);
  animation: pulse 1.8s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(3.15rem, 6vw, 6.35rem);
  line-height: 0.91;
  letter-spacing: -0.045em;
}

h1 span {
  display: block;
  color: var(--orange);
  text-shadow: 0 9px 30px rgba(255, 157, 0, 0.13);
}

.lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.75;
}

.bio-card {
  max-width: 660px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.bio-card p {
  margin: 0;
  color: #e5edf8;
  font-size: 0.88rem;
  line-height: 1.5;
}

.bio-card span {
  margin-right: 5px;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}

.button svg {
  width: 19px;
}

.button-primary {
  color: #071b37;
  background: linear-gradient(135deg, #ffb12d, var(--orange));
  box-shadow: 0 15px 38px rgba(255, 157, 0, 0.19);
}

.button-primary svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 19px 45px rgba(255, 157, 0, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  color: #dce8f5;
  background: rgba(255, 255, 255, 0.05);
}

.button-secondary:hover {
  border-color: rgba(8, 116, 249, 0.48);
  background: rgba(8, 116, 249, 0.10);
  transform: translateY(-3px);
}

.socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  color: #8fa6c1;
  font-size: 0.83rem;
}

.socials span {
  margin-right: 4px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  transition: 0.22s ease;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.socials a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.socials a:hover {
  color: var(--orange);
  border-color: rgba(255, 157, 0, 0.4);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.visual-card {
  position: relative;
  width: min(100%, 520px);
  height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 46px;
  background:
    radial-gradient(circle at 50% 33%, rgba(8, 116, 249, 0.28), transparent 45%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.visual-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  left: 50%;
  top: 44%;
  z-index: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 40px rgba(255, 255, 255, 0.025),
    0 0 0 80px rgba(255, 255, 255, 0.018);
}

.mascot {
  position: absolute;
  width: min(calc(100% - 42px), 400px);
  max-width: none;
  max-height: calc(100% - 132px);
  height: auto;
  left: 50%;
  top: 20px;
  z-index: 2;
  transform: translateX(-50%);
  object-fit: contain;
  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.30));
}

.coming-soon {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  color: #c2d2e5;
  background: rgba(4, 20, 43, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.coming-soon span {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-soon strong {
  font-size: 0.82rem;
}

.mini-badge {
  position: absolute;
  z-index: 3;
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transform: rotate(-5deg);
}

.badge-blue {
  top: 38px;
  left: 30px;
  color: white;
  background: var(--blue);
}

.badge-orange {
  top: 88px;
  right: 22px;
  color: #081a34;
  background: var(--orange);
  transform: rotate(6deg);
}

.cube {
  position: absolute;
  z-index: 1;
  width: 43px;
  height: 43px;
  border: 4px solid currentColor;
  opacity: 0.55;
  transform: rotate(25deg) skew(-3deg);
}

.cube-one {
  top: 190px;
  left: 31px;
  color: var(--orange);
}

.cube-two {
  top: 235px;
  right: 34px;
  color: var(--blue);
  transform: rotate(-18deg) skew(3deg);
}

.footer {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #8299b5;
  font-size: 0.78rem;
}

.footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer strong {
  color: #d9e5f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer a {
  text-decoration: none;
  transition: 0.2s ease;
}

.footer a:hover {
  color: var(--orange);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.72);
    opacity: 0.55;
  }
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 34px;
  }

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

  .status-pill,
  .bio-card,
  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .eyebrow {
    text-align: center;
  }

  h1 {
    max-width: 820px;
    margin-inline: auto;
  }

  .actions,
  .socials {
    justify-content: center;
  }

  .hero-visual {
    min-height: 575px;
  }

  .visual-card {
    width: min(100%, 590px);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    min-height: 92px;
  }

  .brand {
    width: 155px;
  }

  .top-contact {
    padding: 10px 13px;
    font-size: 0.78rem;
  }

  .top-contact svg {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 28px 42px;
  }

  .status-pill {
    margin-bottom: 22px;
    font-size: 0.76rem;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .lead {
    margin-top: 20px;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .bio-card {
    grid-template-columns: 1fr;
    text-align: left;
    margin-top: 22px;
    border-radius: 18px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .socials {
    margin-top: 20px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .visual-card {
    height: 500px;
    border-radius: 32px;
  }

  .mascot {
    width: min(calc(100% - 34px), 345px);
    max-height: calc(100% - 120px);
    top: 18px;
  }

  .coming-soon {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 14px;
  }

  .badge-blue {
    top: 22px;
    left: 18px;
  }

  .badge-orange {
    top: 68px;
    right: 14px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: 28px;
    text-align: center;
  }

  .footer > div:first-child {
    flex-direction: column;
    gap: 4px;
  }

  .footer-links {
    justify-content: center;
    gap: 10px 16px;
  }
}

@media (max-width: 430px) {
  .topbar {
    gap: 10px;
  }

  .brand {
    width: 137px;
  }

  .top-contact {
    padding: 9px 11px;
  }

  .status-pill {
    max-width: 100%;
    text-align: left;
  }

  .socials {
    flex-wrap: wrap;
  }

  .socials span {
    width: 100%;
    margin-bottom: 2px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .visual-card {
    height: 440px;
  }

  .mascot {
    width: min(calc(100% - 28px), 295px);
    max-height: calc(100% - 108px);
    top: 14px;
  }

  .cube {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
