:root {
  --bg-0: #0a1419;
  --bg-1: #102029;
  --panel: rgba(15, 28, 36, 0.9);
  --panel-strong: rgba(20, 35, 45, 0.96);
  --line: rgba(190, 161, 96, 0.18);
  --line-strong: rgba(190, 161, 96, 0.32);
  --text: #f7f1e4;
  --muted: #aab8b7;
  --gold: #c8a15c;
  --gold-soft: #e7c88d;
  --green: #86b88e;
  --cream: #f4ead3;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 161, 92, 0.1), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(134, 184, 142, 0.08), transparent 18%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 54%, #12222a 100%);
}

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

.page-shell {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.atmosphere {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.atmosphere-left {
  top: 70px;
  left: -110px;
  background: rgba(214, 165, 76, 0.13);
}

.atmosphere-right {
  right: -110px;
  bottom: 100px;
  background: rgba(127, 188, 140, 0.1);
}

.topbar,
.hero,
.ticker,
.value-grid,
.inside-section,
.cta-panel,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  margin-bottom: 26px;
  background: rgba(9, 18, 26, 0.7);
  border: 1px solid rgba(214, 165, 76, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(214, 165, 76, 0.18), rgba(214, 165, 76, 0.05));
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url("https://sunflower-land.com/game-assets/icons/stopwatch.png") center/contain no-repeat;
  opacity: 0.16;
  image-rendering: pixelated;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small,
.topnav a,
.hero-text,
.hero-trust-copy,
.value-card p,
.inside-copy p,
.cta-copy p,
.footer {
  color: var(--muted);
}

.topnav {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.topnav a {
  font-size: 0.95rem;
}

.hub-status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(134, 184, 142, 0.28);
  background: rgba(134, 184, 142, 0.16);
  color: #d6f0dc;
  font-size: 0.86rem;
  white-space: nowrap;
}

.topbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-button:hover,
.button:hover {
  transform: translateY(-1px);
}

.nav-button-primary,
.button-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #e0b86b 100%);
  color: #151008;
  box-shadow: 0 18px 34px rgba(214, 165, 76, 0.22);
}

.nav-button-secondary,
.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(214, 165, 76, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 22px;
}

.hero-copy,
.hero-panel,
.value-card,
.inside-section,
.cta-panel {
  background: var(--panel);
  border: 1px solid rgba(214, 165, 76, 0.14);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 36px;
}

.hero-trust-strip {
  margin-top: 22px;
  max-width: 640px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(132, 198, 155, 0.08);
  border: 1px solid rgba(132, 198, 155, 0.18);
}

.hero-trust-strip .card-kicker {
  margin-bottom: 8px;
}

.hero-trust-copy {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 82%, rgba(118, 174, 114, 0.16), transparent 18%),
    radial-gradient(circle at 78% 26%, rgba(232, 194, 110, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

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

.hero-scene-building,
.hero-scene-flower {
  position: absolute;
  image-rendering: pixelated;
  opacity: 0.12;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.hero-scene-market {
  right: 26px;
  bottom: 18px;
  width: 160px;
}

.hero-scene-workbench {
  right: 160px;
  bottom: 22px;
  width: 110px;
}

.hero-scene-flower-left {
  left: 24px;
  bottom: 18px;
  width: 38px;
}

.hero-scene-flower-right {
  right: 118px;
  top: 24px;
  width: 46px;
}

.eyebrow,
.section-tag,
.card-kicker,
.card-label,
.inside-label {
  margin: 0 0 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero h1,
.section-heading h2,
.feature-emphasis h2,
.inside-copy h2,
.cta-copy h2 {
  margin: 0;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(2.35rem, 4.6vw, 4.6rem);
  max-width: 11ch;
}

.hero h1 span {
  display: block;
  color: var(--cream);
}

.hero-text {
  max-width: 56ch;
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.72;
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-eyebrow-row .eyebrow {
  margin: 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-live-inline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(214, 165, 76, 0.24);
  background: linear-gradient(135deg, rgba(43, 31, 17, 0.72), rgba(18, 29, 21, 0.82));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  white-space: nowrap;
}

.hero-live-inline.is-counter {
  min-width: 174px;
  justify-content: space-between;
  padding: 0 18px;
  border-color: rgba(255, 110, 110, 0.24);
  background: linear-gradient(135deg, rgba(43, 24, 24, 0.82), rgba(24, 17, 17, 0.92));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.hero-live-label {
  color: #d8c7a0;
  font-size: 0.82rem;
}

.hero-live-value {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
}

.hero-live-inline.is-counter .hero-live-label {
  color: #f0d9b7;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.hero-live-inline.is-counter .hero-live-value {
  color: #ff5e5e;
  font-weight: 800;
  font-size: 1.05rem;
  text-shadow: 0 0 14px rgba(255, 94, 94, 0.34);
}

.hero-assets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.point-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(214, 165, 76, 0.12);
  color: var(--cream);
  font-size: 0.92rem;
}

.asset-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(190, 161, 96, 0.12);
  color: var(--muted);
  font-size: 0.82rem;
}

.asset-chip img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  image-rendering: pixelated;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.large-button {
  min-width: 220px;
}

.hero-panel {
  padding: 22px;
}

.showcase-panel {
  height: 100%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(250, 241, 219, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(16, 31, 40, 0.94);
  border: 1px solid rgba(190, 161, 96, 0.14);
  padding: 18px 18px 20px;
  display: grid;
  gap: 18px;
}

.showcase-frame {
  width: min(100%, 540px);
  min-height: 372px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(190, 161, 96, 0.12);
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 161, 92, 0.16), transparent 24%),
    radial-gradient(circle at 80% 78%, rgba(134, 184, 142, 0.12), transparent 24%),
    linear-gradient(135deg, #12212a 0%, #17303b 60%, #101a22 100%);
}

.showcase-video-shell {
  position: relative;
  min-height: 372px;
  isolation: isolate;
}

.showcase-video {
  position: absolute;
  inset: 14px;
  display: block;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  border: 0;
  border-radius: 18px;
  background: rgba(6, 12, 16, 0.92);
  object-fit: contain;
  object-position: center center;
  filter: saturate(1.04) contrast(1.02);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.showcase-video-tint {
  position: absolute;
  inset: 14px;
  z-index: 1;
  pointer-events: none;
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 18%, rgba(214, 165, 76, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(8, 16, 22, 0.04) 0%, rgba(8, 16, 22, 0.16) 42%, rgba(8, 16, 22, 0.42) 100%);
}

.showcase-noise {
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(7, 14, 20, 0.08) 0%, rgba(7, 14, 20, 0.72) 100%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 5px
    );
}

.showcase-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  margin: 0 auto;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(9, 18, 24, 0.42) 0%, rgba(9, 18, 24, 0.82) 100%);
  border: 1px solid rgba(214, 165, 76, 0.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.showcase-copy strong {
  display: block;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.08;
  margin-bottom: 8px;
}

.showcase-copy span {
  color: #c5d0cf;
  line-height: 1.55;
}

.metric-card,
.inside-item {
  background: var(--panel-strong);
  border: 1px solid rgba(214, 165, 76, 0.1);
  border-radius: var(--radius-lg);
}

.value-card,
.inside-item,
.cta-panel {
  position: relative;
  overflow: hidden;
}

.feature-emphasis,
.inside-copy,
.cta-copy {
  position: relative;
  z-index: 1;
}

.section-npc {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  image-rendering: pixelated;
  opacity: 0.18;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.22));
}

.section-npc-value {
  right: 20px;
  bottom: 16px;
  width: 54px;
}

.section-npc-inside {
  right: 20px;
  top: 18px;
  width: 52px;
}

.section-npc-cta {
  right: 22px;
  bottom: 18px;
  width: 56px;
}

.value-card::after,
.inside-item::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 18px;
  height: 18px;
  opacity: 0.18;
  image-rendering: pixelated;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.value-grid .value-card:nth-child(1)::after {
  background-image: url("https://sunflower-land.com/game-assets/icons/basket.png");
}

.inside-item:nth-child(1)::after {
  background-image: url("https://sunflower-land.com/game-assets/icons/stopwatch.png");
}

.inside-item:nth-child(2)::after {
  background-image: url("https://sunflower-land.com/game-assets/resources/animals/egg.png");
}

.inside-item:nth-child(3)::after {
  background-image: url("https://sunflower-land.com/game-assets/icons/basket.png");
}

.inside-item:nth-child(4)::after {
  background-image: url("https://sunflower-land.com/game-assets/tools/axe.png");
}

.showcase-caption-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-card {
  padding: 16px;
}

.compact-metric {
  min-height: 78px;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-card strong {
  font-size: 1rem;
  line-height: 1.35;
}

.ticker {
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(214, 165, 76, 0.12);
  border-radius: 999px;
  background: rgba(12, 22, 31, 0.84);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 12px 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.86rem;
  color: var(--gold-soft);
  animation: ticker-slide 28s linear infinite;
}

.ticker-track span::after {
  content: "•";
  margin-left: 14px;
  color: rgba(241, 208, 137, 0.45);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}

.value-card {
  padding: 28px;
}

.feature-emphasis {
  grid-column: span 3;
}

.feature-emphasis h2,
.section-heading h2,
.inside-copy h2,
.cta-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  margin-bottom: 14px;
}

.value-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.value-card p,
.inside-copy p,
.cta-copy p {
  line-height: 1.75;
}

.inside-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  padding: 32px;
  margin-bottom: 22px;
}

.inside-list {
  display: grid;
  gap: 12px;
}

.inside-scene-card {
  margin-top: 22px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(214, 165, 76, 0.12);
  background: rgba(9, 18, 24, 0.58);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.inside-scene-preview {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
  image-rendering: pixelated;
  opacity: 0.92;
}

.inside-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
}

.inside-thumb {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 22%, rgba(214, 165, 76, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(9, 18, 24, 0.18) 100%);
  border: 1px solid rgba(214, 165, 76, 0.14);
}

.inside-thumb img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  image-rendering: pixelated;
}

.inside-body {
  min-width: 0;
}

.inside-item strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.inside-item-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 4px 0;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-35%);
  }
}

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

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

  .topnav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero,
  .value-grid,
  .inside-section,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .feature-emphasis {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 18px, 100%);
    padding-top: 18px;
  }

  .hero-copy,
  .hero-panel,
  .value-card,
  .inside-section,
  .cta-panel {
    padding: 24px;
    border-radius: 24px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-scene-market {
    width: 130px;
  }

  .hero-scene-workbench {
    right: 120px;
    width: 92px;
  }

  .showcase-caption-row {
    grid-template-columns: 1fr;
  }

  .inside-item {
    grid-template-columns: 1fr;
  }

  .inside-thumb {
    width: 64px;
    height: 64px;
  }

  .footer {
    flex-direction: column;
  }

  .topbar-actions {
    flex-wrap: wrap;
  }

  .showcase-frame,
  .showcase-video-shell {
    width: 100%;
    min-height: 304px;
  }

  .showcase-copy {
    padding: 16px 16px 14px;
  }

  .showcase-copy strong {
    font-size: clamp(1.4rem, 7vw, 1.9rem);
  }

}
