:root {
  --bg: #050706;
  --surface: #0c110f;
  --surface-2: #111914;
  --surface-3: #18231b;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4f8f2;
  --muted: rgba(244, 248, 242, 0.68);
  --soft: rgba(244, 248, 242, 0.44);
  --energy: #b7f34a;
  --energy-2: #79d83f;
  --ink: #11150e;
  --bronze: #b66d35;
  --silver: #c8ced7;
  --gold: #f2b543;
  --max: 1120px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(115deg, rgba(183, 243, 74, 0.08), transparent 34rem),
    linear-gradient(180deg, #030403 0%, var(--bg) 42%, #070a08 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 7, 6, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--energy);
  color: var(--ink);
  font-weight: 900;
  border: 1px solid rgba(183, 243, 74, 0.7);
  box-shadow: 0 12px 30px rgba(183, 243, 74, 0.14);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

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

.hero,
.section,
.page-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  align-items: center;
  gap: 48px;
  padding: 42px 0 56px;
}

.eyebrow {
  color: var(--energy);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-top: 14px;
  max-width: 760px;
  font-size: clamp(3.1rem, 8vw, 7rem);
  line-height: 0.92;
  font-weight: 950;
}

.highlight {
  color: var(--energy);
}

.hero-copy {
  margin-top: 22px;
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-pill {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.86rem;
}

.phone-shell {
  position: relative;
  width: min(410px, 100%);
  margin-left: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 38px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44), 0 0 70px rgba(183, 243, 74, 0.12);
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 18px -12px auto auto;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(183, 243, 74, 0.18);
  border-radius: 28px;
  transform: rotate(12deg);
  z-index: -1;
}

.phone-screen {
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(183, 243, 74, 0.1), transparent 42%),
    linear-gradient(180deg, #06100a 0%, #080b0a 100%);
  border: 1px solid var(--line);
  padding: 22px;
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mini-logo {
  height: 28px;
  width: auto;
}

.bell {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(183, 243, 74, 0.14);
  color: var(--energy);
  font-weight: 950;
}

.metric-card,
.small-card,
.team-card,
.contact-card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.metric-card {
  margin-top: 24px;
  padding: 20px;
}

.metric-label,
.small-label {
  color: var(--muted);
  font-weight: 800;
}

.step-number {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
}

.step-number strong {
  font-size: 3.4rem;
  line-height: 1;
}

.ring {
  --value: 82%;
  width: 96px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--energy) var(--value), rgba(255, 255, 255, 0.12) 0);
}

.ring span {
  width: 70px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #07100a;
  font-weight: 950;
  font-size: 1.3rem;
}

.bar {
  height: 10px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.bar span {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--energy), var(--energy-2));
}

.preview-transform {
  margin-top: 12px;
  padding: 14px;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(183, 243, 74, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(183, 243, 74, 0.1), rgba(255, 255, 255, 0.045));
}

.preview-transform strong {
  display: block;
  margin-top: 3px;
  font-size: 1.04rem;
}

.preview-character-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 8px;
  min-height: 96px;
  overflow: hidden;
}

.preview-character-row .character-art {
  height: 92px;
  width: 100%;
  object-fit: contain;
  object-position: bottom center;
  margin: 0 auto;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.38));
}

.hero-character-row .character-art {
  height: 72px !important;
  max-height: 72px;
  transform: none !important;
}

.hero .preview-transform {
  grid-template-columns: minmax(0, 1fr) minmax(140px, 0.72fr);
  align-items: center;
  gap: 10px;
}

.hero .preview-character-row {
  min-height: 78px;
  max-height: 78px;
}

.preview-character-row span {
  align-self: center;
  color: var(--energy);
  font-weight: 950;
}

.screen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.small-card {
  padding: 14px;
}

.small-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.8rem;
  color: var(--energy);
}

.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 26px;
}

.section h2,
.page-title {
  max-width: 760px;
  font-size: clamp(2.1rem, 4.2vw, 4.4rem);
  line-height: 1;
  font-weight: 950;
}

.section-head p,
.page-lead {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 1.04rem;
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.transform-card {
  position: relative;
  min-height: 340px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(183, 243, 74, 0.1), transparent 18rem),
    var(--surface);
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease;
}

.transform-card:hover {
  border-color: rgba(183, 243, 74, 0.34);
  transform: translateY(-2px);
}

.access-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(5, 7, 6, 0.72);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 950;
}

.access-badge.free {
  border-color: rgba(183, 243, 74, 0.45);
  color: var(--energy);
}

.access-badge.rewarded {
  border-color: rgba(242, 181, 67, 0.45);
  color: var(--gold);
}

.character-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 12px;
  min-height: 218px;
  padding: 26px 6px 0;
  overflow: hidden;
}

.character-row .character-art {
  height: 218px;
  width: 100%;
  object-fit: contain;
  object-position: bottom center;
  margin: 0 auto;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.38));
}

.character-art.leo {
  transform: scale(1.08);
}

.character-art.zoe {
  transform: scale(1.06);
}

.character-art.emre,
.character-art.aon {
  transform: scale(1.16);
}

.arrow {
  align-self: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(183, 243, 74, 0.15);
  color: var(--energy);
  font-weight: 950;
}

.transform-card h3 {
  margin-top: 12px;
  font-size: 1.34rem;
}

.transform-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.medal-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.medal-card {
  padding: 20px;
  min-height: 240px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.medal-card img {
  width: 74px;
  height: 74px;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.26));
}

.medal-card h3 {
  margin-top: 18px;
  font-size: 1.4rem;
}

.medal-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.medal-card.bronze {
  background: linear-gradient(180deg, rgba(182, 109, 53, 0.15), rgba(255, 255, 255, 0.03)), var(--surface-2);
  box-shadow: inset 0 4px 0 var(--bronze);
}

.medal-card.silver {
  background: linear-gradient(180deg, rgba(200, 206, 215, 0.14), rgba(255, 255, 255, 0.03)), var(--surface-2);
  box-shadow: inset 0 4px 0 var(--silver);
}

.medal-card.gold {
  background: linear-gradient(180deg, rgba(242, 181, 67, 0.16), rgba(255, 255, 255, 0.03)), var(--surface-2);
  box-shadow: inset 0 4px 0 var(--gold);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(183, 243, 74, 0.14);
  color: var(--energy);
  font-size: 0.78rem;
  font-weight: 950;
}

.feature strong {
  display: block;
  font-size: 1.1rem;
}

.feature p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.cta-band {
  padding: 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(183, 243, 74, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(183, 243, 74, 0.16), rgba(255, 255, 255, 0.04)),
    var(--surface);
}

.cta-band p {
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.page-hero {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 32px;
}

.page-lead {
  margin-top: 16px;
}

.page-section {
  padding: 28px 0 84px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.contact-card,
.policy-card {
  padding: 24px;
}

.contact-card h2,
.policy-card h2 {
  font-size: 1.55rem;
}

.contact-card p,
.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.62;
}

.contact-card p,
.policy-card p {
  margin-top: 10px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-row {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.contact-row span {
  display: block;
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-row strong {
  display: block;
  margin-top: 3px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

label {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.policy-stack {
  display: grid;
  gap: 16px;
}

.policy-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f6f8f4;
    --surface: #ffffff;
    --surface-2: #eef3e9;
    --surface-3: #e4eddc;
    --line: rgba(16, 24, 16, 0.13);
    --text: #11170f;
    --muted: rgba(17, 23, 15, 0.68);
    --soft: rgba(17, 23, 15, 0.48);
    --ink: #11170f;
    color-scheme: light;
  }

  body {
    background:
      linear-gradient(115deg, rgba(121, 216, 63, 0.16), transparent 34rem),
      linear-gradient(180deg, #ffffff 0%, var(--bg) 58%, #eef3e9 100%);
  }

  .site-header {
    background: rgba(255, 255, 255, 0.84);
  }

  .phone-screen,
  .ring span {
    background: #0a100c;
    color: #f4f8f2;
  }

  .proof-pill,
  .feature,
  .metric-card,
  .small-card,
  .team-card,
  .contact-card,
  .policy-card {
    background: rgba(255, 255, 255, 0.72);
  }

  .access-badge {
    background: rgba(255, 255, 255, 0.84);
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
  }

  .phone-shell {
    width: min(360px, 100%);
    margin: 0 auto;
  }

  .phone-screen {
    padding: 18px;
  }

  .section-head,
  .cta-band {
    align-items: start;
    flex-direction: column;
  }

  .transform-grid,
  .medal-band,
  .feature-list,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }
}

@media (max-width: 520px) {
  .brand img {
    height: 28px;
  }

  h1 {
    font-size: 3.15rem;
  }

  .step-number {
    align-items: start;
    flex-direction: column;
  }

  .step-number strong {
    font-size: 2.75rem;
  }

  .ring {
    width: 78px;
  }

  .ring span {
    width: 56px;
    font-size: 1.05rem;
  }

  .screen-grid {
    grid-template-columns: 1fr;
  }

  .preview-character-row .character-art {
    height: 72px;
  }

  .preview-character-row {
    min-height: 78px;
  }

  .character-row {
    min-height: 172px;
    padding-top: 20px;
  }

  .character-row .character-art {
    height: 172px;
  }

  .arrow {
    width: 30px;
    height: 30px;
  }
}
