:root {
  --bg: #050505;
  --bg-soft: rgba(13, 13, 13, 0.78);
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.15);
  --line-strong: rgba(255, 255, 255, 0.32);
  --text: #f5f3ef;
  --muted: rgba(245, 243, 239, 0.72);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.28), transparent 0 28%),
    radial-gradient(circle at 26% 78%, rgba(255, 255, 255, 0.08), transparent 0 20%),
    linear-gradient(115deg, #020202 0%, #0b0b0b 44%, #141414 100%);
  font-family: "Space Grotesk", sans-serif;
}

body::before,
body::after {
  position: fixed;
  inset: auto;
  content: "";
  pointer-events: none;
  z-index: -2;
}

body::before {
  top: -18vw;
  right: -14vw;
  width: 50vw;
  height: 50vw;
  min-width: 420px;
  min-height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 42%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.24) 34%, transparent 68%);
  filter: blur(14px);
  opacity: 0.9;
}

body::after {
  left: -18vw;
  bottom: -22vw;
  width: 58vw;
  height: 58vw;
  min-width: 520px;
  min-height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 55% 42%, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.76) 50%, transparent 76%);
  filter: blur(28px);
  opacity: 0.92;
}

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

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

#starfield {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.page-noise,
.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.page-noise {
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 160px 160px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.page-glow--light {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.16), transparent 0 26%);
}

.page-glow--dark {
  background:
    radial-gradient(circle at 18% 72%, rgba(0, 0, 0, 0.5), transparent 0 28%);
}

.topbar,
.hero,
.split-section,
.strengths,
.presence,
.footer {
  width: var(--content-width);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 10px;
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.brand-mark__symbol {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #f7f5f2 0 22%, transparent 23%),
    linear-gradient(180deg, #f7f5f2 0 50%, #040404 50% 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.brand-mark__name {
  color: rgba(245, 243, 239, 0.86);
}

.topbar__nav {
  display: inline-flex;
  gap: 24px;
  font-size: 0.92rem;
  color: var(--muted);
}

.topbar__nav a {
  position: relative;
  transition: color 180ms ease;
}

.topbar__nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible {
  color: var(--text);
}

.topbar__nav a:hover::after,
.topbar__nav a:focus-visible::after {
  transform: scaleX(1);
}

main {
  display: grid;
  gap: 56px;
  padding: 16px 0 48px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 42px 0 24px;
}

.hero__copy {
  max-width: 620px;
}

.hero__eyebrow,
.section-kicker {
  margin: 0 0 16px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(245, 243, 239, 0.62);
}

.hero h1,
.section-heading h2,
.philosophy h2,
.presence__panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3.6rem, 7vw, 7rem);
  max-width: 10ch;
  text-wrap: balance;
}

.hero__lead,
.philosophy p,
.strength-card p,
.presence__panel p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero__lead {
  max-width: 54ch;
  margin: 26px 0 0;
  font-size: 1.05rem;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: #f3f0ec;
  color: #060606;
  border-color: rgba(255, 255, 255, 0.56);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.12);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero__signals li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(245, 243, 239, 0.75);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero__card {
  position: relative;
  width: min(100%, 560px);
  padding: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__card::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 38%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.06), transparent 30%);
  pointer-events: none;
}

.hero__logo {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 8px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: contrast(1.05) saturate(0);
}

.hero__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  animation: spin 30s linear infinite;
}

.hero__orbit::before,
.hero__orbit::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.hero__orbit::before {
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translateX(-50%);
}

.hero__orbit::after {
  right: 18%;
  bottom: 8%;
  width: 4px;
  height: 4px;
}

.hero__orbit--outer {
  width: min(88vw, 680px);
  aspect-ratio: 1;
}

.hero__orbit--inner {
  width: min(70vw, 520px);
  aspect-ratio: 1;
  animation-direction: reverse;
  animation-duration: 24s;
}

.hero__badge {
  position: absolute;
  padding: 10px 16px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.hero__badge--light {
  top: 15%;
  right: 1%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.hero__badge--dark {
  bottom: 11%;
  left: 1%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.32);
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.philosophy,
.presence__panel,
.presence__list,
.strength-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.philosophy {
  min-height: 320px;
  padding: 34px;
}

.philosophy--dark {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.06), transparent 0 24%),
    linear-gradient(145deg, rgba(8, 8, 8, 0.92), rgba(20, 20, 20, 0.78));
}

.philosophy--light {
  color: #0d0d0d;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.9), transparent 0 24%),
    linear-gradient(145deg, rgba(241, 239, 234, 0.96), rgba(214, 211, 206, 0.86));
}

.philosophy--light .section-kicker,
.philosophy--light p {
  color: rgba(13, 13, 13, 0.68);
}

.philosophy h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 18px;
}

.strengths {
  padding-top: 18px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  text-wrap: balance;
}

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

.strength-card {
  min-height: 240px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
}

.strength-card::before,
.presence__panel::before,
.presence__list::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%);
  pointer-events: none;
}

.strength-card__index {
  display: inline-block;
  margin-bottom: 30px;
  color: rgba(245, 243, 239, 0.46);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
}

.strength-card h3,
.presence__list strong {
  margin: 0 0 14px;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.25;
}

.presence {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 24px;
}

.presence__panel {
  padding: 36px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.presence__panel h2 {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  margin-bottom: 18px;
}

.presence__list {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(10, 10, 10, 0.9), rgba(22, 22, 22, 0.72));
}

.presence__list div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.presence__list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.presence__list span {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 243, 239, 0.48);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 0 56px;
  color: rgba(245, 243, 239, 0.52);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding-top: 24px;
  }

  .hero__copy {
    max-width: none;
  }

  .hero__visual {
    min-height: 560px;
  }

  .split-section,
  .presence,
  .strengths__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --content-width: min(100vw - 28px, 100%);
    --radius-xl: 24px;
    --radius-lg: 22px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .topbar__nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  main {
    gap: 40px;
  }

  .hero {
    padding-top: 12px;
  }

  .hero h1 {
    max-width: 8.5ch;
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .hero__visual {
    min-height: 420px;
  }

  .hero__badge {
    font-size: 0.64rem;
  }

  .split-section,
  .strengths__grid,
  .presence {
    grid-template-columns: 1fr;
  }

  .philosophy,
  .presence__panel,
  .presence__list,
  .strength-card {
    padding: 24px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }
}
