:root {
  --ink: #0b1011;
  --paper: #f3f0e8;
  --acid: #c8ff45;
  --mint: #83d3bd;
  --grow: #0e4a36;
  --grow-gold: #b97712;
  --line: rgba(243, 240, 232, .16);
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--ink); background: var(--acid); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #07100a;
  background: var(--acid);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.page-progress {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 2px;
  background: rgba(255,255,255,.05);
}
.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}
.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(200,255,69,.08), transparent 66%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .4s;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 4vw, 72px);
  transition: height .35s, background .35s, border-color .35s;
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(7,11,13,.78);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.brand-mark { position: relative; display: flex; width: 27px; height: 25px; gap: 2px; }
.brand-mark i {
  display: block;
  width: 8px;
  height: 24px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  transform-origin: bottom;
}
.brand-mark i:nth-child(1) { transform: rotate(-16deg); }
.brand-mark i:nth-child(3) { transform: rotate(16deg); }
.brand-type {
  font: 700 13px/1 var(--display);
  letter-spacing: .12em;
}
.brand-type b { color: var(--acid); }
.desktop-nav { display: flex; align-items: center; gap: 36px; }
.desktop-nav a, .header-cta {
  position: relative;
  font: 500 13px/1 var(--body);
}
.desktop-nav > a::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}
.desktop-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-products { position: relative; padding-block: 26px; }
.nav-products-trigger { display: flex; align-items: center; gap: 7px; }
.nav-products-trigger span { color: var(--acid); font-size: 15px; transition: transform .25s; }
.nav-products:hover .nav-products-trigger span,
.nav-products:focus-within .nav-products-trigger span { transform: rotate(180deg); }
.products-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  width: 330px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(8,13,14,.94);
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity .25s, visibility .25s, transform .25s;
}
.nav-products:hover .products-menu,
.nav-products:focus-within .products-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.products-menu > a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  transition: background .2s;
}
.products-menu > a:hover,
.products-menu > a:focus-visible { background: rgba(255,255,255,.08); }
.products-menu .menu-index {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--acid);
  border: 1px solid rgba(200,255,69,.35);
  border-radius: 50%;
  font-size: 9px;
}
.products-menu a > span:nth-child(2) { display: grid; gap: 5px; }
.products-menu b { font: 600 13px/1 var(--display); }
.products-menu small { color: #89918e; font-size: 11px; }
.products-menu i { color: var(--acid); font-style: normal; font-size: 18px; transition: transform .2s; }
.products-menu a:hover i { transform: translate(3px, -3px); }
.header-cta { justify-self: end; display: flex; gap: 10px; align-items: center; }
.header-cta span { color: var(--acid); font-size: 18px; transition: transform .25s; }
.header-cta:hover span { transform: translate(4px, 4px); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 130px clamp(22px, 6vw, 100px) 96px;
  isolation: isolate;
}
.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .26;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 7vw 7vw;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(145deg, transparent 30%, rgba(14,43,34,.55) 100%);
}
.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  will-change: transform;
}
.orb-a {
  top: -20vw;
  right: -15vw;
  width: 50vw;
  height: 50vw;
  border: 1px solid rgba(200,255,69,.3);
  box-shadow: inset 0 0 120px rgba(200,255,69,.04);
}
.orb-b {
  bottom: -25vw;
  left: 12vw;
  width: 44vw;
  height: 44vw;
  background: rgba(36,111,86,.13);
  filter: blur(70px);
}
.hero-copy { width: min(1280px, 100%); margin: auto; }
.eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow span { color: var(--acid); padding: 0 8px; }
.hero-title {
  margin: clamp(30px, 5vh, 62px) 0 0;
  font: 600 clamp(52px, 8.7vw, 144px)/.88 var(--display);
  letter-spacing: -.065em;
}
.title-line { display: block; overflow: hidden; padding-bottom: .08em; }
.title-line > span {
  display: block;
  transform: translateY(115%);
  animation: titleIn 1s cubic-bezier(.2,.8,.2,1) forwards;
}
.title-line:nth-child(2) > span { animation-delay: .12s; }
.title-line:nth-child(3) > span { animation-delay: .24s; }
.accent-line { color: var(--acid); padding-left: clamp(0px, 7vw, 110px); }
@keyframes titleIn { to { transform: none; } }
.hero-bottom {
  width: min(100%, 1180px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(35px, 8vw, 120px);
  margin: 38px 0 0 auto;
}
.hero-bottom p {
  width: min(520px, 100%);
  margin: 0;
  color: rgba(243,240,232,.67);
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1.55;
}
.circle-link {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  display: grid;
  place-content: center;
  gap: 6px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  transition: color .3s, background .3s, transform .3s;
}
.circle-link span { font-size: 10px; letter-spacing: .17em; }
.circle-link b { color: var(--acid); font-size: 18px; }
.circle-link:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); transform: rotate(-8deg); }
.circle-link:hover b { color: inherit; }
.hero-marquee {
  position: absolute;
  inset: auto 0 0;
  padding: 12px 0;
  color: var(--ink);
  background: var(--acid);
  overflow: hidden;
  transform: rotate(-1deg) scale(1.02);
}
.hero-marquee div { display: flex; width: max-content; align-items: center; animation: marquee 23s linear infinite; }
.hero-marquee span { font: 700 11px/1 var(--display); letter-spacing: .17em; padding: 0 28px; }
.hero-marquee i { font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.manifesto {
  position: relative;
  padding: clamp(110px, 15vw, 230px) clamp(22px, 8vw, 140px);
  color: #17201d;
  background: var(--paper);
}
.manifesto-number {
  padding-bottom: 25px;
  color: #68706d;
  border-bottom: 1px solid rgba(11,16,17,.16);
  font-size: 11px;
  letter-spacing: .16em;
}
.manifesto-text {
  max-width: 1250px;
  margin: clamp(55px, 8vw, 120px) 0;
  font: 500 clamp(34px, 5.2vw, 79px)/1.12 var(--display);
  letter-spacing: -.052em;
}
.manifesto-text em { color: #2d8068; font-style: normal; }
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 5vw, 80px);
  border-top: 1px solid rgba(11,16,17,.16);
}
.principle { padding-top: 25px; }
.principle span { color: #71807a; font-size: 11px; }
.principle h2 { margin: 48px 0 14px; font: 600 20px/1.2 var(--display); }
.principle p { max-width: 310px; margin: 0; color: #69716e; line-height: 1.65; }

.products-intro {
  position: relative;
  z-index: 2;
  padding: clamp(100px, 14vw, 210px) clamp(22px, 6vw, 100px);
  background: #090d0f;
}
.products-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-top: 65px;
}
.products-heading h2 {
  margin: 0;
  font: 600 clamp(47px, 7vw, 108px)/.96 var(--display);
  letter-spacing: -.06em;
}
.products-heading h2 em { color: var(--acid); font-style: normal; }
.products-heading > p { width: min(350px, 100%); margin: 0 0 10px; color: #89908d; font-size: 17px; line-height: 1.6; }

.product {
  position: relative;
  min-height: 115vh;
  display: grid;
  align-items: center;
  overflow: clip;
  padding: clamp(90px, 10vw, 160px) clamp(22px, 6vw, 100px);
}
.product-shell {
  position: relative;
  z-index: 2;
  width: min(1370px, 100%);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: clamp(55px, 8vw, 130px);
  margin: auto;
}
.product-shell-reverse { grid-template-columns: .82fr 1.18fr; }
.product-shell-reverse .product-copy { order: 2; }
.product-shell-reverse .product-visual { order: 1; }
.product-kicker { display: flex; align-items: center; gap: 16px; font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.product-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  letter-spacing: 0;
}
.product-title {
  margin: 40px 0 28px;
  font: 600 clamp(45px, 5.1vw, 78px)/1 var(--display);
  letter-spacing: -.055em;
}
.product-title em { font-style: normal; }
.product-description { max-width: 560px; margin: 0; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.62; }
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 35px 0 45px;
  padding: 0;
  list-style: none;
}
.product-tags li {
  padding: 9px 13px;
  border: 1px solid currentColor;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-link {
  width: max-content;
  min-width: 235px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}
.product-link b { font-size: 23px; transition: transform .25s; }
.product-link:hover b { transform: translate(5px, -5px); }
.product-visual { position: relative; min-width: 0; transform-style: preserve-3d; transition: transform .15s ease-out; }

.product-growshop {
  min-height: 180vh;
  align-items: start;
  padding-block: 0;
  color: #10271f;
  background: #f3f0e8;
}
.product-growshop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(185,119,18,.18), transparent 25%),
    radial-gradient(circle at 16% 76%, rgba(23,105,75,.12), transparent 30%);
}
.product-growshop .product-shell {
  position: sticky;
  top: 0;
  min-height: 100svh;
  margin: 0 auto;
  padding-block: clamp(90px, 10vh, 130px);
}
.product-growshop .product-title em,
.product-growshop .product-index { color: var(--grow); }
.product-growshop .product-description { color: #52655e; }
.product-growshop .product-tags li { background: rgba(255,255,255,.42); }
.product-growshop .product-link { color: var(--grow); }
.growshop-grid {
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image:
    linear-gradient(rgba(14,74,54,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,74,54,.07) 1px, transparent 1px);
  background-size: 7vw 7vw;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}
.growshop-seed {
  position: absolute;
  border: 1px solid rgba(14,74,54,.16);
  border-radius: 50% 7% 50% 7%;
  transform: rotate(42deg);
}
.seed-a { top: 8%; right: 4%; width: 28vw; aspect-ratio: 1; }
.seed-b { bottom: 10%; left: -8%; width: 20vw; aspect-ratio: 1; }
.growshop-trust {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 25px 0 0;
  color: #63756e;
  font-size: 11px;
  letter-spacing: .04em;
}
.growshop-trust span {
  color: #2da16e;
  font-size: 10px;
  filter: drop-shadow(0 0 5px rgba(45,161,110,.45));
}
.growshop-stage {
  min-height: min(74vh, 750px);
  perspective: 1500px;
  isolation: isolate;
}
.growshop-halo {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36,110,81,.2), transparent 66%);
  filter: blur(28px);
  transform: translate(-50%, -50%);
}
.growshot {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(18,65,47,.18);
  border-radius: clamp(13px, 1.5vw, 22px);
  background: #f9f7f0;
  box-shadow: 0 34px 80px rgba(31,53,44,.24);
  will-change: transform, opacity;
}
.growshot img { width: 100%; height: 100%; object-fit: cover; }
.growshot-main {
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 88%;
  aspect-ratio: 1.62;
  transform: translate(-50%, calc(-50% + var(--grow-main-y, 24px))) rotateY(var(--grow-main-rotate, -5deg));
  transform-origin: center;
}
.growshot-main img { height: calc(100% - 38px); object-position: top; }
.browser-bar {
  height: 38px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 13px;
  border-bottom: 1px solid #dde4de;
  background: rgba(249,251,247,.95);
}
.browser-dots { display: flex; gap: 5px; }
.browser-dots i { width: 7px; height: 7px; border-radius: 50%; background: #d6b55a; }
.browser-dots i:first-child { background: #d47a5f; }
.browser-dots i:last-child { background: #6cb57a; }
.browser-address {
  min-width: 170px;
  padding: 6px 18px;
  color: #6f7c76;
  border: 1px solid #e0e6e0;
  border-radius: 100px;
  background: white;
  font-size: 9px;
  text-align: center;
}
.live-pill {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #226047;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: #2aa06c; box-shadow: 0 0 0 4px rgba(42,160,108,.12); }
.growshot-map {
  z-index: 2;
  top: 2%;
  left: -5%;
  width: 56%;
  aspect-ratio: 1.58;
  opacity: var(--grow-side-opacity, .28);
  transform: translate3d(var(--grow-map-x, 105px), var(--grow-map-y, 95px), -60px) rotate(var(--grow-map-rotate, -9deg));
}
.growshot-map img { object-position: center 55%; }
.growshot-stores {
  z-index: 4;
  right: -4%;
  bottom: 1%;
  width: 54%;
  aspect-ratio: 1.58;
  opacity: var(--grow-side-opacity, .28);
  transform: translate3d(var(--grow-stores-x, -105px), var(--grow-stores-y, -90px), 55px) rotate(var(--grow-stores-rotate, 8deg));
}
.growshot-stores img { object-position: 36% top; }
.growshop-stat {
  position: absolute;
  z-index: 7;
  display: grid;
  gap: 4px;
  padding: 13px 16px;
  color: #16372b;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 13px;
  background: rgba(252,250,244,.86);
  box-shadow: 0 15px 40px rgba(27,63,48,.16);
  backdrop-filter: blur(14px);
}
.growshop-stat span { color: #8e6724; font-size: 8px; letter-spacing: .15em; }
.growshop-stat b { font: 700 14px/1.2 var(--display); }
.stat-cities { top: 13%; right: 1%; transform: translateY(var(--grow-stat-y, 18px)); }
.stat-categories { bottom: 14%; left: 0; transform: translateY(var(--grow-stat-y-negative, -18px)); }
.scroll-cue {
  position: absolute;
  z-index: 8;
  right: 2%;
  bottom: -13px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #65756f;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-cue span { width: 36px; height: 1px; background: currentColor; transform-origin: left; animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 50% { transform: scaleX(.35); opacity: .45; } }

.product-sirat {
  color: #eaf2ed;
  background: #13241e;
}
.product-sirat::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background:
    radial-gradient(circle at 80% 30%, #6db6a2, transparent 32%),
    repeating-linear-gradient(90deg, transparent 0 12vw, rgba(255,255,255,.05) 12vw calc(12vw + 1px));
}
.product-sirat .product-title em, .product-sirat .product-index { color: #9ed4c3; }
.product-sirat .product-description { color: #aebdb8; }
.sirat-visual {
  height: min(76vh, 750px);
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.visual-ring {
  position: absolute;
  border: 1px solid rgba(158,212,195,.28);
  border-radius: 50%;
}
.ring-one { width: 82%; aspect-ratio: 1; animation: orbit 18s linear infinite; }
.ring-two { width: 60%; aspect-ratio: 1; border-style: dashed; animation: orbit 14s linear infinite reverse; }
@keyframes orbit { to { transform: rotate(360deg); } }
.phone {
  position: absolute;
  overflow: hidden;
  border: 7px solid #060b09;
  border-radius: 34px;
  background: #0c1512;
  box-shadow: 0 35px 70px rgba(0,0,0,.42);
}
.phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 28%;
  height: 15px;
  border-radius: 20px;
  background: #060b09;
  transform: translateX(-50%);
}
.phone-main { z-index: 2; height: 88%; aspect-ratio: 750/1550; transform: rotate(4deg) translateZ(28px); }
.phone-main img { width: 100%; height: 100%; object-fit: cover; }
.phone-back { z-index: 1; left: 5%; width: 43%; aspect-ratio: .49; transform: rotate(-13deg) translateZ(-20px); opacity: .68; }
.phone-back img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.6); }
.float-note {
  position: absolute;
  z-index: 4;
  padding: 15px 18px;
  color: #17221e;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 14px;
  background: rgba(231,240,235,.9);
  box-shadow: 0 15px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(15px);
  transform: translateZ(60px);
}
.note-time { top: 22%; right: 1%; display: grid; gap: 5px; }
.note-time span { font-size: 9px; letter-spacing: .14em; }
.note-time b { font-size: 14px; }
.note-calm { bottom: 19%; left: 0; color: #eaf2ed; background: rgba(26,50,42,.86); font-size: 13px; }

.product-animal {
  min-height: 120vh;
  color: #f4f1ff;
  background: #060816;
}
.product-animal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 40%, rgba(13,196,255,.15), transparent 28%),
    radial-gradient(circle at 75% 55%, rgba(179,52,255,.16), transparent 30%);
}
.animal-noise {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
}
.product-animal .product-title em {
  color: transparent;
  background: linear-gradient(90deg, #37d7ff, #a87bff, #fd4dd8);
  -webkit-background-clip: text;
  background-clip: text;
}
.product-animal .product-index { color: #52d7ff; }
.product-animal .product-description { color: #a7aabd; }
.animal-visual {
  min-height: min(70vh, 700px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: clamp(22px, 3vw, 45px);
  background: #0b0f20;
  box-shadow: 0 40px 100px rgba(0,0,0,.42);
  overflow: hidden;
}
.animal-scene { width: 100%; height: 100%; min-height: min(70vh, 700px); object-fit: cover; }
.animal-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,5,15,.78), transparent 44%), linear-gradient(90deg, rgba(4,5,15,.25), transparent);
}
.scan-line {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 46%;
  width: 1px;
  background: rgba(95,227,255,.8);
  box-shadow: 0 0 30px 6px rgba(42,214,255,.46);
  animation: scan 5s ease-in-out infinite alternate;
}
@keyframes scan { to { transform: translateX(90px); } }
.animal-lens {
  position: absolute;
  z-index: 3;
  top: 9%;
  right: 8%;
  width: 115px;
  height: 115px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(255,255,255,.04);
}
.animal-lens::before, .animal-lens::after, .animal-lens i {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(102,227,255,.55);
}
.animal-lens::before { width: 63%; height: 63%; }
.animal-lens::after { width: 30%; height: 30%; background: rgba(154,65,255,.3); }
.animal-lens i { width: 7px; height: 7px; background: white; box-shadow: 0 0 18px 5px #5feaff; }
.profile-chips { position: absolute; z-index: 4; bottom: 30px; left: 30px; display: flex; gap: 8px; }
.profile-chips span {
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px;
  background: rgba(6,8,22,.42);
  backdrop-filter: blur(12px);
  font-size: 12px;
}
.profile-chips .is-active { color: #07121a; background: #64ddff; border-color: #64ddff; }
.vision-label {
  position: absolute;
  z-index: 4;
  top: 28px;
  left: 28px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-left: 2px solid #6ce5ff;
  background: rgba(5,8,21,.36);
  backdrop-filter: blur(10px);
}
.vision-label span { color: #6ce5ff; font-size: 9px; letter-spacing: .18em; }
.vision-label b { font-size: 14px; }

.product-micro {
  min-height: 120vh;
  color: #153326;
  background: #eaf2e6;
}
.product-micro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(196,238,105,.5), transparent 25%),
    radial-gradient(circle at 15% 85%, rgba(71,142,94,.17), transparent 28%);
}
.micro-lines {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(27,79,53,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,79,53,.08) 1px, transparent 1px);
  background-size: 7vw 7vw;
  mask-image: linear-gradient(135deg, black, transparent 80%);
}
.product-micro .product-title em,
.product-micro .product-index { color: #378759; }
.product-micro .product-description { color: #5d7165; }
.micro-visual {
  min-height: min(68vh, 680px);
  display: grid;
  align-items: center;
  perspective: 1200px;
}

.product-canopy {
  color: #f2f8f4;
  background: #050f0b;
  overflow: hidden;
}
.product-canopy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 27% 48%, rgba(183,240,91,.12), transparent 31%);
  pointer-events: none;
}
.canopy-grid {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(151,174,160,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(151,174,160,.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}
.product-canopy .product-title em,
.product-canopy .product-index { color: #b7f05b; }
.product-canopy .product-description { color: #97aea0; }
.product-canopy .product-tags li { border-color: #263f32; }
.product-canopy .product-link { border-color: #b7f05b; }
.canopy-visual { min-height: 720px; }
.canopy-phone {
  position: absolute;
  overflow: hidden;
  width: min(300px, 42%);
  aspect-ratio: 9/20;
  border: 1px solid #263f32;
  border-radius: 34px;
  background: #020a07;
  box-shadow: 0 34px 80px rgba(0,0,0,.46), 0 0 0 7px #07120d;
}
.canopy-phone img { width: 100%; height: 100%; object-fit: cover; }
.canopy-phone-main { z-index: 2; right: 23%; top: 7%; transform: rotate(5deg); }
.canopy-phone-back { left: 8%; bottom: 5%; transform: rotate(-9deg); opacity: .62; }
.canopy-beam {
  position: absolute;
  top: -10%;
  right: 7%;
  width: 68%;
  height: 105%;
  background: linear-gradient(to bottom, rgba(183,240,91,.2), transparent 83%);
  clip-path: polygon(43% 0,57% 0,100% 100%,0 100%);
  filter: blur(4px);
}
.canopy-reading {
  position: absolute;
  z-index: 4;
  left: 3%;
  top: 20%;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid #314b3b;
  border-radius: 16px;
  background: rgba(13,31,22,.86);
  box-shadow: 0 20px 50px rgba(0,0,0,.32);
  backdrop-filter: blur(16px);
}
.canopy-reading span { color: #97aea0; font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.canopy-reading b { font: 700 24px/1 var(--display); }
.canopy-reading small { color: #ff8b52; font-size: 10px; }
.micro-browser {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20,64,42,.18);
  border-radius: 20px;
  background: white;
  box-shadow: 0 45px 100px rgba(25,64,42,.2);
  transform: rotate(2deg) translateZ(15px);
}
.micro-browser-bar {
  height: 39px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid #e6ede8;
  background: #f8fbf8;
}
.micro-browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8dca7f;
}
.micro-browser-bar i:first-child { background: #ee9d82; }
.micro-browser-bar i:nth-child(2) { background: #e3c766; }
.micro-browser-bar span {
  width: 42%;
  margin: auto;
  padding: 6px;
  color: #829087;
  border-radius: 6px;
  background: #ecf3ee;
  font-size: 8px;
  text-align: center;
}
.micro-browser img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  object-position: top;
}
.micro-badge {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 5px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 13px;
  background: rgba(250,252,248,.88);
  box-shadow: 0 18px 45px rgba(25,64,42,.16);
  backdrop-filter: blur(14px);
}
.micro-badge span { color: #4a9a64; font-size: 8px; letter-spacing: .16em; }
.micro-badge b { font-size: 13px; }
.badge-plan { top: 16%; left: -5%; }
.badge-grow { right: -3%; bottom: 18%; }

.closing {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-content: center;
  justify-items: center;
  overflow: hidden;
  padding: 130px 22px;
  text-align: center;
  color: var(--ink);
  background: var(--acid);
}
.brand-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  min-height: 620px;
  color: var(--paper);
  background: #061735;
}
.brand-feature-visual { position: relative; min-height: 430px; overflow: hidden; }
.brand-feature-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, #061735 100%), linear-gradient(0deg, rgba(6,23,53,.28), transparent); }
.brand-feature-visual img { width: 100%; height: 100%; object-fit: cover; }
.brand-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(30px, 7vw, 105px) 80px 35px; }
.brand-feature-copy h2 { margin: 25px 0; font: 700 clamp(60px, 8vw, 120px)/.82 var(--display); letter-spacing: -.08em; }
.brand-feature-copy h2 em { color: var(--acid); font-style: normal; }
.brand-feature-copy > p:not(.eyebrow) { max-width: 400px; color: #aabbd5; line-height: 1.7; }
.brand-feature-link { display: inline-flex; align-items: center; justify-content: space-between; max-width: 350px; margin-top: 28px; padding: 14px 0; border-bottom: 1px solid var(--acid); color: var(--acid); font-weight: 700; }
.brand-feature-link b { transition: transform .2s; }
.brand-feature-link:hover b { transform: translate(4px, -4px); }
.brand-feature-meta { margin-top: 24px; color: #7590b5; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.closing::before {
  content: "";
  position: absolute;
  width: min(65vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(11,16,17,.2);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}
.closing::after {
  content: "";
  position: absolute;
  width: min(48vw, 650px);
  aspect-ratio: 1;
  border: 1px solid rgba(11,16,17,.14);
  border-radius: 50%;
}
@keyframes pulse { 50% { transform: scale(1.06); opacity: .55; } }
.closing > * { position: relative; z-index: 2; }
.closing h2 {
  margin: 38px 0 60px;
  font: 600 clamp(54px, 8.4vw, 135px)/.9 var(--display);
  letter-spacing: -.07em;
}
.closing h2 em { font-style: normal; color: #285f4f; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 18px 0;
  border-bottom: 2px solid currentColor;
  font: 600 clamp(17px, 2vw, 26px)/1 var(--display);
}
.contact-link b { transition: transform .25s; }
.contact-link:hover b { transform: translate(5px, -5px); }
.contact-address {
  margin-top: 38px;
  color: rgba(11,16,17,.68);
  font-style: normal;
  font-size: 13px;
  line-height: 1.65;
  letter-spacing: .03em;
}
.contact-address span {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  gap: 50px;
  padding: 65px clamp(22px, 6vw, 100px) 35px;
  background: #070b0d;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-brand { grid-row: span 2; }
.site-footer p { margin: 0; color: #858b89; line-height: 1.5; }
.footer-links { display: flex; gap: 25px; font-size: 13px; }
.footer-links a:hover { color: var(--acid); }
.copyright { grid-column: 2 / -1; color: #5b6260; font-size: 11px; }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.principle:nth-child(2), .product-tags { transition-delay: .1s; }
.principle:nth-child(3), .product-link { transition-delay: .2s; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { padding-top: 120px; }
  .hero-title { font-size: clamp(52px, 11vw, 100px); }
  .hero-bottom { justify-content: space-between; }
  .principles { gap: 30px; }
  .product { min-height: auto; }
  .product-growshop { min-height: auto; padding-block: clamp(90px, 10vw, 150px); }
  .product-growshop .product-shell { position: relative; top: auto; min-height: auto; padding-block: 0; }
  .product-shell, .product-shell-reverse { grid-template-columns: 1fr; }
  .product-shell-reverse .product-copy { order: 1; }
  .product-shell-reverse .product-visual { order: 2; }
  .product-copy { max-width: 720px; }
  .product-visual { width: min(760px, 100%); margin: auto; }
  .brand-feature { grid-template-columns: 1fr; }
  .brand-feature-visual { min-height: 420px; }
  .brand-feature-copy { padding: 70px 22px 90px; }
  .sirat-visual { height: 700px; }
  .growshop-stage { min-height: 720px; }
}

@media (max-width: 700px) {
  .site-header { height: 70px; padding-inline: 18px; }
  .header-cta { font-size: 12px; }
  .hero { min-height: 100svh; padding-inline: 18px; padding-bottom: 82px; }
  .hero-grid { background-size: 22vw 22vw; }
  .hero-title { font-size: clamp(45px, 13.4vw, 68px); line-height: .94; }
  .accent-line { padding-left: 0; }
  .hero-bottom { align-items: flex-end; gap: 20px; margin-top: 26px; }
  .hero-bottom p { font-size: 15px; }
  .circle-link { flex-basis: 72px; width: 72px; height: 72px; }
  .circle-link span { font-size: 8px; }
  .hero-marquee span { padding-inline: 18px; }
  .manifesto { padding-inline: 20px; }
  .manifesto-text { font-size: clamp(32px, 9.5vw, 52px); }
  .principles { grid-template-columns: 1fr; }
  .principle { display: grid; grid-template-columns: 35px 1fr; }
  .principle h2 { margin: 0 0 10px; }
  .principle p { grid-column: 2; }
  .products-intro { padding-inline: 20px; }
  .products-heading { display: block; }
  .products-heading h2 { font-size: clamp(44px, 13vw, 70px); }
  .products-heading > p { margin-top: 28px; }
  .product { padding: 100px 20px; }
  .product-shell { gap: 60px; }
  .product-title { font-size: clamp(43px, 12vw, 64px); }
  .growshop-stage { min-height: 470px; }
  .growshot-main { width: 96%; }
  .growshot-map { left: -8%; width: 63%; }
  .growshot-stores { right: -8%; width: 64%; }
  .browser-bar { height: 28px; padding-inline: 8px; }
  .growshot-main img { height: calc(100% - 28px); }
  .browser-address { min-width: 105px; padding: 4px 10px; }
  .growshop-stat { padding: 10px 12px; }
  .growshop-stat b { font-size: 11px; }
  .stat-categories, .scroll-cue { display: none; }
  .sirat-visual { height: 570px; }
  .phone-main { height: 86%; }
  .phone-back { left: -4%; width: 47%; }
  .note-time { right: -4%; }
  .note-calm { left: -2%; }
  .animal-visual, .animal-scene { min-height: 510px; }
  .animal-scene { object-position: 63% center; }
  .animal-lens { width: 85px; height: 85px; }
  .profile-chips span { display: none; }
  .profile-chips .is-active { display: inline-block; }
  .micro-visual { min-height: 460px; }
  .canopy-visual { min-height: 580px; }
  .canopy-phone { width: min(250px, 46%); }
  .micro-badge { display: none; }
  .closing h2 { font-size: clamp(49px, 15vw, 78px); }
  .closing::before { width: 110vw; }
  .closing::after { width: 83vw; }
  .contact-link { gap: 16px; font-size: 16px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand, .copyright { grid-column: auto; grid-row: auto; }
  .footer-links { flex-wrap: wrap; }
}

@media (pointer: coarse) {
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .title-line > span, .reveal { opacity: 1; transform: none; }
}
