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

:root {
  --green: #2d6a3f;
  --green-dark: #1a3d28;
  --green-deep: #0f2618;
  --green-mid: #3d8b55;
  --green-bright: #5cb86a;
  --green-light: #e6f4ea;
  --cream: #f4f4f2;
  --dark: #1c1e1d;
  --text: #292b2a;
  --text-muted: #6b7a6e;
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: "Quicksand", system-ui, sans-serif;
  --font-body: "Muli", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

.page-content {
  position: relative;
  z-index: 2;
}

.page-content > * {
  position: relative;
}

body.policy-body {
  background: var(--cream);
}

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

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

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s;
}

.nav.scrolled .nav-links a {
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  transition: background 0.25s, transform 0.25s !important;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: background 0.3s;
}

.nav.scrolled .nav-toggle span {
  background: var(--text);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) clamp(1.25rem, 4vw, 3rem) 4rem;
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-dark) 45%, var(--green) 100%);
  color: var(--white);
  overflow: hidden;
  perspective: 1400px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform-style: preserve-3d;
}

.hero-grid-3d {
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: rotateX(65deg) translateZ(-200px);
  opacity: 0.5;
}

.hero-leaf {
  position: absolute;
  opacity: 0.08;
  color: var(--green-bright);
  will-change: transform;
}

.hero-leaf--1 { width: 180px; top: 12%; left: 5%; }
.hero-leaf--2 { width: 120px; top: 60%; right: 8%; }
.hero-leaf--3 { width: 90px; bottom: 18%; left: 15%; }
.hero-leaf--4 { width: 140px; top: 20%; right: 12%; }

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 184, 106, 0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1180px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: left;
  max-width: 560px;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-3d-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  perspective: 1200px;
}

.scene-3d {
  position: relative;
  width: 340px;
  height: 480px;
  transform-style: preserve-3d;
  will-change: transform;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(92, 184, 106, 0.15);
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: orbitSpin 20s linear infinite;
}

.orbit-ring--1 {
  width: 380px;
  height: 380px;
  margin: -190px 0 0 -190px;
  transform: rotateX(70deg);
}

.orbit-ring--2 {
  width: 440px;
  height: 440px;
  margin: -220px 0 0 -220px;
  transform: rotateX(70deg);
  animation-direction: reverse;
  animation-duration: 28s;
  opacity: 0.5;
}

@keyframes orbitSpin {
  from { transform: rotateX(70deg) rotateZ(0deg); }
  to { transform: rotateX(70deg) rotateZ(360deg); }
}

/* ── 3D Phone ── */
.phone-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(-18deg) rotateX(8deg);
  transform-style: preserve-3d;
}

.phone-3d__frame {
  width: 240px;
  height: 490px;
  background: linear-gradient(145deg, #2a2a2a 0%, #111 50%, #1a1a1a 100%);
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    -20px 30px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  position: relative;
}

.phone-3d__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.phone-3d__notch {
  width: 90px;
  height: 24px;
  background: #111;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 6px;
  position: relative;
  z-index: 2;
}

.phone-3d__screen {
  background: var(--cream);
  border-radius: 30px;
  height: calc(100% - 30px);
  overflow: hidden;
  transform: translateZ(2px);
}

.phone-3d__shadow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 200px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.4) 0%, transparent 70%);
  transform: translateX(-50%) rotateX(90deg) translateZ(-20px);
  filter: blur(8px);
}

.phone-ui {
  padding: 1rem 0.85rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.phone-ui__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.phone-ui__header img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.phone-ui__header span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-dark);
}

.phone-ui__hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 14px;
  padding: 1rem;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.phone-ui__hero p {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 0.2rem;
}

.phone-ui__hero h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
}

.phone-ui__products {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phone-ui__product {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border-radius: 10px;
  padding: 0.6rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.phone-ui__dot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
}

.phone-ui__dot--sativa { background: linear-gradient(135deg, #5cb86a, #3d8b55); }
.phone-ui__dot--indica { background: linear-gradient(135deg, #2d6a3f, #1a3d28); }
.phone-ui__dot--hybrid { background: linear-gradient(135deg, #7ec88a, #2d6a3f); }

.phone-ui__product strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  color: var(--green-dark);
}

.phone-ui__product span {
  font-size: 0.5625rem;
  color: var(--text-muted);
}

.phone-ui__cta {
  margin-top: 0.75rem;
  background: var(--green);
  color: var(--white);
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.65rem;
  border-radius: 100px;
}

/* ── Floating 3D cards in hero ── */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 0.65rem 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transform-style: preserve-3d;
  animation: cardBob 4s ease-in-out infinite;
}

.float-card__label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.float-card strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
}

.float-card strong small {
  font-size: 0.625rem;
  font-weight: 500;
}

.float-card--thc {
  top: 8%;
  right: -10%;
  animation-delay: 0s;
}

.float-card--cbd {
  bottom: 22%;
  left: -18%;
  animation-delay: -1.5s;
}

.float-card--price {
  top: 42%;
  right: -22%;
  animation-delay: -0.8s;
}

@keyframes cardBob {
  0%, 100% { transform: translateZ(var(--z, 60px)) translateY(0); }
  50% { transform: translateZ(var(--z, 60px)) translateY(-10px); }
}

.float-leaf-3d {
  position: absolute;
  color: var(--green-bright);
  opacity: 0.2;
  transform-style: preserve-3d;
  animation: leafSpin3d 12s ease-in-out infinite;
}

.float-leaf-3d--1 { width: 50px; top: 5%; left: 0; }
.float-leaf-3d--2 { width: 36px; bottom: 10%; right: 5%; animation-delay: -4s; }

@keyframes leafSpin3d {
  0%, 100% { transform: translateZ(40px) rotateY(0deg) rotateZ(0deg); }
  50% { transform: translateZ(80px) rotateY(180deg) rotateZ(20deg); }
}

/* ── Showcase 3D section ── */
.showcase-3d {
  padding: clamp(5rem, 12vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--cream);
  overflow: hidden;
}

.showcase-3d__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.showcase-3d__scene {
  position: relative;
  height: 420px;
  perspective: 1000px;
  transform-style: preserve-3d;
  cursor: grab;
}

.showcase-3d__scene:active {
  cursor: grabbing;
}

.showcase-card {
  position: absolute;
  width: 200px;
  height: 280px;
  left: 50%;
  top: 50%;
  margin: -140px 0 0 -100px;
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
}

.showcase-card__inner {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.showcase-card--back .showcase-card__inner {
  background: linear-gradient(160deg, #3d8b55, #1a3d28);
  color: var(--white);
  transform: rotateY(25deg) translateZ(-80px) translateX(-60px);
}

.showcase-card--mid .showcase-card__inner {
  background: linear-gradient(160deg, var(--green-bright), var(--green));
  color: var(--white);
  transform: translateZ(20px);
  box-shadow: 0 32px 80px rgba(45, 106, 63, 0.35);
}

.showcase-card--front .showcase-card__inner {
  background: linear-gradient(160deg, #e6f4ea, var(--white));
  color: var(--green-dark);
  transform: rotateY(-25deg) translateZ(60px) translateX(60px);
  border: 1px solid rgba(45, 106, 63, 0.1);
}

.showcase-card__inner--featured img {
  width: 48px;
  border-radius: 8px;
  margin-bottom: auto;
}

.showcase-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0.5rem 0;
}

.showcase-tag {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
}

.showcase-meta {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.showcase-meta span {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.showcase-card--front .showcase-meta span {
  background: rgba(45, 106, 63, 0.1);
  color: var(--green);
}

.showcase-3d__copy {
  position: relative;
  z-index: 2;
}

/* ── Tilt glare overlay ── */
[data-tilt-glare] {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.tilt-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}

[data-tilt]:hover .tilt-glare,
[data-tilt].tilt-active .tilt-glare {
  opacity: 1;
}

/* ── CTA 3D background ── */
.cta-3d-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.cta-float {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.cta-float--1 {
  width: 300px;
  height: 300px;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(92, 184, 106, 0.15) 0%, transparent 70%);
}

.cta-float--2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 5%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.cta-float--3 {
  width: 120px;
  height: 120px;
  top: 40%;
  left: 30%;
  border: 1px solid rgba(92, 184, 106, 0.2);
  animation: ctaOrbit 15s linear infinite;
}

.cta-float--4 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 12%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle, rgba(92, 184, 106, 0.08) 0%, transparent 70%);
  animation: ctaOrbit 22s linear infinite reverse;
}

.cta-float--5 {
  width: 160px;
  height: 160px;
  bottom: 5%;
  right: 10%;
  border: 1px solid rgba(92, 184, 106, 0.15);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 65%);
  animation: ctaPulse 8s ease-in-out infinite;
}

.cta-float--6 {
  width: 90px;
  height: 90px;
  top: 22%;
  right: 8%;
  transform-origin: -45px center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle, rgba(92, 184, 106, 0.07) 0%, transparent 70%);
  animation: ctaOrbitRight 20s linear infinite;
}

.cta-float--7 {
  width: 56px;
  height: 56px;
  bottom: 30%;
  right: 14%;
  transform-origin: -55px center;
  border: 1px solid rgba(92, 184, 106, 0.28);
  background: radial-gradient(circle, rgba(92, 184, 106, 0.1) 0%, transparent 70%);
  animation: ctaOrbitRight 13s linear infinite reverse;
}

@keyframes ctaOrbitRight {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes ctaOrbit {
  from { transform: rotate(0deg) translateX(80px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--green-bright);
}

.hero-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--green-bright);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--green-bright);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 0 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bob 2.5s ease-in-out infinite;
}

.scroll-cue svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Pillars strip ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pillar {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
}

.pillar:last-child {
  border-right: none;
}

.pillar:hover {
  background: var(--green-light);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--green);
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.35rem;
}

.pillar p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Sections ── */
.section {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

/* ── About grid ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.about-card img {
  width: 200px;
  margin: 0 auto 1.5rem;
  filter: brightness(1.1);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.about-card p {
  text-align: center;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Features ── */
.features {
  background: var(--white);
}

.features-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.features-header .section-desc {
  margin: 0 auto;
}

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

.feature-card {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  background: var(--white);
}

.feature-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Coming soon CTA ── */
.cta-section {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 100%, rgba(92, 184, 106, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 0%, rgba(92, 184, 106, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section .section-inner {
  position: relative;
  z-index: 1;
}

.cta-section .section-title {
  color: var(--white);
}

.cta-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 2rem;
}

.cta-section .btn-primary {
  background: var(--green-bright);
  color: var(--green-deep);
}

.cta-section .btn-primary:hover {
  background: var(--white);
}

/* ── Contact ── */
.contact-section {
  text-align: center;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--green);
  margin-top: 1.5rem;
  transition: color 0.25s;
}

.contact-email:hover {
  color: var(--green-dark);
}

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand img {
  height: 36px;
  opacity: 0.85;
  filter: brightness(1.2);
}

.footer-copy {
  font-size: 0.8125rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--green-bright);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Privacy policy page ── */
.policy-main {
  padding: calc(var(--nav-h) + 3rem) clamp(1.5rem, 4vw, 3rem) 4rem;
  min-height: 100vh;
}

.policy-page {
  max-width: 760px;
  margin: 0 auto;
}

.policy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.04);
}

.policy-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.policy-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.policy-page h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 2rem 0 0.75rem;
}

.policy-page h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  margin: 1.25rem 0 0.5rem;
}

.policy-page p {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: var(--text);
}

.policy-page ul {
  margin: 0 0 1rem 1.5rem;
}

.policy-page li {
  margin-bottom: 0.4rem;
  font-size: 0.9375rem;
}

.policy-page a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-page a:hover {
  color: var(--green-dark);
}

.policy-page em {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2rem;
  transition: color 0.25s;
}

.back-link:hover {
  color: var(--green-dark);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-3d-wrap {
    min-height: 380px;
    order: -1;
  }

  .scene-3d {
    transform: scale(0.85);
  }

  .showcase-3d__inner {
    grid-template-columns: 1fr;
  }

  .showcase-3d__scene {
    height: 360px;
    order: -1;
  }

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

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

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

  .pillar {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .pillar:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    color: var(--text) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scene-3d,
  .float-card,
  .orbit-ring,
  .cta-float--3,
  .cta-float--4,
  .cta-float--6,
  .cta-float--7 {
    animation: none !important;
  }
}
