@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg: #0a0a0a;
  --bg-elevated: #111110;
  --bg-card: rgba(18, 17, 15, 0.6);

  --text: #e8e4de;
  --text-2: #7a7770;
  --text-3: #3d3b37;

  --accent: #c9a96e;
  --accent-dim: rgba(201, 169, 110, 0.12);
  --accent-glow: rgba(201, 169, 110, 0.08);

  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(201, 169, 110, 0.2);

  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;

  --pad-x: clamp(1.5rem, 5vw, 5rem);
  --section-gap: clamp(6rem, 12vh, 10rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font: inherit; color: inherit; }
input { border: none; background: none; font: inherit; color: inherit; outline: none; }
blockquote { border: none; }

@media (pointer: fine) {
  body, a, button, input { cursor: none; }
}

/* ============================================================
   INTRO OVERLAY
   ============================================================ */
#intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.intro-panel {
  position: absolute;
  left: 0;
  right: 0;
  height: 50vh;
  background: var(--bg);
  will-change: transform;
}

.intro-top { top: 0; transform-origin: top; }
.intro-bottom { bottom: 0; transform-origin: bottom; }

.intro-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.intro-counter {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.intro-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 0.75rem;
}

.intro-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1;
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1000;
  pointer-events: none;
}

/* ============================================================
   GRAIN
   ============================================================ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ============================================================
   BACKGROUND MESH
   ============================================================ */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
  opacity: 0.5;
}

.mesh-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.1), transparent 70%);
  top: -5%;
  left: -8%;
}

.mesh-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(120, 100, 160, 0.07), transparent 70%);
  bottom: 10%;
  right: -5%;
}

.mesh-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(180, 110, 80, 0.06), transparent 70%);
  top: 50%;
  left: 40%;
}

/* ============================================================
   GEOMETRIC ELEMENTS
   ============================================================ */
.geo {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.geo-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(201, 169, 110, 0.04);
  border-radius: 50%;
  top: 12%;
  right: 8%;
  animation: geoRotate 40s linear infinite;
}

.geo-cross {
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: 20%;
  left: 6%;
  animation: geoDrift 12s ease-in-out infinite alternate;
}

.geo-cross::before,
.geo-cross::after {
  content: '';
  position: absolute;
  background: rgba(201, 169, 110, 0.06);
}

.geo-cross::before { width: 100%; height: 1px; top: 50%; }
.geo-cross::after { height: 100%; width: 1px; left: 50%; }

.geo-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  bottom: 30%;
  right: 15%;
  animation: geoRotate 30s linear infinite reverse;
}

@keyframes geoRotate { to { transform: rotate(360deg); } }
@keyframes geoDrift {
  to { transform: translate(15px, -10px) rotate(45deg); }
}

/* ============================================================
   CORNER MARKS
   ============================================================ */
.corner {
  position: fixed;
  width: 22px;
  height: 22px;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
}

.corner::before,
.corner::after {
  content: '';
  position: absolute;
  background: rgba(201, 169, 110, 0.25);
}

.corner-tl { top: 20px; left: 20px; }
.corner-tl::before { width: 100%; height: 1px; top: 0; left: 0; }
.corner-tl::after { width: 1px; height: 100%; top: 0; left: 0; }

.corner-tr { top: 20px; right: 20px; }
.corner-tr::before { width: 100%; height: 1px; top: 0; right: 0; }
.corner-tr::after { width: 1px; height: 100%; top: 0; right: 0; }

.corner-bl { bottom: 20px; left: 20px; }
.corner-bl::before { width: 100%; height: 1px; bottom: 0; left: 0; }
.corner-bl::after { width: 1px; height: 100%; bottom: 0; left: 0; }

.corner-br { bottom: 20px; right: 20px; }
.corner-br::before { width: 100%; height: 1px; bottom: 0; right: 0; }
.corner-br::after { width: 1px; height: 100%; bottom: 0; right: 0; }

/* ============================================================
   CURSOR
   ============================================================ */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  display: none;
  mix-blend-mode: difference;
}

@media (pointer: fine) { #cursor { display: block; } }

.cursor-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: -3px;
  left: -3px;
}

.cursor-ring {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: absolute;
  top: -22px;
  left: -22px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring,
body:has(input:focus) .cursor-ring {
  transform: scale(1.8);
  opacity: 0.4;
}

body:has([data-tilt]:hover) .cursor-ring {
  transform: scale(2.2);
  opacity: 0.3;
}

/* ============================================================
   LAYOUT
   ============================================================ */
#main {
  position: relative;
  z-index: 2;
}

.section {
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem var(--pad-x);
  opacity: 0;
  mix-blend-mode: difference;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.logo-dot { color: var(--accent); }

.header-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.header-meta {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  gap: 0.4rem;
}

.header-sep { opacity: 0.3; }

/* ============================================================
   CHAR ANIMATION BASE
   ============================================================ */
.char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.1;
}

.char {
  display: inline-block;
  will-change: transform;
  white-space: pre;
}

.accent-char { color: var(--accent); }

.scramble-char {
  color: var(--text-3);
  font-weight: 400;
}

/* ============================================================
   HERO
   ============================================================ */
.section-hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.hero-content { width: 100%; }

.hero-top {
  position: relative;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.hero-name { flex: 1; }

.name-row {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.name-row-offset {
  padding-left: clamp(1.5rem, 7vw, 8rem);
}

.hero-badge {
  width: clamp(100px, 14vw, 160px);
  height: clamp(100px, 14vw, 160px);
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 2;
}

.badge-svg {
  width: 100%;
  height: 100%;
  animation: badgeRotate 20s linear infinite;
}

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

.badge-text-path {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  fill: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.badge-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--accent);
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
}

.tag-line-deco {
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.tag-word {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
}

.tag-sep {
  color: var(--accent);
  font-weight: 300;
}

.hero-desc {
  max-width: 380px;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-2);
  opacity: 0;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
}

.cue-text {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-3);
}

.cue-line {
  width: 1px;
  height: 40px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.cue-dot {
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  position: absolute;
  left: -1px;
  animation: cueFall 1.8s ease-in-out infinite;
}

@keyframes cueFall {
  0% { top: -8px; opacity: 0; }
  30% { opacity: 1; }
  100% { top: 40px; opacity: 0; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
  opacity: 0;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-3);
}

.mq-dot {
  color: var(--accent);
  font-size: 0.5rem;
  display: inline-flex;
  align-items: center;
}

@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.section-heading-lg {
  font-size: clamp(3rem, 9vw, 7rem);
}

.heading-line {
  display: block;
}

.heading-accent {
  color: var(--accent);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

/* ============================================================
   VISION SECTION
   ============================================================ */
.section-vision {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.vision-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 1.5rem;
}

.vision-text p:last-child { margin-bottom: 0; }

.vision-stats {
  display: flex;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-3);
  line-height: 1.4;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   CRAFT SECTION
   ============================================================ */
.section-craft {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.craft-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

/* Hover Focus Spotlight: Dim non-hovered cards */
@media (hover: hover) {
  .craft-grid:has(.craft-card:hover) .craft-card:not(:hover) {
    opacity: 0.4;
    filter: blur(0.5px);
  }
}

.craft-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), filter 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  justify-content: space-between;
}

.craft-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at var(--tilt-x, 50%) var(--tilt-y, 50%),
    rgba(201, 169, 110, 0.15),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.craft-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}

.craft-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.08), inset 0 0 20px rgba(201, 169, 110, 0.03);
}

.craft-card:hover::before { opacity: 1; }
.craft-card:hover::after { transform: scaleX(1); }

/* Corner Brackets */
.card-corner-tl,
.card-corner-br {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.card-corner-tl {
  top: 10px;
  left: 10px;
  border-top: 1.5px solid var(--accent);
  border-left: 1.5px solid var(--accent);
  transform: translate(-3px, -3px);
}

.card-corner-br {
  bottom: 10px;
  right: 10px;
  border-bottom: 1.5px solid var(--accent);
  border-right: 1.5px solid var(--accent);
  transform: translate(3px, 3px);
}

.craft-card:hover .card-corner-tl,
.craft-card:hover .card-corner-br {
  opacity: 0.8;
  transform: translate(0, 0);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.card-index {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.12em;
  transition: color 0.3s var(--ease);
}

.craft-card:hover .card-index {
  color: var(--accent);
}

.card-arrow {
  font-size: 1.2rem;
  color: var(--text-3);
  transition: color 0.3s var(--ease), transform 0.4s var(--ease-back);
}

.craft-card:hover .card-arrow {
  color: var(--accent);
  transform: translate(4px, -4px) scale(1.2);
}

.card-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  transition: color 0.3s var(--ease);
}

.card-desc {
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.card-tags span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.craft-card:hover .card-tags span {
  color: var(--accent);
  border-color: rgba(201, 169, 110, 0.25);
  background: rgba(201, 169, 110, 0.06);
}

/* ============================================================
   PHILOSOPHY SECTION
   ============================================================ */
.section-philosophy {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
  display: grid;
  place-items: center;
  min-height: 70vh;
}

.philosophy-wrap { text-align: center; max-width: 850px; }

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2rem;
  font-style: normal;
}

.philosophy-cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--accent);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.section-process {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.process-intro {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-2);
  margin-top: 2rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
}

.process-step {
  padding: 2rem 0;
  position: relative;
}

.step-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.step-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.step-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-2);
  padding-left: calc(0.8rem + 1.5rem + 0.3rem);
}

.step-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.step-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width 0.8s var(--ease);
}

.process-step:hover .step-line::after { width: 100%; }

/* ============================================================
   CONNECT SECTION
   ============================================================ */
.section-connect {
  padding-top: var(--section-gap);
  padding-bottom: calc(var(--section-gap) * 0.6);
  text-align: center;
}

.connect-top {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.connect-countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.cd-item { text-align: center; }

.cd-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cd-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
}

.cd-sep {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text-3);
  animation: colonBlink 1s step-end infinite;
  padding-bottom: 1rem;
}

@keyframes colonBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.15; }
}

.connect-form-wrap {
  max-width: 460px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.form-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-3);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.connect-form {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}

.form-field {
  flex: 1;
  position: relative;
}

.form-field input {
  width: 100%;
  padding: 0.8rem 0;
  font-size: 0.95rem;
  color: var(--text);
  background: transparent;
}

.form-field input::placeholder { color: var(--text-3); }

.field-underline {
  height: 1px;
  background: var(--border);
  position: relative;
}

.field-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 0.5s var(--ease);
}

.form-field:focus-within .field-fill { width: 100%; }

.form-submit {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.form-submit:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: scale(1.08);
}

.form-submit:active { transform: scale(0.95); }

.submit-arrow {
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}

.form-submit:hover .submit-arrow { transform: translateX(2px); }

.form-success {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #22c55e;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}

.form-success.show {
  opacity: 1;
  transform: translateY(0);
}

.connect-socials {
  display: none;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.social-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s var(--ease);
}

.social-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}

.social-link:hover {
  color: var(--accent);
}

.social-link:hover::after { width: 100%; }

.social-sep {
  color: var(--text-3);
  font-size: 0.75rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem var(--pad-x);
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-3);
}

.footer-craft { letter-spacing: 0.05em; }

.back-to-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-3);
  transition: color 0.3s var(--ease);
  font-size: 0.75rem;
}

.back-to-top:hover { color: var(--accent); }

.top-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.back-to-top:hover .top-arrow { transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .hero-badge {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .header-status { display: none; }

  .name-row {
    font-size: clamp(2.5rem, 12vw, 5.5rem);
  }

  .name-row-offset { padding-left: 0.5rem; }

  .hero-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin-bottom: 2rem;
  }

  .hero-badge {
    position: relative;
    width: 100px;
    height: 100px;
    align-self: flex-end;
    margin-top: 1rem;
    right: auto;
    bottom: auto;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

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

  .craft-card { min-height: auto; }

  .vision-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .step-desc { padding-left: 0; margin-top: 0.5rem; }

  .connect-form {
    flex-direction: column;
    align-items: stretch;
  }

  .form-submit {
    width: 100%;
    border-radius: 8px;
    height: 48px;
  }

  .footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .corner { display: none; }

  .hide-mobile { display: none; }

  .geo-circle,
  .geo-ring { display: none; }
}

@media (max-width: 480px) {
  .name-row {
    font-size: clamp(2.2rem, 11vw, 3.8rem);
  }

  .connect-countdown {
    gap: 0.4rem;
  }

  .cd-num { font-size: 1.8rem; }
  .cd-label { font-size: 0.55rem; }
  .cd-sep { font-size: 1.2rem; }

  .philosophy-quote {
    font-size: 1.25rem;
  }

  .hero-desc {
    font-size: 0.85rem;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  #intro, .grain, .geo, .corner, #cursor, .scroll-cue { display: none !important; }
  .header, .hero-badge, .hero-tagline, .hero-desc, .marquee-wrap, .scroll-progress { opacity: 1 !important; }
  .char { transform: none !important; }
  body, a, button, input { cursor: auto !important; }
}
