:root {
  --sand: #f2e29a;
  --dark: #3a3838;
  --darker: #2b2929;
  --mid: #545050;
  --accent: #f2e29a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--darker);
  color: var(--sand);
  font-family: "DM Mono", monospace;
  overflow-x: hidden;
  cursor: none;
}

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

.cursor {
  width: 8px;
  height: 8px;
  background: var(--sand);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.4s ease, width 0.3s, height 0.3s, margin 0.3s ease;
  opacity: 0.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.35;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 36px;
  z-index: 100;
  mix-blend-mode: normal;
}

.logo-mark {
  width: 52px;
  height: 52px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.logo-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-svg circle,
.logo-svg polygon,
.logo-svg rect {
  fill: none;
  stroke: var(--sand);
  stroke-width: 1.25;
}

.nav-right {
  text-align: right;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.nav-right a {
  display: block;
  color: var(--sand);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 2;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.nav-right a:hover {
  opacity: 1;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.wave-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.06;
}

.geo-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.geo-circle {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 320px;
  height: 320px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  opacity: 0;
  animation: shapeFade 1.2s ease 1s forwards;
}

.geo-triangle-svg {
  position: absolute;
  bottom: 18%;
  left: 6%;
  opacity: 0;
  animation: shapeFade 1.2s ease 1.4s forwards;
}

.geo-square {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 90px;
  height: 90px;
  border: 1px solid var(--sand);
  opacity: 0;
  animation: shapeFade 1.2s ease 1.6s forwards;
}

.geo-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: var(--sand);
  opacity: 0.06;
}

.hero-title-area {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 130px 36px 60px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

h1 {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--sand);
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

h1 .word-break {
  display: block;
}

.hero-separator {
  display: block;
  font-size: 0.45em;
  font-style: normal;
  opacity: 0.25;
  letter-spacing: 0.3em;
  padding: 8px 0;
}

.hero-subtitle {
  margin-top: 36px;
  max-width: 380px;
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero-info {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 130px 36px 60px;
  position: relative;
  z-index: 2;
  text-align: right;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

.info-block {
  margin-bottom: 32px;
}

.info-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.3;
  margin-bottom: 6px;
}

.info-value {
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  border: 1px solid var(--sand);
  color: var(--sand);
  text-decoration: none;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
  cursor: none;
}

.cta-btn:hover {
  background: var(--sand);
  color: var(--dark);
}

.hero-bottom {
  grid-column: 1 / -1;
  grid-row: 2;
  border-top: 1px solid rgba(242, 226, 154, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 36px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.28;
  position: relative;
  z-index: 2;
}

.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(242, 226, 154, 0.08);
  border-bottom: 1px solid rgba(242, 226, 154, 0.08);
  padding: 12px 0;
  background: rgba(242, 226, 154, 0.03);
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-size: 10px;
  letter-spacing: 0.22em;
  opacity: 0.25;
}

.ticker span {
  padding: 0 48px;
}

section {
  padding: 100px 36px;
  position: relative;
}

.section-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.3;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::after {
  content: "";
  display: block;
  height: 1px;
  width: 60px;
  background: var(--sand);
  opacity: 0.2;
}

.manifesto-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.manifesto-left {
  position: sticky;
  top: 120px;
}

.manifesto-large {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--sand);
  margin-bottom: 40px;
}

.manifesto-text {
  font-size: 12px;
  line-height: 2.1;
  opacity: 0.55;
  letter-spacing: 0.04em;
}

.manifesto-text p {
  margin-bottom: 20px;
}

.manifesto-text strong,
.cycle-text strong {
  color: var(--sand);
  opacity: 1;
  font-weight: 500;
}

.cycle-diagram {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}

.cycle-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(242, 226, 154, 0.1);
}

.cycle-num {
  font-size: 9px;
  opacity: 0.3;
  letter-spacing: 0.1em;
  padding-top: 3px;
  flex-shrink: 0;
  width: 20px;
}

.cycle-text {
  font-size: 11px;
  line-height: 1.8;
  opacity: 0.6;
  letter-spacing: 0.04em;
}

.topics-section,
.instruments-section,
.cta-section {
  border-top: 1px solid rgba(242, 226, 154, 0.1);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(242, 226, 154, 0.08);
  border: 1px solid rgba(242, 226, 154, 0.08);
  margin-top: 40px;
}

.topic-item {
  background: var(--darker);
  padding: 40px 32px;
  transition: background 0.3s;
  cursor: none;
}

.topic-item:hover {
  background: rgba(242, 226, 154, 0.04);
}

.topic-number {
  font-size: 9px;
  opacity: 0.2;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.topic-name {
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.3;
}

.topic-desc {
  font-size: 10px;
  line-height: 1.8;
  opacity: 0.4;
  letter-spacing: 0.04em;
}

.instruments-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 40px;
}

.instrument-group {
  min-width: 0;
}

.instrument-kicker {
  font-size: 10px;
  opacity: 0.3;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.instrument-list {
  list-style: none;
  column-width: 280px;
  column-gap: 28px;
}

.instrument-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(242, 226, 154, 0.07);
  font-size: 11px;
  letter-spacing: 0.06em;
  opacity: 0.5;
  transition: opacity 0.2s;
  cursor: none;
  break-inside: avoid;
  page-break-inside: avoid;
}

.instrument-list li:hover {
  opacity: 1;
}

.instrument-cat {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.35;
  text-align: right;
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 50vh;
  overflow: hidden;
}

.cta-left {
  padding: 100px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-big {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 40px;
}

.cta-copy {
  font-size: 11px;
  opacity: 0.4;
  line-height: 1.9;
  max-width: 340px;
  margin-top: 16px;
}

.cta-right {
  border-left: 1px solid rgba(242, 226, 154, 0.1);
  padding: 100px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: rgba(242, 226, 154, 0.02);
}

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(242, 226, 154, 0.07);
  padding-bottom: 20px;
}

.contact-line:last-child {
  border-bottom: none;
}

.contact-label {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.25;
}

.contact-val {
  font-size: 13px;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

footer {
  border-top: 1px solid rgba(242, 226, 154, 0.1);
  padding: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 9px;
  letter-spacing: 0.18em;
  opacity: 0.25;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shapeFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.12;
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-info {
    grid-column: 1;
    grid-row: 2;
    align-items: flex-start;
    text-align: left;
    padding-top: 0;
    padding-bottom: 24px;
  }

  .hero-title-area {
    padding-bottom: 40px;
  }

  .hero-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .manifesto-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .manifesto-left {
    position: static;
  }

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

  .instruments-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .instrument-list {
    column-width: 220px;
    column-gap: 20px;
  }

  .cta-section {
    grid-template-columns: 1fr;
  }

  .cta-right {
    border-left: none;
    border-top: 1px solid rgba(242, 226, 154, 0.1);
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .geo-circle {
    display: none;
  }
}

@media (max-width: 560px) {
  .instrument-list {
    columns: 1;
  }
}

@media (pointer: coarse), (hover: none) {
  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }

  .cta-btn,
  .topic-item,
  .instrument-list li {
    cursor: pointer;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
