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

:root {
  --navy-950: #020713;
  --navy-900: #041126;
  --navy-800: #071a36;
  --navy-700: #0d2b52;
  --gold-500: #d7aa42;
  --gold-400: #eac765;
  --gold-300: #f5df9e;
  --white: #ffffff;
  --text: #edf3fb;
  --muted: #aab7cb;
  --border: rgba(231, 192, 91, 0.28);
  --glass: rgba(6, 22, 48, 0.72);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--navy-950);
  font-family: "Montserrat", sans-serif;
}

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

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

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

.page-background {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(24, 70, 126, 0.33), transparent 34%),
    linear-gradient(150deg, #020713 0%, #05132a 52%, #020713 100%);
}

.page-background::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  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: 58px 58px;
  mask-image: radial-gradient(circle, #000 20%, transparent 86%);
}

.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.85) 1px, transparent 1px),
    radial-gradient(circle, rgba(235,199,101,.65) 1px, transparent 1px);
  background-size: 90px 90px, 150px 150px;
  background-position: 0 0, 40px 70px;
}

.stars-one {
  opacity: 0.16;
  animation: starsMove 45s linear infinite;
}

.stars-two {
  opacity: 0.08;
  transform: scale(1.3);
  animation: starsMove 70s linear infinite reverse;
}

@keyframes starsMove {
  to { transform: translateY(-180px); }
}

.glow {
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
}

.glow-left {
  top: 20%;
  left: -260px;
  background: #0e69b6;
}

.glow-right {
  right: -280px;
  bottom: 5%;
  background: #d3a43a;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.45));
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-300);
  font-size: 1.24rem;
  letter-spacing: 0.09em;
}

.brand span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-contact {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 17px;
  color: var(--gold-300);
  background: rgba(255,255,255,0.03);
  font-size: 0.78rem;
  transition: 0.25s ease;
}

.header-contact:hover {
  background: rgba(231,192,91,0.10);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
  min-height: calc(100vh - 115px);
  padding-block: 80px;
}

.eyebrow {
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.2rem, 8vw, 7.8rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.80;
}

.hero h1 span {
  display: block;
  margin-top: 20px;
  color: transparent;
  background: linear-gradient(120deg, #fff4c8, #dfb44d 58%, #94641d);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-tagline {
  margin-top: 32px;
  color: #e6edf7;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: 0.04em;
}

.launch-box {
  display: inline-flex;
  flex-direction: column;
  margin-top: 30px;
  border-left: 3px solid var(--gold-500);
  padding: 6px 0 6px 18px;
}

.launch-box span {
  color: var(--muted);
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.launch-box strong {
  margin-top: 5px;
  color: var(--gold-300);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

.hero-description {
  max-width: 680px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 5px;
  padding: 0 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: #061127;
  background: linear-gradient(135deg, #f2d47d, #c7922e);
  box-shadow: 0 16px 35px rgba(196, 143, 39, 0.20);
}

.button-secondary {
  border: 1px solid var(--border);
  color: var(--gold-300);
  background: rgba(255,255,255,0.03);
}

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

.hero-visual img {
  position: relative;
  z-index: 3;
  width: min(500px, 85vw);
  filter: drop-shadow(0 34px 48px rgba(0,0,0,.55));
  animation: floatLogo 7s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

.logo-glow {
  position: absolute;
  width: 66%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(219, 171, 67, 0.16);
  filter: blur(50px);
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(226,185,82,.23);
  border-radius: 50%;
}

.orbit-one {
  width: 94%;
  aspect-ratio: 1;
  animation: rotateOrbit 24s linear infinite;
}

.orbit-two {
  width: 78%;
  aspect-ratio: 1;
  transform: rotateX(65deg);
  animation: rotateOrbit 18s linear infinite reverse;
}

@keyframes rotateOrbit {
  to { transform: rotate(360deg); }
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  background: rgba(5,18,40,.70);
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
  backdrop-filter: blur(15px);
}

.principles article {
  min-height: 250px;
  padding: 34px 28px;
  border-right: 1px solid rgba(231,192,91,.18);
}

.principles article:last-child {
  border-right: 0;
}

.principles span {
  color: var(--gold-500);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
}

.principles h2 {
  margin-top: 24px;
  color: var(--gold-300);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  line-height: 1.1;
}

.principles p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.about {
  padding-block: 120px;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.contact-section h2 {
  margin-top: 13px;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-300);
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  margin-top: 52px;
}

.about-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.9;
}

.about-copy p + p {
  margin-top: 22px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
}

.about-stats div {
  min-height: 140px;
  padding: 26px;
  border-right: 1px solid rgba(231,192,91,.16);
  border-bottom: 1px solid rgba(231,192,91,.16);
  background: rgba(255,255,255,.025);
}

.about-stats div:nth-child(2n) {
  border-right: 0;
}

.about-stats div:nth-child(n+3) {
  border-bottom: 0;
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  color: var(--gold-300);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.about-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 110px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 55px;
}

.contact-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.contact-section p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-section > a {
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 15px 22px;
  color: var(--gold-300);
  font-size: .82rem;
  transition: .25s ease;
}

.contact-section > a:hover {
  background: rgba(231,192,91,.10);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding-block: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer img {
  width: 60px;
}

.site-footer strong {
  color: var(--gold-300);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  letter-spacing: .07em;
}

.site-footer p {
  margin-top: 4px;
  color: var(--muted);
  font-size: .72rem;
}

.site-footer .copyright {
  margin-top: 0;
  text-align: right;
}

@media (max-width: 950px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .launch-box {
    align-items: center;
    border-left: 0;
    border-top: 2px solid var(--gold-500);
    padding: 16px 20px 0;
  }

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

  .principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles article:nth-child(2) {
    border-right: 0;
  }

  .principles article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(231,192,91,.18);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .site-header {
    align-items: flex-start;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand span {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 75px 55px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 18vw, 5.5rem);
  }

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

  .principles {
    grid-template-columns: 1fr;
  }

  .principles article,
  .principles article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(231,192,91,.18);
  }

  .principles article:last-child {
    border-bottom: 0;
  }

  .about {
    padding-block: 85px;
  }

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

  .about-stats div,
  .about-stats div:nth-child(2n),
  .about-stats div:nth-child(n+3) {
    border-right: 0;
    border-bottom: 1px solid rgba(231,192,91,.16);
  }

  .about-stats div:last-child {
    border-bottom: 0;
  }

  .contact-section {
    margin-bottom: 70px;
  }

  .contact-section > a {
    width: 100%;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .site-footer {
    grid-template-columns: auto 1fr;
  }

  .site-footer .copyright {
    grid-column: 1 / -1;
    text-align: left;
  }
}

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