@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Roboto:wght@400;500;700;800&display=swap");

:root {
  --bg: #0c0c0c;
  --bg-soft: #101010;
  --card: rgba(17, 17, 17, 0.6);
  --card-strong: #151515;
  --border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #9aa3b2;
  --accent: #b1f82a;
  --accent-2: #1e04fb;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --section-pad: 96px;
  --section-pad-mobile: 72px;
  --grid-gap-lg: 32px;
  --grid-gap-md: 24px;
  --grid-gap-sm: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  min-height: 100%;
}

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

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

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

.section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-title h2 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0;
}

.section-title p {
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(177, 248, 42, 0.15);
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 18px 40px rgba(177, 248, 42, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2));
}

.hero-brand {
  position: absolute;
  top: 28px;
  left: clamp(18px, 4vw, 48px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-brand span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: var(--grid-gap-lg);
  align-items: center;
  padding: 120px 0;
  max-width: 1040px;
  margin: 0 auto;
}

.hero + .section {
  padding-top: 120px;
}

.hero-copy h1 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2.6rem, 4.8vw, 4.1rem);
  line-height: 1.05;
  margin: 18px 0 16px;
}

.hero-copy h1 span {
  color: var(--accent);
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 520px;
}

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

.hero-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #0c0c0c;
  background: linear-gradient(135deg, #1e04fb, #b1f82a);
  margin-left: -12px;
}

.avatar:first-child {
  margin-left: 0;
}

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

.hero-social span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-cards {
  display: grid;
  gap: 16px;
  width: min(420px, 100%);
  justify-self: center;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.hero-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(177, 248, 42, 0.2);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 700;
}

.hero-card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--grid-gap-lg);
}

.feature-card {
  position: relative;
  padding: 32px 26px 26px;
  background: rgba(17, 17, 17, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-number {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 16px 30px rgba(177, 248, 42, 0.25);
}

.feature-card h3 {
  margin: 16px 0 8px;
  font-size: 1.25rem;
}

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

.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--grid-gap-md);
}

.type-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(17, 17, 17, 0.7);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.type-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.type-card p {
  margin: 0;
  color: var(--muted);
}

.meter {
  display: grid;
  gap: 8px;
}

.meter-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.meter-bar {
  width: 100%;
  height: 8px;
  background: #222;
  border-radius: 999px;
  overflow: hidden;
}

.meter-bar span {
  display: block;
  height: 100%;
  background: var(--accent-2);
}

.trainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.trainer-card {
  background: rgba(17, 17, 17, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 20px;
  display: grid;
  gap: 14px;
}

.trainer-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
}

.trainer-card h4 {
  margin: 0;
  font-size: 1.1rem;
}

.trainer-card span {
  color: var(--accent);
  font-weight: 600;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
  min-height: 520px;
}

.bento-card {
  position: relative;
  background: #121212;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.bento-card .bento-content {
  position: relative;
  z-index: 1;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.bento-accent {
  background: var(--accent-2);
  color: #ffffff;
}

.bento-accent.alt {
  background: var(--accent);
  color: #0a0a0a;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  align-items: center;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.logo-pill {
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.cta-section {
  background: var(--bg);
}

.cta-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 64px);
  background: linear-gradient(135deg, #151515, #000000);
  border: 1px solid var(--border);
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 240px;
  height: 240px;
  background: rgba(177, 248, 42, 0.18);
  filter: blur(40px);
}

.cta-card::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 240px;
  height: 240px;
  background: rgba(30, 4, 251, 0.2);
  filter: blur(40px);
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  z-index: 1;
  align-items: center;
}

.cta-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.footer {
  padding: 48px 0 64px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--border);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--grid-gap-lg);
}

.price-card {
  background: rgba(17, 17, 17, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  gap: 12px;
}

.price-card.highlight {
  border-color: rgba(177, 248, 42, 0.4);
  box-shadow: 0 20px 50px rgba(177, 248, 42, 0.2);
}

.price-value {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.price-list li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 8px;
}

.center-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: rgba(17, 17, 17, 0.7);
  border: 1px solid var(--border);
  text-align: center;
}

.center-card h2 {
  margin: 0 0 12px;
  font-family: "Roboto", sans-serif;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--grid-gap-md);
    padding: 96px 0;
  }
  .hero-brand {
    position: relative;
    top: 0;
    left: 0;
    padding: 24px 0 0;
  }
  .hero {
    min-height: auto;
  }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }
  .bento-large {
    grid-column: span 1;
    grid-row: span 1;
  }
  .bento-small-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: var(--section-pad-mobile) 0;
  }
  .hero + .section {
    padding-top: 96px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
