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

:root {
  --bg: #f1f1f1;
  --ink: #1d1d1d;
  --muted: #66625d;
  --panel: #1d1d1d;
  --green: #00c000;
  --green-bright: #5bea05;
  --blue: #5368ff;
  --line: #d9d9d9;
  --max: 1120px;
  --font: "Rajdhani", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  font-size: 18px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.2;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.18' numOctaves='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23grain)' opacity='0.8'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

main,
.site-footer {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms ease, transform 360ms ease;
}

body.page-ready main,
body.page-ready .site-footer {
  opacity: 1;
  transform: translateY(0);
}

body.page-exiting main,
body.page-exiting .site-footer {
  opacity: 0;
  transform: translateY(-10px);
}

body.page-exiting .site-header {
  pointer-events: none;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  width: min(100% - 80px, var(--max));
  margin: 0 auto;
  padding: 22px 0;
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-shadow: none;
}

.brand img {
  width: auto;
  height: 38px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 30px);
}

.site-nav a {
  position: relative;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  text-shadow: none;
  transform: translateY(0);
  transition: color 180ms ease, transform 180ms ease;
}

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

.site-nav a:hover,
.site-nav a.is-leaving {
  transform: translateY(-3px);
}

.brand img,
.brand span,
.site-nav a {
  mix-blend-mode: difference;
}

.site-header.is-on-light .brand,
.site-header.is-on-light .brand span,
.site-header.is-on-light .site-nav a {
  color: #101010;
  mix-blend-mode: normal;
}

.site-header.is-on-light .brand img {
  filter: invert(1);
  mix-blend-mode: normal;
}

.social-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.social-nav a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--green-bright);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(0) scale(1);
  transition: filter 180ms ease, transform 180ms ease;
}

.social-nav img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.social-nav a:first-child {
  background: var(--blue);
}

.social-nav a:hover {
  filter: brightness(1.04);
  transform: translateY(-3px) scale(1.04);
}

.social-nav a.is-leaving {
  filter: brightness(1.04);
  transform: translateY(-3px) scale(1.04);
}

.site-nav a:active,
.social-nav a:active {
  transform: translateY(0) scale(0.96);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  color: #fff !important;
  background: var(--green);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}

.button.discord {
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.site-header.is-on-light .nav-toggle span {
  background: #101010;
}

.hero-bleed {
  position: relative;
  display: grid;
  margin-top: -86px;
  min-height: 92svh;
  overflow: hidden;
}

.hero-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.46));
}

.hero-bleed > img {
  width: 100%;
  height: 100%;
  min-height: 92svh;
  object-fit: cover;
}

.hero-overlay h1,
.hero-overlay h2 {
  mix-blend-mode: normal;
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: max(28px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(220px, 360px);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  width: min(var(--max), calc(100% - 56px));
  color: #fff;
  transform: translateY(-50%);
}

.hero-overlay.reveal {
  transform: translateY(calc(-50% + 28px));
}

.hero-overlay.reveal.is-visible {
  transform: translateY(-50%);
}

.hero-copy {
  max-width: 560px;
}

.hero-plant {
  width: clamp(210px, 28vw, 360px);
  justify-self: end;
  align-self: center;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.32));
}

.eyebrow,
.step-label {
  margin: 0 0 10px;
  color: var(--green-bright);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-overlay h1 {
  margin: 0 0 8px;
  font-size: clamp(56px, 9vw, 104px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.03em;
}

.hero-overlay h2,
.feature-copy h2,
.page-hero h1,
.home-faq .page-hero h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.hero-overlay p {
  margin: 0;
  max-width: 520px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.22;
}

.cta-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100% - 80px, 980px);
  margin: -38px auto 72px;
}

.store-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 90px;
  padding: 16px 18px 16px 22px;
  border-radius: 10px;
  color: #fff;
  background: var(--panel);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.store-link span {
  display: block;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.store-link strong {
  display: block;
  margin-top: 7px;
  color: var(--green-bright);
  font-size: 15px;
  font-weight: 600;
}

.store-link.discord strong {
  color: #b8c0ff;
}

.feature-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
  width: min(100% - 80px, var(--max));
  margin: 0 auto;
  padding: 58px 0;
}

.feature-block.reverse .feature-media {
  order: 2;
}

.feature-media {
  overflow: hidden;
  border-radius: 14px;
  background: #101010;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.17);
}

.feature-media video,
.feature-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-copy h2 {
  color: var(--ink);
}

.feature-copy p:not(.eyebrow),
.page-hero p,
.tutorial-list p,
.press-grid p,
.press-grid li,
.faq-answer p {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.42;
}

.home-faq {
  width: min(100% - 80px, var(--max));
  margin: 66px auto 96px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, auto);
  gap: 36px;
  width: min(100% - 80px, var(--max));
  margin: 0 auto;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.site-footer h2 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1;
}

.footer-socials,
.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-socials a,
.footer-legal a {
  color: var(--ink);
  font-weight: 700;
}

.footer-legal {
  color: var(--muted);
  text-align: right;
}

.footer-legal p {
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 500;
}

.page-shell {
  width: min(100% - 80px, var(--max));
  min-height: calc(100vh - 230px);
  margin: 0 auto;
  padding: 78px 0 68px;
}

.page-hero {
  width: min(100%, 760px);
  margin: 0 auto 34px;
  text-align: center;
}

.construction-page {
  display: grid;
  align-content: center;
  min-height: 58svh;
}

.page-hero h1,
.home-faq .page-hero h2 {
  color: var(--ink);
}

.tutorial-list,
.press-grid,
.faq-list {
  display: grid;
  gap: 14px;
  width: min(100%, 820px);
  margin: 0 auto;
}

.tutorial-list {
  width: min(100%, 1040px);
}

.database-shell {
  width: min(100% - 80px, var(--max));
}

.database-hero {
  width: min(100%, 900px);
}

.database-panel {
  position: relative;
  width: 100%;
  margin: 0 auto 42px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(29, 29, 29, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.database-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(29, 29, 29, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 29, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.55;
}

.database-section-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  margin-bottom: 24px;
}

.database-hero h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 0.95;
}

.database-section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 0.95;
}

.database-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.database-controls label {
  display: grid;
  gap: 6px;
  min-width: 180px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.database-controls input,
.database-controls select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(29, 29, 29, 0.22);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  font: 600 17px var(--font);
  padding: 0 12px;
}

.plant-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.plant-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
  border: 1px solid rgba(29, 29, 29, 0.12);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.plant-card.is-scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

.plant-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  border-radius: 9px;
  overflow: hidden;
  color: #fff;
  background: #111;
}


.plant-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plant-image.has-hover-video > img,
.plant-image.has-hover-video video {
  transform: scale(1.07);
  transform-origin: center center;
}

.plant-image.has-photo {
  background: #101010;
}

.plant-image.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.plant-image.has-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plant-image.has-hover-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 180ms ease;
}

.plant-image.has-hover-video.is-playing video {
  opacity: 1;
}

.plant-card h3 {
  margin: 12px 0 2px;
  font-size: 23px;
  line-height: 1;
}

.plant-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
}

.database-empty {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  font-weight: 700;
}

.database-note {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.35;
}

.identify-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.identify-grid span {
  border: 1px solid rgba(29, 29, 29, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  font-weight: 700;
}

.tutorial-list details,
.press-grid article,
.faq-list details {
  padding: 24px 28px;
  border-radius: 12px;
  color: white;
  background: var(--panel);
}

.tutorial-list h2,
.press-grid h2,
.faq-list summary,
.tutorial-list p,
.tutorial-list summary,
.press-grid p,
.press-grid li,
.faq-answer p {
  color: white;
}

.tutorial-list h2,
.press-grid h2 {
  margin: 0 0 8px;
  font-size: 27px;
  line-height: 1.05;
}

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-size: 23px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  flex: 0 0 auto;
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(-135deg);
}

.faq-list details.is-closing summary::after {
  transform: rotate(45deg);
}

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

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 260ms ease, opacity 220ms ease, margin-top 260ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-list details[open] .faq-answer {
  grid-template-rows: 1fr;
  margin-top: 14px;
  opacity: 1;
}

.faq-list details.is-closing .faq-answer {
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
}

.press-grid ul {
  margin: 0;
  padding-left: 20px;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }


  body,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .site-header,
  .page-shell,
  .site-footer,
  .feature-block,
  .home-faq {
    width: min(100% - 36px, var(--max));
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 18px 0;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    font-size: 22px;
  }

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

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 10px;
    background: var(--panel);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: max-height 260ms ease, opacity 220ms ease, transform 260ms ease;
  }

  .site-nav.is-open {
    max-height: 230px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
    color: white !important;
    text-shadow: none;
  }

  .social-nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    gap: 6px;
  }

  .social-nav a {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .hero-overlay {
    top: 50%;
    left: 18px;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    width: calc(100% - 36px);
  }

  .hero-plant {
    order: -1;
    width: min(46vw, 210px);
    justify-self: center;
  }

  .cta-section {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 780px);
    margin-bottom: 46px;
  }

  .feature-block,
  .feature-block.reverse {
    grid-template-columns: 1fr;
    padding: 42px 0;
  }

  .feature-block.reverse .feature-media {
    order: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .database-shell {
    width: min(100% - 36px, var(--max));
  }

  .database-section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .database-controls {
    justify-content: stretch;
  }

  .database-controls label {
    min-width: min(100%, 240px);
    flex: 1 1 240px;
  }

  .plant-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }

  .footer-legal {
    text-align: left;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
  }

  .hero-overlay h1 {
    font-size: clamp(52px, 19vw, 82px);
  }


  .hero-overlay h2,
  .feature-copy h2,
  .page-hero h1,
  .database-section-head h2,
  .home-faq .page-hero h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .store-link {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
  }

  .store-link .button {
    width: 100%;
  }

  .database-panel {
    padding: 18px;
    border-radius: 10px;
  }

  .database-controls {
    display: grid;
  }

  .database-controls label {
    min-width: 0;
  }

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

  .plant-card {
    padding: 8px;
  }

  .plant-card h3 {
    font-size: 21px;
  }
}



.store-link.discord > div {
  max-width: 420px;
}

.tutorial-panel {
  overflow: hidden;
}

.tutorial-panel summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

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

.tutorial-panel summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.tutorial-panel[open] summary::after {
  transform: rotate(-135deg);
}

.tutorial-panel.is-closing summary::after {
  transform: rotate(45deg);
}

.tutorial-summary-copy {
  display: grid;
  gap: 5px;
}

.tutorial-title {
  color: white;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 700;
  line-height: 0.98;
}

.tutorial-subtitle {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.last-updated {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.tutorial-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 260ms ease, opacity 220ms ease, margin-top 260ms ease;
}

.tutorial-answer > div {
  overflow: hidden;
}

.tutorial-panel[open] .tutorial-answer {
  grid-template-rows: 1fr;
  margin-top: 24px;
  opacity: 1;
}

.tutorial-panel.is-closing .tutorial-answer {
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
}

.tutorial-content {
  display: grid;
  gap: 18px;
}

.tutorial-step,
.tutorial-callout,
.tutorial-intro,
.tutorial-outro {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.tutorial-step-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.tutorial-step h2,
.tutorial-callout h2 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.4vw, 30px);
}

.tutorial-step p,
.tutorial-callout p,
.tutorial-intro p,
.tutorial-outro p,
.tutorial-content > p {
  max-width: 780px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.45;
}

.tutorial-step p:last-child,
.tutorial-callout p:last-child,
.tutorial-intro p:last-child,
.tutorial-outro p:last-child {
  margin-bottom: 0;
}

.tutorial-content a {
  color: var(--green-bright);
  font-weight: 700;
}

.tutorial-figure {
  width: min(100%, 720px);
  margin: 8px auto 0;
}

.tutorial-figure img,
.tutorial-figure video {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.tutorial-figure figcaption {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 860px) {
  .tutorial-panel summary,
  .tutorial-step-media {
    grid-template-columns: 1fr;
  }

  .last-updated {
    white-space: normal;
  }
}
.control-toggle {
  display: inline-flex;
  width: fit-content;
  padding: 4px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.control-toggle button {
  border: 0;
  border-radius: 6px;
  padding: 8px 15px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font: 700 14px var(--font);
  cursor: pointer;
}

.control-toggle button.is-active {
  color: var(--ink);
  background: var(--green-bright);
}

.control-copy {
  display: none;
}

.control-copy.is-active {
  display: block;
}

.tutorial-content .last-updated {
  margin: 4px 0 0;
  padding-top: 4px;
}
.icon-reference {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 16px 0;
}

.icon-reference figure {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.icon-reference img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.icon-reference figcaption {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.docs-page {
  --docs-bg: #f8faf6;
  --docs-panel: #ffffff;
  --docs-ink: #142017;
  --docs-muted: #667163;
  --docs-line: rgba(20, 32, 23, 0.12);
  color: var(--docs-ink);
  background: var(--docs-bg);
}

.docs-page::before {
  opacity: 0.02;
}

.docs-page .site-header,
.docs-header {
  background: rgba(248, 250, 246, 0.9);
}

.docs-page .brand,
.docs-page .brand span,
.docs-page .site-nav a {
  color: var(--docs-ink);
  text-shadow: none;
}

.docs-page .brand img,
.docs-page .social-nav img {
  filter: none;
}

.docs-page .social-nav a {
  background: var(--green-bright);
}

.docs-page .nav-toggle span {
  background: var(--docs-ink);
}

.docs-shell {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  width: min(100% - 80px, 1180px);
  margin: 0 auto;
  padding: 52px 0 96px;
}

.docs-sidebar {
  position: relative;
}

.docs-sidebar-inner {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.docs-label {
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.docs-nav {
  display: grid;
  gap: 4px;
  padding-left: 12px;
  border-left: 1px solid var(--docs-line);
}

.docs-nav button,
.docs-mobile-nav button {
  border: 0;
  color: var(--docs-muted);
  background: transparent;
  font: 700 15px var(--font);
  text-align: left;
  cursor: pointer;
}

.docs-nav button {
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 7px;
}

.docs-nav button.is-active,
.docs-mobile-nav button.is-active {
  color: var(--docs-ink);
  background: rgba(0, 192, 0, 0.12);
}

.docs-archive-link {
  width: fit-content;
  color: var(--docs-muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.docs-archive-link:hover {
  color: var(--green);
}

.docs-content {
  min-width: 0;
}

.docs-mobile-nav {
  display: none;
  gap: 8px;
  margin-bottom: 28px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.docs-mobile-nav button {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(20, 32, 23, 0.06);
  white-space: nowrap;
}

.docs-section {
  display: grid;
  gap: 34px;
  max-width: 820px;
}

.docs-section[hidden] {
  display: none;
}

.docs-section-head {
  display: grid;
  gap: 14px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--docs-line);
}

.docs-section-head h1 {
  margin: 0;
  color: var(--docs-ink);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 0.92;
}

.docs-section-head p:not(.docs-label),
.docs-section section p,
.docs-note {
  margin: 0;
  color: var(--docs-muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.docs-section section {
  display: grid;
  gap: 12px;
}

.docs-section h2 {
  margin: 0;
  color: var(--docs-ink);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.05;
}

.docs-section a {
  color: #008a00;
  font-weight: 800;
}

.docs-media {
  width: min(100%, 680px);
  margin: 14px auto 0;
}

.docs-media img,
.docs-media video {
  width: 100%;
  max-height: 430px;
  border: 1px solid var(--docs-line);
  border-radius: 8px;
  background: #111;
  object-fit: contain;
}

.docs-media figcaption,
.docs-updated {
  margin: 8px 0 0;
  color: #7b8578;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.docs-updated {
  justify-self: start;
  text-align: left;
}

.docs-control-toggle {
  background: rgba(20, 32, 23, 0.08);
}

.docs-control-toggle button {
  color: var(--docs-muted);
}

.docs-control-toggle button.is-active {
  color: white;
  background: var(--green);
}

.docs-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 12px;
}

.docs-icon-grid figure {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--docs-line);
  border-radius: 8px;
  background: var(--docs-panel);
}

.docs-icon-grid img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.docs-icon-grid figcaption {
  color: var(--docs-muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.docs-footer {
  color: var(--docs-ink);
}

.docs-footer h2,
.docs-footer a,
.docs-footer p {
  color: var(--docs-ink);
}

@media (max-width: 860px) {
  .docs-shell {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 1180px);
    padding-top: 34px;
  }

  .docs-sidebar {
    display: none;
  }

  .docs-mobile-nav {
    display: flex;
  }

  .docs-section {
    max-width: none;
  }

  .docs-section-head h1 {
    font-size: clamp(38px, 12vw, 58px);
  }
}

.docs-help-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 18px;
  color: white;
  background: var(--blue);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.docs-help-button:hover {
  transform: translateY(-1px);
}

.docs-icon-grid-dark figure {
  border-color: rgba(255, 255, 255, 0.08);
  background: #151915;
}

.docs-icon-grid-dark figcaption {
  color: rgba(255, 255, 255, 0.78);
}

.docs-section {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.docs-section.is-exiting,
.docs-section.is-entering {
  opacity: 0;
  transform: translateY(10px);
}

.docs-section-head h1 {
  font-size: clamp(34px, 4.8vw, 56px);
}

@media (max-width: 860px) {
  .docs-section-head h1 {
    font-size: clamp(34px, 10vw, 48px);
  }
}

.database-section-head h2 {
  font-weight: 500;
}

.docs-section a {
  color: var(--green-bright);
}



.footer-socials a,
.footer-legal a {
  text-decoration: none;
}

/* docs requested responsive overrides */
.docs-page {
  --docs-bg: var(--bg);
  background: var(--bg);
}

.docs-page .site-header,
.docs-header {
  background: rgba(241, 241, 241, 0.9);
}

@media (max-width: 860px) {
  .docs-mobile-nav {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .docs-mobile-nav button {
    width: 100%;
    white-space: normal;
  }
}

/* docs social match site */
.docs-page .social-nav a {
  background: var(--green-bright);
}

.docs-page .social-nav a:first-child {
  background: var(--blue);
}

/* home hero CTA placement */
@media (min-width: 861px) {
  .hero-bleed {
    min-height: 62svh;
  }

  .hero-bleed > img {
    min-height: 62svh;
  }

  .cta-section {
    margin-top: -58px;
  }
}

@media (min-width: 1440px) {
  .hero-bleed {
    min-height: 58svh;
  }

  .hero-bleed > img {
    min-height: 58svh;
  }

  .cta-section {
    margin-top: -62px;
  }
}

@media (max-width: 860px) {
  .hero-bleed {
    min-height: 88svh;
  }

  .hero-bleed > img {
    min-height: 88svh;
  }

  .hero-overlay {
    top: 38%;
    gap: 12px;
  }

  .hero-plant {
    width: min(34vw, 160px);
  }

  .cta-section {
    gap: 10px;
    margin-top: -190px;
  }

  .store-link {
    min-height: 76px;
    padding: 12px 14px;
  }
}

@media (max-width: 560px) {
  .hero-bleed {
    min-height: 92svh;
  }

  .hero-bleed > img {
    min-height: 92svh;
  }

  .hero-overlay {
    top: 30%;
  }

  .hero-overlay h1 {
    font-size: clamp(46px, 16vw, 68px);
  }

  .hero-overlay h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .hero-overlay p {
    font-size: 16px;
  }

  .cta-section {
    margin-top: -238px;
  }

  .store-link {
    gap: 8px;
  }

  .store-link span {
    font-size: 18px;
  }

  .store-link strong {
    font-size: 13px;
  }

  .store-link .button {
    min-height: 36px;
  }
}




