:root {
  --background: #f8fbf6;
  --surface: #fffdfc;
  --surface-muted: #eef6f0;
  --primary: #1e8058;
  --primary-dark: #124e37;
  --primary-deep: #0e3f2d;
  --primary-soft: #ddf5e8;
  --gold: #f4bc35;
  --gold-dark: #8a5a09;
  --gold-soft: #fff1bf;
  --ink: #163e35;
  --text: #18352a;
  --muted: #6d8078;
  --border: #d9e7de;
  --shadow: 21 61 45;
  --radius-lg: 38px;
  --radius-md: 26px;
  --radius-sm: 18px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 5%, rgba(221, 245, 232, 0.9), transparent 28rem),
    radial-gradient(circle at 92% 10%, rgba(255, 241, 191, 0.7), transparent 30rem),
    var(--background);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 36px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(217, 231, 222, 0.82);
  border-radius: 999px;
  background: rgba(255, 253, 252, 0.84);
  box-shadow: 0 18px 48px rgba(var(--shadow) / 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.brand img,
.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 800;
}

.nav a:hover {
  color: var(--primary-dark);
}

.nav-cta,
.button,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
}

.nav-cta,
.button.primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 16px 34px rgba(30, 128, 88, 0.24);
}

.button.secondary,
.store-button {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--primary-dark);
}

.section-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: center;
  padding: 72px 0 34px;
}

.hero-copy,
.hero-art,
.approved-card,
.community,
.beta-card,
.download {
  border: 1px solid rgba(217, 231, 222, 0.9);
  box-shadow: 0 24px 70px rgba(var(--shadow) / 0.1);
}

.hero-copy {
  padding: clamp(34px, 6vw, 68px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-deep));
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.gold {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(4rem, 12vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: -0.09em;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.35rem;
}

.tagline {
  margin-bottom: 20px;
  color: var(--gold-soft);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 26px;
}

.hero-copy .button.secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.91rem;
  font-weight: 850;
}

.hero-art {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #e4f7ed 0%, #fffdfc 58%, #fff5d3 100%);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.orb-one {
  width: 380px;
  height: 380px;
  top: -110px;
  right: -120px;
  background: rgba(30, 128, 88, 0.14);
}

.orb-two {
  width: 230px;
  height: 230px;
  left: -80px;
  bottom: 80px;
  background: rgba(244, 188, 53, 0.18);
}

.zeus-main {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(86%, 470px);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 30px 36px rgba(var(--shadow) / 0.16));
}

.speech-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(360px, calc(100% - 56px));
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 252, 0.88);
  box-shadow: 0 18px 50px rgba(var(--shadow) / 0.1);
  backdrop-filter: blur(14px);
}

.speech-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.speech-card span {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: start;
  padding: 80px 0 54px;
}

.intro p:last-child,
.section-heading p,
.approved-card p,
.community p,
.beta-card p,
.download p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.features,
.plus {
  padding: 56px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.feature-grid,
.plus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 252, 0.82);
  box-shadow: 0 18px 50px rgba(var(--shadow) / 0.06);
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 950;
}

.approved {
  padding: 50px 0;
}

.approved-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  padding: clamp(30px, 6vw, 58px);
  border-radius: var(--radius-lg);
  background: var(--primary-dark);
}

.approved-card h2,
.approved-card p,
.approved-card li {
  color: white;
}

.approved-card p,
.approved-card li {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--primary-dark);
  font-weight: 950;
}

.approved-visual {
  position: relative;
  min-height: 420px;
}

.approved-visual img {
  width: min(88%, 420px);
  margin: 0 auto;
  filter: drop-shadow(0 26px 36px rgba(0, 0, 0, 0.22));
}

.score-card {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: min(320px, 100%);
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 253, 252, 0.94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.score-card span,
.score-card small {
  display: block;
  color: var(--muted);
}

.score-card strong {
  display: block;
  margin: 8px 0;
  color: var(--primary);
  font-size: 1.5rem;
}

.plus-grid {
  grid-template-columns: repeat(6, 1fr);
}

.plus-grid div {
  min-height: 126px;
  display: flex;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg, white, var(--surface-muted));
  color: var(--ink);
  font-weight: 950;
}

.community {
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: center;
  gap: 24px;
  margin-top: 46px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.community img {
  justify-self: center;
  width: 230px;
  filter: drop-shadow(0 20px 28px rgba(var(--shadow) / 0.12));
}

.beta {
  padding: 72px 0 48px;
}

.beta-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  padding: clamp(28px, 6vw, 58px);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--primary-deep), var(--primary-dark));
}

.beta-card h2,
.beta-card p {
  color: white;
}

.beta-card p {
  color: rgba(255, 255, 255, 0.78);
}

.signup-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  outline: none;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
}

input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(244, 188, 53, 0.22);
}

.bot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.88rem !important;
}

.download {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 70px;
  padding: clamp(28px, 5vw, 46px);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.store-buttons {
  display: grid;
  gap: 12px;
  min-width: 230px;
}

.store-button.disabled {
  color: var(--muted);
  opacity: 0.76;
}

.site-footer {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 24px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 253, 252, 0.82);
  color: var(--muted);
}

.site-footer p {
  max-width: 920px;
  line-height: 1.65;
}

.tiny {
  margin-bottom: 0;
  font-size: 0.86rem;
}

@media (max-width: 920px) {
  .site-header {
    border-radius: 28px;
  }

  .nav {
    display: none;
  }

  .hero,
  .intro,
  .approved-card,
  .community,
  .beta-card,
  .download {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-art {
    min-height: 520px;
  }

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

  .plus-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .download {
    align-items: stretch;
  }
}

@media (max-width: 620px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(100% - 24px, 1160px);
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .hero-copy {
    padding: 34px 24px;
  }

  .hero {
    padding-top: 62px;
  }

  h1 {
    font-size: clamp(3.7rem, 20vw, 5.4rem);
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-art {
    min-height: 430px;
  }

  .speech-card {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .feature-grid,
  .plus-grid {
    grid-template-columns: 1fr;
  }

  .community img {
    width: 190px;
  }
}
