/* =========================================================
   DIVINE BEING CONSCIOUS
   GLOBAL STYLESHEET

   /assets/css/style.css
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {
  --bg: #050505;
  --bg-soft: #0a0a0b;

  --text: #f5f5f5;

  --muted: #a3a3a8;
  --muted-2: #737379;

  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);

  --glass: rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(255, 255, 255, 0.085);

  --white: #ffffff;
  --black: #000000;

  --radius: 28px;

  --container: 1180px;

  --header-height: 84px;
}


/* =========================================================
   RESET / GLOBAL
========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;

  color: var(--text);

  background:
    radial-gradient(
      circle at 18% 8%,
      rgba(255, 255, 255, 0.07),
      transparent 24rem
    ),
    radial-gradient(
      circle at 88% 38%,
      rgba(255, 255, 255, 0.045),
      transparent 30rem
    ),
    linear-gradient(
      145deg,
      #030303 0%,
      #09090a 55%,
      #030303 100%
    );

  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: #050505;
  background: #f4f4f4;
}

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

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

button {
  font: inherit;
}

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

.container {
  width: min(
    calc(100% - 40px),
    var(--container)
  );

  margin-inline: auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.glass-card {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    );

  border: 1px solid var(--line);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 90px rgba(0, 0, 0, 0.28);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}


/* =========================================================
   BACKGROUND
========================================================= */

.page-noise {
  position: fixed;
  inset: 0;

  z-index: -1;

  pointer-events: none;

  opacity: 0.12;

  background-image:
    url(
      "data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E"
    );
}

.ambient {
  position: fixed;

  z-index: -2;

  border-radius: 50%;

  filter: blur(80px);

  pointer-events: none;
}

.ambient-one {
  top: 8%;
  left: -12rem;

  width: 34rem;
  height: 34rem;

  background: rgba(255, 255, 255, 0.035);
}

.ambient-two {
  right: -16rem;
  top: 48%;

  width: 42rem;
  height: 42rem;

  background: rgba(255, 255, 255, 0.025);
}


/* =========================================================
   NAVIGATION
========================================================= */

.site-header {
  position: fixed;

  z-index: 1000;

  inset: 0 0 auto;

  height: var(--header-height);

  border-bottom: 1px solid transparent;

  transition: 0.3s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.72);

  border-bottom-color: var(--line);

  box-shadow:
    0 12px 50px rgba(0, 0, 0, 0.24);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.navbar {
  height: 100%;

  display: flex;
  align-items: center;

  gap: 24px;
}


/* =========================================================
   BRAND
========================================================= */

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

  gap: 12px;

  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;

  width: 43px;
  aspect-ratio: 1;

  border: 1px solid var(--line-strong);
  border-radius: 13px;

  background:
    linear-gradient(
      145deg,
      #efefef,
      #8d8d8d
    );

  color: #090909;

  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.08em;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 30px rgba(255, 255, 255, 0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1.05;

  font-family: "Space Grotesk", sans-serif;
}

.brand-text strong {
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.brand-text span {
  margin-top: 5px;

  color: var(--muted);

  font-size: 0.7rem;

  text-transform: uppercase;

  letter-spacing: 0.18em;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav {
  margin-left: auto;

  display: flex;
  align-items: center;

  gap: 23px;
}

.nav-link {
  position: relative;

  padding: 10px 0;

  color: #bdbdc2;

  font-size: 0.84rem;

  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 4px;

  width: 100%;
  height: 1px;

  background: #ffffff;

  transform: scaleX(0);
  transform-origin: right;

  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* =========================================================
   LANGUAGE SWITCH
========================================================= */

.language-switch {
  display: flex;
  align-items: center;

  gap: 4px;

  padding: 4px;

  border: 1px solid var(--line);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.language-btn {
  border: none;
  outline: none;

  cursor: pointer;

  min-width: 38px;
  height: 32px;

  padding: 0 10px;

  border-radius: 999px;

  color: var(--muted);

  background: transparent;

  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;

  transition: 0.25s ease;
}

.language-btn:hover {
  color: #ffffff;
}

.language-btn.active {
  color: #080808;

  background:
    linear-gradient(
      135deg,
      #ffffff,
      #bcbcbc
    );
}


/* =========================================================
   NAV CONTACT
========================================================= */

.nav-contact {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  padding: 11px 15px;

  border: 1px solid var(--line);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);

  color: #ededed;

  font-size: 0.82rem;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.nav-contact:hover {
  color: #080808;
  background: #f0f0f0;

  transform: translateY(-1px);
}


/* =========================================================
   BURGER
========================================================= */

.menu-toggle {
  display: none;

  margin-left: auto;

  width: 46px;
  height: 46px;

  border: 1px solid var(--line);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.05);

  cursor: pointer;

  position: relative;

  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  position: absolute;

  width: 19px;
  height: 1.5px;

  border-radius: 10px;

  background: #ffffff;

  transition:
    transform 0.3s ease,
    opacity 0.2s ease,
    top 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

.menu-toggle.active span:nth-child(1) {
  top: 22px;

  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  top: 22px;

  transform: rotate(-45deg);
}


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

.menu-backdrop {
  position: fixed;
  inset: 0;

  z-index: 999;

  background: rgba(0, 0, 0, 0.62);

  opacity: 0;
  visibility: hidden;

  transition: 0.35s ease;

  backdrop-filter: blur(3px);
}

.menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;

  z-index: 1001;

  top: 0;
  right: 0;

  width: min(88vw, 410px);
  height: 100dvh;

  display: flex;
  flex-direction: column;

  padding: 28px;

  background:
    linear-gradient(
      160deg,
      rgba(22, 22, 23, 0.97),
      rgba(5, 5, 5, 0.98)
    );

  border-left: 1px solid var(--line-strong);

  box-shadow:
    -30px 0 80px rgba(0, 0, 0, 0.5);

  transform: translateX(104%);

  transition:
    transform
    0.48s
    cubic-bezier(0.77, 0, 0.18, 1);

  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 26px;

  border-bottom: 1px solid var(--line);
}

.mobile-menu-label {
  color: var(--muted);

  text-transform: uppercase;

  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.mobile-close {
  width: 42px;
  height: 42px;

  border: 1px solid var(--line);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.05);

  color: #ffffff;

  cursor: pointer;

  font-size: 1rem;
}

.mobile-language {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 20px 0;

  border-bottom: 1px solid var(--line);
}

.mobile-language-label {
  color: var(--muted);

  font-size: 0.7rem;

  text-transform: uppercase;

  letter-spacing: 0.15em;
}

.mobile-links {
  display: flex;
  flex-direction: column;

  padding-top: 10px;
}

.mobile-links a {
  display: flex;
  align-items: center;

  gap: 18px;

  padding: 17px 0;

  border-bottom: 1px solid var(--line);

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(
    1.35rem,
    6vw,
    2.05rem
  );

  font-weight: 500;

  letter-spacing: -0.04em;
}

.mobile-links a span {
  min-width: 28px;

  color: var(--muted-2);

  font:
    500
    0.68rem
    "Inter",
    sans-serif;

  letter-spacing: 0.13em;
}

.mobile-links a.active {
  color: #ffffff;
}

.mobile-links a.active span {
  color: #ffffff;
}

.mobile-socials {
  display: flex;

  gap: 10px;

  margin-top: auto;

  padding-top: 26px;
}

.mobile-socials a,
.footer-socials a {
  display: grid;
  place-items: center;

  width: 44px;
  height: 44px;

  border: 1px solid var(--line);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.045);

  transition: 0.25s ease;
}

.mobile-socials a:hover,
.footer-socials a:hover {
  color: #080808;

  background: #efefef;

  transform: translateY(-2px);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: 100svh;

  display: flex;
  align-items: center;

  padding-top:
    calc(
      var(--header-height)
      + 65px
    );

  overflow: hidden;
}

.hero::before,
.theory-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    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: 72px 72px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75),
      transparent 90%
    );

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75),
      transparent 90%
    );
}

.hero-grid {
  position: relative;

  z-index: 1;

  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(350px, 0.9fr);

  align-items: center;

  gap: clamp(
    44px,
    8vw,
    105px
  );
}

.eyebrow {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 28px;

  color: #c1c1c6;

  font-size: 0.72rem;
  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: 0.16em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #dcdcdc;

  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.8);
}

.hero h1,
.theory-hero h1 {
  max-width: 900px;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(
    3.45rem,
    7vw,
    7.25rem
  );

  font-weight: 500;

  line-height: 0.9;

  letter-spacing: -0.067em;
}

.hero h1 span,
.theory-hero h1 span {
  display: block;

  color: transparent;

  background:
    linear-gradient(
      100deg,
      #fbfbfb 0%,
      #77777c 85%
    );

  background-clip: text;
  -webkit-background-clip: text;
}

.hero h1 .solid,
.theory-hero h1 .solid {
  color: #f5f5f5;

  background: none;

  -webkit-text-fill-color: initial;
}

.hero-lead {
  max-width: 690px;

  margin-top: 30px;

  color: #aaaab0;

  font-size: clamp(
    1rem,
    1.7vw,
    1.13rem
  );

  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 34px;
}

.button {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 11px;

  padding: 0 21px;

  border-radius: 15px;

  font-size: 0.86rem;
  font-weight: 600;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

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

.button-light {
  color: #080808;

  background:
    linear-gradient(
      135deg,
      #ffffff,
      #bcbcbc
    );

  box-shadow:
    0 10px 35px rgba(255, 255, 255, 0.12);
}

.button-ghost {
  border: 1px solid var(--line);

  background: rgba(255, 255, 255, 0.035);
}

.button-ghost:hover {
  border-color: var(--line-strong);

  background: rgba(255, 255, 255, 0.075);
}

.hero-meta {
  display: flex;

  gap: 38px;

  margin-top: 46px;

  padding-top: 25px;

  border-top: 1px solid var(--line);
}

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

.hero-meta strong {
  font:
    500
    1.3rem
    "Space Grotesk",
    sans-serif;

  letter-spacing: -0.03em;
}

.hero-meta span {
  margin-top: 3px;

  color: var(--muted-2);

  font-size: 0.72rem;

  text-transform: uppercase;

  letter-spacing: 0.09em;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
  width: 100%;
}

.visual-frame {
  min-height: 535px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 26px;

  border-radius: 38px;

  overflow: hidden;

  position: relative;
}

.visual-frame::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.09),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025),
      transparent 55%
    );

  pointer-events: none;
}

.visual-topline,
.visual-footer {
  position: relative;

  z-index: 2;

  display: flex;
  justify-content: space-between;

  color: var(--muted-2);

  font-size: 0.61rem;
  font-weight: 600;

  letter-spacing: 0.17em;
}

.visual-footer {
  gap: 20px;

  justify-content: center;
}

.orb-shell {
  position: relative;

  display: grid;
  place-items: center;

  width: 300px;
  aspect-ratio: 1;

  margin: auto;
}

.orb-ring {
  position: absolute;

  border: 1px solid rgba(255, 255, 255, 0.18);

  border-radius: 50%;
}

.ring-one {
  inset: 0;

  animation:
    spin
    14s
    linear
    infinite;
}

.ring-one::before,
.ring-one::after {
  content: "";

  position: absolute;

  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #e7e7e7;

  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.8);
}

.ring-one::before {
  left: 24px;
  top: 50%;
}

.ring-one::after {
  right: 39px;
  top: 18%;
}

.ring-two {
  inset: 43px;

  border-style: dashed;

  opacity: 0.7;

  animation:
    spin-reverse
    20s
    linear
    infinite;
}

.orb-core {
  width: 134px;
  aspect-ratio: 1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 30%,
      #ffffff 0%,
      #bdbdbd 16%,
      #3e3e42 42%,
      #0a0a0b 68%
    );

  box-shadow:
    inset -20px -25px 45px rgba(0, 0, 0, 0.78),
    0 0 90px rgba(255, 255, 255, 0.12);
}

.orbit-tag {
  position: absolute;

  padding: 7px 10px;

  border: 1px solid var(--line);

  border-radius: 999px;

  background: rgba(8, 8, 8, 0.66);

  color: #bcbcc1;

  font-size: 0.58rem;
  font-weight: 600;

  letter-spacing: 0.12em;

  backdrop-filter: blur(12px);
}

.tag-one {
  top: 16%;
  right: -7%;
}

.tag-two {
  left: -8%;
  top: 55%;
}

.tag-three {
  right: 4%;
  bottom: 8%;
}

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

@keyframes spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}


/* =========================================================
   HEADINGS
========================================================= */

.about-section,
.contact-section,
.theory-soft-section {
  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(255, 255, 255, 0.015),
      transparent
    );
}

.section-heading {
  display: flex;
  align-items: flex-start;

  gap: 24px;

  margin-bottom: 48px;
}

.section-number {
  padding-top: 8px;

  color: var(--muted-2);

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.15em;
}

.section-kicker {
  margin-bottom: 7px;

  color: var(--muted);

  font-size: 0.72rem;
  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.17em;
}

.section-heading h2,
.contact-card h2 {
  max-width: 800px;

  font:
    500
    clamp(
      2.25rem,
      5vw,
      4.5rem
    )
    / 1.04
    "Space Grotesk",
    sans-serif;

  letter-spacing: -0.055em;
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(300px, 0.65fr);

  gap: 22px;
}

.about-text,
.quote-card,
.status-card,
.profile-card {
  border-radius: var(--radius);
}

.about-text {
  padding: clamp(
    27px,
    5vw,
    54px
  );
}

.about-text p {
  color: #b7b7bc;

  font-size: clamp(
    0.98rem,
    1.45vw,
    1.08rem
  );

  line-height: 1.9;
}

.about-text p + p {
  margin-top: 21px;
}

.about-side {
  display: flex;
  flex-direction: column;

  gap: 22px;
}


/* =========================================================
   PROFILE
========================================================= */

.profile-card {
  padding: 30px;

  display: flex;
  align-items: center;

  gap: 22px;

  overflow: hidden;
}

.avatar-wrapper {
  position: relative;

  flex: 0 0 auto;

  width: 112px;
  height: 112px;
}

.avatar {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.23);

  background:
    radial-gradient(
      circle at 35% 30%,
      #78787d,
      #252527 48%,
      #0d0d0e 80%
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 0 7px rgba(255, 255, 255, 0.035),
    0 20px 55px rgba(0, 0, 0, 0.45);
}

.avatar img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  border-radius: 50%;
}

.avatar-status {
  position: absolute;

  right: 3px;
  bottom: 7px;

  z-index: 3;

  width: 18px;
  height: 18px;

  border-radius: 50%;

  border: 4px solid #111113;

  background: #ececec;

  box-shadow:
    0 0 15px rgba(255, 255, 255, 0.5);
}

.profile-info {
  min-width: 0;
  flex: 1;
}

.profile-info small {
  display: block;

  margin-bottom: 5px;

  color: var(--muted-2);

  font-size: 0.65rem;

  text-transform: uppercase;

  letter-spacing: 0.14em;
}

.profile-info h3 {
  font-family: "Space Grotesk", sans-serif;

  font-size: 1.35rem;
  font-weight: 500;

  letter-spacing: -0.03em;

  overflow-wrap: anywhere;
}

.profile-info p {
  margin-top: 4px;

  color: var(--muted);

  font-size: 0.82rem;
}


/* =========================================================
   QUOTE
========================================================= */

.quote-card {
  flex: 1;

  padding: 34px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-card i {
  color: #cfcfd3;

  font-size: 1.35rem;
}

.quote-card p {
  margin-top: 60px;

  font:
    400
    clamp(
      1.25rem,
      2vw,
      1.6rem
    )
    / 1.45
    "Space Grotesk",
    sans-serif;

  letter-spacing: -0.025em;
}


/* =========================================================
   STATUS
========================================================= */

.status-card {
  padding: 8px 27px;
}

.status-row {
  display: flex;
  flex-direction: column;

  gap: 2px;

  padding: 21px 0;
}

.status-row + .status-row {
  border-top: 1px solid var(--line);
}

.status-row span {
  color: var(--muted-2);

  font-size: 0.68rem;

  text-transform: uppercase;

  letter-spacing: 0.12em;
}

.status-row strong {
  font:
    500
    1rem
    "Space Grotesk",
    sans-serif;
}


/* =========================================================
   INTERESTS
========================================================= */

.interest-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 16px;
}

.interest-card {
  min-height: 290px;

  position: relative;

  display: flex;
  flex-direction: column;

  padding: 28px;

  border-radius: 24px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.interest-card:hover {
  transform: translateY(-7px);

  border-color: rgba(255, 255, 255, 0.24);

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.035)
    );
}

.interest-card > span {
  position: absolute;

  top: 28px;
  right: 28px;

  color: var(--muted-2);

  font-size: 0.65rem;

  letter-spacing: 0.12em;
}

.interest-icon {
  display: grid;
  place-items: center;

  width: 46px;
  height: 46px;

  border: 1px solid var(--line-strong);

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.06);

  color: #dedee1;
}

.interest-card h3 {
  margin-top: auto;

  padding-top: 48px;

  font:
    500
    1.45rem
    "Space Grotesk",
    sans-serif;

  letter-spacing: -0.03em;
}

.interest-card p {
  margin-top: 11px;

  color: #929298;

  font-size: 0.89rem;

  line-height: 1.75;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-card {
  display: grid;

  grid-template-columns:
    0.85fr
    1.15fr;

  gap: 70px;

  padding: clamp(
    30px,
    6vw,
    66px
  );

  border-radius: 34px;
}

.contact-card > div:first-child > p:last-child {
  max-width: 500px;

  margin-top: 22px;

  color: #9d9da3;

  line-height: 1.8;
}

.contact-links {
  display: flex;
  flex-direction: column;
}

.contact-links > a {
  display: grid;

  grid-template-columns:
    50px
    1fr
    auto;

  align-items: center;

  gap: 14px;

  padding: 18px 0;

  border-bottom: 1px solid var(--line);

  transition: padding 0.25s ease;
}

.contact-links > a:first-child {
  border-top: 1px solid var(--line);
}

.contact-links > a:hover {
  padding-left: 8px;
}

.contact-icon {
  display: grid;
  place-items: center;

  width: 45px;
  height: 45px;

  border: 1px solid var(--line);

  border-radius: 13px;

  background: rgba(255, 255, 255, 0.05);
}

.contact-links > a > span:nth-child(2) {
  display: flex;
  flex-direction: column;

  overflow-wrap: anywhere;

  font-size: 0.88rem;
}

.contact-links small {
  color: var(--muted-2);

  font-size: 0.65rem;

  text-transform: uppercase;

  letter-spacing: 0.13em;
}

.contact-links > a > i {
  color: var(--muted);

  font-size: 0.72rem;
}


/* =========================================================
   RECURSIVE REALITY HERO
========================================================= */

.theory-hero {
  position: relative;

  min-height: 100svh;

  display: flex;
  align-items: center;

  padding:
    calc(var(--header-height) + 95px)
    0
    90px;

  overflow: hidden;
}

.theory-hero-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(360px, 0.95fr);

  gap: clamp(
    50px,
    8vw,
    110px
  );

  align-items: center;
}

.theory-description {
  max-width: 720px;

  margin-top: 30px;

  color: #aaaab0;

  font-size: clamp(
    1rem,
    1.6vw,
    1.12rem
  );

  line-height: 1.9;
}

.theory-label {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  padding: 8px 13px;

  margin-bottom: 27px;

  border: 1px solid var(--line);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.035);

  color: #bdbdc2;

  font-size: 0.66rem;
  font-weight: 600;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}

.theory-label::before {
  content: "";

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #e7e7e7;

  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.8);
}


/* =========================================================
   RECURSIVE VISUAL
========================================================= */

.recursive-visual {
  min-height: 560px;

  position: relative;

  display: grid;
  place-items: center;

  padding: 30px;

  overflow: hidden;

  border-radius: 38px;
}

.recursive-visual::before {
  content: "";

  position: absolute;

  width: 340px;
  height: 340px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.08),
      transparent 68%
    );

  filter: blur(5px);
}

.loop-system {
  position: relative;

  z-index: 2;

  width: min(
    100%,
    390px
  );

  aspect-ratio: 1;

  display: grid;
  place-items: center;
}

.loop-circle {
  position: absolute;

  border-radius: 50%;

  border:
    1px solid
    rgba(255, 255, 255, 0.19);
}

.loop-circle.outer {
  inset: 0;

  animation:
    spin
    22s
    linear
    infinite;
}

.loop-circle.middle {
  inset: 48px;

  border-style: dashed;

  opacity: 0.75;

  animation:
    spin-reverse
    17s
    linear
    infinite;
}

.loop-circle.inner {
  inset: 102px;

  opacity: 0.6;

  animation:
    spin
    12s
    linear
    infinite;
}

.loop-core {
  position: relative;

  z-index: 3;

  width: 118px;
  aspect-ratio: 1;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border:
    1px solid
    rgba(255, 255, 255, 0.25);

  background:
    radial-gradient(
      circle at 38% 32%,
      #e8e8e8,
      #77777b 20%,
      #242426 45%,
      #080808 72%
    );

  box-shadow:
    0 0 90px rgba(255, 255, 255, 0.14);

  font:
    600
    0.64rem
    "Space Grotesk",
    sans-serif;

  letter-spacing: 0.13em;

  text-align: center;
}

.loop-node {
  position: absolute;

  min-width: 105px;

  padding: 9px 12px;

  border:
    1px solid
    var(--line-strong);

  border-radius: 999px;

  background:
    rgba(6, 6, 6, 0.82);

  color: #bcbcc2;

  font-size: 0.6rem;
  font-weight: 600;

  letter-spacing: 0.1em;

  text-align: center;

  backdrop-filter: blur(12px);
}

.loop-node.future {
  top: -2%;
  left: 50%;

  transform: translateX(-50%);
}

.loop-node.creation {
  right: -11%;
  top: 46%;
}

.loop-node.past {
  bottom: -2%;
  left: 50%;

  transform: translateX(-50%);
}

.loop-node.present {
  left: -12%;
  top: 46%;
}

.loop-arrow {
  position: absolute;

  z-index: 4;

  color: #aaaaaf;

  font-size: 0.72rem;
}

.loop-arrow.arrow-one {
  top: 21%;
  right: 10%;

  transform: rotate(48deg);
}

.loop-arrow.arrow-two {
  right: 13%;
  bottom: 20%;

  transform: rotate(135deg);
}

.loop-arrow.arrow-three {
  bottom: 20%;
  left: 13%;

  transform: rotate(225deg);
}

.loop-arrow.arrow-four {
  left: 10%;
  top: 21%;

  transform: rotate(315deg);
}


/* =========================================================
   THEORY INTRO
========================================================= */

.theory-intro {
  display: grid;

  grid-template-columns:
    minmax(260px, 0.62fr)
    minmax(0, 1.38fr);

  gap: 70px;

  align-items: start;
}

.theory-intro-title {
  position: sticky;

  top: 130px;
}

.theory-intro-title h3 {
  margin-top: 10px;

  max-width: 380px;

  font:
    500
    clamp(
      2rem,
      4vw,
      3.7rem
    )
    / 1.08
    "Space Grotesk",
    sans-serif;

  letter-spacing: -0.05em;
}

.theory-prose {
  padding: clamp(
    28px,
    5vw,
    52px
  );

  border-radius: var(--radius);
}

.theory-prose p {
  color: #b6b6bc;

  font-size: clamp(
    1rem,
    1.4vw,
    1.08rem
  );

  line-height: 2;
}

.theory-prose p + p {
  margin-top: 24px;
}

.theory-prose strong {
  color: #eeeeef;

  font-weight: 500;
}


/* =========================================================
   THEORY PRINCIPLES
========================================================= */

.principle-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 16px;
}

.principle-card {
  position: relative;

  min-height: 340px;

  display: flex;
  flex-direction: column;

  padding: 30px;

  border-radius: 25px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-7px);

  border-color:
    rgba(255, 255, 255, 0.23);
}

.principle-number {
  color: var(--muted-2);

  font-size: 0.66rem;
  font-weight: 600;

  letter-spacing: 0.14em;
}

.principle-icon {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  margin-top: 28px;

  border:
    1px solid
    var(--line-strong);

  border-radius: 15px;

  background:
    rgba(255, 255, 255, 0.055);

  color: #dddddf;
}

.principle-card h3 {
  margin-top: auto;

  padding-top: 50px;

  font:
    500
    1.5rem
    "Space Grotesk",
    sans-serif;

  letter-spacing: -0.035em;
}

.principle-card p {
  margin-top: 12px;

  color: #929298;

  font-size: 0.88rem;

  line-height: 1.8;
}


/* =========================================================
   TIMELINE / RECURSIVE FLOW
========================================================= */

.recursive-flow {
  overflow: hidden;

  padding: clamp(
    30px,
    5vw,
    55px
  );

  border-radius: 32px;
}

.flow-track {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  position: relative;
}

.flow-track::before {
  content: "";

  position: absolute;

  top: 21px;
  left: 12.5%;
  right: 12.5%;

  height: 1px;

  background:
    linear-gradient(
      to right,
      transparent,
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.3),
      transparent
    );
}

.flow-item {
  position: relative;

  z-index: 2;

  padding: 0 20px;

  text-align: center;
}

.flow-point {
  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  margin-inline: auto;

  border-radius: 50%;

  border:
    1px solid
    rgba(255, 255, 255, 0.24);

  background: #111113;

  box-shadow:
    0 0 0 8px
    rgba(255, 255, 255, 0.025);

  color: #d7d7da;

  font-size: 0.7rem;
}

.flow-item h3 {
  margin-top: 25px;

  font:
    500
    1.15rem
    "Space Grotesk",
    sans-serif;
}

.flow-item p {
  margin-top: 10px;

  color: #8e8e94;

  font-size: 0.82rem;

  line-height: 1.7;
}


/* =========================================================
   STATEMENT CARD
========================================================= */

.big-statement {
  position: relative;

  padding: clamp(
    35px,
    7vw,
    85px
  );

  overflow: hidden;

  border-radius: 36px;
}

.big-statement::before {
  content: "∞";

  position: absolute;

  right: 4%;
  top: 50%;

  transform: translateY(-55%);

  color:
    rgba(255, 255, 255, 0.025);

  font:
    500
    clamp(
      13rem,
      30vw,
      28rem
    )
    "Space Grotesk",
    sans-serif;

  pointer-events: none;
}

.big-statement p:first-child {
  position: relative;

  z-index: 2;
}

.big-statement h2 {
  position: relative;

  z-index: 2;

  max-width: 900px;

  margin-top: 13px;

  font:
    500
    clamp(
      2.4rem,
      6vw,
      5.7rem
    )
    / 1
    "Space Grotesk",
    sans-serif;

  letter-spacing: -0.06em;
}

.big-statement-text {
  position: relative;

  z-index: 2;

  max-width: 760px;

  margin-top: 28px;

  color: #9d9da3;

  line-height: 1.9;
}


/* =========================================================
   DISCLAIMER
========================================================= */

.hypothesis-note {
  display: flex;

  gap: 18px;

  padding: 24px;

  margin-top: 28px;

  border:
    1px solid
    var(--line);

  border-radius: 20px;

  background:
    rgba(255, 255, 255, 0.025);
}

.hypothesis-note i {
  margin-top: 4px;

  color: #bcbcc1;
}

.hypothesis-note p {
  color: #88888e;

  font-size: 0.82rem;

  line-height: 1.75;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 30px 0 36px;

  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;

  grid-template-columns:
    1fr
    auto;

  align-items: center;

  gap: 22px;
}

.footer-brand {
  display: flex;
  align-items: center;

  gap: 12px;
}

.footer-brand > div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font:
    500
    0.9rem
    "Space Grotesk",
    sans-serif;
}

.footer-brand > div span {
  color: var(--muted-2);

  font-size: 0.72rem;
}

.footer-socials {
  display: flex;

  gap: 8px;
}

.copyright {
  grid-column: 1 / -1;

  padding-top: 20px;

  border-top: 1px solid var(--line);

  color: #66666b;

  font-size: 0.72rem;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(24px);

  transition:
    opacity 0.75s ease,
    transform
    0.75s
    cubic-bezier(
      0.2,
      0.7,
      0.2,
      1
    );
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .desktop-nav {
    gap: 17px;
  }

  .nav-link {
    font-size: 0.78rem;
  }

}


@media (max-width: 1020px) {

  .desktop-nav,
  .desktop-contact,
  .desktop-language {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .contact-card,
  .theory-hero-grid,
  .theory-intro {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 50px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-visual {
    max-width: 660px;

    margin-inline: auto;
  }

  .visual-frame {
    min-height: 470px;
  }

  .about-side {
    display: grid;

    grid-template-columns:
      1fr
      1fr;
  }

  .profile-card {
    grid-column: 1 / -1;
  }

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

  .contact-card {
    gap: 40px;
  }

  .theory-hero {
    padding-top:
      calc(
        var(--header-height)
        + 110px
      );
  }

  .recursive-visual {
    max-width: 650px;

    width: 100%;

    margin-inline: auto;
  }

  .theory-intro {
    gap: 30px;
  }

  .theory-intro-title {
    position: static;
  }

  .flow-track {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 40px 0;
  }

  .flow-track::before {
    display: none;
  }

}


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

@media (max-width: 700px) {

  :root {
    --header-height: 72px;
    --radius: 22px;
  }

  .container {
    width: min(
      calc(100% - 28px),
      var(--container)
    );
  }

  .section {
    padding: 82px 0;
  }

  .brand-text strong {
    font-size: 0.78rem;
  }

  .brand-text span {
    font-size: 0.61rem;
  }

  .brand-mark {
    width: 39px;

    border-radius: 12px;
  }

  .hero,
  .theory-hero {
    min-height: auto;

    padding-top:
      calc(
        var(--header-height)
        + 70px
      );

    padding-bottom: 70px;
  }

  .hero-grid,
  .theory-hero-grid {
    gap: 55px;
    padding-top: 0;
  }

  .hero h1,
  .theory-hero h1 {
    font-size: clamp(
      3.05rem,
      15vw,
      5.1rem
    );
  }

  .hero-lead,
  .theory-description {
    margin-top: 24px;

    font-size: 0.96rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-meta {
    display: grid;

    grid-template-columns:
      repeat(3, 1fr);

    gap: 12px;
  }

  .hero-meta strong {
    font-size: 1.08rem;
  }

  .hero-meta span {
    font-size: 0.58rem;
  }

  .visual-frame {
    min-height: 380px;

    padding: 20px;

    border-radius: 28px;
  }

  .orb-shell {
    width: min(
      72vw,
      250px
    );
  }

  .orb-core {
    width: 104px;
  }

  .section-heading {
    gap: 14px;

    margin-bottom: 33px;
  }

  .section-number {
    padding-top: 5px;
  }

  .about-text,
  .quote-card {
    padding: 25px;
  }

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

  .profile-card {
    grid-column: auto;
  }

  .quote-card p {
    margin-top: 40px;
  }

  .interest-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .interest-card {
    min-height: 245px;
  }

  .contact-card {
    padding: 25px;
  }

  .contact-links > a {
    grid-template-columns:
      45px
      1fr
      auto;
  }

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

  .footer-socials {
    justify-content: flex-start;
  }

  .recursive-visual {
    min-height: 430px;

    padding: 18px;
  }

  .loop-system {
    width: min(
      78vw,
      315px
    );
  }

  .loop-circle.middle {
    inset: 38px;
  }

  .loop-circle.inner {
    inset: 83px;
  }

  .loop-core {
    width: 92px;

    font-size: 0.54rem;
  }

  .loop-node {
    min-width: auto;

    padding: 7px 9px;

    font-size: 0.49rem;
  }

  .loop-node.creation {
    right: -5%;
  }

  .loop-node.present {
    left: -5%;
  }

  .flow-track {
    grid-template-columns: 1fr;

    gap: 36px;
  }

  .flow-item {
    padding: 0;
  }

  .principle-card {
    min-height: 280px;
  }

}


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

@media (max-width: 430px) {

  .brand-text {
    display: none;
  }

  .mobile-menu {
    width: 92vw;

    padding: 22px;
  }

  .hero h1,
  .theory-hero h1 {
    font-size: clamp(
      2.7rem,
      15vw,
      4.2rem
    );
  }

  .hero-meta {
    gap: 8px;
  }

  .tag-one {
    right: -2%;
  }

  .tag-two {
    left: -3%;
  }

  .profile-card {
    flex-direction: column;

    align-items: flex-start;
  }

  .avatar-wrapper {
    width: 100px;
    height: 100px;
  }

  .contact-links > a {
    grid-template-columns:
      42px
      minmax(0, 1fr)
      auto;

    gap: 11px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }

  .footer-brand .brand-mark {
    display: none;
  }

  .recursive-visual {
    min-height: 380px;
  }

  .loop-system {
    width: min(
      76vw,
      275px
    );
  }

  .loop-circle.middle {
    inset: 34px;
  }

  .loop-circle.inner {
    inset: 72px;
  }

  .loop-core {
    width: 83px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;

    transform: none;
  }

}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  position: relative;

  padding:
    80px
    0
    28px;

  border-top:
    1px solid
    var(--line);

  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.018),
      rgba(255, 255, 255, 0.006)
    );

  overflow: hidden;
}

.site-footer::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  left: -180px;
  bottom: -260px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.025);

  filter: blur(80px);

  pointer-events: none;
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(180px, 0.65fr)
    minmax(260px, 0.9fr);

  gap: clamp(
    45px,
    7vw,
    95px
  );

  padding-bottom: 60px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-about {
  max-width: 430px;
}

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

  gap: 14px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;

  min-width: 0;

  font-family:
    "Space Grotesk",
    sans-serif;
}

.footer-logo-text strong {
  color: #eeeeef;

  font-size: 1rem;
  font-weight: 500;

  letter-spacing: -0.025em;
}

.footer-logo-text span {
  margin-top: 3px;

  color: var(--muted-2);

  font-size: 0.68rem;

  letter-spacing: 0.03em;
}

.footer-description {
  max-width: 410px;

  margin-top: 25px;

  color: #8f8f95;

  font-size: 0.88rem;

  line-height: 1.85;
}

.footer-status {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  margin-top: 23px;

  padding: 8px 12px;

  border:
    1px solid
    var(--line);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.025);

  color: #8d8d93;

  font-size: 0.65rem;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.footer-status-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #e0e0e0;

  box-shadow:
    0 0 13px
    rgba(255, 255, 255, 0.65);
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer-heading {
  margin-bottom: 21px;

  color: #c8c8cc;

  font-size: 0.69rem;
  font-weight: 600;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


/* =========================================================
   FOOTER NAVIGATION
========================================================= */

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 10px 0;

  color: #8e8e94;

  font-size: 0.84rem;

  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.footer-links a i {
  color: #56565b;

  font-size: 0.58rem;

  opacity: 0;

  transform: translateX(-7px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.footer-links a:hover {
  padding-left: 5px;

  color: #ffffff;
}

.footer-links a:hover i {
  opacity: 1;

  transform: translateX(0);
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact-list {
  display: flex;
  flex-direction: column;

  gap: 7px;
}

.footer-contact-list > a {
  display: grid;

  grid-template-columns:
    40px
    minmax(0, 1fr);

  align-items: center;

  gap: 12px;

  padding: 9px;

  margin-left: -9px;

  border-radius: 13px;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.footer-contact-list > a:hover {
  background:
    rgba(255, 255, 255, 0.04);

  transform: translateX(4px);
}

.footer-contact-icon {
  display: grid;
  place-items: center;

  width: 40px;
  height: 40px;

  border:
    1px solid
    var(--line);

  border-radius: 12px;

  background:
    rgba(255, 255, 255, 0.035);

  color: #c8c8cc;
}

.footer-contact-list > a > span:last-child {
  display: flex;
  flex-direction: column;

  min-width: 0;

  color: #97979d;

  font-size: 0.75rem;

  overflow-wrap: anywhere;
}

.footer-contact-list small {
  margin-bottom: 2px;

  color: #5f5f65;

  font-size: 0.57rem;
  font-weight: 600;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
  position: relative;

  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding-top: 25px;

  border-top:
    1px solid
    var(--line);
}

.footer-copyright {
  display: flex;
  flex-wrap: wrap;

  gap: 6px;

  color: #5f5f64;

  font-size: 0.69rem;
}

.footer-bottom-right {
  display: flex;
  align-items: center;

  gap: 25px;
}

.footer-domain {
  color: #57575d;

  font-size: 0.67rem;

  letter-spacing: 0.03em;
}

.back-to-top {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  color: #77777d;

  font-size: 0.68rem;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.back-to-top i {
  font-size: 0.62rem;
}

.back-to-top:hover {
  color: #ffffff;

  transform: translateY(-2px);
}


/* =========================================================
   FOOTER TABLET
========================================================= */

@media (max-width: 900px) {

  .footer-main {
    grid-template-columns:
      1.2fr
      0.8fr;
  }

  .footer-main
  .footer-column:last-child {
    grid-column:
      1 / -1;
  }

  .footer-contact-list {
    display: grid;

    grid-template-columns:
      repeat(3, 1fr);

    gap: 10px;
  }

}


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

@media (max-width: 650px) {

  .site-footer {
    padding-top: 60px;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 45px;

    padding-bottom: 45px;
  }

  .footer-about {
    max-width: none;
  }

  .footer-main
  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-contact-list {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;
  }

  .footer-bottom-right {
    width: 100%;

    justify-content: space-between;
  }

}


/* =========================================================
   FOOTER SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

  .footer-logo .brand-mark {
    display: grid;
  }

  .footer-bottom-right {
    align-items: flex-end;
  }

  .footer-domain {
    font-size: 0.61rem;
  }

}

/* =========================================================
   SATURN MATRIX
========================================================= */

.saturn-hero {
  position: relative;

  min-height: 100svh;

  display: flex;
  align-items: center;

  padding:
    calc(var(--header-height) + 95px)
    0
    100px;

  overflow: hidden;
}

.saturn-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    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:
    72px
    72px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      #000,
      transparent 92%
    );

  mask-image:
    linear-gradient(
      to bottom,
      #000,
      transparent 92%
    );
}

.saturn-hero-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(390px, 0.95fr);

  align-items: center;

  gap: clamp(
    55px,
    8vw,
    110px
  );
}


/* =========================================================
   SATURN LABEL
========================================================= */

.saturn-label {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 27px;

  padding: 8px 13px;

  border:
    1px solid
    var(--line);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.035);

  color: #bdbdc2;

  font-size: 0.66rem;
  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.15em;
}

.saturn-label::before {
  content: "";

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #e5e5e5;

  box-shadow:
    0 0 15px
    rgba(255, 255, 255, 0.8);
}


/* =========================================================
   SATURN TITLE
========================================================= */

.saturn-hero h1 {
  max-width: 900px;

  font:
    500
    clamp(
      3.4rem,
      7vw,
      7.1rem
    )
    / 0.92
    "Space Grotesk",
    sans-serif;

  letter-spacing: -0.065em;
}

.saturn-hero h1 span {
  display: block;
}

.saturn-hero h1 .saturn-gradient {
  color: transparent;

  background:
    linear-gradient(
      100deg,
      #ffffff,
      #717176
    );

  background-clip: text;

  -webkit-background-clip: text;
}

.saturn-lead {
  max-width: 720px;

  margin-top: 30px;

  color: #aaaab0;

  font-size: clamp(
    1rem,
    1.6vw,
    1.12rem
  );

  line-height: 1.9;
}


/* =========================================================
   SATURN HERO VISUAL
========================================================= */

.saturn-visual {
  position: relative;

  min-height: 560px;

  display: grid;
  place-items: center;

  overflow: hidden;

  padding: 35px;

  border-radius: 38px;
}

.saturn-visual::before {
  content: "";

  position: absolute;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0.10),
      transparent 68%
    );

  filter: blur(12px);
}

.saturn-system {
  position: relative;

  width: min(
    100%,
    390px
  );

  aspect-ratio: 1;

  display: grid;
  place-items: center;
}

.saturn-planet {
  position: relative;

  z-index: 3;

  width: 155px;
  aspect-ratio: 1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 28%,
      #d5d5d5,
      #747477 18%,
      #29292c 43%,
      #09090a 74%
    );

  box-shadow:
    inset -28px -20px 45px
    rgba(0,0,0,0.7),

    0 0 90px
    rgba(255,255,255,0.12);
}

.saturn-ring {
  position: absolute;

  z-index: 2;

  width: 300px;
  height: 92px;

  border:
    1px solid
    rgba(255,255,255,0.24);

  border-radius: 50%;

  transform:
    rotate(-18deg);
}

.saturn-ring::before {
  content: "";

  position: absolute;

  inset: 13px;

  border:
    1px dashed
    rgba(255,255,255,0.14);

  border-radius: inherit;
}

.saturn-hexagon {
  position: absolute;

  z-index: 4;

  top: 106px;

  width: 51px;
  height: 29px;

  border:
    1px solid
    rgba(255,255,255,0.7);

  opacity: 0.75;
}

.saturn-hexagon::before,
.saturn-hexagon::after {
  content: "";

  position: absolute;

  inset: -1px;

  border:
    1px solid
    rgba(255,255,255,0.55);
}

.saturn-hexagon::before {
  transform:
    rotate(60deg);
}

.saturn-hexagon::after {
  transform:
    rotate(-60deg);
}

.saturn-orbit {
  position: absolute;

  inset: 12px;

  border:
    1px solid
    rgba(255,255,255,0.13);

  border-radius: 50%;

  animation:
    spin
    24s
    linear
    infinite;
}

.saturn-orbit.second {
  inset: 58px;

  border-style: dashed;

  animation:
    spin-reverse
    19s
    linear
    infinite;
}

.saturn-symbol {
  position: absolute;

  z-index: 5;

  display: grid;
  place-items: center;

  width: 36px;
  height: 36px;

  border:
    1px solid
    var(--line-strong);

  border-radius: 50%;

  background:
    rgba(5,5,5,0.8);

  color: #d8d8da;

  font-size: 0.72rem;
}

.saturn-symbol.one {
  top: 8%;
  left: 47%;
}

.saturn-symbol.two {
  right: 5%;
  top: 47%;
}

.saturn-symbol.three {
  bottom: 7%;
  left: 46%;
}

.saturn-symbol.four {
  left: 4%;
  top: 47%;
}


/* =========================================================
   SYMBOL MODEL
========================================================= */

.symbol-model-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 15px;
}

.symbol-model-card {
  min-height: 290px;

  display: flex;
  flex-direction: column;

  padding: 27px;

  border-radius: 24px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.symbol-model-card:hover {
  transform:
    translateY(-6px);

  border-color:
    rgba(255,255,255,0.23);
}

.symbol-model-icon {
  display: grid;
  place-items: center;

  width: 46px;
  height: 46px;

  border:
    1px solid
    var(--line-strong);

  border-radius: 14px;

  background:
    rgba(255,255,255,0.05);
}

.symbol-model-card h3 {
  margin-top: auto;

  padding-top: 48px;

  font:
    500
    1.3rem
    "Space Grotesk",
    sans-serif;

  letter-spacing: -0.03em;
}

.symbol-model-card p {
  margin-top: 10px;

  color: #909096;

  font-size: 0.84rem;

  line-height: 1.75;
}


/* =========================================================
   GREAT SEAL / HOLOGRAPHIC LAB
========================================================= */

.seal-lab {
  position: relative;

  overflow: hidden;

  padding: clamp(
    25px,
    5vw,
    55px
  );

  border-radius: 34px;
}

.seal-lab-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 30px;

  margin-bottom: 40px;
}

.seal-lab-header h3 {
  font:
    500
    clamp(
      1.7rem,
      3vw,
      2.6rem
    )
    / 1.1
    "Space Grotesk",
    sans-serif;

  letter-spacing: -0.04em;
}

.seal-lab-header p {
  max-width: 520px;

  color: #88888e;

  font-size: 0.82rem;

  line-height: 1.7;
}


/* =========================================================
   LAYER CONTROLS
========================================================= */

.layer-controls {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 34px;
}

.layer-button {
  border:
    1px solid
    var(--line);

  border-radius: 999px;

  padding: 9px 14px;

  cursor: pointer;

  color: #85858b;

  background:
    rgba(255,255,255,0.025);

  font-size: 0.67rem;
  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  transition: 0.25s ease;
}

.layer-button:hover,
.layer-button.active {
  color: #080808;

  background: #e8e8e8;

  border-color: transparent;
}


/* =========================================================
   HOLOGRAPHIC PYRAMID
========================================================= */

.hologram-stage {
  position: relative;

  min-height: 700px;

  overflow: hidden;

  display: grid;
  place-items: center;

  border:
    1px solid
    var(--line);

  border-radius: 27px;

  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(255,255,255,0.07),
      transparent 30%
    ),
    linear-gradient(
      rgba(255,255,255,0.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.018) 1px,
      transparent 1px
    ),
    rgba(0,0,0,0.18);

  background-size:
    auto,
    42px 42px,
    42px 42px,
    auto;
}

.hologram-model {
  position: relative;

  width: min(
    92%,
    620px
  );

  height: 600px;
}


/* =========================================================
   ANNUIT COEPTIS
========================================================= */

.annuit {
  position: absolute;

  top: 4%;
  left: 50%;

  transform:
    translateX(-50%);

  width: 100%;

  text-align: center;

  color: #96969c;

  font:
    500
    clamp(
      0.68rem,
      1.6vw,
      0.9rem
    )
    "Space Grotesk",
    sans-serif;

  letter-spacing: 0.34em;
}


/* =========================================================
   PROVIDENCE EYE
========================================================= */

.providence-triangle {
  position: absolute;

  z-index: 8;

  top: 12%;
  left: 50%;

  width: 150px;
  height: 126px;

  transform:
    translateX(-50%);

  clip-path:
    polygon(
      50% 0%,
      100% 100%,
      0% 100%
    );

  background:
    rgba(255,255,255,0.9);

  display: grid;
  place-items: center;
}

.providence-inner {
  width:
    calc(100% - 3px);

  height:
    calc(100% - 3px);

  clip-path:
    polygon(
      50% 1%,
      99% 99%,
      1% 99%
    );

  background:
    #0a0a0b;

  display: grid;
  place-items: center;
}

.eye-symbol {
  position: relative;

  margin-top: 35px;

  width: 67px;
  height: 34px;

  border:
    1px solid
    #d7d7d7;

  border-radius:
    70% 15%
    70% 15%;

  transform:
    rotate(45deg);
}

.eye-symbol::before {
  content: "";

  position: absolute;

  width: 16px;
  height: 16px;

  left: 24px;
  top: 8px;

  border-radius: 50%;

  background: #dddddd;

  box-shadow:
    0 0 18px
    rgba(255,255,255,0.7);
}


/* =========================================================
   SCREEN / HORIZON
========================================================= */

.reality-screen {
  position: absolute;

  z-index: 7;

  top: 38%;
  left: 12%;
  right: 12%;

  height: 2px;

  background:
    linear-gradient(
      to right,
      transparent,
      #cfcfcf 15%,
      #ffffff 50%,
      #cfcfcf 85%,
      transparent
    );

  box-shadow:
    0 0 22px
    rgba(255,255,255,0.35);
}

.reality-screen::before {
  content: "2D PROJECTION PLANE / SCREEN";

  position: absolute;

  bottom: 10px;
  left: 50%;

  transform:
    translateX(-50%);

  min-width: max-content;

  color: #6d6d73;

  font-size: 0.54rem;

  letter-spacing: 0.15em;
}


/* =========================================================
   GLASS PYRAMID
========================================================= */

.glass-pyramid {
  position: absolute;

  z-index: 3;

  top: 40%;
  left: 50%;

  width: 380px;
  height: 310px;

  transform:
    translateX(-50%);

  clip-path:
    polygon(
      50% 0%,
      100% 100%,
      0% 100%
    );

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.13),
      rgba(255,255,255,0.025)
    );

  border-bottom:
    1px solid
    rgba(255,255,255,0.28);
}

.glass-pyramid::before {
  content: "";

  position: absolute;

  inset: 2px;

  clip-path:
    polygon(
      50% 0%,
      100% 100%,
      0% 100%
    );

  background:
    #09090a;
}

.glass-pyramid::after {
  content: "";

  position: absolute;

  z-index: 3;

  left: 50%;
  top: 0;

  width: 1px;
  height: 100%;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.45),
      transparent
    );
}


/* =========================================================
   PROJECTED WORLD
========================================================= */

.projected-world {
  position: absolute;

  z-index: 10;

  top: 55%;
  left: 50%;

  width: 118px;
  aspect-ratio: 1;

  transform:
    translateX(-50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 36% 28%,
      #e2e2e2,
      #747479 18%,
      #29292c 43%,
      #080809 74%
    );

  box-shadow:
    inset -25px -18px 42px
    rgba(0,0,0,0.75),

    0 0 70px
    rgba(255,255,255,0.15);
}

.projected-world::after {
  content: "MATERIAL REALITY";

  position: absolute;

  top: calc(100% + 14px);
  left: 50%;

  transform:
    translateX(-50%);

  min-width: max-content;

  color: #68686e;

  font-size: 0.52rem;

  letter-spacing: 0.15em;
}


/* =========================================================
   PROJECTION RAYS
========================================================= */

.projection-ray {
  position: absolute;

  z-index: 6;

  top: 29%;
  left: 50%;

  width: 1px;
  height: 190px;

  transform-origin: top;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.55),
      rgba(255,255,255,0.02)
    );

  opacity: 0;

  transition:
    opacity 0.4s ease;
}

.show-projection
.projection-ray {
  opacity: 1;
}

.projection-ray.left {
  transform:
    rotate(26deg);
}

.projection-ray.center {
  transform:
    rotate(0);
}

.projection-ray.right {
  transform:
    rotate(-26deg);
}


/* =========================================================
   HEXAGRAM OVERLAY
========================================================= */

.hexagram-overlay {
  position: absolute;

  z-index: 14;

  inset: 40px 20px 30px;

  pointer-events: none;

  opacity: 0;

  transition:
    opacity 0.4s ease;
}

.show-hexagram
.hexagram-overlay {
  opacity: 1;
}

.hexagram-overlay svg {
  width: 100%;
  height: 100%;
}

.hexagram-overlay polygon {
  fill: none;

  stroke:
    rgba(255,255,255,0.55);

  stroke-width: 1.2;

  vector-effect:
    non-scaling-stroke;
}


/* =========================================================
   MASON SYMBOLIC LETTER MAP
========================================================= */

.mason-map {
  position: absolute;

  z-index: 18;

  inset: 0;

  pointer-events: none;

  opacity: 0;

  transition:
    opacity 0.4s ease;
}

.show-mason
.mason-map {
  opacity: 1;
}

.mason-letter {
  position: absolute;

  display: grid;
  place-items: center;

  width: 31px;
  height: 31px;

  border:
    1px solid
    rgba(255,255,255,0.25);

  border-radius: 50%;

  background:
    rgba(5,5,5,0.86);

  color: #dedede;

  font:
    600
    0.64rem
    "Space Grotesk",
    sans-serif;

  box-shadow:
    0 0 20px
    rgba(0,0,0,0.6);
}

.mason-letter.m {
  left: 14%;
  top: 32%;
}

.mason-letter.a {
  left: 48%;
  top: 8%;
}

.mason-letter.s {
  right: 13%;
  top: 32%;
}

.mason-letter.o {
  right: 22%;
  bottom: 10%;
}

.mason-letter.n {
  left: 21%;
  bottom: 10%;
}

.mason-note {
  position: absolute;

  z-index: 20;

  left: 50%;
  bottom: 3%;

  transform:
    translateX(-50%);

  min-width: max-content;

  color: #59595f;

  font-size: 0.5rem;

  letter-spacing: 0.12em;

  opacity: 0;

  transition:
    opacity 0.4s ease;
}

.show-mason
.mason-note {
  opacity: 1;
}


/* =========================================================
   NOVUS ORDO
========================================================= */

.novus {
  position: absolute;

  bottom: 0;
  left: 50%;

  transform:
    translateX(-50%);

  width: 100%;

  text-align: center;

  color: #8e8e94;

  font:
    500
    clamp(
      0.64rem,
      1.4vw,
      0.85rem
    )
    "Space Grotesk",
    sans-serif;

  letter-spacing: 0.27em;
}


/* =========================================================
   INTERPRETATION LEGEND
========================================================= */

.interpretation-legend {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 1px;

  margin-top: 20px;

  overflow: hidden;

  border:
    1px solid
    var(--line);

  border-radius: 18px;

  background:
    var(--line);
}

.interpretation-item {
  padding: 18px;

  background: #0b0b0c;
}

.interpretation-item span {
  display: block;

  margin-bottom: 5px;

  color: #5f5f65;

  font-size: 0.57rem;
  font-weight: 600;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}

.interpretation-item strong {
  color: #aaaab0;

  font:
    500
    0.82rem
    "Space Grotesk",
    sans-serif;
}


/* =========================================================
   ASLEEP / AWAKE
========================================================= */

.state-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 18px;
}

.state-card {
  position: relative;

  min-height: 390px;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  padding: 32px;

  border-radius: 28px;
}

.state-symbol {
  position: relative;

  width: 180px;
  height: 155px;

  margin:
    20px
    auto
    40px;
}

.state-triangle {
  position: absolute;

  inset: 0;

  clip-path:
    polygon(
      50% 0,
      100% 100%,
      0 100%
    );

  border: none;

  background:
    rgba(255,255,255,0.8);
}

.state-triangle::before {
  content: "";

  position: absolute;

  inset: 2px;

  clip-path:
    inherit;

  background:
    #0b0b0c;
}

.state-card.asleep
.state-symbol {
  transform:
    rotate(180deg);
}

.state-eye {
  position: absolute;

  z-index: 4;

  left: 50%;
  top: 62%;

  width: 55px;
  height: 27px;

  transform:
    translate(-50%, -50%)
    rotate(45deg);

  border:
    1px solid
    #d0d0d0;

  border-radius:
    70% 15%
    70% 15%;
}

.state-card.asleep
.state-eye {
  opacity: 0.15;
}

.state-card.awake
.state-eye {
  box-shadow:
    0 0 26px
    rgba(255,255,255,0.2);
}

.state-card h3 {
  margin-top: auto;

  font:
    500
    1.5rem
    "Space Grotesk",
    sans-serif;
}

.state-card p {
  margin-top: 12px;

  color: #8e8e94;

  font-size: 0.87rem;

  line-height: 1.8;
}


/* =========================================================
   SATURN EQUIVALENCE TABLE
========================================================= */

.correspondence-card {
  overflow: hidden;

  border-radius: 28px;
}

.correspondence-row {
  display: grid;

  grid-template-columns:
    0.7fr
    1fr
    1.25fr;

  gap: 25px;

  padding: 22px 28px;

  border-bottom:
    1px solid
    var(--line);
}

.correspondence-row:last-child {
  border-bottom: none;
}

.correspondence-row.header {
  color: #606066;

  font-size: 0.61rem;
  font-weight: 600;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}

.correspondence-row strong {
  font:
    500
    0.93rem
    "Space Grotesk",
    sans-serif;
}

.correspondence-row span {
  color: #8e8e94;

  font-size: 0.82rem;

  line-height: 1.65;
}


/* =========================================================
   TESSERACT
========================================================= */

.tesseract-card {
  display: grid;

  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(320px, 1.15fr);

  align-items: center;

  gap: 60px;

  padding:
    clamp(
      30px,
      6vw,
      70px
    );

  border-radius: 34px;
}

.tesseract-visual {
  position: relative;

  width: min(
    100%,
    340px
  );

  aspect-ratio: 1;

  margin-inline: auto;

  perspective: 900px;
}

.tesseract-cube {
  position: absolute;

  border:
    1px solid
    rgba(255,255,255,0.42);
}

.tesseract-cube.outer {
  inset: 45px;

  transform:
    rotateX(58deg)
    rotateZ(45deg);

  animation:
    tesseractMove
    8s
    ease-in-out
    infinite alternate;
}

.tesseract-cube.inner {
  inset: 100px;

  transform:
    rotateX(58deg)
    rotateZ(45deg);

  border-color:
    rgba(255,255,255,0.7);

  animation:
    tesseractMoveInner
    8s
    ease-in-out
    infinite alternate;
}

.tesseract-line {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 1px;
  height: 130px;

  transform-origin: top;

  background:
    linear-gradient(
      rgba(255,255,255,0.4),
      transparent
    );
}

.tesseract-line.a {
  transform:
    rotate(45deg);
}

.tesseract-line.b {
  transform:
    rotate(135deg);
}

.tesseract-line.c {
  transform:
    rotate(225deg);
}

.tesseract-line.d {
  transform:
    rotate(315deg);
}

@keyframes tesseractMove {

  from {
    transform:
      rotateX(58deg)
      rotateZ(25deg);
  }

  to {
    transform:
      rotateX(58deg)
      rotateZ(70deg);
  }

}

@keyframes tesseractMoveInner {

  from {
    transform:
      rotateX(58deg)
      rotateZ(70deg);
  }

  to {
    transform:
      rotateX(58deg)
      rotateZ(25deg);
  }

}


/* =========================================================
   THEORY DISCLAIMER
========================================================= */

.theory-disclaimer {
  display: flex;

  gap: 18px;

  padding: 26px;

  border:
    1px solid
    var(--line);

  border-radius: 20px;

  background:
    rgba(255,255,255,0.02);
}

.theory-disclaimer i {
  margin-top: 4px;

  color: #b8b8bd;
}

.theory-disclaimer p {
  color: #86868c;

  font-size: 0.82rem;

  line-height: 1.75;
}


/* =========================================================
   SATURN RESPONSIVE
========================================================= */

@media (max-width: 1020px) {

  .saturn-hero-grid,
  .tesseract-card {
    grid-template-columns: 1fr;
  }

  .saturn-visual {
    max-width: 650px;

    width: 100%;

    margin-inline: auto;
  }

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

}


@media (max-width: 760px) {

  .saturn-hero {
    min-height: auto;

    padding-top:
      calc(
        var(--header-height)
        + 75px
      );
  }

  .saturn-hero h1 {
    font-size:
      clamp(
        3rem,
        15vw,
        5rem
      );
  }

  .saturn-visual {
    min-height: 430px;
  }

  .symbol-model-grid,
  .state-grid {
    grid-template-columns: 1fr;
  }

  .seal-lab-header {
    flex-direction: column;
  }

  .hologram-stage {
    min-height: 620px;
  }

  .hologram-model {
    transform:
      scale(0.85);

    transform-origin:
      center center;
  }

  .interpretation-legend {
    grid-template-columns: 1fr;
  }

  .correspondence-row {
    grid-template-columns: 1fr;

    gap: 5px;
  }

  .correspondence-row.header {
    display: none;
  }

}


@media (max-width: 480px) {

  .hologram-model {
    width: 650px;

    transform:
      scale(0.58);
  }

  .hologram-stage {
    min-height: 480px;
  }

  .glass-pyramid {
    width: 350px;
  }

  .saturn-visual {
    min-height: 390px;

    padding: 15px;
  }

  .saturn-system {
    transform:
      scale(0.82);
  }

}

/* =========================================================
   GREAT SEAL / SATURN MATRIX DIAGRAM
========================================================= */

.seal-matrix-card {
  padding:
    clamp(
      25px,
      5vw,
      55px
    );

  border-radius: 34px;
}


/* =========================================================
   HEADER
========================================================= */

.seal-matrix-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 40px;

  margin-bottom: 34px;
}

.seal-matrix-header h3 {
  font:
    500
    clamp(
      1.7rem,
      3vw,
      2.8rem
    )
    / 1.08
    "Space Grotesk",
    sans-serif;

  letter-spacing: -0.045em;
}

.seal-matrix-header > p {
  max-width: 520px;

  color: #88888e;

  font-size: 0.83rem;

  line-height: 1.75;
}


/* =========================================================
   CONTROLS
========================================================= */

.seal-controls {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 25px;
}

.seal-control {
  padding: 9px 14px;

  border:
    1px solid
    var(--line);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.025);

  color: #818187;

  cursor: pointer;

  font-size: 0.64rem;
  font-weight: 600;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  transition:
    0.25s ease;
}

.seal-control:hover {
  color: #ffffff;

  border-color:
    var(--line-strong);
}

.seal-control.active {
  color: #050505;

  background:
    linear-gradient(
      135deg,
      #ffffff,
      #b8b8b8
    );

  border-color: transparent;
}


/* =========================================================
   STAGE
========================================================= */

.great-seal-stage {
  position: relative;

  min-height: 820px;

  overflow: hidden;

  display: grid;
  place-items: center;

  border:
    1px solid
    var(--line);

  border-radius: 28px;

  background:
    radial-gradient(
      circle at 50% 47%,
      rgba(255,255,255,0.075),
      transparent 34%
    ),
    linear-gradient(
      rgba(255,255,255,0.018)
      1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.018)
      1px,
      transparent 1px
    ),
    #070708;

  background-size:
    auto,
    45px 45px,
    45px 45px,
    auto;

  box-shadow:
    inset
    0
    0
    100px
    rgba(0,0,0,0.7);
}


/* =========================================================
   SVG
========================================================= */

.great-seal-svg {
  width:
    min(
      94%,
      800px
    );

  height: auto;

  overflow: visible;
}


/* =========================================================
   GENERAL SVG LINES
========================================================= */

.seal-circle {
  fill: none;

  stroke:
    rgba(255,255,255,0.36);

  stroke-width: 1.4;
}

.seal-circle.middle {
  stroke:
    rgba(255,255,255,0.17);
}

.seal-circle.inner {
  stroke:
    rgba(255,255,255,0.1);
}


/* =========================================================
   LATIN TEXT
========================================================= */

.seal-arc-text {
  fill: #e3e3e3;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 34px;

  letter-spacing: 10px;
}


/* =========================================================
   OBSERVER / EYE
========================================================= */

.observer-ring {
  fill:
    rgba(4,4,4,0.95);

  stroke:
    rgba(255,255,255,0.75);

  stroke-width: 2;
}

.observer-ring.secondary {
  stroke:
    rgba(255,255,255,0.35);

  stroke-width: 1;
}

.observer-core {
  fill: #dfdfdf;

  filter:
    url(#whiteGlow);
}

.eye-triangle {
  fill:
    rgba(5,5,5,0.95);

  stroke:
    rgba(255,255,255,0.78);

  stroke-width: 2;
}

.providence-eye {
  fill: none;

  stroke: #e4e4e4;

  stroke-width: 2;
}

.providence-pupil {
  fill: #eeeeee;

  filter:
    url(#softGlow);
}

.eye-ray {
  stroke:
    rgba(255,255,255,0.55);

  stroke-width: 1;
}


/* =========================================================
   PYRAMID
========================================================= */

.pyramid-outline {
  fill:
    rgba(255,255,255,0.012);

  stroke:
    rgba(255,255,255,0.72);

  stroke-width: 2.4;
}

.pyramid-step {
  stroke:
    rgba(255,255,255,0.38);

  stroke-width: 1.4;
}

.pyramid-line {
  stroke:
    rgba(255,255,255,0.45);

  stroke-width: 1;
}

.pyramid-line.strong {
  stroke:
    rgba(255,255,255,0.8);

  stroke-width: 2;
}


/* =========================================================
   REALITY HORIZON
========================================================= */

.reality-horizon {
  stroke: #efefef;

  stroke-width: 2;

  filter:
    url(#whiteGlow);
}

.screen-caption {
  fill: #626268;

  font-family:
    "Inter",
    sans-serif;

  font-size: 11px;

  letter-spacing: 4px;
}


/* =========================================================
   PROJECTION
========================================================= */

.projection-ray-svg {
  stroke:
    rgba(255,255,255,0.32);

  stroke-width: 1.2;

  stroke-dasharray:
    5 7;
}

.material-world-ring {
  fill:
    rgba(5,5,5,0.92);

  stroke:
    rgba(255,255,255,0.45);

  stroke-width: 1;
}

.material-world {
  fill:
    #bdbdbd;

  filter:
    url(#softGlow);
}

.material-highlight {
  fill:
    rgba(255,255,255,0.8);
}


/* =========================================================
   HEXAGRAM
========================================================= */

.matrix-triangle {
  fill: none;

  stroke:
    rgba(255,255,255,0.52);

  stroke-width: 2.1;

  vector-effect:
    non-scaling-stroke;
}

.matrix-triangle-up {
  stroke:
    rgba(255,255,255,0.78);
}

.matrix-triangle-down {
  stroke:
    rgba(255,255,255,0.31);

  stroke-dasharray:
    7 7;
}


/* =========================================================
   NODES
========================================================= */

.node-connection {
  stroke:
    rgba(255,255,255,0.51);

  stroke-width: 2;
}

.node-connection.subtle {
  stroke:
    rgba(255,255,255,0.24);

  stroke-width: 1.3;
}

.letter-node-ring {
  fill:
    rgba(5,5,5,0.97);

  stroke:
    rgba(255,255,255,0.78);

  stroke-width: 2;
}

.letter-node-inner {
  fill:
    rgba(10,10,11,1);

  stroke:
    rgba(255,255,255,0.21);

  stroke-width: 1;
}

.letter-node-text {
  fill: #f0f0f0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 50px;
}


/* =========================================================
   AXES
========================================================= */

.matrix-axis {
  stroke:
    rgba(255,255,255,0.2);

  stroke-width: 1;

  stroke-dasharray:
    4 8;
}

.matrix-axis.faint {
  opacity: 0.5;
}

.axis-label {
  fill: #55555b;

  font-family:
    "Inter",
    sans-serif;

  font-size: 11px;

  letter-spacing: 3px;
}


/* =========================================================
   CAPTIONS
========================================================= */

.symbolic-caption {
  fill: #66666c;

  font-family:
    "Inter",
    sans-serif;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 4px;
}


/* =========================================================
   LAYER VISIBILITY
========================================================= */

.seal-layer {
  transition:
    opacity
    0.45s ease;
}


/* complete */

.great-seal-stage.mode-complete
.seal-layer {
  opacity: 1;
}


/* only original seal */

.great-seal-stage.mode-seal
.seal-layer-hexagram,

.great-seal-stage.mode-seal
.seal-layer-nodes,

.great-seal-stage.mode-seal
.seal-layer-projection {
  opacity: 0.06;
}


/* hexagram focus */

.great-seal-stage.mode-hexagram
.seal-layer-base {
  opacity: 0.24;
}

.great-seal-stage.mode-hexagram
.seal-layer-projection {
  opacity: 0.25;
}

.great-seal-stage.mode-hexagram
.seal-layer-nodes {
  opacity: 0.2;
}

.great-seal-stage.mode-hexagram
.seal-layer-hexagram {
  opacity: 1;
}


/* node focus */

.great-seal-stage.mode-nodes
.seal-layer-base {
  opacity: 0.25;
}

.great-seal-stage.mode-nodes
.seal-layer-hexagram {
  opacity: 0.65;
}

.great-seal-stage.mode-nodes
.seal-layer-projection {
  opacity: 0.2;
}

.great-seal-stage.mode-nodes
.seal-layer-nodes {
  opacity: 1;
}


/* =========================================================
   SIDE LABELS
========================================================= */

.seal-side-label {
  position: absolute;

  display: flex;
  flex-direction: column;

  gap: 3px;

  color: #606066;

  pointer-events: none;
}

.seal-side-label span {
  font-size: 0.52rem;

  letter-spacing: 0.17em;
}

.seal-side-label strong {
  color: #96969c;

  font:
    500
    0.7rem
    "Space Grotesk",
    sans-serif;
}

.seal-side-left {
  left: 25px;
  top: 30px;
}

.seal-side-right {
  right: 25px;
  bottom: 30px;

  text-align: right;
}


/* =========================================================
   EXPLANATION GRID
========================================================= */

.seal-explanation-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 1px;

  margin-top: 22px;

  overflow: hidden;

  border:
    1px solid
    var(--line);

  border-radius: 20px;

  background:
    var(--line);
}

.seal-explanation-grid > div {
  padding: 22px;

  background: #0a0a0b;
}

.seal-explanation-grid > div > span {
  display: block;

  margin-bottom: 30px;

  color: #56565c;

  font-size: 0.58rem;
  font-weight: 600;

  letter-spacing: 0.14em;
}

.seal-explanation-grid strong {
  display: block;

  color: #d1d1d4;

  font:
    500
    1rem
    "Space Grotesk",
    sans-serif;
}

.seal-explanation-grid p {
  margin-top: 8px;

  color: #7e7e84;

  font-size: 0.76rem;

  line-height: 1.7;
}

.seal-disclaimer {
  margin-top: 22px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .seal-matrix-header {
    flex-direction: column;

    gap: 15px;
  }

  .great-seal-stage {
    min-height: 680px;
  }

  .great-seal-svg {
    width:
      min(
        100%,
        690px
      );
  }

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

}


@media (max-width: 600px) {

  .seal-matrix-card {
    padding: 18px;
  }

  .great-seal-stage {
    min-height: 490px;

    border-radius: 20px;
  }

  .great-seal-svg {
    width: 115%;

    max-width: none;
  }

  .seal-arc-text {
    font-size: 27px;

    letter-spacing: 7px;
  }

  .seal-side-label {
    display: none;
  }

  .seal-explanation-grid {
    grid-template-columns: 1fr;
  }

  .seal-explanation-grid > div > span {
    margin-bottom: 18px;
  }

}


@media (max-width: 420px) {

  .great-seal-stage {
    min-height: 420px;
  }

  .great-seal-svg {
    width: 128%;
  }

  .seal-control {
    padding:
      8px
      11px;

    font-size: 0.56rem;
  }

}