:root {
  --bg: #030604;
  --bg-2: #06110b;
  --panel: rgba(7, 15, 10, .88);
  --panel-strong: rgba(10, 22, 14, .94);
  --line: rgba(203, 230, 172, .17);
  --line-strong: rgba(203, 230, 172, .32);
  --text: #f6f8f1;
  --muted: #c0c8b9;
  --dim: #899483;
  --green: #8fd33e;
  --green-dark: #234b13;
  --gold: #c99a39;
  --gold-soft: #f0d28a;
  --max: 1200px;
  --display: "Space Grotesk", "Arial Narrow", sans-serif;
  --sans: "Inter", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(41, 84, 28, .18), transparent 24rem),
    linear-gradient(180deg, #020403 0%, var(--bg) 42%, #020403 100%);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  clip: auto;
  left: 1rem;
  top: 1rem;
  padding: .75rem 1rem;
  background: var(--green);
  color: #061006;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(160px, 210px) auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 74px;
  padding: .85rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(2, 4, 3, .72);
  backdrop-filter: blur(18px);
  transition: min-height .2s ease, background .2s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  min-height: 64px;
  background: rgba(2, 4, 3, .96);
}

.brand {
  width: max-content;
}

.brand img {
  width: 172px;
}

.desktop-nav {
  min-width: 0;
  display: flex;
  justify-content: center;
  gap: clamp(1.3rem, 3vw, 3rem);
  color: rgba(246, 248, 241, .82);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.desktop-nav a,
.footer-links a {
  transition: color .18s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green);
}

.portal-link,
.button {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.1rem;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.portal-link {
  border-color: rgba(201, 154, 57, .72);
  color: var(--gold-soft);
}

.button:hover,
.portal-link:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.portal-link:focus-visible,
.menu-button:focus-visible,
.strain-tabs button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.button-primary {
  border-color: transparent;
  background: linear-gradient(180deg, #99df49, var(--green));
  color: #061006;
}

.button-secondary {
  border-color: rgba(201, 154, 57, .62);
  color: var(--gold-soft);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  padding: 7.4rem clamp(1rem, 4vw, 3.5rem) 3.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 6, 4, .99) 0%, rgba(3, 6, 4, .9) 32%, rgba(3, 6, 4, .22) 66%, rgba(3, 6, 4, .68) 100%),
    linear-gradient(0deg, rgba(3, 6, 4, .98), rgba(3, 6, 4, .05) 56%),
    url("assets/images/hero-flower.webp") 78% center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10rem;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.hero-inner {
  width: min(760px, 100%);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6.4vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
}

.section-tag {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 .85rem;
  color: var(--green);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-tag b {
  font-weight: 600;
  color: var(--gold-soft);
}

.section-tag b::after {
  content: " /";
  color: var(--dim);
}

.hero-copy {
  max-width: 590px;
  margin: 1.35rem 0 0;
  color: rgba(246, 248, 241, .88);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.8rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
  max-width: 740px;
  margin-top: 2.2rem;
}

.proof-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: .7rem;
  min-height: 58px;
  padding: .65rem .75rem;
  border: 1px solid var(--line);
  background: rgba(5, 13, 8, .72);
}

.proof-icon,
.operation-icon {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(143, 211, 62, .35);
  background: rgba(40, 83, 23, .26);
  color: var(--green);
}

.proof-icon {
  width: 38px;
  height: 38px;
}

.proof-icon svg,
.operation-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-item strong,
.proof-item span:not(.proof-icon) {
  display: block;
}

.proof-item strong {
  color: var(--text);
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.proof-item span:not(.proof-icon) {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3.5rem);
}

main section,
footer {
  scroll-margin-top: 82px;
}

.featured-drop {
  max-width: calc(var(--max) + 2rem);
  margin: 0 auto;
}

.drop-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(120deg, rgba(17, 37, 20, .72), rgba(4, 10, 6, .9)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
}

.drop-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050806;
}

.drop-media img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.drop-subtitle,
.standards-copy p,
.portal-copy p,
.subscribe-form p,
.footer-brand p,
.footer-compliance,
.footer-contact {
  color: var(--muted);
}

.drop-subtitle {
  max-width: 560px;
  margin: 1rem 0 0;
  font-size: 1.02rem;
}

.drop-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.drop-specs div {
  border-right: 1px solid var(--line);
  padding-right: 1rem;
}

.drop-specs div:last-child {
  border-right: 0;
}

.drop-specs span {
  display: block;
  color: var(--green);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.drop-specs strong {
  display: block;
  margin-top: .32rem;
  color: var(--text);
  font-size: .94rem;
  line-height: 1.35;
}

.drop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.standards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.standards-media {
  margin: 0;
  border: 1px solid var(--line);
  background: #050806;
}

.standards-media img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.standards-copy p {
  max-width: 600px;
  margin: 1rem 0 0;
}

.check-list {
  display: grid;
  gap: .7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(246, 248, 241, .9);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52rem;
  width: .74rem;
  height: .74rem;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 44%, #061006 45% 55%, transparent 56%),
    var(--green);
}

.check-list.compact {
  margin-bottom: 1.5rem;
}

.operations {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 4vw, 3.5rem);
  background:
    radial-gradient(circle at 18% 15%, rgba(143, 211, 62, .09), transparent 20rem),
    linear-gradient(180deg, rgba(8, 18, 11, .18), rgba(8, 18, 11, .72));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.operations-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  max-width: 780px;
}

.section-heading p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.operation-locations {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .9rem 1.4rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(203, 230, 172, .18);
  background: rgba(4, 10, 6, .72);
}

.operation-locations span {
  color: var(--green);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.operation-locations strong {
  color: var(--text);
  font-size: .9rem;
  font-weight: 800;
}

.operation-locations p {
  grid-column: 2;
  margin: 0;
  color: var(--dim);
  font-size: .78rem;
}

.operation-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .8rem;
}

.operation-step {
  position: relative;
  min-height: 190px;
  padding: 1.15rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(14, 30, 17, .88), rgba(3, 8, 5, .72)),
    rgba(3, 8, 5, .74);
  overflow: hidden;
}

.operation-step::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(143, 211, 62, .06);
  pointer-events: none;
}

.operation-number {
  position: absolute;
  top: .9rem;
  right: 1rem;
  color: rgba(240, 210, 138, .68);
  font-size: .7rem;
  font-weight: 900;
}

.operation-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.05rem;
  border-radius: 50%;
}

.operation-step h3 {
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 900;
  line-height: 1.2;
}

.operation-step p {
  margin: .65rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.portal {
  display: grid;
  grid-template-columns: minmax(290px, .58fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.portal.section-pad {
  padding-top: clamp(2rem, 4vw, 3.2rem);
}

.drop-panel > *,
.standards > *,
.portal > *,
.access-band > *,
.site-footer > * {
  min-width: 0;
}

.portal-copy p {
  margin: 1rem 0 0;
  max-width: 520px;
}

.strain-panel,
.buyer-form,
.subscribe-form,
.login-panel,
.access-card {
  border: 1px solid var(--line);
  background: var(--panel);
}

.strain-panel {
  padding: clamp(1rem, 2vw, 1.3rem);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.strain-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.strain-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.strain-tabs button {
  min-height: 38px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 0 .65rem;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.strain-tabs button.is-active {
  border-color: rgba(143, 211, 62, .48);
  background: rgba(46, 93, 22, .3);
  color: var(--green);
}

.search-field input,
.buyer-form input,
.subscribe-form input,
.login-panel input,
.access-card input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
  color: var(--text);
  padding: 0 .9rem;
  outline: none;
}

.search-field input {
  width: min(260px, 100%);
  min-height: 38px;
}

.strain-feature {
  display: grid;
  grid-template-columns: minmax(170px, .52fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: .9rem;
  border: 1px solid rgba(203, 230, 172, .14);
  background: linear-gradient(135deg, rgba(33, 71, 19, .32), rgba(255, 255, 255, .025));
}

.strain-feature img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
  border: 1px solid rgba(203, 230, 172, .18);
}

.strain-feature span,
.strain-card span {
  color: var(--green);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.strain-feature h3,
.strain-card h3 {
  margin-top: .28rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: .95;
}

.strain-feature p,
.strain-card p {
  margin: .55rem 0 0;
  color: var(--muted);
}

.strain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}

.strain-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: .85rem;
  align-items: center;
  min-height: 118px;
  padding: .72rem;
  border: 1px solid rgba(203, 230, 172, .13);
  background: rgba(255, 255, 255, .025);
}

.strain-card[hidden] {
  display: none;
}

.strain-card img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border: 1px solid rgba(203, 230, 172, .16);
}

.strain-card h3 {
  font-size: 1.42rem;
}

.strain-card p {
  font-size: .84rem;
}

.portal-lock {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .88rem;
  text-align: center;
}

.access-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .78fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.buyer-form,
.subscribe-form {
  padding: clamp(1rem, 3vw, 2rem);
}

.buyer-form h2,
.subscribe-form h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  margin: 1.4rem 0 1rem;
}

.buyer-form label,
.subscribe-form {
  display: grid;
  gap: .42rem;
}

.buyer-form span,
.subscribe-form label {
  color: var(--dim);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.buyer-form .button {
  width: min(250px, 100%);
}

.form-note {
  min-height: 1.3em;
  margin: .8rem 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.form-note.is-success {
  color: var(--green);
}

.subscribe-form {
  align-content: center;
}

.subscribe-form p {
  margin: .85rem 0 1.3rem;
}

.subscribe-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .7rem;
}

.portal-page {
  background:
    radial-gradient(circle at 18% 20%, rgba(143, 211, 62, .14), transparent 26rem),
    radial-gradient(circle at 82% 8%, rgba(201, 154, 57, .12), transparent 24rem),
    linear-gradient(180deg, #020403 0%, #06110b 54%, #020403 100%);
}

.portal-main {
  overflow: hidden;
}

.portal-login-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .48fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: 88svh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 7.4rem clamp(1rem, 4vw, 3.5rem) 3.5rem;
}

.portal-login-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 38%;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 6, 4, .98), rgba(3, 6, 4, .55) 48%, rgba(3, 6, 4, .92)),
    linear-gradient(0deg, rgba(3, 6, 4, .94), rgba(3, 6, 4, .1) 54%),
    url("assets/images/grow-room.webp") center / cover no-repeat;
  opacity: .78;
}

.portal-login-hero::after {
  content: "";
  position: absolute;
  inset: auto -50vw 0;
  z-index: -1;
  height: 1px;
  background: var(--line);
}

.login-copy {
  max-width: 690px;
}

.login-copy .check-list {
  margin-top: 1.5rem;
}

.login-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  background:
    linear-gradient(145deg, rgba(10, 22, 14, .96), rgba(4, 9, 6, .9)),
    var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
}

.login-panel h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.login-panel label,
.access-card label {
  display: grid;
  gap: .42rem;
}

.login-panel span,
.access-card span {
  color: var(--dim);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.login-panel .button,
.access-card .button {
  width: 100%;
}

.login-panel-links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1rem;
  padding-top: .2rem;
  color: var(--gold-soft);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.login-panel-links a {
  border-bottom: 1px solid rgba(201, 154, 57, .48);
}

.access-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  max-width: var(--max);
  margin: 0 auto;
}

.access-intro {
  grid-column: 1 / -1;
  max-width: 790px;
}

.access-intro p:not(.section-tag),
.access-card p {
  color: var(--muted);
}

.access-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: linear-gradient(145deg, rgba(10, 22, 14, .92), rgba(255, 255, 255, .025));
}

.access-card h3 {
  font-size: clamp(1.85rem, 4vw, 3rem);
}

.weekly-menu-card {
  background:
    linear-gradient(145deg, rgba(35, 75, 19, .38), rgba(255, 255, 255, .025)),
    var(--panel);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1.5rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem clamp(1rem, 4vw, 3.5rem) 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand img {
  width: 188px;
  margin-bottom: .9rem;
}

.footer-brand p,
.footer-compliance,
.legal,
.footer-contact p {
  margin: 0;
}

.footer-links {
  display: grid;
  gap: .45rem;
  color: rgba(246, 248, 241, .78);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact {
  display: grid;
  gap: .35rem;
  font-size: .85rem;
}

.footer-compliance {
  max-width: 620px;
  font-size: .82rem;
}

.legal {
  justify-self: end;
  font-size: .78rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--d, 0s);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Futuristic layer: progress, status, ticker, HUD ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), #c7f26f);
  box-shadow: 0 0 12px rgba(143, 211, 62, .6);
}

.sys-status {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  justify-self: start;
  padding: .3rem .65rem;
  border: 1px solid rgba(143, 211, 62, .3);
  color: var(--green);
  font-family: var(--mono);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sys-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: chip-pulse 2s ease-in-out infinite;
}

/* dot-grid texture on dark band sections */
.operations,
.access-band,
.portal-preview {
  background-image: radial-gradient(rgba(203, 230, 172, .06) 1px, transparent 1.4px);
  background-size: 26px 26px;
}

/* HUD bracket corners */
.drop-panel,
.strain-panel,
.preview-panel,
.login-panel,
.access-card,
.buyer-form,
.subscribe-form {
  position: relative;
}

.drop-panel::before,
.strain-panel::before,
.preview-panel::before,
.login-panel::before,
.access-card::before,
.buyer-form::before,
.subscribe-form::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 22px;
  height: 22px;
  border-top: 2px solid var(--green);
  border-left: 2px solid var(--green);
  pointer-events: none;
}

.drop-panel::after,
.strain-panel::after,
.preview-panel::after,
.login-panel::after,
.access-card::after,
.buyer-form::after,
.subscribe-form::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 22px;
  height: 22px;
  border-bottom: 2px solid var(--green);
  border-right: 2px solid var(--green);
  pointer-events: none;
}

/* hero scan + callouts */
.hero-scan {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-scan::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -3%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(143, 211, 62, .5) 40%, rgba(199, 242, 111, .8) 50%, rgba(143, 211, 62, .5) 60%, transparent);
  box-shadow: 0 0 18px rgba(143, 211, 62, .35);
  animation: heroscan 9s linear infinite;
}

@keyframes heroscan {
  0% { top: -3%; opacity: 0; }
  6% { opacity: .55; }
  46% { opacity: .55; }
  52% { top: 103%; opacity: 0; }
  100% { top: 103%; opacity: 0; }
}

.hero-callouts {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.callout {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: flex;
  align-items: center;
}

.callout-line {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(143, 211, 62, .9), rgba(143, 211, 62, .25));
  position: relative;
}

.callout-line::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid var(--green);
  background: rgba(143, 211, 62, .25);
}

.callout-chip {
  padding: .32rem .6rem;
  border: 1px solid rgba(143, 211, 62, .4);
  background: rgba(3, 8, 4, .78);
  backdrop-filter: blur(6px);
  color: #d9efbe;
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* env ticker */
.env-ticker {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: .55rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(4, 9, 5, .92);
  overflow-x: auto;
  scrollbar-width: none;
}

.env-ticker::-webkit-scrollbar { display: none; }

.env-ticker-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.env-ticker-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: chip-pulse 2s ease-in-out infinite;
}

.env-ticker-track {
  display: flex;
  gap: 1.6rem;
  color: var(--dim);
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.env-ticker-track strong {
  color: var(--green);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* mono data voice everywhere */
.chip,
.status,
.preview-table td,
.preview-table th,
.preview-tabs button,
.strain-tabs button,
.operation-number,
.form-note,
.footer-contact,
.proof-item span:not(.proof-icon) {
  font-family: var(--mono);
  letter-spacing: .06em;
}

/* button corner ticks on hover */
.button {
  position: relative;
}

.button::before,
.button::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}

.button::before {
  top: -4px;
  left: -4px;
  border-top: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: translate(4px, 4px);
}

.button::after {
  bottom: -4px;
  right: -4px;
  border-bottom: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transform: translate(-4px, -4px);
}

.button:hover::before,
.button:hover::after,
.button:focus-visible::before,
.button:focus-visible::after {
  opacity: 1;
  transform: none;
}

/* media band */
.media-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3.5rem);
}

.media-band figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.media-band img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .5s ease;
}

.media-band figure:hover img {
  transform: scale(1.04);
}

.media-band figcaption {
  position: absolute;
  left: .8rem;
  bottom: .7rem;
  padding: .3rem .6rem;
  border: 1px solid rgba(143, 211, 62, .35);
  background: rgba(3, 8, 4, .72);
  backdrop-filter: blur(6px);
  color: #d9efbe;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* strain search empty state */
.strain-empty {
  margin: .9rem 0 0;
  color: var(--dim);
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}

/* table scan sweep */
.preview-table tbody tr {
  position: relative;
}

.preview-table tbody tr.scanned {
  background: rgba(143, 211, 62, .08);
  transition: background 1.2s ease;
}

/* ---------- Age gate ---------- */
.agegate {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(2, 4, 3, .9);
  backdrop-filter: blur(16px);
}

.agegate-card {
  max-width: 460px;
  padding: 2.6rem 2.2rem;
  text-align: center;
  border: 1px solid var(--line-strong);
  background: var(--panel-strong);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
}

.agegate-card img {
  width: 190px;
  margin: 0 auto 1.6rem;
}

.agegate-card h2 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
}

.agegate-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin-top: 1.5rem;
}

.agegate-fine {
  margin: 1.5rem 0 0;
  color: var(--dim);
  font-size: .74rem;
  line-height: 1.55;
}

/* ---------- Status chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .8rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.chip-live {
  border-color: rgba(143, 211, 62, .45);
  color: var(--green);
}

.chip-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: chip-pulse 2s ease-in-out infinite;
}

@keyframes chip-pulse {
  50% { opacity: .35; }
}

.drop-status {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 0 0 1.4rem;
}

/* ---------- Portal preview table ---------- */
.portal-preview {
  display: grid;
  grid-template-columns: minmax(270px, .52fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.portal-preview > * {
  min-width: 0;
}

.preview-copy p:not(.section-tag) {
  margin: 1rem 0 0;
  max-width: 520px;
  color: var(--muted);
}

.preview-copy .button {
  margin-top: 1.5rem;
}

.preview-panel {
  position: relative;
  padding: clamp(1rem, 2vw, 1.3rem);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(145deg, rgba(10, 22, 14, .9), rgba(4, 9, 6, .92)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
}

.preview-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  margin-bottom: .9rem;
}

.preview-tabs {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
}

.preview-tabs button {
  min-height: 38px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 0 .7rem;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.preview-tabs button:hover {
  color: var(--text);
}

.preview-tabs button.is-active {
  border-color: rgba(143, 211, 62, .48);
  background: rgba(46, 93, 22, .3);
  color: var(--green);
}

.preview-tabs button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.preview-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: rgba(2, 5, 3, .55);
}

.preview-table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  font-size: .78rem;
}

.preview-table th {
  padding: .6rem .6rem;
  border-bottom: 1px solid var(--line-strong);
  color: var(--green);
  font-size: .64rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.preview-table td {
  padding: .6rem .6rem;
  border-bottom: 1px solid var(--line);
  color: rgba(246, 248, 241, .88);
  white-space: nowrap;
}

.preview-table td:first-child {
  font-weight: 700;
  color: var(--text);
}

.preview-table tbody tr {
  transition: background .16s ease;
}

.preview-table tbody tr:hover {
  background: rgba(143, 211, 62, .06);
}

.preview-table tbody tr:last-child td {
  border-bottom: 0;
}

.status {
  display: inline-block;
  padding: .18rem .55rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-ok {
  border-color: rgba(143, 211, 62, .5);
  color: var(--green);
}

.status-warn {
  border-color: rgba(240, 210, 138, .5);
  color: var(--gold-soft);
}

.status-info {
  border-color: rgba(122, 180, 255, .45);
  color: #a9cdff;
}

.status-lock {
  border-color: rgba(201, 154, 57, .5);
  color: var(--gold-soft);
}

/* ---------- Locked preview (portal page) ---------- */
.portal-locked {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.preview-panel.is-locked .preview-table-wrap,
.preview-panel.is-locked .preview-tabs {
  filter: blur(4px) saturate(.7);
  opacity: .55;
  pointer-events: none;
  user-select: none;
}

.locked-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: .8rem;
  text-align: center;
  background: radial-gradient(circle at center, rgba(2, 4, 3, .3), rgba(2, 4, 3, .78));
}

.locked-overlay svg {
  width: 34px;
  height: 34px;
  color: var(--gold-soft);
}

.locked-overlay p {
  margin: 0;
  color: var(--text);
  font-size: .95rem;
  font-weight: 700;
}

/* ---------- Card hover polish ---------- */
.strain-card,
.operation-step,
.proof-item {
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.strain-card:hover,
.proof-item:hover {
  transform: translateY(-3px);
  border-color: rgba(143, 211, 62, .4);
}

.operation-step:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 211, 62, .4);
}

.strain-card img,
.strain-feature img,
.drop-media img,
.standards-media img {
  transition: transform .5s ease;
}

.strain-card:hover img,
.strain-feature:hover img,
.drop-media:hover img,
.standards-media:hover img {
  transform: scale(1.05);
}

.drop-media,
.standards-media,
.strain-feature,
.strain-card {
  overflow: hidden;
}

.button-primary:hover {
  box-shadow: 0 10px 30px rgba(143, 211, 62, .25);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-scan {
    display: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 1040px) {
  .proof-grid,
  .operation-rail {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .desktop-nav,
  .sys-status,
  .hero-callouts {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: 24;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 4, 3, .98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .42);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    padding: .95rem 1rem;
    border-bottom: 1px solid var(--line);
    font-weight: 900;
    text-transform: uppercase;
  }

  .drop-panel,
  .standards,
  .portal,
  .access-band,
  .site-footer,
  .section-heading,
  .operation-locations,
  .portal-login-hero,
  .access-options,
  .portal-preview {
    grid-template-columns: 1fr;
  }

  .portal-login-hero::before {
    inset: 0;
    opacity: .42;
  }

  .drop-panel {
    gap: 1.6rem;
  }

  .legal {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: .65rem 1rem;
  }

  .mobile-nav {
    top: 64px;
  }

  .media-band {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 154px;
  }

  .portal-link {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 6.2rem 1rem 2rem;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(3, 6, 4, .82) 0%, rgba(3, 6, 4, .3) 34%, rgba(3, 6, 4, .18) 55%, rgba(3, 6, 4, .88) 82%, rgba(3, 6, 4, .97) 100%),
      url("assets/images/hero-flower.webp") 70% center / cover no-repeat;
  }

  .hero h1,
  .hero-copy {
    text-shadow: 0 2px 18px rgba(0, 0, 0, .75);
  }

  h1 {
    font-size: clamp(2.7rem, 12.5vw, 3.9rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.65rem);
  }

  .hero-actions,
  .drop-specs,
  .form-grid,
  .subscribe-row,
  .operation-rail,
  .strain-toolbar,
  .strain-feature,
  .strain-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .55rem;
  }

  .proof-item {
    grid-template-columns: 34px 1fr;
    min-height: 52px;
    padding: .55rem .6rem;
  }

  .proof-icon {
    width: 32px;
    height: 32px;
  }

  .proof-item strong {
    font-size: .82rem;
  }

  .proof-item span:not(.proof-icon) {
    font-size: .58rem;
  }

  .hero-actions,
  .strain-toolbar {
    display: grid;
  }

  .button,
  .buyer-form .button,
  .search-field input {
    width: 100%;
  }

  .proof-item {
    grid-template-columns: 38px 1fr;
  }

  .drop-panel,
  .buyer-form,
  .subscribe-form,
  .strain-panel,
  .login-panel,
  .access-card {
    padding: 1rem;
  }

  .portal-login-hero {
    min-height: auto;
    padding: 6.6rem 1rem 2.4rem;
  }

  .portal-login-hero::before {
    background:
      linear-gradient(180deg, rgba(3, 6, 4, .68), rgba(3, 6, 4, .98)),
      url("assets/images/grow-room.webp") center / cover no-repeat;
  }

  .access-options {
    gap: 1rem;
  }

  .drop-media img,
  .standards-media img {
    aspect-ratio: 1 / 1;
  }

  .drop-specs div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 .8rem;
  }

  .drop-specs div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .operation-locations {
    gap: .4rem;
  }

  .operation-rail {
    gap: .65rem;
  }

  .operation-step {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: .1rem .9rem;
    min-height: 0;
    padding: 1rem;
  }

  .operation-step::after {
    width: 46px;
    height: 46px;
  }

  .operation-number {
    position: static;
    grid-column: 2;
    grid-row: 1;
  }

  .operation-icon {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 44px;
    height: 44px;
    margin: 0;
  }

  .operation-step h3,
  .operation-step p {
    grid-column: 2;
  }

  .operation-step h3 {
    margin-top: .1rem;
  }

  .operation-step p {
    margin-top: .25rem;
  }

  .strain-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .strain-card {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 104px;
  }

  .strain-card img {
    width: 76px;
    height: 76px;
  }

  .site-footer {
    padding-bottom: 1.5rem;
  }
}
