:root {
  --bg: #f4f4f5;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.1);
  --lime: #84cc16;
  --lime2: #a3e635;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
    sans-serif;
  --radius: 16px;
  --shadow: 0 12px 36px rgba(2, 6, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: radial-gradient(900px 520px at 24% 0%, rgba(132, 204, 22, 0.18), transparent 60%),
    radial-gradient(700px 440px at 82% 10%, rgba(132, 204, 22, 0.1), transparent 55%),
    radial-gradient(800px 520px at 50% 110%, rgba(15, 23, 42, 0.06), transparent 55%), var(--bg);
  background-attachment: fixed;
}

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

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(140%) blur(12px);
}

.navInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 14px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.brandName {
  font-size: 15px;
}

.logo {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lime), var(--lime2));
  box-shadow: 0 10px 26px rgba(132, 204, 22, 0.28);
}

.menu {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.menu a {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.menu a:hover {
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
}

.cta {
  padding: 9px 16px;
  border-radius: 10px;
  background: var(--lime);
  color: #1f2937;
  font-weight: 700;
  border: 1px solid rgba(132, 204, 22, 0.45);
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.cta:hover {
  background: var(--lime2);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  padding: 68px 0 48px;
}

.heroCopy {
  position: relative;
}

.h1 {
  margin: 8px 0 16px;
  font-size: clamp(34px, 4.2vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.9px;
  font-weight: 900;
}

.rotator {
  display: inline-block;
  position: relative;
  margin-left: 10px;
}

.word {
  background: linear-gradient(135deg, var(--lime), var(--lime2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kicker {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lime);
  font-weight: 800;
}

.sub {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.72);
}

.sub strong {
  color: var(--text);
}

.heroActions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
}

.btn.primary {
  background: var(--lime);
  color: #1f2937;
  border-color: rgba(132, 204, 22, 0.5);
}

.btn.primary:hover {
  background: var(--lime2);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(132, 204, 22, 0.22);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 23, 42, 0.12);
  color: rgba(15, 23, 42, 0.8);
}

.btn.ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(132, 204, 22, 0.55);
}

.fine {
  margin: 14px 0 0;
  color: rgba(15, 23, 42, 0.6);
}

.mono {
  font-family: var(--mono);
  font-size: 12px;
}

.heroCard {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.chipRow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.chip {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.66);
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  outline: none;
  font-family: var(--sans);
  font-weight: 600;
}

.chip:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.chip.active {
  border-color: rgba(132, 204, 22, 0.8);
  background: rgba(132, 204, 22, 0.18);
  color: #1f2937;
  font-weight: 800;
}

.examplesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.exampleCard {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  padding: 14px;
  font-size: 13px;
  line-height: 1.5;
}

.exampleCard h4 {
  margin: 0 0 8px 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(15, 23, 42, 0.55);
  font-weight: 800;
}

.exampleCard p {
  margin: 0;
  color: rgba(15, 23, 42, 0.78);
}

.section {
  padding: 58px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

.title {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.6px;
  font-weight: 900;
}

.p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.76);
}

.acid {
  color: var(--text);
  font-weight: 700;
  background: linear-gradient(135deg, var(--lime), var(--lime2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.step {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 14px;
  padding: 18px;
}

.n {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--lime);
  margin-bottom: 12px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}

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

.twoCol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 14px;
  padding: 18px;
}

.cardTitle {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 10px 0 14px;
}

.list {
  margin: 0;
  padding: 0 0 0 18px;
  color: rgba(15, 23, 42, 0.78);
  line-height: 1.7;
  font-size: 14px;
}

.betaWrap {
  max-width: 560px;
  margin: 0 auto;
}

.betaCta {
  display: flex;
  justify-content: center;
}

.form {
  text-align: left;
}

.label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.75);
  margin-bottom: 10px;
}

.fieldRow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.input {
  flex: 1;
  min-width: 220px;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(244, 244, 245, 0.8);
  font-size: 14px;
  font-family: var(--sans);
  transition: border-color 0.2s ease;
}

.input:focus {
  outline: none;
  border-color: rgba(132, 204, 22, 0.85);
}

.helper {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.status {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  display: none;
}

.status.ok {
  background: rgba(132, 204, 22, 0.12);
  color: #1f2937;
  border: 1px solid rgba(132, 204, 22, 0.3);
}

.status.err {
  background: rgba(239, 68, 68, 0.12);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.faq {
  margin: 26px auto 0;
  max-width: 720px;
  text-align: left;
}

.faq details {
  margin-bottom: 8px;
}

.faq summary {
  cursor: pointer;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  font-weight: 800;
  list-style: none;
  user-select: none;
  transition: background 0.2s ease;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "+";
  display: inline-block;
  width: 20px;
  font-weight: 900;
  color: var(--lime);
}

.faq details[open] summary::before {
  content: "-";
}

.faq summary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.faq details p {
  padding: 14px;
  margin: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-top: none;
  border-radius: 0 0 12px 12px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.76);
}

.footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(15, 23, 42, 0.58);
  font-size: 13px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .section {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .btn,
  .cta,
  .chip {
    transition: none;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 140px;
  }

  .nav {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.46);
    backdrop-filter: saturate(140%) blur(14px);
  }

  .navInner {
    display: flex;
    justify-content: center;
    padding: 14px 0;
  }

  .menu {
    display: none;
  }

  .cta {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 140px);
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 24px;
    padding-bottom: 24px;
    align-content: start;
  }

  .heroActions {
    justify-content: center;
  }
}

@media (max-width: 860px) and (orientation: portrait) {
  .hero {
    grid-template-rows: auto 1fr auto;
  }

  .heroCard {
    align-self: end;
  }
}
