:root {
  --ink: #14241f;
  --ink-2: #20342e;
  --paper: #fbf7ef;
  --paper-2: #f1eadf;
  --line: #d8cfc0;
  --leaf: #127664;
  --leaf-dark: #0d554a;
  --signal: #3157a4;
  --harvest: #d89b29;
  --check: #b84c4d;
  --mint: #dcefe7;
  --sky: #dfe8fb;
  --sun: #fff1c4;
  --rose: #f7dfdc;
  --shadow: 0 22px 55px rgba(20, 36, 31, 0.14);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 76px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  background: rgba(20, 36, 31, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 224px;
  min-width: 178px;
}

.brand img,
.site-footer img {
  width: 100%;
  height: auto;
}

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

.nav-links a,
.header-action {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus,
.header-action:hover,
.header-action:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.header-action {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(20, 36, 31, 0.92), rgba(20, 36, 31, 0.66) 38%, rgba(20, 36, 31, 0.18) 78%), url("assets/hero-plantbot-cockpit.png");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  background: linear-gradient(180deg, rgba(251, 247, 239, 0), var(--paper));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1160px, calc(100% - 48px));
  min-height: 82vh;
  margin: 0 auto;
  padding: 132px 0 112px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--harvest);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 0.98;
  font-weight: 900;
}

.hero h1 {
  max-width: 720px;
  font-size: 72px;
}

.hero-lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.btn-primary {
  color: var(--ink);
  background: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--sun);
  outline: 3px solid rgba(255, 241, 196, 0.28);
}

.btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.btn-secondary.dark {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(20, 36, 31, 0.86);
}

.btn-secondary.dark:hover,
.btn-secondary.dark:focus {
  background: var(--leaf-dark);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 54px 0 0;
}

.hero-proof div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof dt {
  font-size: 24px;
  font-weight: 900;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.proof-band {
  position: relative;
  z-index: 2;
  margin-top: -42px;
  padding: 0 24px 42px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.proof-grid article {
  padding: 22px;
  border: 1px solid rgba(20, 36, 31, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.proof-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-grid strong,
.feature-card h3,
.phase-detail h3,
.edition-panel h3,
.brand-notes h3,
.roadmap-grid h3 {
  display: block;
  margin: 0;
  font-size: 22px;
  line-height: 1.14;
}

.proof-grid p,
.feature-card p,
.phase-detail p,
.split-copy p,
.platform-panel span,
.edition-panel p,
.brand-notes li,
.roadmap-grid p,
.section-header p {
  color: rgba(20, 36, 31, 0.72);
}

.section {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-header {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-header.compact {
  max-width: 680px;
}

.section h2 {
  font-size: 46px;
}

.section-header p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 18px;
}

.notice-section {
  padding-top: 26px;
  padding-bottom: 26px;
}

.notice-strip {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(216, 155, 41, 0.38);
  border-radius: 8px;
  color: #4a3300;
  background: var(--sun);
}

.notice-strip strong {
  white-space: nowrap;
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(20, 36, 31, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  background: var(--leaf);
}

.accent-blue .feature-icon {
  background: var(--signal);
}

.accent-gold .feature-icon {
  color: var(--ink);
  background: var(--harvest);
}

.accent-red .feature-icon {
  background: var(--check);
}

.phase-section {
  width: 100%;
  max-width: none;
  padding-right: 24px;
  padding-left: 24px;
  background: #ffffff;
}

.phase-section > .section-header,
.phase-layout {
  width: min(1160px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.phase-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
}

.phase-list {
  display: grid;
  gap: 8px;
}

.phase-button,
.edition-button {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(20, 36, 31, 0.14);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.phase-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.phase-button span {
  color: rgba(20, 36, 31, 0.56);
  font-size: 13px;
}

.phase-button.active,
.edition-button.active {
  color: #ffffff;
  border-color: var(--leaf);
  background: var(--leaf-dark);
}

.phase-button.active span {
  color: rgba(255, 255, 255, 0.78);
}

.phase-detail {
  min-height: 410px;
  padding: 34px;
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(220, 239, 231, 0.96), rgba(255, 241, 196, 0.74)),
    #ffffff;
}

.phase-stage,
.edition-label {
  margin: 0 0 12px;
  color: var(--leaf-dark);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.phase-detail h3,
.edition-panel h3 {
  max-width: 620px;
  font-size: 34px;
}

.phase-detail ul,
.brand-notes ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.dark-section {
  width: 100%;
  max-width: none;
  padding-right: 24px;
  padding-left: 24px;
  color: #ffffff;
  background: var(--ink);
}

.dark-section > .section-header,
.harvest-flow {
  width: min(1160px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.section-header.light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.harvest-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
  counter-reset: harvest;
}

.harvest-flow li {
  position: relative;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.harvest-flow li::before {
  counter-increment: harvest;
  content: counter(harvest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  background: var(--harvest);
}

.harvest-flow span {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 900;
}

.harvest-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.split-copy h2 {
  font-size: 42px;
}

.stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.stack-list span {
  padding: 8px 10px;
  border: 1px solid rgba(20, 36, 31, 0.14);
  border-radius: 8px;
  background: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.platform-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.panel-row {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(20, 36, 31, 0.1);
  border-radius: 8px;
  background: var(--paper);
}

.panel-row strong {
  color: var(--leaf-dark);
}

.editions-section {
  width: 100%;
  max-width: none;
  padding-right: 24px;
  padding-left: 24px;
  background: var(--paper-2);
}

.editions-section > .section-header,
.edition-switcher,
.edition-panel {
  width: min(1160px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.edition-switcher {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.edition-button {
  padding: 14px 16px;
  text-align: center;
}

.edition-panel {
  min-height: 240px;
  padding: 32px;
  border: 1px solid rgba(20, 36, 31, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.edition-panel p:last-child {
  max-width: 760px;
}

.brand-system {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.logo-stage {
  display: grid;
  place-items: center;
  gap: 28px;
  min-height: 420px;
  padding: 36px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 118, 100, 0.16), rgba(49, 87, 164, 0.12)),
    #ffffff;
}

.logo-stage img:first-child {
  width: 164px;
}

.wordmark-preview {
  width: min(420px, 100%);
  padding: 18px;
  border-radius: 8px;
  background: #ffffff;
}

.brand-notes {
  padding: 28px;
  border: 1px solid rgba(20, 36, 31, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.swatches span {
  display: flex;
  align-items: end;
  min-height: 92px;
  padding: 10px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--swatch);
  font-size: 12px;
  font-weight: 900;
}

.swatches span:nth-child(4) {
  color: var(--ink);
}

.roadmap-section {
  padding-top: 40px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.roadmap-grid article {
  min-height: 218px;
  padding: 22px;
  border: 1px solid rgba(20, 36, 31, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.status {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.status.done {
  color: var(--leaf-dark);
  background: var(--mint);
}

.status.next {
  color: #5a3a00;
  background: var(--sun);
}

.sources-section {
  padding-top: 20px;
}

.source-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.source-links a {
  min-height: 74px;
  padding: 18px;
  border: 1px solid rgba(20, 36, 31, 0.12);
  border-radius: 8px;
  background: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.source-links a:hover,
.source-links a:focus {
  border-color: var(--signal);
  color: var(--signal);
  outline: none;
}

.contact-section {
  padding-top: 30px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(18, 118, 100, 0.92), rgba(49, 87, 164, 0.92)),
    var(--ink);
}

.contact-card h2 {
  max-width: 780px;
  font-size: 40px;
}

.contact-card p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  padding: 46px 28px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.site-footer img {
  width: 240px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  max-width: 520px;
  margin: 18px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}

.footer-links a {
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.groot-page {
  min-height: 100vh;
  padding: 28px;
  background: linear-gradient(135deg, rgba(18, 118, 100, 0.18), rgba(49, 87, 164, 0.12)), var(--paper);
}

.groot-standalone .site-header,
.groot-standalone main,
.groot-standalone .site-footer,
.groot-standalone .groot-launcher,
.groot-standalone .groot-widget {
  display: none !important;
}

.groot-layout {
  width: min(1180px, 100%);
  min-height: calc(100vh - 56px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.groot-hero,
.groot-console,
.groot-widget {
  border: 1px solid rgba(20, 36, 31, 0.16);
  box-shadow: var(--shadow);
}

.groot-hero {
  padding: clamp(24px, 4vw, 48px);
  color: #ffffff;
  background: linear-gradient(145deg, rgba(20, 36, 31, 0.96), rgba(13, 85, 74, 0.94)), var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.groot-brand {
  width: min(280px, 70vw);
  padding: 12px 14px;
  background: rgba(251, 247, 239, 0.96);
  display: inline-flex;
  margin-bottom: 40px;
}

.groot-hero h1 {
  margin: 0 0 18px;
  max-width: 620px;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.92;
}

.groot-hero p {
  max-width: 620px;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.82);
}

.groot-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.groot-status-grid span {
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  display: flex;
  align-items: center;
}

.groot-console {
  padding: clamp(18px, 3vw, 30px);
  background: rgba(251, 247, 239, 0.95);
  display: flex;
  flex-direction: column;
  min-height: 640px;
}

.groot-console-header,
.groot-widget-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.groot-console-header h2,
.groot-widget-header h2 {
  margin: 0;
  line-height: 1.05;
}

.groot-kicker {
  margin: 0 0 6px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.groot-pill {
  max-width: 240px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--sun);
  border: 1px solid rgba(216, 155, 41, 0.48);
  font-size: 12px;
  font-weight: 800;
}

.groot-messages {
  flex: 1;
  min-height: 250px;
  max-height: 520px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 0;
}

.groot-messages.compact {
  max-height: 315px;
  min-height: 190px;
}

.groot-message {
  width: min(92%, 680px);
  padding: 14px 16px;
  border: 1px solid rgba(20, 36, 31, 0.12);
  background: #ffffff;
}

.groot-message.user {
  align-self: flex-end;
  color: #ffffff;
  background: var(--signal);
  border-color: rgba(49, 87, 164, 0.4);
}

.groot-message.agent {
  align-self: flex-start;
}

.groot-message.system {
  width: 100%;
  color: var(--ink);
  background: var(--mint);
}

.groot-message strong {
  display: block;
  margin-bottom: 6px;
}

.groot-message p {
  margin: 0;
}

.groot-message ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.groot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.groot-suggestions button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.groot-suggestions button:hover,
.groot-suggestions button:focus {
  border-color: var(--leaf);
  background: var(--mint);
}

.groot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.groot-form input {
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.groot-form button {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  color: #ffffff;
  background: var(--leaf);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.groot-form button:hover,
.groot-form button:focus {
  background: var(--leaf-dark);
}

.groot-fineprint {
  margin: 12px 0 0;
  color: rgba(20, 36, 31, 0.66);
  font-size: 13px;
}

.groot-page[hidden],
.groot-widget[hidden] {
  display: none !important;
}

.groot-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2147483000;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 8px 20px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: var(--ink);
  background:
    radial-gradient(circle at 26px 16px, rgba(255, 255, 255, 0.9), transparent 34px),
    linear-gradient(135deg, #fffaf0 0%, #e0f2e8 46%, #bedfcb 100%);
  box-shadow:
    0 22px 56px rgba(20, 36, 31, 0.32),
    inset 0 0 0 1px rgba(18, 118, 100, 0.12);
  font: inherit;
  cursor: pointer;
  overflow: visible;
  transform: translateZ(0);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.groot-launcher::before {
  content: "";
  position: absolute;
  inset: -9px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(216, 155, 41, 0.28), transparent 66%);
  opacity: 0.92;
}

.groot-launcher-bot {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 2px solid rgba(18, 118, 100, 0.18);
  border-radius: 22px;
  background: #fbf7ef;
  box-shadow: 0 12px 24px rgba(20, 36, 31, 0.18);
}

.groot-launcher-bot::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: 9px;
  width: 13px;
  height: 13px;
  border: 3px solid #fbf7ef;
  border-radius: 999px;
  background: #18a66f;
  box-shadow: 0 0 0 3px rgba(24, 166, 111, 0.2);
}

.groot-launcher-bot img {
  width: 48px;
  height: 48px;
}

.groot-launcher-copy {
  display: grid;
  gap: 1px;
  min-width: 118px;
  text-align: left;
}

.groot-launcher-kicker {
  color: var(--leaf-dark);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.groot-launcher-title {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
}

.groot-launcher:hover,
.groot-launcher:focus {
  background:
    radial-gradient(circle at 26px 16px, rgba(255, 255, 255, 0.98), transparent 34px),
    linear-gradient(135deg, #fffaf0 0%, #d2f0e1 44%, #a8d7ba 100%);
  box-shadow:
    0 26px 64px rgba(20, 36, 31, 0.38),
    inset 0 0 0 1px rgba(18, 118, 100, 0.2);
  transform: translateY(-2px);
}

.groot-widget {
  position: fixed;
  right: 24px;
  bottom: 114px;
  z-index: 2147483001;
  width: min(430px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 132px));
  padding: 0;
  border: 1px solid rgba(216, 207, 192, 0.94);
  border-radius: 24px;
  background: #fffaf1;
  box-shadow: 0 30px 80px rgba(20, 36, 31, 0.36);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.groot-widget::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 118px;
  background:
    radial-gradient(circle at 86% 18%, rgba(216, 155, 41, 0.52), transparent 42px),
    linear-gradient(135deg, var(--ink) 0%, #17392f 54%, var(--leaf) 100%);
  pointer-events: none;
}

.groot-widget-header {
  position: relative;
  z-index: 1;
  gap: 12px;
  align-items: center;
  padding: 16px;
  color: #ffffff;
}

.groot-widget-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: #fbf7ef;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.groot-widget-avatar img {
  width: 45px;
  height: 45px;
}

.groot-widget-heading {
  min-width: 0;
}

.groot-widget-heading p:last-child {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 1.35;
}

.groot-widget .groot-kicker,
.groot-widget-header h2 {
  color: #ffffff;
}

.groot-widget-close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font: inherit;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
}

.groot-widget-close:hover,
.groot-widget-close:focus {
  background: rgba(255, 255, 255, 0.24);
  transform: scale(1.04);
}

.groot-widget .groot-messages.compact,
.groot-widget .groot-suggestions.compact,
.groot-widget .groot-form.compact {
  margin-right: 18px;
  margin-left: 18px;
}

.groot-widget .groot-messages.compact {
  margin-top: 8px;
}

.groot-widget .groot-form.compact {
  margin-bottom: 18px;
}

.groot-form.compact {
  grid-template-columns: 1fr 66px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 58px;
  }

  .groot-layout {
    grid-template-columns: 1fr;
  }

  .groot-console {
    min-height: 540px;
  }

  .architecture-grid,
  .roadmap-grid,
  .source-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .harvest-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-section,
  .brand-system,
  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand {
    width: 178px;
  }

  .header-action {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero::before {
    background-image: linear-gradient(90deg, rgba(20, 36, 31, 0.94), rgba(20, 36, 31, 0.72)), url("assets/hero-plantbot-cockpit.png");
    background-position: 55% center;
  }

  .hero-inner {
    width: min(100% - 32px, 680px);
    padding-top: 110px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-proof,
  .proof-grid,
  .architecture-grid,
  .phase-layout,
  .harvest-flow,
  .edition-switcher,
  .roadmap-grid,
  .source-links {
    grid-template-columns: 1fr;
  }

  .notice-strip {
    align-items: start;
    flex-direction: column;
  }

  .section {
    width: min(100% - 32px, 680px);
    padding: 64px 0;
  }

  .phase-section,
  .dark-section,
  .editions-section {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .section h2,
  .split-copy h2 {
    font-size: 34px;
  }

  .phase-detail,
  .edition-panel {
    padding: 24px;
  }

  .phase-detail h3,
  .edition-panel h3 {
    font-size: 28px;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-card h2 {
    font-size: 30px;
  }

  .panel-row {
    grid-template-columns: 1fr;
  }

  .swatches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-links {
    justify-content: start;
  }

  .groot-page {
    padding: 16px;
  }

  .groot-status-grid {
    grid-template-columns: 1fr;
  }

  .groot-console-header {
    flex-direction: column;
  }

  .groot-widget-header {
    flex-direction: row;
    align-items: center;
  }

  .groot-pill {
    max-width: none;
  }

  .groot-launcher {
    right: 14px;
    bottom: 14px;
  }

  .groot-widget {
    right: 14px;
    bottom: 106px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 38px;
  }

  .btn {
    width: 100%;
  }

  .proof-band {
    padding-right: 16px;
    padding-left: 16px;
  }

  .groot-form,
  .groot-form.compact {
    grid-template-columns: 1fr;
  }

  .groot-widget {
    left: 14px;
    width: auto;
  }

  .groot-launcher {
    width: 74px;
    min-height: 74px;
    padding: 6px;
  }

  .groot-launcher-copy {
    display: none;
  }

  .groot-launcher-bot {
    width: 58px;
    height: 58px;
  }

  .groot-widget-heading p:last-child {
    display: none;
  }
}
