@font-face {
  font-family: "Pricedown";
  src: url("pricedown.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #07050a;
  --ink: #f4efe6;
  --muted: #c9b8a4;
  --accent: #4ec8ff;
  --sunset: #ff6b3d;
  --gold: #f0c14b;
  --asphalt: #121018;
  --line: rgba(244, 239, 230, 0.14);
  --font-display: "Pricedown", "Impact", "Arial Black", sans-serif;
  --font-body: "Oswald", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.45;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* —— Nav —— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: linear-gradient(180deg, rgba(7, 5, 10, 0.85), transparent);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.nav-solid {
  background: rgba(7, 5, 10, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 0 #000, 0 0 12px rgba(78, 200, 255, 0.35);
}

.nav-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.nav-links {
  display: flex;
  gap: 0.55rem;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--line);
  background: rgba(7, 5, 10, 0.55);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(78, 200, 255, 0.12);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("banner.png") center / cover no-repeat;
  transform: scale(1.04);
  animation: kenburns 22s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 5, 10, 0.88) 0%, rgba(7, 5, 10, 0.45) 48%, rgba(7, 5, 10, 0.25) 100%),
    linear-gradient(180deg, rgba(7, 5, 10, 0.35) 0%, rgba(7, 5, 10, 0.15) 40%, rgba(7, 5, 10, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 7.5rem 1.5rem 5.5rem;
  animation: rise 0.9s ease both;
}

.hero-art {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(48vw, 560px);
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
  animation: floaty 5.5s ease-in-out infinite;
}

.hero-ticker {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.88;
  font-size: clamp(3.4rem, 11vw, 7.2rem);
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 1px #4ec8ff,
    0 0 14px rgba(78, 200, 255, 0.55),
    3px 4px 0 #000,
    -1px -1px 0 #0a1a2a,
    1px -1px 0 #0a1a2a,
    -1px 1px 0 #0a1a2a,
    1px 1px 0 #0a1a2a;
}

.title-line {
  display: block;
}

.hero-tag {
  margin-top: 1.15rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn svg,
.btn .pump-logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-pump {
  color: #04150f;
  background: linear-gradient(180deg, #b6f5c8 0%, #86efac 45%, #4ade80 100%);
  border-color: #0d4f3c;
  box-shadow: 0 0 0 1px rgba(13, 79, 60, 0.4), 4px 5px 0 #04150f;
}

.btn-pump:hover {
  transform: translate(-2px, -2px);
  box-shadow: 0 0 0 1px rgba(13, 79, 60, 0.4), 7px 8px 0 #04150f;
}

.pump-logo {
  width: 26px !important;
  height: 26px !important;
  object-fit: contain;
}

.btn-ghost {
  color: var(--ink);
  background: rgba(7, 5, 10, 0.45);
  border-color: rgba(244, 239, 230, 0.35);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.ca-field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.1rem;
  max-width: 34rem;
  padding: 0.55rem 0.55rem 0.55rem 0.85rem;
  border: 2px solid var(--line);
  background: rgba(7, 5, 10, 0.55);
  backdrop-filter: blur(6px);
}

.ca-label {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.ca-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  font-size: 0.78rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.ca-copy {
  flex-shrink: 0;
  padding: 0.45rem 0.75rem;
  border: 2px solid rgba(244, 239, 230, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ca-copy:hover {
  border-color: var(--accent);
  background: rgba(78, 200, 255, 0.12);
}

.ca-copy.is-copied {
  border-color: #86efac;
  color: #86efac;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 3;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 1.4rem;
  animation: bounce 1.8s ease-in-out infinite;
  opacity: 0.75;
}

/* —— Sections —— */
.section {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 1.5rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 107, 61, 0.12), transparent 45%),
    radial-gradient(ellipse at 90% 30%, rgba(78, 200, 255, 0.08), transparent 40%),
    var(--asphalt);
}

.section-inner {
  max-width: 980px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  text-align: center;
  line-height: 0.9;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 12px rgba(78, 200, 255, 0.4),
    3px 3px 0 #000;
}

.section-sub {
  margin-top: 0.65rem;
  text-align: center;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.call {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tweet-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.tweet-frame {
  width: min(100%, 550px);
}

.tweet-fallback {
  display: block;
  width: 100%;
  padding: 1.35rem 1.4rem 1.2rem;
  border: 2px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
  color: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.tweet-fallback:hover {
  border-color: var(--accent);
}

.tweet-fallback-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tweet-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0c14b, #ff6b3d);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.tweet-fallback-head strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.tweet-fallback-head span {
  color: var(--muted);
  font-size: 0.9rem;
}

.tweet-fallback-head .x-icon {
  margin-left: auto;
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.tweet-fallback blockquote {
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.tweet-fallback time {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.about {
  background:
    linear-gradient(180deg, #121018 0%, #0a0608 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-body {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: 1.15rem;
  color: var(--muted);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border: 2px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.wanted-art {
  position: relative;
  justify-self: center;
  width: min(100%, 380px);
}

.wanted-art::before {
  content: "";
  position: absolute;
  inset: 8% 10%;
  background: radial-gradient(circle, rgba(255, 107, 61, 0.35), transparent 70%);
  filter: blur(28px);
  z-index: 0;
}

.wanted-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  animation: floaty 6s ease-in-out infinite;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
}

/* —— Footer —— */
.footer {
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  border-top: 1px solid var(--line);
  background: #050308;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-shadow: 2px 2px 0 #000, 0 0 10px rgba(78, 200, 255, 0.3);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 1rem 0 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-note {
  color: rgba(201, 184, 164, 0.55);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

/* —— Motion —— */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes kenburns {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, 1%, 0);
  }
}

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

  .wanted-art {
    order: -1;
    width: min(70%, 280px);
  }

  .hero-content {
    padding-bottom: 8rem;
  }

  .hero-art {
    width: min(62vw, 340px);
    opacity: 0.95;
  }
}

@media (max-width: 560px) {
  .nav {
    padding: 0.85rem 1rem;
  }

  .hero-content {
    padding: 6.5rem 1rem 7.5rem;
  }

  .hero-art {
    width: min(78vw, 280px);
    right: -0.5rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-row {
    width: 100%;
  }
}

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

  .hero-bg {
    transform: none;
  }
}
