:root {
  --bg: #121417;
  --bg-soft: #171a1f;
  --surface: #1e232b;
  --surface-2: #232935;
  --text: #f3f4ef;
  --text-muted: #bac0c9;
  --accent: #ffd442;
  --accent-warm: #f2b534;
  --bronze: #8a6a3d;
  --line: rgba(255, 255, 255, 0.12);
  --radius: 18px;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 0 1px rgba(255, 212, 66, 0.25), 0 16px 44px rgba(242, 181, 52, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(255, 212, 66, 0.09), transparent 60%),
    radial-gradient(700px 380px at -10% 10%, rgba(174, 118, 45, 0.07), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.45;
  text-rendering: geometricPrecision;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--accent);
  color: #111;
  border-radius: 12px;
  font-weight: 700;
}

.skip-link:focus {
  left: 10px;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.section-padding {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  transition: background-color 220ms ease, backdrop-filter 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(20, 23, 28, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.wordmark {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  gap: 0.24em;
  align-items: baseline;
}

.wordmark-banana {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(255, 212, 66, 0.25);
}

.wordmark-door {
  color: #fff;
}

.wordmark-com {
  color: var(--accent);
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 8px;
  transition: color 160ms ease, background-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.header-cta {
  background: linear-gradient(145deg, var(--accent), var(--accent-warm));
  color: #19160f !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 18px rgba(242, 181, 52, 0.3);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 64px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-logo-mark {
  position: absolute;
  right: 3%;
  top: 8%;
  width: clamp(340px, 44vw, 560px);
  height: clamp(240px, 36vw, 440px);
  opacity: 0.94;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.36));
  animation: floatA 11s ease-in-out infinite;
}

.hero-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.3px);
  opacity: 0.85;
}

.orb-a {
  width: 280px;
  aspect-ratio: 1;
  right: 8%;
  top: 18%;
  background: radial-gradient(circle at 28% 30%, #ffe178, #d39722 75%);
  box-shadow: 0 0 64px rgba(255, 198, 80, 0.28);
  animation: floatA 11s ease-in-out infinite;
}

.orb-b {
  width: 140px;
  aspect-ratio: 1;
  right: 34%;
  top: 11%;
  background: radial-gradient(circle at 34% 34%, #ffed9c, #cc8b1a 78%);
  opacity: 0.6;
  animation: floatB 13s ease-in-out infinite;
}

.ring {
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 212, 66, 0.2);
  position: absolute;
  right: -100px;
  top: 12%;
  animation: pulseRing 7s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 800;
}

h1,
h2 {
  margin: 0;
  line-height: 1.07;
}

h1 {
  font-size: clamp(2rem, 5.6vw, 4.35rem);
  max-width: 11ch;
  letter-spacing: -0.02em;
}

.hero-text {
  margin: 18px 0 0;
  max-width: 57ch;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

.hero-actions,
.app-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 360ms ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(145deg, var(--accent), var(--accent-warm));
  color: #1b1710;
  box-shadow: 0 10px 20px rgba(242, 181, 52, 0.28);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.pill {
  margin: 16px 0 0;
  color: #f7ddb3;
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  padding: 7px 10px;
  background: rgba(178, 124, 31, 0.17);
  border: 1px solid rgba(236, 176, 74, 0.4);
  border-radius: 999px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 4.4vw, 2.4rem);
}

.app-card {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  background:
    radial-gradient(700px 220px at 10% -10%, rgba(255, 212, 66, 0.1), transparent 46%),
    linear-gradient(160deg, rgba(138, 106, 61, 0.12), rgba(24, 28, 35, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.app-visual {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.25));
  padding: 12px;
  display: grid;
  place-items: center;
}

.app-visual img {
  border-radius: 12px;
  object-fit: contain;
  width: 100%;
  height: auto;
}

.app-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.platform-live,
.platform-soon {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 8px 10px;
}

.platform-live {
  color: #f7ddb3;
  background: rgba(178, 124, 31, 0.18);
  border: 1px solid rgba(236, 176, 74, 0.45);
}

.platform-soon {
  margin-top: 8px;
  color: #d4d8e0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.app-description {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 1.03rem;
}

.feature-chips {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-chips li {
  border: 1px solid rgba(123, 163, 255, 0.45);
  background:
    linear-gradient(170deg, rgba(39, 54, 88, 0.95), rgba(19, 27, 47, 0.95));
  color: #dbe8ff;
  border-radius: 10px;
  padding: 9px 13px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.about,
.more {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
}

.about h2,
.more h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.about p,
.more p {
  color: var(--text-muted);
  max-width: 68ch;
}

.coming-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.coming-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--surface);
  padding: 18px;
}

.coming-card.muted {
  opacity: 0.9;
  background: var(--surface-2);
}

.coming-title {
  margin: 0;
  font-weight: 800;
}

.coming-copy {
  margin-top: 8px;
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 20px 0 30px;
  background: rgba(10, 11, 14, 0.45);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  color: var(--text-muted);
}

.footer-inner nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-inner nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatA {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -11px, 0); }
}

@keyframes floatB {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(7px, 12px, 0); }
}

@keyframes pulseRing {
  0%,
  100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.03); opacity: 0.82; }
}

@media (max-width: 980px) {
  .app-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .orb-a {
    display: none;
  }

  .hero-logo-mark {
    width: min(460px, 74vw);
    height: min(340px, 52vw);
    right: 2%;
    top: 6%;
  }

  .orb-b,
  .ring {
    display: none;
  }
}

@media (max-width: 760px) {
  .section-padding {
    padding: 68px 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 4vw;
    right: 4vw;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(21, 24, 30, 0.97);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    gap: 4px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 10px 12px;
  }

  .header-cta {
    text-align: center;
  }

  .hero-actions,
  .app-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .coming-grid {
    grid-template-columns: 1fr;
  }

  .hero-backdrop {
    position: relative;
    inset: auto;
    height: min(300px, 64vw);
    margin-bottom: 14px;
  }

  .hero-logo-mark {
    opacity: 0.9;
    position: relative;
    right: auto;
    top: auto;
    margin: 0 auto;
    width: min(360px, 82vw);
    height: min(280px, 60vw);
  }
}

@media (max-width: 460px) {
  .header-inner {
    min-height: 68px;
  }

  .wordmark {
    font-size: 1.02rem;
  }

  .app-card {
    padding: 16px;
  }

  .hero-backdrop {
    height: min(240px, 68vw);
  }

  .hero-logo-mark {
    width: min(300px, 84vw);
    height: min(220px, 62vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  .reveal.revealed {
    opacity: 1;
    transform: none;
  }
}
