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

:root {
  --rh-green: #00c805;
  --rh-green-hover: #00a804;
  --rh-green-soft: rgba(0, 200, 5, 0.1);
  --ocean: #0a7ea4;
  --ocean-deep: #065a78;
  --sky: #c8e8f5;
  --gold: #f0c41a;
  --tie-red: #e11d2e;
  --ink: #0b0f0c;
  --ink-muted: #4a5560;
  --ink-light: #7a8490;
  --white: #ffffff;
  --surface: #f4f7f5;
  --surface-alt: #e8f0ec;
  --font-display: "Archivo Black", Impact, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.accent {
  color: var(--rh-green);
}

.center {
  text-align: center;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 15, 12, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1080px, 92vw);
  margin: 0 auto;
  padding: 0.75rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ink);
}

.nav-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--rh-green);
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-social {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0 !important;
  border-radius: 50%;
  border: 1.5px solid rgba(11, 15, 12, 0.15);
  color: var(--ink) !important;
  background: var(--white);
  transition: transform 0.2s var(--ease), border-color 0.2s, color 0.2s;
}

.nav-social:hover {
  transform: translateY(-2px);
  border-color: var(--rh-green);
  color: var(--rh-green) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 7rem 1.25rem 4.5rem;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: hero-zoom 18s var(--ease) infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(5, 20, 28, 0.88) 0%,
      rgba(5, 20, 28, 0.55) 42%,
      rgba(5, 20, 28, 0.2) 70%,
      rgba(5, 20, 28, 0.08) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  animation: hero-rise 0.9s var(--ease) both;
}

.hero-logo {
  width: min(112px, 28vw);
  height: auto;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  margin-bottom: 1rem;
  background: var(--white);
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 10vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--rh-green);
  text-shadow: 0 2px 24px rgba(0, 200, 5, 0.35);
  margin-bottom: 0.35rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.hero-tagline {
  font-size: clamp(0.98rem, 2.2vw, 1.15rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
}

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

.btn-rh {
  background: var(--rh-green);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 200, 5, 0.35);
}

.btn-rh:hover {
  background: var(--rh-green-hover);
  box-shadow: 0 12px 28px rgba(0, 200, 5, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid rgba(11, 15, 12, 0.12);
}

.btn-secondary:hover {
  border-color: var(--rh-green);
  color: var(--rh-green);
}

.btn-lg {
  padding: 1.05rem 2.1rem;
  font-size: 1rem;
}

.btn-copy {
  background: var(--rh-green);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.btn-copy.copied {
  background: var(--ocean);
}

/* ── Marquee ── */
.marquee {
  background: var(--rh-green);
  color: var(--white);
  padding: 0.85rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 1.75rem;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Sections ── */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rh-green);
  margin-bottom: 0.85rem;
}

.section-label.centered {
  display: block;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.35rem;
  color: var(--ink);
}

.section-sub {
  color: var(--ink-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.section-text {
  color: var(--ink-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.section-text strong {
  color: var(--ink);
  font-weight: 700;
}

/* ── About ── */
.about {
  background:
    linear-gradient(180deg, var(--sky) 0%, var(--white) 55%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-logo {
  width: min(320px, 80%);
  border-radius: 50%;
  border: 4px solid var(--ink);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(10, 126, 164, 0.2);
  animation: float-logo 5s ease-in-out infinite;
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Gallery ── */
.gallery {
  background: var(--white);
}

.gallery-layout {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.gallery-row {
  display: grid;
  gap: 1.15rem;
}

.gallery-landscapes {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-squares {
  grid-template-columns: repeat(2, minmax(0, 280px));
  justify-content: center;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1.5px solid rgba(11, 15, 12, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--surface);
  aspect-ratio: 16 / 9;
  box-shadow: 0 8px 28px rgba(11, 15, 12, 0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}

.gallery-featured {
  aspect-ratio: 21 / 9;
}

.gallery-square {
  aspect-ratio: 1 / 1;
}

.gallery-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 200, 5, 0.35);
  box-shadow: 0 16px 40px rgba(0, 200, 5, 0.14);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--rh-green);
  outline-offset: 3px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(5, 12, 10, 0.88);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: var(--rh-green);
}

/* ── Contract ── */
.contract {
  background: var(--surface);
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1.5px solid rgba(11, 15, 12, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(11, 15, 12, 0.06);
}

.ca-address {
  flex: 1;
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 2.4vw, 0.82rem);
  color: var(--ink);
  word-break: break-all;
  line-height: 1.5;
}

.copy-toast {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rh-green);
  min-height: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.copy-toast.show {
  opacity: 1;
}

/* ── Chart ── */
.chart-section {
  background: var(--white);
}

.chart-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(11, 15, 12, 0.1);
  background: var(--surface);
  min-height: 500px;
  box-shadow: 0 12px 40px rgba(11, 15, 12, 0.06);
}

.dexscreener-embed {
  width: 100%;
  height: 560px;
  border: none;
  display: block;
}

.dexscreener-embed.hidden {
  display: none;
}

.chart-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 2rem;
  text-align: center;
  color: var(--ink-muted);
}

.chart-placeholder code {
  color: var(--rh-green);
  background: var(--rh-green-soft);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.chart-placeholder.hidden {
  display: none;
}

.chart-link {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--rh-green);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.chart-link:hover {
  color: var(--ocean);
}

.chart-link-wrap {
  text-align: center;
}

/* ── Buy ── */
.buy {
  background:
    linear-gradient(180deg, var(--surface-alt) 0%, var(--sky) 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.step {
  padding: 0.5rem 0;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--rh-green);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.buy-cta {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 2.25rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: var(--white);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
}

.footer-brand span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 560px;
  line-height: 1.65;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.15rem;
    border-bottom: 1px solid rgba(11, 15, 12, 0.08);
    box-shadow: 0 16px 40px rgba(11, 15, 12, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s var(--ease), opacity 0.3s;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero {
    align-items: center;
    padding: 6.5rem 1.15rem 3.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    text-align: center;
  }

  .about-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .ca-box {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-copy {
    justify-content: center;
  }

  .dexscreener-embed {
    height: 480px;
  }

  .gallery-landscapes {
    grid-template-columns: 1fr;
  }

  .gallery-squares {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }

  .gallery-featured {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .hero-brand {
    font-size: 2.6rem;
  }

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

  .gallery-squares {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }
}
