:root {
  --bg: #070708;
  --bg-soft: #0d0d10;
  --panel: rgba(15, 15, 18, 0.78);
  --text: #f1efe9;
  --muted: #9b9993;
  --line: rgba(255,255,255,0.13);
  --line-strong: rgba(255,255,255,0.26);
  --silver: #c9c7c1;
  --glow: rgba(199, 203, 214, 0.14);
  --max: 1360px;
  --pad: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 18%, rgba(118, 122, 140, 0.09), transparent 24%),
    radial-gradient(circle at 17% 74%, rgba(150, 150, 150, 0.05), transparent 30%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: #e7e4dc;
  color: #0a0a0b;
}

a { color: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  z-index: 100;
  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='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.ambient {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: .2;
  z-index: -1;
}

.ambient-one {
  width: 26rem;
  height: 26rem;
  right: -8rem;
  top: 16rem;
  background: #747887;
}

.ambient-two {
  width: 18rem;
  height: 18rem;
  left: -8rem;
  bottom: 10rem;
  background: #3a3b42;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--pad);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(7,7,8,.88), rgba(7,7,8,.38));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  letter-spacing: .28em;
  text-decoration: none;
  font-weight: 500;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  transform: rotate(45deg);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  transform: rotate(-45deg);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark .brand-cut { stroke-width: 1.4; opacity: .72; }
.brand-mark.small { width: 28px; height: 28px; }
.brand-mark.small svg { width: 19px; height: 19px; }

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
}

.nav a {
  position: relative;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color: var(--muted);
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .17em;
  transition: color .25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--text);
  transition: right .25s ease;
}

.nav a:hover { color: var(--text); }
.nav a:hover::after { right: 0; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, .92fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding-top: clamp(68px, 9vh, 120px);
  padding-bottom: clamp(72px, 10vh, 130px);
}

.eyebrow,
.kicker,
.section-note,
.card-copy p,
.metal-label,
.sigil-caption,
.drop-status {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .17em;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 10px;
}

.hero h1,
.statement-copy h2,
.section-head h2,
.drop-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .96;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(55px, 7vw, 112px);
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(241, 239, 233, .75);
  font-style: italic;
}

.hero-text {
  max-width: 660px;
  margin: 34px 0 0;
  color: #bbb8b1;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #efede7; color: #09090a; border-color: #efede7; }
.btn-primary:hover { background: white; }
.btn-ghost { color: var(--muted); }
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,.5); }

.hero-art {
  position: relative;
  min-height: min(66vw, 650px);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  transform: rotate(45deg);
  box-shadow:
    0 0 80px rgba(255,255,255,.025),
    inset 0 0 80px rgba(255,255,255,.02);
}

.hero-art::after {
  content: "";
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}

.orbital {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}

.orbital-a {
  width: 91%;
  aspect-ratio: 1;
  transform: rotateX(68deg) rotateZ(18deg);
}

.orbital-b {
  width: 61%;
  aspect-ratio: 1;
  transform: rotateX(72deg) rotateZ(-36deg);
}

.sigil {
  position: relative;
  z-index: 4;
  width: min(78%, 420px);
  aspect-ratio: .78;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), transparent 28%),
    radial-gradient(circle at 50% 26%, rgba(180,180,190,.11), transparent 28%),
    rgba(9,9,11,.84);
  box-shadow: 0 40px 100px rgba(0,0,0,.55);
  clip-path: polygon(50% 0, 92% 18%, 100% 72%, 50% 100%, 0 72%, 8% 18%);
}

.sigil::before,
.sigil::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 17%;
  background: var(--line-strong);
}

.sigil::before { top: 0; }
.sigil::after { bottom: 0; }

.sigil-top {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(120px, 16vw, 210px);
  line-height: .78;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.74);
  text-shadow: 0 0 44px rgba(255,255,255,.05);
}

.sigil-word {
  margin-top: 28px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(10px, 1vw, 13px);
  letter-spacing: .34em;
}

.sigil-caption {
  position: absolute;
  bottom: 15%;
  font-size: 7px;
  color: var(--muted);
}

.metal-label {
  position: absolute;
  z-index: 6;
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  background: rgba(12,12,14,.88);
  font-size: 7px;
  color: #d4d2cc;
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.label-one { top: 18%; left: 2%; transform: rotate(-4deg); }
.label-two { right: 1%; bottom: 20%; transform: rotate(3deg); }

.section-index {
  color: #77746f;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: .18em;
}

.statement {
  padding-top: 120px;
  padding-bottom: 140px;
  border-top: 1px solid var(--line);
}

.statement-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(40px, 8vw, 130px);
  margin-top: 46px;
}

.kicker {
  margin: 0;
  max-width: 300px;
  color: #a3a09a;
  font-size: 10px;
  line-height: 1.9;
}

.statement-copy h2,
.section-head h2,
.drop-copy h2,
.contact-copy h2 {
  font-size: clamp(42px, 5.2vw, 78px);
}

.statement-copy p {
  max-width: 680px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.preview {
  padding-top: 110px;
  padding-bottom: 140px;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}

.section-head .eyebrow { margin: 18px 0 18px; }

.section-note {
  max-width: 330px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.8;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 60px;
}

.preview-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--panel);
}

.card-number {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 8px;
  color: #aaa7a0;
}

.card-visual {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.card-visual::before,
.card-visual::after {
  content: "";
  position: absolute;
}

.visual-leather {
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.14), transparent 2%),
    radial-gradient(circle at 70% 64%, rgba(255,255,255,.05), transparent 28%),
    repeating-linear-gradient(115deg, #0d0d0e 0 2px, #101012 2px 5px);
}

.visual-leather::before {
  width: 72%;
  height: 130%;
  left: -12%;
  top: -14%;
  border-right: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  transform: rotate(18deg);
  box-shadow: 16px 0 28px rgba(0,0,0,.55);
}

.visual-leather::after {
  width: 6px;
  height: 130%;
  left: 46%;
  top: -12%;
  transform: rotate(18deg);
  background: repeating-linear-gradient(to bottom, #777 0 2px, transparent 2px 9px);
  opacity: .45;
}

.visual-metal {
  background:
    linear-gradient(130deg, #111216, #24262b 46%, #0a0b0e 52%, #15161a 65%, #09090b);
}

.visual-metal::before {
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
  top: 18%;
  left: 16%;
  box-shadow:
    0 0 0 17px rgba(255,255,255,.012),
    0 0 0 18px rgba(255,255,255,.12),
    inset 0 0 60px rgba(255,255,255,.04);
}

.visual-metal::after {
  width: 1px;
  height: 140%;
  top: -20%;
  left: 53%;
  background: rgba(255,255,255,.3);
  transform: rotate(32deg);
}

.visual-night {
  background:
    radial-gradient(circle at 40% 18%, rgba(207,211,226,.12), transparent 14%),
    linear-gradient(165deg, #15161a, #090a0c 48%, #121316);
}

.visual-night::before {
  width: 130%;
  height: 42%;
  left: -15%;
  bottom: 10%;
  border-top: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  transform: rotate(-8deg);
  box-shadow: 0 -20px 50px rgba(255,255,255,.025);
}

.visual-night::after {
  width: 52%;
  height: 74%;
  right: -8%;
  top: 15%;
  border-left: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
}

.vertical-word {
  position: absolute;
  bottom: 22px;
  left: 20px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 7px;
  letter-spacing: .3em;
  color: rgba(255,255,255,.58);
}

.card-copy {
  min-height: 190px;
  padding: 27px 25px 30px;
}

.card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
}

.card-copy h3 {
  margin: 17px 0 13px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 600;
  letter-spacing: -.025em;
}

.card-copy span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.drop {
  padding-top: 20px;
  padding-bottom: 140px;
}

.drop-panel {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  padding: clamp(30px, 5vw, 72px);
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255,255,255,.045), transparent 35%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.015) 0 1px, transparent 1px 70px),
    #0b0b0d;
}

.drop-panel::before {
  content: "AZABACHE";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(90px, 17vw, 240px);
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.035);
  white-space: nowrap;
  pointer-events: none;
}

.drop-copy { position: relative; z-index: 2; max-width: 800px; }
.drop-copy p:last-child {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.drop-status {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  font-size: 7px;
  color: #bbb8b1;
  white-space: nowrap;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8d5cd;
  box-shadow: 0 0 0 0 rgba(216,213,205,.45);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(216,213,205,0); }
  100% { box-shadow: 0 0 0 0 rgba(216,213,205,0); }
}

.contact {
  padding-top: 120px;
  padding-bottom: 150px;
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  gap: 50px;
}

.contact-copy { max-width: 900px; }

.contact-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-strong);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-decoration: none;
}

.footer {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  padding: 28px var(--pad) 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  margin: 0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}

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

.preview-card:nth-child(2).reveal { transition-delay: .08s; }
.preview-card:nth-child(3).reveal { transition-delay: .16s; }

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy { padding-top: 30px; }
  .hero-art { min-height: 620px; }

  .statement-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .preview-grid { grid-template-columns: 1fr; }
  .card-visual { min-height: 330px; }

  .drop-panel {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .drop-status { width: fit-content; }
}

@media (max-width: 680px) {
  .site-header { padding-top: 18px; padding-bottom: 18px; }
  .brand { letter-spacing: .2em; }
  .nav a:not(:last-child) { display: none; }

  .hero {
    padding-top: 55px;
    padding-bottom: 85px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 74px);
  }

  .hero-text { font-size: 14px; }

  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }

  .hero-art { min-height: 490px; }
  .sigil { width: min(82%, 330px); }
  .sigil-caption { font-size: 6px; }

  .statement,
  .preview,
  .contact {
    padding-top: 82px;
    padding-bottom: 95px;
  }

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

  .section-note { max-width: 260px; }

  .preview-grid { margin-top: 38px; }
  .card-visual { min-height: 300px; }

  .drop { padding-bottom: 90px; }
  .drop-panel { min-height: 500px; }

  .footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}