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

html {
  scroll-behavior: auto;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 75% 25%, rgba(123, 34, 255, 0.22), transparent 30%),
    radial-gradient(circle at 20% 75%, rgba(255, 79, 216, 0.12), transparent 28%),
    #05010a;
  color: #ffffff;
  overflow-x: hidden;
}

/* ============================= */
/* 3D CANVAS */
/* ============================= */

.webgl {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  z-index: 1;
  pointer-events: none;
}

/* ============================= */
/* HEADER / LOGO BAR */
/* ============================= */

.site-header {
  position: fixed;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: min(88%, 1180px);
  height: 70px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px 0 26px;
  border-radius: 100px;
  background: rgba(10, 3, 18, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}

.site-nav a:hover {
  color: #ffffff;
}

.site-nav a:last-child {
  padding: 11px 17px;
  border-radius: 100px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* ============================= */
/* SECTIONS */
/* ============================= */

.panel {
  min-height: 100vh;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

/* Odd sections: text on right */
.panel:nth-of-type(odd) .content {
  margin-left: auto;
  margin-right: 6%;
}

/* Even sections: text on left */
.panel:nth-of-type(even) .content {
  margin-left: 0;
  margin-right: auto;
}

.content {
  max-width: 720px;
}

/* Move homepage text slightly down after adding header */
.hero .content {
  transform: translateY(55px);
}

.hero {
  background:
    radial-gradient(circle at 70% 35%, rgba(123, 34, 255, 0.18), transparent 34%),
    radial-gradient(circle at 15% 75%, rgba(255, 79, 216, 0.1), transparent 28%);
}

/* ============================= */
/* TYPOGRAPHY */
/* ============================= */

h1 {
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.88;
  letter-spacing: -6px;
  font-weight: 900;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(42px, 5.6vw, 86px);
  line-height: 0.95;
  letter-spacing: -4px;
  font-weight: 900;
  margin-bottom: 24px;
}

p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
}

/* ============================= */
/* PREMIUM SMALL LABEL */
/* ============================= */

.mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #c9a8ff;
  background: transparent;
  border: none;
  padding: 0;
}

.mini-tag::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, #7b22ff, #ff4fd8);
  box-shadow: 0 0 14px rgba(255, 79, 216, 0.5);
}

/* ============================= */
/* BUTTONS */
/* ============================= */

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.main-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Purple frosted glass primary button */
.main-btn {
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(180, 110, 255, 0.3),
    rgba(123, 34, 255, 0.2)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 10px 35px rgba(123, 34, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.main-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(
    135deg,
    rgba(190, 125, 255, 0.38),
    rgba(123, 34, 255, 0.28)
  );
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 16px 45px rgba(123, 34, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

/* Secondary frosted glass button */
.ghost-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.ghost-btn:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

/* ============================= */
/* SERVICE PILLS */
/* ============================= */

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  max-width: 640px;
}

.service-pills span {
  padding: 11px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: 0.3s ease;
}

.service-pills span:hover {
  background: rgba(123, 34, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.24);
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 900px) {
  .site-header {
    top: 16px;
    width: 92%;
    height: 62px;
    padding: 0 16px;
  }

  .brand-logo img {
    height: 28px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .panel,
  .panel:nth-of-type(odd),
  .panel:nth-of-type(even) {
    padding: 130px 6%;
    align-items: flex-start;
  }

  .panel:nth-of-type(odd) .content,
  .panel:nth-of-type(even) .content {
    margin-left: 0;
    margin-right: 0;
  }

  .hero .content {
    transform: translateY(35px);
  }

  .content {
    max-width: 100%;
  }

  h1 {
    font-size: 58px;
    letter-spacing: -3px;
  }

  h2 {
    font-size: 44px;
    letter-spacing: -2px;
  }

  p {
    font-size: 16px;
  }

  .buttons {
    flex-direction: column;
  }

  .main-btn,
  .ghost-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
  }

  .site-nav {
    display: none;
  }

  .site-header {
    justify-content: center;
  }
}.site-footer {
  position: relative;
  z-index: 3;
  padding: 32px 8%;
  text-align: center;
  background: #05010a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0 auto;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.2px;
}
@media (max-width: 768px) {
  /* mobile only */
}/* ============================= */
/* MOBILE FIX ONLY */
/* ============================= */

@media (max-width: 768px) {
  body {
    background:
      radial-gradient(circle at 50% 18%, rgba(123, 34, 255, 0.2), transparent 32%),
      radial-gradient(circle at 50% 85%, rgba(255, 79, 216, 0.1), transparent 28%),
      #05010a;
  }

  .site-header {
    top: 18px;
    width: 88%;
    height: 78px;
    justify-content: center;
    padding: 0 22px;
  }

  .brand-logo img {
    height: 34px;
  }

  .site-nav {
    display: none;
  }

  .panel {
    min-height: 100svh;
    padding: 165px 7% 90px;
    align-items: flex-start;
  }

  .panel .content,
  .panel:nth-of-type(odd) .content,
  .panel:nth-of-type(even) .content {
    margin: 0;
    max-width: 100%;
    transform: none;
  }

  .hero .content {
    transform: none;
    margin-top: 90px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 72px);
    line-height: 0.92;
    letter-spacing: -3px;
  }

  h2 {
    font-size: clamp(42px, 13vw, 64px);
    line-height: 0.95;
    letter-spacing: -2.5px;
  }

  p {
    font-size: 20px;
    line-height: 1.8;
  }

  .buttons {
    flex-direction: column;
    gap: 18px;
  }

  .main-btn,
  .ghost-btn {
    width: 100%;
    min-height: 66px;
    font-size: 17px;
  }

  .service-pills {
    gap: 14px;
  }

  .service-pills span {
    font-size: 16px;
    padding: 13px 18px;
  }

  .site-footer {
    padding: 42px 8%;
  }

  .site-footer p {
    font-size: 18px;
    line-height: 1.7;
  }
}/* ============================= */
/* TEXT REVEAL ANIMATIONS */
/* ============================= */

.content h1,
.content h2 {
  overflow: hidden;
}

.reveal-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.reveal-word span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.9s ease;
}

.content p,
.buttons,
.service-pills,
.mini-tag {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel.is-visible .reveal-word span {
  transform: translateY(0);
  opacity: 1;
}

.panel.is-visible .mini-tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.panel.is-visible .content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.panel.is-visible .buttons {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.panel.is-visible .service-pills {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}