:root {
  --bg: #080808;
  --bg-soft: #101011;
  --bg-deep: #060606;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.05);
  --text: #f5f1ea;
  --muted: #a39b93;
  --line: rgba(255, 255, 255, 0.075);
  --line-soft: rgba(255, 255, 255, 0.04);
  --line-gold: rgba(198, 177, 136, 0.26);
  --glow-gold: rgba(198, 177, 136, 0.12);
  --glow-neutral: rgba(222, 222, 222, 0.08);
  --max-width: 1180px;
  --radius: 28px;
  --radius-soft: 20px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
  --title-size: clamp(3.2rem, 8vw, 7rem);
  --body-size: clamp(1rem, 1.35vw, 1.08rem);
  --ease-premium: cubic-bezier(0.4, 0, 0.2, 1);
  --opacity-strong: 1;
  --opacity-medium: 0.74;
  --opacity-soft: 0.52;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100%;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

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

body::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.05), transparent 32%),
    radial-gradient(circle at 78% 20%, rgba(198, 177, 136, 0.09), transparent 28%),
    radial-gradient(circle at 84% 82%, rgba(0, 0, 0, 0.42), transparent 34%),
    linear-gradient(180deg, #111111 0%, #090909 48%, #060606 100%);
}

body::after {
  z-index: -1;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 18%, transparent 88%);
  animation: grainShift 22s linear infinite;
}

body::selection {
  background: rgba(217, 198, 158, 0.2);
  color: #f7f7f7;
}

body .vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at center, transparent 36%, rgba(0, 0, 0, 0.28) 74%, rgba(0, 0, 0, 0.56) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.24));
}

body .mesh-layer {
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: -2;
  opacity: 0.15;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.05), transparent 32%),
    radial-gradient(circle at 82% 24%, rgba(206, 184, 139, 0.07), transparent 34%),
    radial-gradient(circle at 42% 78%, rgba(255, 255, 255, 0.04), transparent 30%);
  filter: blur(66px);
  animation: meshFloat 38s ease-in-out infinite alternate;
}

body .cursor-spotlight {
  position: fixed;
  width: 480px;
  height: 480px;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04), rgba(196, 175, 135, 0.025) 38%, transparent 70%);
  mix-blend-mode: screen;
  z-index: -1;
  opacity: 0.22;
  transition: opacity 0.4s var(--ease-premium);
}

.container {
  width: min(100% - 1.5rem, var(--max-width));
  margin-inline: auto;
  padding: 1rem 0 2.4rem;
  position: relative;
}

.container::before,
.container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.05) 10%, rgba(255, 255, 255, 0.03) 90%, transparent);
  opacity: 0.55;
}

.container::before {
  left: clamp(0.5rem, 2vw, 1.25rem);
}

.container::after {
  right: clamp(0.5rem, 2vw, 1.25rem);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 1.3rem;
  margin-top: 14px;
  position: sticky;
  top: 1rem;
  z-index: 6;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: background 300ms var(--ease-premium), border-color 300ms var(--ease-premium), box-shadow 300ms var(--ease-premium), transform 300ms var(--ease-premium);
}

.topbar.is-scrolled {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.024));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(239, 234, 227, 0.88);
  font-weight: 600;
}

.brand-mark {
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(250, 250, 250, 0.94), rgba(215, 195, 156, 0.78));
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}

.topbar-note {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(177, 169, 160, 0.78);
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.38rem 0.72rem;
  white-space: nowrap;
  transition: background 300ms var(--ease-premium), border-color 300ms var(--ease-premium), color 300ms var(--ease-premium), box-shadow 300ms var(--ease-premium);
}

.topbar-note:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(218, 209, 199, 0.82);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.04);
}

main {
  display: grid;
  gap: clamp(3.8rem, 8vw, 8.5rem);
  padding-top: clamp(3.4rem, 8vw, 7.4rem);
  padding-bottom: 4.4rem;
}

section {
  scroll-margin-top: 6rem;
}

.flow-section {
  position: relative;
  padding-inline: clamp(0.4rem, 2vw, 1.3rem);
}

.flow-section > * {
  position: relative;
  z-index: 1;
}

.flow-section::before {
  content: "";
  position: absolute;
  inset: -1.2rem 0 auto;
  height: calc(100% + 2.4rem);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.01);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.flow-section::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: -1.8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  opacity: 0.35;
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.2rem);
  min-height: clamp(520px, 84vh, 860px);
  display: grid;
  align-content: stretch;
  gap: 1.5rem;
  transform-style: preserve-3d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015) 54%, rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.012);
  backdrop-filter: blur(18px);
  --glow-x: 50%;
  --glow-y: 42%;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: transform 0.45s var(--ease-premium);
}

.hero::before {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, transparent 64%, rgba(198, 177, 136, 0.08));
  opacity: 0.7;
  z-index: 0;
}

.hero::after {
  inset: -16%;
  z-index: 0;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.11), transparent 30%),
    radial-gradient(circle at 74% 28%, rgba(209, 186, 143, 0.09), transparent 28%),
    radial-gradient(circle at 30% 72%, rgba(255, 255, 255, 0.04), transparent 34%);
  filter: blur(84px);
  opacity: 0.9;
  animation: heroGlowDrift 28s ease-in-out infinite alternate;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.2rem, 2vw, 1.8rem);
  align-self: stretch;
  min-height: 100%;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 1.35rem;
  max-width: 680px;
  padding: clamp(0.8rem, 1.8vw, 1.4rem);
}

.hero-copy::after {
  content: "";
  width: min(180px, 42vw);
  height: 1px;
  margin-top: 0.2rem;
  background: linear-gradient(90deg, rgba(198, 177, 136, 0.88), rgba(255, 255, 255, 0.04));
}

.hero-scene {
  position: relative;
  min-height: clamp(360px, 46vw, 620px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    radial-gradient(circle at 50% 22%, rgba(198, 177, 136, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.015);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-scene::before,
.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-scene::before {
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(circle at 50% 54%, rgba(198, 177, 136, 0.14), transparent 34%);
  filter: blur(22px);
  opacity: 0.72;
}

.hero-scene::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 22%, transparent 82%);
  opacity: 0.45;
}

.hero-ornament {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(54%, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.9;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.045), transparent 42%),
    conic-gradient(from 180deg, rgba(255, 255, 255, 0.02), rgba(198, 177, 136, 0.18), rgba(255, 255, 255, 0.02));
  box-shadow:
    inset 0 0 0 26px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 30px 80px rgba(0, 0, 0, 0.24);
  pointer-events: none;
  overflow: hidden;
  transform:
    translate(-50%, -50%)
    perspective(1200px)
    rotateX(calc(var(--ornament-tilt-y, 0deg) * -1))
    rotateY(var(--ornament-tilt-x, 0deg))
    translate3d(0, 0, 0);
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease-premium);
}

.hero-ornament::before,
.hero-ornament::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-ornament::after {
  inset: 29%;
  border-color: rgba(198, 177, 136, 0.24);
}

.hero-ornament-beam,
.hero-ornament-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.hero-ornament-beam {
  background:
    conic-gradient(from var(--beam-angle, 0deg), transparent 0deg, rgba(255, 255, 255, 0.02) 18deg, rgba(198, 177, 136, 0.34) 42deg, rgba(255, 255, 255, 0.04) 58deg, transparent 82deg);
  filter: blur(10px);
  mix-blend-mode: screen;
  animation: orbitBeam 10s linear infinite;
}

.hero-ornament-glow {
  inset: 16%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), rgba(198, 177, 136, 0.08) 34%, transparent 72%);
  filter: blur(18px);
  opacity: 0.7;
  animation: pulseCore 4.8s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: orbitSpin 20s linear infinite;
  transform-style: preserve-3d;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 1), rgba(198, 177, 136, 0.88));
  box-shadow: 0 0 20px rgba(198, 177, 136, 0.35);
}

.hero-orbit-two {
  inset: 20%;
  animation-duration: 15s;
  animation-direction: reverse;
  border-color: rgba(198, 177, 136, 0.22);
}

.hero-orbit-three {
  inset: 31%;
  animation-duration: 11s;
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-core {
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.34), transparent 34%),
    radial-gradient(circle at center, rgba(198, 177, 136, 0.32), rgba(8, 8, 8, 0.92) 72%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 30px rgba(198, 177, 136, 0.16);
  z-index: 2;
  animation: pulseCore 5s ease-in-out infinite;
}

.hero-core::before,
.hero-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-core::after {
  inset: 35%;
  border-color: rgba(198, 177, 136, 0.34);
}

.hero-sigil {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 238, 230, 0.9);
  text-shadow: 0 0 18px rgba(198, 177, 136, 0.18);
}

.hero-node {
  position: absolute;
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 8, 0.5);
  backdrop-filter: blur(10px);
  color: rgba(242, 236, 229, 0.88);
  font-size: 0.54rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.hero-node-one {
  top: 11%;
  left: 50%;
  transform: translateX(-50%);
  animation: nodeFloatTop 7s ease-in-out infinite;
}

.hero-node-two {
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  animation: nodeFloatMid 7s ease-in-out infinite -2.2s;
}

.hero-node-three {
  left: 8%;
  bottom: 16%;
  animation: nodeFloatLow 7s ease-in-out infinite -4.4s;
}

.hero-credibility {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.hero-credibility-chip {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(224, 214, 202, 0.76);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-rule {
  width: min(112px, 28vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 177, 136, 0.88), rgba(198, 177, 136, 0.08));
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(224, 214, 202, 0.76);
  font-size: 0.7rem;
  font-weight: 600;
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.5rem, 7.2vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 9ch;
  font-weight: 600;
  color: #f4ede5;
  position: relative;
  z-index: 1;
}

.hero-title-text {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.hero-copy > p {
  font-size: var(--body-size);
  max-width: 58ch;
  color: rgba(176, 167, 158, var(--opacity-medium));
  line-height: 1.74;
  position: relative;
  z-index: 1;
}

.hero-actions {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.35rem;
}

.btn {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #efe7dd;
  border-radius: 999px;
  padding: 0.92rem 1.55rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.35s var(--ease-premium), background 0.35s var(--ease-premium), border-color 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 10px 24px rgba(0, 0, 0, 0.22);
}

.btn:hover,
.btn:focus-visible {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(198, 177, 136, 0.4);
  transform: translateY(-2px);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.06), 0 14px 32px rgba(0, 0, 0, 0.28);
  outline: none;
}

.btn:active {
  transform: translateY(0);
}

.hero-label {
  color: rgba(171, 163, 153, 0.72);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.hero-scene-caption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(186, 177, 167, 0.72);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-scene-caption strong {
  color: rgba(243, 237, 230, 0.88);
  font-weight: 600;
}

.positioning {
  padding: clamp(1.8rem, 4vw, 2.5rem);
}

.positioning-grid {
  display: grid;
  gap: 1rem;
}

.positioning-lead {
  padding: 1.5rem 1.4rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.016)),
    rgba(255, 255, 255, 0.016);
}

.positioning-lead p {
  max-width: 38ch;
  color: rgba(176, 167, 158, 0.8);
  line-height: 1.75;
}

.positioning-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.positioning-card {
  min-height: 170px;
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.018);
  display: grid;
  align-content: space-between;
  gap: 0.8rem;
  transition: transform 0.35s var(--ease-premium), border-color 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium);
}

.positioning-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 177, 136, 0.3);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.positioning-card-index {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(198, 177, 136, 0.72);
  font-weight: 700;
}

.positioning-card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: rgba(245, 238, 230, 0.94);
}

.positioning-card-copy {
  color: rgba(171, 163, 154, 0.78);
  line-height: 1.7;
  font-size: 0.94rem;
}

.section-head {
  margin-bottom: 1.6rem;
  display: grid;
  gap: 0.7rem;
}

.section-kicker {
  color: rgba(215, 204, 191, 0.56);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 600;
}

h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  letter-spacing: -0.03em;
  font-weight: 600;
  line-height: 1.02;
  color: rgba(245, 238, 230, var(--opacity-strong));
}

.philosophy-wrap {
  padding: clamp(1.6rem, 4vw, 2.4rem);
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.4rem;
}

.pillar {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016)),
    rgba(255, 255, 255, 0.018);
  backdrop-filter: blur(18px);
  transition: border-color 0.35s var(--ease-premium), transform 0.35s var(--ease-premium), background 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium);
  position: relative;
  overflow: hidden;
}

.pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 28%, rgba(214, 192, 149, 0.14) 68%, transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease-premium);
}

.pillar:hover {
  border-color: rgba(216, 199, 162, 0.42);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.pillar:hover::after {
  opacity: 0.34;
}

.pillar-title {
  display: block;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
  color: rgba(245, 240, 234, 0.94);
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.35s var(--ease-premium);
}

.pillar p {
  color: rgba(171, 163, 154, 0.76);
  line-height: 1.7;
  font-size: 0.96rem;
  transition: color 0.35s var(--ease-premium);
}

.pillar:hover .pillar-title {
  color: rgba(245, 245, 247, 1);
}

.pillar:hover p {
  color: rgba(190, 190, 198, 0.88);
}

.vision {
  text-align: center;
  padding: clamp(2.8rem, 8vw, 6rem) clamp(1.2rem, 5vw, 4.4rem);
}

.vision-quote {
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 18ch;
  margin-inline: auto;
  color: rgba(245, 238, 230, var(--opacity-strong));
  transform: scale(0.985);
  transition: transform 0.7s var(--ease-premium), opacity 0.7s var(--ease-premium);
}

.vision.reveal.is-visible .vision-quote {
  transform: scale(1);
}

.identity {
  padding: clamp(2.3rem, 5vw, 3.6rem) clamp(1rem, 4vw, 2rem);
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.identity-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  font-weight: 600;
  color: transparent;
  background: linear-gradient(120deg, rgba(245, 245, 247, 0.95), rgba(216, 195, 154, 0.88) 58%, rgba(245, 245, 247, 0.95));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 24px rgba(210, 186, 142, 0.14);
  position: relative;
}

.identity-name::after {
  content: "";
  position: absolute;
  width: min(480px, 82vw);
  height: 70px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 192, 148, 0.14), transparent 70%);
  filter: blur(16px);
  z-index: -1;
}

.identity-meta {
  color: rgba(171, 163, 154, 0.72);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.contact {
  padding: clamp(1.8rem, 4vw, 2.6rem);
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.contact-panel,
.contact-form-wrap {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.016)),
    rgba(255, 255, 255, 0.02);
  padding: 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.contact-panel {
  display: grid;
  gap: 1rem;
}

.contact-copy {
  max-width: 34ch;
  color: rgba(176, 167, 158, 0.78);
  line-height: 1.7;
}

.contact-items {
  display: grid;
  gap: 0.95rem;
}

.contact-item-label {
  display: block;
  margin-bottom: 0.32rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(173, 165, 156, 0.56);
  font-weight: 700;
}

.contact-item-value,
.contact-item-value a {
  color: rgba(245, 238, 230, 0.92);
  text-decoration: none;
  line-height: 1.7;
}

.contact-item-value a:hover,
.contact-item-value a:focus-visible {
  color: rgba(245, 238, 230, 1);
  text-decoration: underline;
  outline: none;
}

.contact-form {
  display: grid;
  gap: 0.95rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(173, 165, 156, 0.62);
  font-weight: 700;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(245, 238, 230, 0.94);
  font: inherit;
  padding: 0.95rem 1rem;
  transition: border-color 0.25s var(--ease-premium), background 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(171, 163, 154, 0.42);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(198, 177, 136, 0.42);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(198, 177, 136, 0.08);
}

.form-textarea {
  min-height: 136px;
  resize: vertical;
}

.form-error {
  min-height: 1.1rem;
  color: #d8b98b;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.form-note {
  color: rgba(171, 163, 154, 0.62);
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  color: rgba(171, 163, 154, 0.68);
  padding-top: 1.4rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.66rem;
}

.footer-line {
  height: 1px;
  flex: 1;
  background: var(--line-soft);
}

.footer-copyright {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.018);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-copy-title {
  color: rgba(245, 238, 230, 0.92);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-meta {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: none;
  color: rgba(210, 201, 191, 0.82);
}

.footer-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(171, 163, 154, 0.4);
}

.link-reset {
  color: inherit;
  text-decoration: none;
}

.link-reset:hover,
.link-reset:focus-visible {
  color: rgba(245, 238, 230, 0.9);
  outline: none;
}

.topbar button,
.btn,
.form-input,
.form-textarea,
a {
  -webkit-tap-highlight-color: transparent;
}

.topbar button:focus-visible,
.btn:focus-visible,
.form-input:focus-visible,
.form-textarea:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(198, 177, 136, 0.45);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
  will-change: opacity, transform;
}

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

.hero .kicker,
.hero h1,
.hero .hero-copy > p,
.hero .hero-actions,
.hero .hero-credibility,
.hero .hero-scene {
  opacity: 0;
  transform: translateY(16px);
  animation-fill-mode: forwards;
  animation-timing-function: var(--ease-premium);
}

.hero.is-visible .kicker {
  animation: riseFade 600ms 80ms forwards;
}

.hero.is-visible h1 {
  animation: riseFade 600ms 120ms forwards;
}

.hero.is-visible .hero-copy > p {
  animation: riseFade 600ms 320ms forwards;
}

.hero.is-visible .hero-actions {
  animation: ctaIn 620ms 420ms forwards;
}

.hero.is-visible .hero-credibility {
  animation: riseFade 620ms 520ms forwards;
}

.hero.is-visible .hero-scene {
  animation: riseFade 620ms 620ms forwards;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  align-self: end;
  position: relative;
  z-index: 1;
}

.hero-metric {
  min-height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1rem 1rem 1.15rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: grid;
  align-content: end;
  gap: 0.55rem;
}

.hero-metric-label {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(173, 165, 156, 0.56);
  font-weight: 700;
}

.hero-metric-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: rgba(245, 238, 230, 0.96);
}

@keyframes riseFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroGlowDrift {
  0% {
    transform: translate3d(-6px, -4px, 0) scale(1);
  }
  100% {
    transform: translate3d(7px, 6px, 0) scale(1.03);
  }
}

@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-0.8%, 0.8%);
  }
  50% {
    transform: translate(0.8%, -0.8%);
  }
  75% {
    transform: translate(0.35%, 0.35%);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes meshFloat {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 1%, 0) scale(1.04);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitBeam {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.03);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

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

@keyframes nodeFloatTop {
  0%,
  100% {
    transform: translateX(-50%) translate3d(0, 0, 0);
  }
  50% {
    transform: translateX(-50%) translate3d(0, -8px, 0);
  }
}

@keyframes nodeFloatMid {
  0%,
  100% {
    transform: translateY(-50%) translate3d(0, 0, 0);
  }
  50% {
    transform: translateY(-50%) translate3d(0, -8px, 0);
  }
}

@keyframes nodeFloatLow {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@media (min-width: 760px) {
  .container {
    width: min(100% - 2.2rem, var(--max-width));
  }

  .topbar {
    padding: 1rem 1.35rem;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
    align-items: center;
  }

  .hero-copy {
    padding-right: clamp(1.8rem, 4.4vw, 4rem);
  }

  .pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .positioning-grid {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    align-items: stretch;
  }

  .positioning-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 759px) {
  .container::before,
  .container::after {
    display: none;
  }

  .flow-section::before {
    border-radius: 26px;
  }

  .hero {
    min-height: auto;
    border-radius: 28px;
    padding: 1.4rem;
  }

  .hero-copy {
    padding: 0.6rem 0.2rem 0;
  }

  .kicker {
    gap: 0.7rem;
  }

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

  .hero-ornament {
    width: min(78%, 300px);
  }

  .hero-aside {
    max-width: none;
    justify-self: stretch;
  }

  .vision-quote {
    max-width: 15ch;
  }

  .positioning-track {
    grid-template-columns: 1fr;
  }

  .footer {
    gap: 0.85rem;
  }

  .footer-top {
    flex-wrap: wrap;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .cursor-spotlight {
    display: none;
  }
}
