:root {
  --paper: #f2e7cb;
  --ink: #2c1c12;
  --ink-soft: #5e4634;
  --gold: #ffb000;
  --gold-deep: #c45c08;
  --line: rgba(90, 52, 18, 0.14);
  --card: rgba(255, 250, 242, 0.72);
  --mx: 50vw;
  --my: 28vh;
  --spin: 0deg;
}

@property --spin {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  font-family: Outfit, "Segoe UI", sans-serif;
  background:
    radial-gradient(1000px 520px at 8% -10%, rgba(255, 198, 80, 0.45), transparent 55%),
    radial-gradient(820px 480px at 110% 8%, rgba(255, 140, 50, 0.22), transparent 50%),
    radial-gradient(700px 420px at 70% 110%, rgba(255, 186, 90, 0.28), transparent 50%),
    var(--paper);
  min-height: 100vh;
}

body.magic-cursor,
body.magic-cursor a,
body.magic-cursor button {
  cursor: none;
}

img { max-width: 100%; }

button, a { font: inherit; }

::selection {
  background: #ffb000;
  color: #2a1608;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: #2c1c12;
  color: #fff4df;
  padding: 8px 12px;
  border-radius: 999px;
  z-index: 100;
}

.skip:focus { top: 12px; }

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

#magic,
.glow,
.grain,
.sky {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#magic { z-index: 6; width: 100%; height: 100%; }

.glow {
  z-index: 3;
  background: radial-gradient(380px circle at var(--mx) var(--my), rgba(255, 206, 110, 0.28), transparent 62%);
}

.grain {
  z-index: 5;
  opacity: 0.16;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
}

.sky { z-index: 0; }

.sky i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(26px * var(--s));
  height: calc(26px * var(--s));
  opacity: 0.28;
  background: center / contain no-repeat url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><ellipse cx='32' cy='42' rx='14' ry='11' fill='%23d9842e'/><circle cx='16' cy='26' r='6' fill='%23d9842e'/><circle cx='27' cy='16' r='5.5' fill='%23d9842e'/><circle cx='40' cy='16' r='5.5' fill='%23d9842e'/><circle cx='50' cy='27' r='6' fill='%23d9842e'/></svg>");
  animation: drift var(--d) ease-in-out infinite;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 70;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cursor.on { opacity: 1; }

.cursor-ring,
.cursor-paw {
  position: absolute;
  left: 0;
  top: 0;
}

.cursor-ring {
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border-radius: 50%;
  border: 1.5px solid rgba(214, 122, 16, 0.95);
  box-shadow: 0 0 22px rgba(255, 176, 40, 0.9), inset 0 0 14px rgba(255, 200, 80, 0.45);
  background: rgba(255, 196, 70, 0.12);
  transition: width 0.25s ease, height 0.25s ease, margin 0.25s ease, background 0.25s ease;
}

.cursor-paw {
  width: 16px;
  height: 16px;
  margin: -24px 0 0 8px;
  fill: #ff9a1a;
  filter: drop-shadow(0 0 6px rgba(255, 160, 20, 0.9));
}

.cursor.is-hot .cursor-ring {
  width: 68px;
  height: 68px;
  margin: -34px 0 0 -34px;
  background: rgba(255, 186, 48, 0.14);
}

.cursor.is-down .cursor-ring {
  transform: scale(0.82);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  transform: translateX(-50%) translateY(16px);
  background: #2a1c12;
  color: #ffe7bf;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 186, 48, 0.45);
  box-shadow: 0 12px 30px rgba(40, 18, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(242, 231, 203, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid #ffb000;
  box-shadow: 0 0 0 4px rgba(255, 176, 32, 0.2);
}

.nav-links {
  display: flex;
  gap: 18px;
  margin-left: auto;
}

.nav-links a,
.nav-pill {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.nav-links a:hover,
.nav-pill:hover { color: var(--gold-deep); }

.nav-pill {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.7);
  padding: 8px 12px;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 18px 0 64px;
}

.wordmark {
  width: min(860px, 100%);
  height: auto;
  display: block;
  margin: 8px auto 6px;
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 68%, transparent 96%);
  mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 68%, transparent 96%);
  animation: floaty 6.5s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(180, 110, 30, 0.28);
  background: rgba(255, 250, 242, 0.55);
  color: #8a4b12;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}

.kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2fbe62;
  box-shadow: 0 0 0 0 rgba(47, 190, 98, 0.7);
  animation: pulse 1.7s ease-out infinite;
}

h1, h2, .contact h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 560;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: 0.94;
  margin: 14px 0 12px;
}

h1 em {
  font-style: italic;
  font-weight: 500;
  background-image: linear-gradient(110deg, #9a3e0c 0%, #e07010 35%, #ffd36a 50%, #ff8a00 65%, #9a3e0c 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 4.2s linear infinite;
}

.lede, .section-lede {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
  max-width: 48ch;
}

.lede { margin-top: 0; }

.ca {
  margin-top: 18px;
  width: min(100%, 460px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  text-align: left;
  padding: 10px 10px 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(196, 92, 8, 0.35);
  background: rgba(255, 250, 242, 0.8);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(150, 70, 10, 0.08);
}

.ca-k {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}

.ca-v {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-go, .chip {
  border: 0;
  border-radius: 999px;
  background: #2c1c12;
  color: #ffe7bf;
  padding: 8px 14px;
  font-weight: 700;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn svg { width: 16px; height: 16px; fill: currentColor; }

.btn.gold {
  background: linear-gradient(180deg, #ffc44a, #ff8d12);
  color: #2a1608;
  box-shadow: 0 10px 24px rgba(210, 110, 10, 0.28);
}

.btn.ghost {
  background: rgba(255, 250, 242, 0.55);
  border-color: var(--line);
  color: var(--ink);
}

.btn:hover { transform: translateY(-1px); }

.stage {
  display: grid;
  justify-items: center;
  gap: 16px;
  perspective: 1100px;
}

.orb {
  position: relative;
  width: min(420px, 100%);
  transform-style: preserve-3d;
  transition: transform 0.12s linear;
}

.halo-text {
  position: absolute;
  width: 132%;
  left: 50%;
  top: 50%;
  z-index: 0;
  animation: spin-halo 32s linear infinite;
  pointer-events: none;
}

.halo-text text {
  fill: #a85d16;
  font-size: 10.5px;
  font-family: Outfit, sans-serif;
  font-weight: 700;
  letter-spacing: 3.4px;
}

.ripples {
  position: absolute;
  inset: -18px;
  pointer-events: none;
}

.ripples i {
  position: absolute;
  inset: 0;
  border-radius: 46px;
  border: 1px solid rgba(224, 130, 30, 0.35);
  animation: ping 3.4s ease-out infinite;
}

.ripples i:nth-child(2) { animation-delay: 1.1s; }
.ripples i:nth-child(3) { animation-delay: 2.2s; }

.device {
  position: relative;
  z-index: 1;
  background: #161311;
  border-radius: 40px;
  padding: 12px 12px 16px;
  box-shadow:
    0 0 0 2px #ffb000,
    0 0 0 7px rgba(255, 176, 32, 0.22),
    0 28px 60px rgba(80, 36, 6, 0.28),
    0 0 70px rgba(255, 176, 40, 0.28);
}

.device img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
}

.device-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffe3ae;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px 10px;
  font-weight: 700;
}

.sig {
  width: 34px;
  height: 8px;
  background:
    linear-gradient(#ffd27a, #ffd27a) 0 0 / 4px 5px no-repeat,
    linear-gradient(#ffd27a, #ffd27a) 7px 0 / 4px 7px no-repeat,
    linear-gradient(#ffd27a, #ffd27a) 14px 0 / 4px 8px no-repeat,
    linear-gradient(#ffd27a, #ffd27a) 21px 0 / 4px 6px no-repeat;
}

.home-bar {
  width: 34%;
  height: 5px;
  margin: 12px auto 2px;
  border-radius: 99px;
  background: rgba(255, 214, 150, 0.55);
}

.call-actions {
  display: flex;
  gap: 28px;
  margin-top: 28px;
}

.round {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 0;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(60, 20, 0, 0.18);
}

.round.decline { background: radial-gradient(circle at 40% 35%, #ff7d78, #d23a3a); }
.round.answer { background: radial-gradient(circle at 40% 35%, #5ee08a, #149247); }

.call-note {
  margin: 0;
  color: var(--ink-soft);
  font-family: Fraunces, Georgia, serif;
  font-style: italic;
}

body.connected .device {
  box-shadow:
    0 0 0 2px #ffb000,
    0 0 0 7px rgba(255, 210, 80, 0.28),
    0 0 80px rgba(255, 190, 40, 0.55),
    0 28px 60px rgba(80, 36, 6, 0.28);
}

body.connected #call-state { color: #8dffa8; }

.bubble {
  position: absolute;
  padding: 8px 12px;
  border-radius: 16px 16px 16px 6px;
  background: rgba(255, 250, 242, 0.8);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(120, 60, 10, 0.08);
  animation: drift 7s ease-in-out infinite;
}

.b1 { left: 2%; top: 58%; }
.b2 { right: 3%; top: 18%; animation-delay: -2s; }
.b3 { right: 8%; bottom: 8%; animation-delay: -4s; }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 248, 236, 0.45);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: #8a4e16;
}

.paw-ico, .cursor-paw { overflow: visible; }

.paw-ico {
  width: 18px;
  height: 18px;
  fill: #e08a32;
}

.section { padding: 84px 0; }

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
  margin: 10px 0 12px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.card, .contact, .social, .thread {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(120, 70, 20, 0.06);
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 22px 22px 26px;
}

.card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -40px;
  top: -50px;
  background: radial-gradient(circle, rgba(255, 186, 40, 0.45), transparent 70%);
}

.card h3, .num { position: relative; z-index: 1; }

.card p { position: relative; z-index: 1; color: var(--ink-soft); line-height: 1.55; }

.card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.num {
  margin: 0 0 18px;
  font-family: Fraunces, Georgia, serif;
  font-style: italic;
  font-size: 28px;
  color: var(--gold-deep);
}

.band {
  background: linear-gradient(180deg, transparent, rgba(255, 236, 204, 0.72), transparent);
}

.token-layout, .buy-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.contact-shell {
  border-radius: 34px;
  padding: 2px;
  background: conic-gradient(from var(--spin), #ffb000, #fff1c4, #ff7a18, #ffe08a, #ffb000);
  animation: spin-angle 8s linear infinite;
  box-shadow: 0 20px 50px rgba(160, 80, 10, 0.12);
}

.contact {
  border-radius: 32px;
  padding: 18px;
  background: #fffaf2;
}

.contact-top {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 6px 6px 14px;
}

.contact-top img {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid #ffb000;
}

.contact h3 { margin: 0; font-size: 32px; }

.mini { margin: 0; color: var(--ink-soft); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }

.gold-t { color: var(--gold-deep); letter-spacing: 0.12em; }

.facts { margin: 0; }

.facts div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 12px 8px;
  border-top: 1px solid var(--line);
  align-items: center;
}

.facts dt { color: var(--ink-soft); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }

.facts dd { margin: 0; font-weight: 650; }

.facts button, .facts a {
  color: var(--ink);
  font-weight: 700;
  background: none;
  border: 0;
  padding: 0;
  text-decoration: none;
}

.facts a:hover, .facts button:hover { color: var(--gold-deep); }

.thread {
  list-style: none;
  margin: 0;
  padding: 18px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thread li {
  max-width: 86%;
  padding: 12px 14px;
  line-height: 1.45;
}

.thread .them {
  align-self: flex-start;
  background: #fff;
  border-radius: 18px 18px 18px 6px;
}

.thread .me {
  align-self: flex-end;
  background: linear-gradient(180deg, #ffc44a, #ff9418);
  color: #3a2208;
  border-radius: 18px 18px 6px 18px;
  font-weight: 600;
}

.thread a { color: #8a3c08; font-weight: 800; }

.chip {
  display: inline;
  padding: 2px 8px;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 13px;
}

.socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 190px;
  justify-content: flex-end;
  padding: 26px;
  border-radius: 28px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -50px;
  background: radial-gradient(circle, rgba(255, 210, 120, 0.35), transparent 68%);
}

.social strong {
  position: relative;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.03em;
}

.social span { position: relative; }

.social.x { background: #1b1613; color: #f6efe3; }
.social.tg { background: linear-gradient(160deg, #3cb4e0, #1478aa); color: white; }

.social-k {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.8;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
}

.footer-inner {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center 18%;
}

.footer p { margin: 4px 0 0; color: var(--ink-soft); max-width: 62ch; font-size: 14px; }

.footer .btn { margin-left: auto; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s ease forwards;
}

.cards .reveal:nth-child(2), .socials .reveal:nth-child(2) { animation-delay: 0.12s; }
.cards .reveal:nth-child(3) { animation-delay: 0.22s; }

:focus-visible {
  outline: 2px solid #c65300;
  outline-offset: 3px;
}

@keyframes drift {
  50% { transform: translateY(-18px) rotate(6deg); }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(47, 190, 98, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 190, 98, 0); }
}

@keyframes sheen {
  to { background-position: -220% 0; }
}

@keyframes floaty {
  50% { transform: translateY(-8px); }
}

@keyframes spin-angle {
  to { --spin: 360deg; }
}

@keyframes spin-halo {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ping {
  from { transform: scale(0.92); opacity: 0.7; }
  to { transform: scale(1.08); opacity: 0; }
}

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

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@keyframes shake {
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(3px); }
}

.shake { animation: shake 0.4s linear; }

@media (max-width: 900px) {
  .hero-grid, .token-layout, .buy-layout, .cards, .socials {
    grid-template-columns: 1fr;
  }

  .stage { order: -1; }
  .bubble, .halo-text { display: none; }
  .orb { width: min(420px, 92%); }
  .nav-inner { flex-wrap: wrap; min-height: 0; padding: 10px 0; }
  .nav-links {
    display: flex;
    order: 3;
    width: 100%;
    margin: 0;
    gap: 14px;
    padding-bottom: 8px;
  }
  .footer-inner { flex-wrap: wrap; }
  .footer .btn { margin-left: 0; }
  h1 { font-size: 42px; }
}

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

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

@media (pointer: coarse) {
  .cursor { display: none; }
}
