:root {
  --bg-main: #020617;
  --bg-card: #0b0f1a;
  --bg-soft: #111827;
  --accent: #008550;
  --accent-soft: rgba(0, 133, 80, 0.18);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-soft: #6b7280;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --radius-pill: 999px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  --font: "Outfit-Regular", "Segoe UI", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #111827 0%, #020617 60%);
  color: var(--text-main);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 10%, #f9fafb 0, #a7f3d0 24%, #008550 52%, #020617 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  box-shadow: var(--shadow);
}

.logo-text {
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-pill {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(0, 133, 80, 0.22);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero-card,
.preview-card,
.screenshot-card,
.feature-card,
.beta-section,
.benefit {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 32px;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 14px;
}

.hero-title span {
  background: linear-gradient(135deg, #34d399, #f9fafb);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 24px;
  max-width: 480px;
  line-height: 1.7;
}

.cta {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(0, 133, 80, 0.4);
  transition: 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 133, 80, 0.6);
}

/* PRODUCT SCREENSHOT */
.screenshot-card {
  overflow: hidden;
}

.carousel-stage {
  aspect-ratio: 769 / 512;
  background: #05070d;
  box-sizing: border-box;
  padding: 10px;
  position: relative;
}

.carousel-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screenshot-caption {
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  line-height: 1.6;
  padding: 14px 18px 16px;
}

.carousel-title {
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2px;
}

.carousel-arrow {
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid rgba(52, 211, 153, 0.24);
  border-radius: 50%;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  width: 42px;
}

.carousel-arrow::before {
  border-color: currentColor;
  border-style: solid;
  border-width: 0 3px 3px 0;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
}

.carousel-prev::before {
  transform: rotate(135deg) translate(-1px, -1px);
}

.carousel-next::before {
  transform: rotate(-45deg) translate(-1px, -1px);
}

.carousel-arrow:hover {
  background: rgba(0, 133, 80, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.04);
}

/* PRODUCT PREVIEW (TEXT-BASED) */
.preview-card {
  padding: 24px;
}

.preview-title {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.lesson-block {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
}

.lesson-block:last-child {
  margin-bottom: 0;
}

.lesson-step {
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lesson-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.lesson-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* LANDING SECTIONS */
.landing-section {
  margin-bottom: 28px;
}

.section-title {
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 18px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

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

.feature-card {
  padding: 20px;
}

.feature-step {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.beta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  margin: 28px 0 56px;
  padding: 28px;
}

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

.beta-list div {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  padding: 14px 16px;
}

/* BENEFITS */
.benefits {
  margin-top: 0;
  margin-bottom: 60px;
}

.benefits-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.benefit {
  padding: 20px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-muted);
}

.benefit:last-child {
  margin-bottom: 0;
}

/* FOOTER */
.footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-soft);
  text-align: center;
}

/* JOBS PAGE */
.jobs-page {
  max-width: 900px;
}

.jobs-nav {
  margin-bottom: 56px;
}

.jobs-main {
  margin-bottom: 60px;
}

.jobs-title {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.intro {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 700px;
  margin: 0 0 48px;
}

.role {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.role h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.section {
  margin-bottom: 24px;
}

.section h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section p,
.section ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.section p {
  color: var(--text-muted);
}

.section ul li {
  margin-bottom: 8px;
  color: var(--text-muted);
}

.section ul li:last-child {
  margin-bottom: 0;
}

.apply {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.apply span {
  font-size: 14px;
  color: var(--text-muted);
}

.jobs-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}

@media (max-width: 640px) {
  .jobs-title {
    font-size: 32px;
  }

  .intro {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .role {
    padding: 24px;
  }

  .jobs-footer {
    flex-direction: column;
    text-align: center;
  }
}

/* TERMS PAGE */
.terms-page {
  max-width: 900px;
}

.terms-nav {
  margin-bottom: 56px;
}

.terms-main {
  margin-bottom: 60px;
}

.terms-title {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.terms-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 28px;
}

.terms-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.terms-section {
  margin-bottom: 24px;
}

.terms-section:last-child {
  margin-bottom: 0;
}

.terms-section h2 {
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.terms-section p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.terms-section ul {
  color: var(--text-muted);
}

.footer-link {
  margin-left: 12px;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-link:hover {
  color: var(--text-main);
  border-bottom-color: var(--text-main);
}

@media (max-width: 640px) {
  .page {
    padding: 24px 16px 64px;
  }

  .nav {
    align-items: flex-start;
    gap: 16px;
  }

  .logo-text {
    font-size: 15px;
    letter-spacing: 0.14em;
  }

  .hero-card {
    padding: 24px;
  }

  .hero-title {
    font-size: 32px;
  }

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

  .beta-section {
    padding: 24px;
  }

  .screenshot-caption {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 10px;
    font-size: 12px;
  }

  .carousel-arrow {
    height: 36px;
    width: 36px;
  }

  .carousel-arrow::before {
    border-width: 0 2px 2px 0;
    height: 9px;
    width: 9px;
  }
}

@media (max-width: 640px) {
  .terms-title {
    font-size: 32px;
  }

  .terms-card {
    padding: 24px;
  }
}
