:root {
  --ink: #10140f;
  --ink-2: #1a2118;
  --paper: #f3ead4;
  --paper-2: #fff8ea;
  --brass: #c4963a;
  --brass-2: #e0be72;
  --ember: #c85a28;
  --moss: #3f5c44;
  --rule: #2b2a22;
  --mute: #6d6758;
  --ok: #2f7a4a;
  --shadow: 0 18px 40px rgba(8, 10, 7, 0.28);
  --display: "Syne", "Trebuchet MS", sans-serif;
  --serif: "Literata", "Georgia", serif;
  --sans: "IBM Plex Sans", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "Consolas", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(196, 150, 58, 0.12), transparent 50%),
    radial-gradient(900px 500px at 110% 8%, rgba(200, 90, 40, 0.1), transparent 46%),
    var(--ink);
  font-family: var(--serif);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input { font: inherit; }

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--brass);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 20;
}
.skip:focus { top: 12px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(16, 20, 15, 0.88);
  border-bottom: 1px solid rgba(196, 150, 58, 0.28);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--ink-2);
  border: 1.5px solid var(--brass);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  color: var(--brass);
  letter-spacing: 0.04em;
}
.brand-copy b {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}
.brand-copy small {
  color: var(--brass-2);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.92rem;
}
.nav a { text-decoration: none; color: var(--paper); opacity: 0.86; }
.nav a:hover { color: var(--brass-2); opacity: 1; }

.cta-pair { display: flex; gap: 8px; }
.btn {
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-enter {
  background: linear-gradient(180deg, #e8c36a, var(--brass));
  color: #1a1408;
  box-shadow: 0 8px 18px rgba(196, 150, 58, 0.28);
}
.btn-join {
  background: linear-gradient(180deg, #e07a42, var(--ember));
  color: #fff8ea;
  box-shadow: 0 8px 18px rgba(200, 90, 40, 0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(243, 234, 212, 0.28);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(196, 150, 58, 0.4);
  background: transparent;
  color: var(--paper);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(196, 150, 58, 0.2);
  background: #0c100b;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 38s linear infinite;
  padding: 10px 0;
}
.ticker span { padding-right: 42px; color: #d8cba8; }
.ticker b { color: var(--brass-2); }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero {
  padding: 42px 0 20px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}
.kicker {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin: 0 0 10px;
}
.hero h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.lede {
  font-size: 1.12rem;
  max-width: 38ch;
  color: #efe4c8;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 18px; }
.meta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 0.86rem;
  color: #cfc3a4;
}
.meta-row strong { color: var(--paper); }

.board {
  background: linear-gradient(180deg, #1c2419, #141a12);
  border: 1px solid rgba(196, 150, 58, 0.32);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.board::after {
  content: "CANLI PANO";
  position: absolute;
  right: -18px;
  top: 22px;
  transform: rotate(90deg);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(224, 190, 114, 0.45);
}
.board h2 {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.slider { overflow: hidden; }
.slides {
  display: flex;
  transition: transform 0.5s ease;
}
.slide {
  min-width: 100%;
  background: #0f140e;
  border: 1px solid rgba(243, 234, 212, 0.08);
  border-radius: 16px;
  padding: 18px;
}
.slide .tag {
  display: inline-block;
  background: rgba(47, 122, 74, 0.2);
  color: #8ed3a4;
  border: 1px solid rgba(142, 211, 164, 0.3);
  padding: 3px 8px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.72rem;
}
.slide h3 { margin: 10px 0 6px; font-family: var(--display); font-size: 1.35rem; }
.slide .btn { margin: 10px 8px 0 0; }
.addr {
  font-family: var(--mono);
  font-size: 0.92rem;
  color: var(--brass-2);
  word-break: break-all;
}
.slide-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.dots { display: flex; gap: 6px; }
.dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #5a5344;
  padding: 0;
}
.dots button.is-on { background: var(--brass); width: 22px; border-radius: 99px; }
.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(196, 150, 58, 0.35);
  background: transparent;
  color: var(--paper);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: #c2b59a;
  margin: 10px 0 28px;
}
.crumbs a { color: var(--brass-2); text-decoration: none; }
.crumbs span { opacity: 0.55; }

.section { padding: 28px 0 10px; }
.section h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
  margin: 0 0 12px;
}
.chapter {
  color: var(--ember);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.paper {
  background: var(--paper);
  color: #231e16;
  border-radius: 24px;
  padding: clamp(22px, 4vw, 42px);
  box-shadow: var(--shadow);
}
.paper h2, .paper h3 { color: #1a1711; }
.paper p, .paper li { color: #3a3428; }
.paper a { color: #8a3f16; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.steps { padding-left: 20px; }
.steps li { margin: 0 0 10px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.card {
  background: var(--paper-2);
  border: 1px solid #e4d7b8;
  border-radius: 16px;
  padding: 16px;
}
.card h3 { margin: 0 0 8px; font-family: var(--display); font-size: 1.15rem; }

.review {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
}
.score {
  background: #1a2118;
  color: var(--paper);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}
.score b {
  display: block;
  font-family: var(--display);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--brass-2);
}
.stars { color: var(--brass); letter-spacing: 2px; }

.event {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  background: #161c14;
  border: 1px dashed rgba(196, 150, 58, 0.4);
  border-radius: 18px;
  padding: 18px;
}
.event-date {
  font-family: var(--display);
  text-align: center;
  background: var(--brass);
  color: #1a1408;
  border-radius: 14px;
  padding: 16px 8px;
}
.event-date b { display: block; font-size: 2rem; line-height: 1; }

.faq details {
  border-bottom: 1px solid #ddd1b4;
  padding: 12px 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 650;
  color: #1d1912;
}

.dock {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  background: rgba(16, 20, 15, 0.94);
  border: 1px solid rgba(196, 150, 58, 0.35);
  border-radius: 16px;
  padding: 8px;
  gap: 8px;
  box-shadow: var(--shadow);
}
.dock .btn { flex: 1; }
.langs {
  display: flex;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.78rem;
}
.langs a { color: var(--brass-2); text-decoration: none; }
.langs a[aria-current="page"] { color: var(--paper); border-bottom: 1px solid var(--brass); }
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--brass);
}
.rail {
  display: flex;
  gap: 12px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 2px 18px;
}
.rail article {
  min-width: min(280px, 82vw);
  scroll-snap-align: start;
  background: #171d15;
  border: 1px solid rgba(196, 150, 58, 0.28);
  border-radius: 16px;
  padding: 16px;
}
.rail h3 { margin: 6px 0 8px; font-family: var(--display); }
.rail a { color: var(--brass-2); font-family: var(--sans); font-size: 0.88rem; }
::selection { background: var(--brass); color: #1a1408; }

.mast {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  border-bottom: 2px solid rgba(196, 150, 58, 0.55);
  padding-bottom: 10px;
  margin-bottom: 22px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d7c9a4;
}
.board .seal {
  position: absolute;
  right: 36px;
  top: 14px;
  width: 74px;
  height: 74px;
  font-size: 0.62rem;
  z-index: 2;
}
.seal {
  width: 88px;
  height: 88px;
  border: 2px dashed var(--ember);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--display);
  font-size: 0.72rem;
  line-height: 1.15;
  color: var(--brass-2);
  transform: rotate(-8deg);
  animation: seal 6s ease-in-out infinite;
}
@keyframes seal {
  50% { transform: rotate(-2deg) scale(1.04); }
}
.paper p + p { margin-top: 14px; }
.paper h3 { font-family: var(--display); font-size: 1.35rem; }
.note {
  border-left: 3px solid var(--ember);
  padding: 4px 0 4px 14px;
  font-style: italic;
}
.foot {
  padding: 42px 0 110px;
  color: #c8bda3;
  font-family: var(--sans);
  font-size: 0.9rem;
}
.foot a { color: var(--brass-2); }

@media (max-width: 900px) {
  .nav { display: none; }
  .cta-pair { display: flex; }
  .cta-pair .btn { min-height: 40px; padding: 0 12px; font-size: 0.8rem; }
  .menu-btn { display: none; }
  .mast { display: none; }
  .brand-copy small { display: none; }
  .hero-grid, .split, .cards, .review, .event { grid-template-columns: 1fr; }
  .board::after { display: none; }
  .dock { display: flex; }
  .board { margin-bottom: 84px; }
  .board .seal { display: none; }
  .hero { padding-top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track, .slides, .btn { animation: none; transition: none; }
}
