:root {
  --bg: #0b1611;
  --surface: #11241a;
  --surface-soft: #173022;
  --text: #e6f4ec;
  --text-muted: #a8c6b6;
  --primary: #36a56a;
  --primary-strong: #2c8757;
  --stroke: #29523c;
  --focus: #7fd4a4;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, #1d3b2b 0%, transparent 33%),
    radial-gradient(circle at 95% 10%, #183427 0%, transparent 25%),
    var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.section {
  /*padding: 5.5rem 0;*/
  padding: 2rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(23, 48, 34, 0.35) 0%, rgba(11, 22, 17, 0.75) 100%);
}

.eyebrow {
  color: var(--primary-strong);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  line-height: 1.2;
}

h1,
h2 {
  font-family: "Source Serif 4", serif;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(11, 22, 17, 0.84);
  border-bottom: 1px solid rgba(127, 212, 164, 0.14);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.2rem 0.4rem;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(31, 122, 76, 0.1);
}

.site-nav .nav-hidden {
  display: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: clip;
  
  /* Padding between the top menu bar and the main contents.
  AI suggested
  padding-top: 7rem; */
  padding-top: 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.0fr 1.0fr;
  gap: 2rem;
  position: relative;
  z-index: 2;
  align-items: start;
}

.lede {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 65ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.5rem 0 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.65rem 1.1rem;
  border: 1px solid transparent;
  transition: 160ms ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(140deg, var(--primary), var(--primary-strong));
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.hero-image-wrap {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-screenshot {
  overflow: hidden;
  vertical-align: top;
}

.btn-ghost {
  background: var(--surface-soft);
  color: var(--text);
  border-color: var(--stroke);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--primary);
}

.platform-note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.hero-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.hero-bg {
  position: absolute;
  inset: auto -15% -70px auto;
  width: 420px;
  aspect-ratio: 1;
  background: radial-gradient(circle at 35% 35%, rgba(31, 122, 76, 0.35), rgba(31, 122, 76, 0));
  filter: blur(8px);
  pointer-events: none;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.feature-card img {
  border-radius: 12px;
  border: 1px solid var(--stroke);
  margin-bottom: 1rem;
}

.secondary-features {
  margin-top: 2.2rem;
}

.secondary-title {
  margin-bottom: 1rem;
  color: var(--text);
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
}

.secondary-note {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  grid-column: 1 / -1;
}

.secondary-note a {
  color: var(--focus);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

.secondary-note a:hover,
.secondary-note a:focus-visible {
  color: var(--text);
}

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

.secondary-feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  background: rgba(17, 36, 26, 0.58);
  border: 1px solid rgba(127, 212, 164, 0.16);
  border-radius: 14px;
  padding: 0.85rem;
  box-shadow: none;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  color: var(--focus);
  background: rgba(54, 165, 106, 0.14);
  border: 1px solid rgba(127, 212, 164, 0.2);
  flex-shrink: 0;
}

.feature-icon svg,
.feature-icon img {
  display: block;
  width: 2rem;
  height: 2rem;
}

.secondary-feature-card h4 {
  margin: 0 0 0.25rem;
  font-size: 0.96rem;
  line-height: 1.3;
}

.secondary-feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.guides-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.3rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.guide-list {
  background: var(--surface-soft);
  border-radius: 14px;
  border: 1px solid var(--stroke);
  padding: 1rem;
}

.guide-list ul {
  margin: 0;
  padding-left: 1.1rem;
}

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

.support-grid article {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
}

.pricing-teaser {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.1rem;
  align-items: center;
  background: linear-gradient(145deg, rgba(23, 48, 34, 0.86), rgba(17, 36, 26, 0.96));
  border: 1px solid rgba(127, 212, 164, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.pricing-teaser p {
  color: var(--text-muted);
}

.pricing-teaser-actions {
  display: flex;
  justify-content: flex-end;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.pricing-intro,
.pricing-table-wrap {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.pricing-intro ol {
  margin: 0;
  padding-left: 1.2rem;
}

.pricing-screenshot {
  border-radius: 12px;
  border: 1px solid var(--stroke);
}

.pricing-table-wrap table {
  border-collapse: collapse;
  width: 100%;
}

.pricing-table-wrap th,
.pricing-table-wrap td {
  border: 1px solid var(--stroke);
  padding: 0.62rem;
  text-align: left;
}

.pricing-table-wrap thead th {
  background: var(--surface-soft);
}

.pricing-table-wrap tbody tr:nth-child(even) {
  background: rgba(127, 212, 164, 0.06);
}

.pricing-table-wrap tbody tr:hover {
  background: rgba(127, 212, 164, 0.12);
}



.legal-box {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.legal-links {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.legal-links a {
  text-decoration: none;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  border-color: var(--primary);
}

.footnote-wrap {
  padding: 2rem 0;
}

.footnote {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: left;
}

.site-footer {
  border-top: 1px solid rgba(127, 212, 164, 0.16);
  padding: 1.1rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-wrap a {
  color: var(--primary-strong);
  text-decoration: none;
}

.footer-wrap p {
  margin: 0;
}

.footer-meta {
  margin: 0.2rem 0 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.footer-meta a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--text);
}

.footer-meta .sep {
  opacity: 0.75;
  margin: 0 0.35rem;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .feature-grid,
  .secondary-feature-grid,
  .guides-panel,
  .pricing-teaser,
  .support-grid,
  .legal-box {
    grid-template-columns: 1fr;
  }

  .pricing-teaser-actions {
    justify-content: flex-start;
  }

  .legal-box {
    align-items: start;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    right: 4vw;
    width: min(240px, 80vw);
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    padding: 0.6rem;
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--stroke);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    background: var(--surface);
    color: var(--text);
    font: inherit;
    cursor: pointer;
  }
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
