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

:root {
  --bg: #050f08;
  --bg-card: #0d1510;
  --bg-card-hover: #111c16;
  --border: #1a2e22;
  --border-light: #243a2c;
  --green: #58814D;
  --green-dim: #4a6e40;
  --green-glow: rgba(88, 129, 77, 0.25);
  --green-glow-strong: rgba(88, 129, 77, 0.50);
  --green-border: rgba(88, 129, 77, 0.65);
  --green-dark: #2a3d22;
  --green-sphere: #1a2d14;
  --teal: #58814D;
  --cyan: #58814D;
  --card-bg: #0d1510;
  --card-border: #1a2e22;
  --text: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-muted: #7a9a88;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s, color 0.3s;
}

.btn-primary {
  background: var(--green);
  color: #000;
}

.btn-primary:hover {
  background: var(--green-dim);
  box-shadow: 0 0 30px var(--green-glow-strong);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-outline.btn-green {
  border-color: var(--green);
  color: var(--green);
}

.btn-outline.btn-green:hover {
  background: var(--green-glow);
}

.btn-full {
  width: 100%;
}


/* ── HEADER ── */
.header {
  position: relative;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 0;
}

.header-outer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 8px 16px;
  background: #0a0f0b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  gap: 16px;
}

/* ── LOGO ── */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-wordmark {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1;
}

.logo-wordmark span {
  color: #58814D;
}

.logo-sub {
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Green underline on logo */
.logo-underline {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #58814D, transparent);
  margin-top: 2px;
  border-radius: 2px;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

/* ── CTA BUTTON ── */
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  padding: 0 18px;
  border-radius: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #050505;
  background: linear-gradient(100deg, #00BAB7 0%, #7BEB6A 55%, #A2F98C 100%);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
  transition: filter 0.2s, box-shadow 0.2s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  /* Glossy top sheen */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-header-cta:hover {
  filter: brightness(1.06);
  box-shadow: 0 0 20px rgba(0,186,183,0.45), inset 0 1px 0 rgba(255,255,255,0.35);
}

/* Sparkle icon */
.sparkle-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── MOBILE BUTTON ── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: flex; }
}


/* ── HERO ── */

.hero {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 65% at 50% 52%,
      rgba(30, 80, 20, 0.85) 0%,
      rgba(10, 40, 8, 0.7)   30%,
      rgba(2, 12, 2, 0.5)    55%,
      transparent 75%),
    #000;
}

/* ── RINGS CANVAS (SVG) ── */
.hero-rings-svg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  width: 1200px;
  height: 1200px;
  overflow: visible;
}

/* Ring circles — static dashed */
.ring-circle {
  fill: none;
  stroke: rgba(100, 160, 80, 0.13);
  stroke-width: 1;
  stroke-dasharray: 6 10;
}

/* Rotating group for each ring's dot+line */
.ring-dot-group {
  transform-origin: 600px 600px;
}
.ring-dot-group:nth-child(1) { animation: spin1 18s linear infinite; }
.ring-dot-group:nth-child(2) { animation: spin2 28s linear infinite; }
.ring-dot-group:nth-child(3) { animation: spin3 40s linear infinite reverse; }
.ring-dot-group:nth-child(4) { animation: spin4 55s linear infinite; }

@keyframes spin1 { from { transform: rotate(0deg);   } to { transform: rotate(360deg); } }
@keyframes spin2 { from { transform: rotate(0deg);   } to { transform: rotate(360deg); } }
@keyframes spin3 { from { transform: rotate(0deg);   } to { transform: rotate(360deg); } }
@keyframes spin4 { from { transform: rotate(0deg);   } to { transform: rotate(360deg); } }

/* The glowing dot on each ring */
.ring-dot {
  fill: #58814D;
  filter: drop-shadow(0 0 4px #58814D) drop-shadow(0 0 10px rgba(100,200,50,0.6));
}

/* Short arc/line trailing the dot */
.ring-trail {
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke: rgba(120, 200, 70, 0.5);
}

/* ── SPHERE ── */
.hero-sphere {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -54%);
  width: 420px; height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle at 50% 62%,
    #1a4510 0%, #122e0b 30%, #0a1e07 60%, #050e04 85%, #020602 100%);
  box-shadow:
    0 0 120px 40px rgba(60, 140, 30, 0.55),
    0 0 240px 80px rgba(40, 110, 15, 0.30),
    0 0 400px 120px rgba(20, 70, 8, 0.15),
    0 -60px 120px 0 rgba(160, 255, 80, 0.45),
    0 -30px 80px  0 rgba(120, 230, 50, 0.35);
}
.hero-sphere::before {
  content: '';
  position: absolute;
  top: -10%; left: 15%;
  width: 70%; height: 55%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(200, 255, 100, 0.55) 0%,
    rgba(140, 230, 60,  0.30) 35%,
    rgba(80,  180, 20,  0.10) 65%,
    transparent 85%);
  filter: blur(14px);
}
.hero-sphere::after {
  content: '';
  position: absolute;
  top: 4%; left: 18%;
  width: 64%; height: 38%;
  border-radius: 50%;
  background: radial-gradient(ellipse,
    rgba(220, 255, 160, 0.18) 0%,
    rgba(160, 230, 80, 0.06)  55%,
    transparent 80%);
  filter: blur(8px);
}

/* ── CONTENT ── */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  gap: 20px;
  max-width: 860px;
}
.hero-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(3.4rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: #fff;
  margin: 0;
  text-shadow: 0 0 80px rgba(80,160,30,0.25), 0 2px 20px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  line-height: 1.65;
  font-weight: 400;
  margin: 0;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 34px;
  background: #fff;
  color: #080808;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  background: #f2f2f2;
}
.hero-socials { display: flex; gap: 10px; margin-top: 4px; }
.hero-social-link {
  width: 35px; height: 35px;
  padding: 3px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%,
    rgba(80,130,50,0.45) 0%, rgba(40,80,20,0.55) 60%, rgba(20,50,10,0.65) 100%);
  border: 1px solid rgba(100,170,60,0.40);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: #58814D;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hero-social-link:hover {
  background: radial-gradient(circle at 38% 32%,
    rgba(90,150,55,0.55) 0%, rgba(50,100,25,0.65) 60%, rgba(25,60,12,0.75) 100%);
  border-color: rgba(120,200,70,0.65);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(60,130,20,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
}

/* Crystal */
.crystal {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #1a3514 0%, #58814D 40%, #2a4020 70%, #0a1507 100%);
  clip-path: polygon(50% 0%, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0% 50%, 15% 15%);
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 80px var(--green-glow-strong);
  position: relative;
}

.crystal::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: linear-gradient(135deg, rgba(88, 129, 77, 0.1), rgba(0,77,46,0.3));
  clip-path: polygon(50% 0%, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0% 50%, 15% 15%);
}

.crystal-blue {
  background: linear-gradient(135deg, #0a2d3d, #00b4e8 40%, #002d4e 70%, #001020 100%);
  box-shadow: 0 0 80px rgba(88, 129, 77, 0.3);
  width: 250px;
  height: 250px;
}

.crystal-small {
  width: 120px;
  height: 120px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

/* ── STATS SECTION ── */
.stats {
  padding: 80px 0 90px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-highlight {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.stats-number {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, #58814D 0%, #4a7040 50%, #2e5020 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.stats-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 400;
}

.trusted-label {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* FIXED: was var(--card-bg) / var(--card-border) which were undefined */
.logo-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.logo-card:hover {
  border-color: rgba(255,255,255,0.16);
  background: #161616;
}

.logo-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.2px;
}

.logo-card.text-logo {
  justify-content: center;
}
.logo-card.text-logo .logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1px;
}

@media (max-width: 700px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-highlight { gap: 16px; }
  .stats-divider { display: none; }
}


/* ── SECTION ── */
.protocol {
  position: relative;
  padding: 110px 0 0;
  text-align: center;
  overflow: hidden;
  /* Deep teal background — matches reference exactly */
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%,
      #003838 0%,
      #001e22 30%,
      #000e10 60%,
      #000608 85%,
      #000000 100%);
}

/* ── STARS ── */
.protocol-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50%       { opacity: 0.85; transform: scale(1.5); }
}

/* ── INNER ── */
.protocol-inner {
  position: relative;
  z-index: 1;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── HEADING ── */
.protocol h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin: 0 0 24px;
  color: #fff;
}

.protocol-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin: 0 auto 36px;
  max-width: 480px;
  line-height: 1.7;
}

/* ── BUTTON ── */
.protocol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 38px;
  background: #fff;
  color: #000;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 80px;
  box-shadow: 0 4px 24px rgba(255,255,255,0.1);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.protocol-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.18);
}

/* ── CARDS GRID ── */
.protocol-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.protocol-card {
  /* Slightly lighter dark teal card bg */
  background: linear-gradient(175deg,
    rgba(0, 40, 40, 0.75) 0%,
    rgba(0, 25, 28, 0.85) 50%,
    rgba(0, 12, 14, 0.95) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 44px 36px 48px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

/* Rounded outer corners only */
.protocol-card:first-child { border-radius: 20px 0 0 0; }
.protocol-card:last-child  { border-radius: 0 20px 0 0; }
.protocol-card:not(:first-child) { border-left: none; }

/* Subtle top-left green ambient per card */
.protocol-card::before {
  content: '';
  position: absolute;
  top: -30px; left: -30px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(0, 180, 120, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.protocol-card:hover {
  border-color: rgba(0, 200, 150, 0.18);
  z-index: 2;
}

/* ── ICON BADGE ── */
.protocol-icon-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin-bottom: 64px;
}

/* Outer soft glow ring */
.protocol-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 34px;
  background: radial-gradient(circle,
    rgba(0, 200, 120, 0.10) 0%, transparent 70%);
}

.protocol-icon-badge {
  width: 110px;
  height: 110px;
  border-radius: 26px;
  /* Dark green badge — matches reference */
  background: linear-gradient(145deg,
    #0d2e1a 0%,
    #091f12 45%,
    #040f09 100%);
  border: 1px solid rgba(0, 200, 120, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4cdf90;
  box-shadow:
    0 0 28px rgba(0, 200, 120, 0.14),
    0 8px 32px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.07);
  position: relative;
}

.protocol-icon-badge svg {
  width: 38px;
  height: 38px;
  color: #4cdf90;
}

/* ── CARD TEXT ── */
.protocol-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: -0.2px;
}

.protocol-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .protocol-cards { grid-template-columns: 1fr; }
  .protocol-card:first-child { border-radius: 20px 20px 0 0; }
  .protocol-card:last-child  { border-radius: 0 0 20px 20px; }
  .protocol-card:not(:first-child) {
    border-left: 1px solid rgba(255,255,255,0.08);
    border-top: none;
  }
}
/* ── DESCRIBE TASKS ── */
.describe-tasks {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #080808;
}

.tag-grid {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  padding: 20px 0;
}

.tag-row {
  display: flex;
  gap: 12px;
  white-space: nowrap;
  animation: scroll-left linear infinite;
}
.tag-row:nth-child(even) { animation-name: scroll-right; }
.tag-row:nth-child(1)  { animation-duration: 38s; }
.tag-row:nth-child(2)  { animation-duration: 44s; }
.tag-row:nth-child(3)  { animation-duration: 36s; }
.tag-row:nth-child(4)  { animation-duration: 50s; }
.tag-row:nth-child(5)  { animation-duration: 40s; }
.tag-row:nth-child(6)  { animation-duration: 46s; }
.tag-row:nth-child(7)  { animation-duration: 34s; }
.tag-row:nth-child(8)  { animation-duration: 48s; }

@keyframes scroll-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.tag-grid::before,
.tag-grid::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 220px;
  z-index: 1;
  pointer-events: none;
}
.tag-grid::before { left: 0;  background: linear-gradient(to right, #080808 0%, transparent 100%); }
.tag-grid::after  { right: 0; background: linear-gradient(to left,  #080808 0%, transparent 100%); }

/* FIXED: was rgba(88, 129, 77, ...) — now green */
.center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(88, 129, 77, 0.25) 0%,
    rgba(88, 129, 77, 0.08) 35%,
    transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.describe-tasks-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* FIXED: border/glow was rgba(88, 129, 77, ...) — now green */
.describe-icon-badge {
  width: 100px;
  height: 100px;
  border-radius: 26px;
  background: linear-gradient(145deg, #2d5c24 0%, #1a3514 50%, #0e1e0a 100%);
  border: 1px solid rgba(88, 129, 77, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 32px;
  box-shadow:
    0 0 30px rgba(88, 129, 77, 0.2),
    0 0 80px rgba(88, 129, 77, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
}
.describe-icon-badge::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 34px;
  background: radial-gradient(circle, rgba(88, 129, 77, 0.12) 0%, transparent 70%);
}
.describe-icon-badge svg {
  width: 44px;
  height: 44px;
  position: relative;
}

.describe-tasks-inner h2 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: #fff;
  margin: 0 0 32px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

/* FIXED: was solid #58814D */
.describe-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 44px;
  background: var(--green);
  color: #000;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 32px rgba(88, 129, 77, 0.3);
}
.describe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(88, 129, 77, 0.45);
  filter: brightness(1.08);
}

/* ── DESIGNED ── */
.designed {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* FIXED: was rgba(50, 80, 40, ...) teal — now green */
.designed::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 129, 77, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.designed-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.designed-text { flex: 1; }

.designed-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 16px;
  color: #fff;
}

/* FIXED: was var(--cyan) which was undefined — now green */
.ai-highlight {
  color: var(--green);
  font-style: normal;
}

.designed-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}

.designed-visual {
  flex-shrink: 0;
  padding-top: 8px;
}

.crystal-wire {
  width: 100px;
  height: 100px;
  opacity: 0.7;
  animation: crystal-rotate 12s linear infinite;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* FIXED: was var(--card-bg) which was undefined */
.feature-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  overflow: hidden;
  transition: border-color 0.25s;
}

/* FIXED: was rgba(88, 129, 77, ...) — now green */
.feature-card::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 129, 77, 0.12) 0%, transparent 65%);
  transition: opacity 0.3s;
}

/* FIXED: was rgba(88, 129, 77, ...) — now green */
.feature-card:hover {
  border-color: rgba(88, 129, 77, 0.2);
}
.feature-card:hover::before { opacity: 1.5; }

.feature-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.feature-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 360px;
  margin: 0;
}

.feature-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  margin-top: 2px;
}
.feature-arrow:hover {
  transform: scale(1.1);
  background: #6fa05e;
}
.feature-arrow svg {
  width: 16px;
  height: 16px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.3px;
  color: #fff;
  position: relative;
  z-index: 1;
}

@media (max-width: 700px) {
  .feature-grid { grid-template-columns: 1fr; }
  .designed-top { flex-direction: column-reverse; }
}

/* ── PRICING ── */
.pricing {
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* FIXED: was rgba(88, 129, 77, ...) bright green-teal — now softer green */
.pricing::before {
  content: ''; position: absolute; top: -120px; left: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 129, 77, 0.15) 0%, rgba(88, 129, 77, 0.05) 45%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.pricing::after {
  content: ''; position: absolute; bottom: -120px; right: -80px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 129, 77, 0.12) 0%, rgba(88, 129, 77, 0.04) 45%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.pricing-inner { position: relative; z-index: 1; }

.pricing h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px; margin: 0 0 16px;
}
.pricing .section-sub {
  font-size: 0.88rem; color: var(--text-secondary);
  max-width: 480px; margin: 0 auto 32px; line-height: 1.7;
}

.billing-toggle {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; padding: 4px; gap: 2px;
  margin-bottom: 48px;
}
.toggle-btn {
  padding: 8px 24px;
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: background 0.2s, color 0.2s;
  background: transparent; color: var(--text-muted);
}
.toggle-btn.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; text-align: left;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(88, 129, 77, 0.06), inset 0 0 30px rgba(88, 129, 77, 0.03);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.pricing-card:hover {
  box-shadow: 0 0 40px rgba(88, 129, 77, 0.14), inset 0 0 30px rgba(88, 129, 77, 0.05);
}

.plan-name {
  font-size: 1.3rem; font-weight: 800;
  color: var(--green); margin: 0 0 10px;
  display: block;
}

.plan-desc {
  font-size: 0.8rem; color: var(--text-muted);
  line-height: 1.55; margin: 0 0 20px;
}

.plan-price {
  display: flex; align-items: baseline;
  gap: 6px; margin-bottom: 28px; flex-wrap: wrap;
}
.price {
  font-size: 2.6rem; font-weight: 900;
  letter-spacing: -2px; line-height: 1;
}
.period { font-size: 0.82rem; color: var(--text-muted); }
.plan-discount {
  background: var(--green);
  color: #000;
  font-size: 0.68rem; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
  letter-spacing: 0.2px; align-self: center;
}

.plan-features-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  display: block;
}

.plan-features {
  list-style: none; padding: 0; margin: 0 0 28px;
}
.plan-features li {
  padding: 8px 0;
  font-size: 0.82rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.plan-features li:last-child { border-bottom: none; }

.plan-features li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center/10px;
}

.btn-subscribe {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; width: 100%; padding: 13px;
  background: linear-gradient(100deg, #00BAB7 0%, #7BEB6A 55%, #A2F98C 100%);
  font-family: 'Sora', sans-serif; font-size: 0.88rem; font-weight: 700;
  border-radius: 10px; text-decoration: none;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  color: #050505;
}


@media(max-width: 768px) { .pricing-cards { grid-template-columns: 1fr; } }

/* ── WHY MULTI ── */
.why-multi {
  padding: 120px 0;
  text-align: center;
}

.why-multi h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -2.5px;
  margin: 0 0 16px;
}

.why-multi .section-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 auto 56px;
  line-height: 1.7;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}

.comparison-card {
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #0f1a0a 0%, #0f1f0a 40%, #0a1507 70%, #060f04 100%);
}

.comparison-card-text { padding: 28px 28px 20px; }

.comparison-label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  display: block;
}

.comparison-tags {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1px;
}

/* FIXED: was rgba(50, 90, 40, ...) teal — now green */
.comparison-visual {
  flex: 1;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 80% 60% at 50% 90%,
    rgba(88, 129, 77, 0.18) 0%,
    rgba(88, 129, 77, 0.06) 50%,
    transparent 75%);
}

.object-img {
  width: 65%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
}

.object-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

@media(max-width: 768px) {
  .comparison { grid-template-columns: 1fr; }
  .why-multi h2 { letter-spacing: -1.5px; }
}


/* ROADMAP */

.roadmap {
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 88% 50%,
      rgba(0, 55, 50, 0.5) 0%,
      rgba(0, 25, 22, 0.2) 55%,
      transparent 75%),
    #060a08;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.roadmap h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  text-align: center;
  margin: 0 0 72px;
  letter-spacing: -2px;
  color: #fff;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  /* Space: [date area 160px] [gap 24px] [line 2px] [gap 24px] [image 130px] [gap 32px] [content] */
  padding-left: 372px; /* 160 + 24 + 2 + 24 + 130 + 32 */
}

/* Dashed teal vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 186px; /* after date+gap */
  top: 0;
  bottom: 44px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #00BAB7 0px, #00BAB7 8px,
    transparent 8px, transparent 16px
  );
  opacity: 0.75;
}

/* Downward arrow at bottom of line */
.timeline::after {
  content: '';
  position: absolute;
  left: 179px;
  bottom: 28px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 14px solid #00BAB7;
  opacity: 0.8;
}

/* ── TIMELINE ITEM ── */
.timeline-item {
  position: relative;
  padding: 0 0 80px 0;
  min-height: 100px;
}
.timeline-item:last-child { padding-bottom: 0; }

/* Right-pointing triangle connector */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 6px;
  width: 0; height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #00BAB7;
  opacity: 0.8;
}

/* ── DATE — left of line ── */
.timeline-date {
  position: absolute;
  right: calc(100% + 230px); /* sits left of line */
  top: 0;
  width: 160px;
  text-align: right;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  padding-top: 2px;

  /* scroll animation */
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ── IMAGE SLOT — between line and content ── */
.timeline-image {
  position: absolute;
  left: -162px; /* sits between line and content */
  top: 0;
  width: 130px;
  height: 130px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 186, 183, 0.3);
  box-shadow:
    0 0 24px rgba(0, 186, 183, 0.2),
    0 8px 32px rgba(0,0,0,0.55);

  /* scroll animation */
  opacity: 0;
  transform: translateY(24px) scale(0.95);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder globe */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #091f1e 0%, #0d3836 45%, #051414 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder svg {
  width: 54px;
  height: 54px;
}

/* ── CONTENT ── */
.timeline-content {
  /* scroll animation */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.2px;
}

.timeline-content ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline-content li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ── VISIBLE STATE ── */
.timeline-item.visible .timeline-date,
.timeline-item.visible .timeline-image,
.timeline-item.visible .timeline-content {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.timeline-item.visible .timeline-date    { transition-delay: 0s; }
.timeline-item.visible .timeline-image   { transition-delay: 0.1s; }
.timeline-item.visible .timeline-content { transition-delay: 0.18s; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .timeline { padding-left: 24px; }
  .timeline::before { left: 0; }
  .timeline::after  { left: -8px; }
  .timeline-item::before { left: -8px; }
  .timeline-date {
    position: static;
    text-align: left;
    margin-bottom: 8px;
    width: auto;
    right: auto;
    transform: translateX(0);
  }
  .timeline-item.visible .timeline-date { transform: none; }
  .timeline-image { display: none; }
}
/* ── FAQ ── */
.faq {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* FIXED: was rgba(0,140,70,...) overly bright — now green toned down */
.faq::before {
  content: '';
  position: absolute; top: -60px; left: -60px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 129, 77, 0.14) 0%, rgba(88, 129, 77, 0.04) 45%, transparent 70%);
  pointer-events: none;
}
.faq::after {
  content: '';
  position: absolute; bottom: 0; right: -60px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 129, 77, 0.12) 0%, rgba(88, 129, 77, 0.04) 45%, transparent 70%);
  pointer-events: none;
}

.faq h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900; letter-spacing: -1.5px;
  line-height: 1.1; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.faq .section-sub {
  font-size: 0.88rem; color: var(--text-secondary);
  max-width: 500px; margin: 0 auto 56px;
  line-height: 1.7; position: relative; z-index: 1;
}

.faq-list {
  max-width: 680px; margin: 0 auto;
  position: relative; z-index: 1;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item.active { border-color: rgba(88, 129, 77, 0.2); }

.faq-question {
  width: 100%; padding: 22px 4px;
  background: transparent; border: none;
  color: #fff; font-family: 'Sora', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  text-align: left; cursor: pointer;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.faq-question:hover { color: rgba(255,255,255,0.85); }

.faq-chevron {
  flex-shrink: 0; color: var(--text-muted);
  transition: transform 0.35s, color 0.3s;
  width: 20px; height: 20px;
}
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--green);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 4px 22px;
  font-size: 0.875rem; color: var(--text-secondary);
  line-height: 1.75; text-align: left;
}

/* ── CTA ── */
.cta {
  padding: 80px 0 100px;
  position: relative; overflow: hidden;
}

.cta-box {
  position: relative;
  max-width: 780px; margin: 0 auto;
  background: linear-gradient(160deg, #131f0e 0%, #0e1a09 50%, #080f05 100%);
  border: 1px solid rgba(88, 129, 77, 0.12);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  overflow: visible;
  /* FIXED: was rgba(88, 129, 77, ...) and rgba(0,100,50,...) */
  box-shadow: 0 0 60px rgba(88, 129, 77, 0.06), inset 0 0 60px rgba(88, 129, 77, 0.03);
}

/* FIXED: was rgba(0,160,80,...) */
.cta-box::before {
  content: '';
  position: absolute; top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(88, 129, 77, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900; letter-spacing: -1.5px;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.cta-box .section-sub {
  font-size: 0.88rem; color: var(--text-secondary);
  max-width: 420px; margin: 0 auto 32px;
  line-height: 1.7; position: relative; z-index: 1;
}

/* FIXED: was gradient to #00c9a7 teal — now solid green */
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  background: var(--green);
  color: #000; font-family: 'Sora', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  border-radius: 12px; text-decoration: none;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative; z-index: 1;
  box-shadow: 0 4px 28px rgba(88, 129, 77, 0.25);
}
.cta-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(88, 129, 77, 0.4);
}
.cta-btn svg { width: 18px; height: 18px; }

/* FIXED: border/shadow was rgba(88, 129, 77, ...) and rgba(88, 129, 77, ...) */
.float-badge {
  position: absolute;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: linear-gradient(145deg, #1a2e14 0%, #111f0a 100%);
  border: 1px solid rgba(88, 129, 77, 0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  box-shadow: 0 0 16px rgba(88, 129, 77, 0.1);
  animation: badge-float ease-in-out infinite;
}
.float-badge svg { width: 22px; height: 22px; }

.badge-tl  { top: -18px;  left: -10px;  animation-duration: 3.2s; animation-delay: 0s; }
.badge-tr  { top: -18px;  right: -10px; animation-duration: 2.8s; animation-delay: 0.6s; }
.badge-ml  { top: 50%;    left: -28px;  animation-duration: 3.6s; animation-delay: 0.3s; }
.badge-mr  { top: 50%;    right: -28px; animation-duration: 3.0s; animation-delay: 1s; }
.badge-bl  { bottom: -18px; left: 60px; animation-duration: 3.4s; animation-delay: 0.8s; }
.badge-br  { bottom: -18px; right: 60px; animation-duration: 2.6s; animation-delay: 0.2s; }

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.badge-ml { animation: badge-float-center 3.6s ease-in-out infinite 0.3s; }
.badge-mr { animation: badge-float-center 3.0s ease-in-out infinite 1s; }
@keyframes badge-float-center {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 8px)); }
}

/* ── FOOTER ── */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 40px;
}
.footer-copy {
  font-size: 0.8rem; color: var(--text-muted);
}

@media(max-width: 640px) {
  .cta-box { padding: 56px 24px; }
  .float-badge { display: none; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content h1 { font-size: 2.2rem; }
  .crystal { width: 140px; height: 140px; }
  .crystal-blue { width: 160px; height: 160px; }
}






