/* ===== CSS VARIABLES ===== */
:root {
  --black:   #070708;
  --surface: #0e0e10;
  --card:    #141417;
  --border:  #1e1e24;
  --orange:  #ff3c00;
  --orange2: #ff6a2f;
  --violet:  #8b31ff;
  --violet2: #b47cff;
  --white:   #f0ede8;
  --muted:   #6b6b78;
  --text:    #c8c5bf;
  --mono: 'Space Mono', monospace;
  --head: 'Syne', sans-serif;
  --body: 'DM Sans', sans-serif;
  --radius: 6px;
  --glow-orange: 0 0 40px rgba(255,60,0,0.18), 0 0 80px rgba(255,60,0,0.06);
  --glow-violet: 0 0 40px rgba(139,49,255,0.18), 0 0 80px rgba(139,49,255,0.06);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ===== NOISE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
nav.scrolled {
  background: rgba(7,7,8,0.92);
  border-color: var(--border);
  backdrop-filter: blur(16px);
}
.nav-logo {
  font-family: var(--head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo span { color: var(--orange); }
.nav-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 0.85rem;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.nav-links a {
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--orange);
  color: var(--black);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--orange2); transform: translateY(-1px); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Animated grid background */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,60,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,60,0,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Glow blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.blob-1 {
  width: 500px; height: 500px;
  background: rgba(255,60,0,0.12);
  top: -100px; left: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: rgba(139,49,255,0.10);
  bottom: -80px; right: -60px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, 20px) scale(1.05); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(255,60,0,0.06);
  color: var(--orange2);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.1s both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

h1.hero-title {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
  animation: fadeUp 0.8s 0.2s both;
  margin-bottom: 8px;
}
h1.hero-title .accent { color: var(--orange); }

.hero-sub {
  font-family: var(--head);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeUp 0.8s 0.3s both;
  margin-bottom: 24px;
}

.hero-desc {
  max-width: 560px;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  animation: fadeUp 0.8s 0.4s both;
  margin-bottom: 44px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s 0.5s both;
}
.btn-primary {
  background: var(--orange);
  color: var(--black);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 24px rgba(255,60,0,0.3);
}
.btn-primary:hover {
  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,60,0,0.4);
}
.btn-secondary {
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.85rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,60,0,0.05);
  transform: translateY(-2px);
}

/* Terminal hero widget */
.hero-terminal {
  margin-top: 64px;
  width: 100%;
  max-width: 620px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  animation: fadeUp 0.8s 0.7s both;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), var(--glow-orange);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.t-dot { width: 12px; height: 12px; border-radius: 50%; }
.t-dot.red { background: #ff5f57; }
.t-dot.yellow { background: #ffbd2e; }
.t-dot.green { background: #28c840; }
.terminal-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  margin-left: auto;
  letter-spacing: 0.04em;
}
.terminal-body {
  padding: 20px 24px;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.8;
  text-align: left;
}
.t-prompt { color: var(--orange); }
.t-cmd { color: var(--white); }
.t-output { color: var(--muted); }
.t-ai { color: var(--violet2); }
.t-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--orange);
  vertical-align: middle;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
section {
  padding: 96px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--orange);
}
h2.section-title {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
h2.section-title .accent { color: var(--orange); }
h2.section-title .violet { color: var(--violet2); }
.section-body {
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== ABOUT GRID ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  position: relative;
}

.hexagon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.hex-cell {
  aspect-ratio: 1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--card);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hex-cell img {
  width: 65%;
  height: 65%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.6);
  transition: 0.25s ease;
}

.hex-cell:hover {
  background: var(--orange) !important;
}

.hex-cell:hover img {
  opacity: 1;
  transform: scale(1);
}

.hex-cell:nth-child(odd) {
  background: rgba(255,60,0,0.15); 
}

.hex-cell:nth-child(even) {
  background: rgba(139,49,255,0.12);
}

.hex-cell:hover { background: var(--orange) !important; }
.creator-tag {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
}
.creator-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--orange), var(--violet));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--head);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}
.creator-info small {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.creator-info strong { color: var(--white); }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 56px;
}
.feature-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.25s;
  position: relative;
}
.feature-card:hover { background: var(--card); }
.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 18px;
  display: block;
}
.feature-card h3 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--violet));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.feature-card:hover::after { transform: scaleX(1); }

/* ===== MEMORY / SPLIT SECTIONS ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.code-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.code-header .dots { display: flex; gap: 6px; }
.code-header .dot { width: 10px; height: 10px; border-radius: 50%; }
.code-header .dot.r { background: #ff5f57; }
.code-header .dot.y { background: #ffbd2e; }
.code-header .dot.g { background: #28c840; }

.code-filename {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  margin-left: auto;
}

.code-body {
  padding: 20px 24px;
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.9;
}

.c-comment { color: var(--muted); }
.c-keyword { color: var(--violet2); }
.c-string { color: var(--orange2); }
.c-func { color: #7dd3fc; }
.c-var { color: var(--white); }

/* ===== MEMORY DIAGRAM ===== */

.memory-diagram {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.memory-node {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--mono);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;   /* centra orizzontalmente */
  text-align: center;        /* centra il testo */
  gap: 12px;
  transition: border-color 0.2s, background 0.2s;
}

.memory-node:hover {
  border-color: var(--orange);
  background: rgba(255,60,0,0.04);
}

.memory-node-icon {
  font-size: 1rem;
  width: 32px;
  text-align: center;
}

.memory-node-info {
  text-align: center;
}

.memory-node-info small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.memory-node-info strong {
  color: var(--white);
}

.memory-center {
  background: linear-gradient(
    135deg,
    rgba(255,60,0,0.15),
    rgba(139,49,255,0.15)
  );
  border: 1px solid var(--orange);
  text-align: center;
  justify-content: center;
  padding: 20px;
  box-shadow: var(--glow-orange);
}

.memory-center strong {
  color: var(--orange);
  font-size: 0.9rem;
}

.arrow-down {
  text-align: center;
  color: var(--orange);
  font-size: 1.2rem;
  line-height: 1;
}
/* ===== USE CASE ===== */
.usecase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
}
.usecase-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.usecase-step {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  position: relative;
}
.usecase-step:last-child { border-right: none; }
.step-num {
  font-family: var(--head);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.usecase-step h4 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 8px;
}
.usecase-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.usecase-step.active .step-num { color: var(--orange); }
.usecase-step.active { background: rgba(255,60,0,0.03); }

/* ===== FOR WHO ===== */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.who-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: border-color 0.25s;
}
.who-card:hover { border-color: var(--orange); }
.who-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.who-tag.beginner { background: rgba(139,49,255,0.15); color: var(--violet2); }
.who-tag.expert   { background: rgba(255,60,0,0.15); color: var(--orange2); }
.who-card h3 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.who-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.who-terminal {
  margin-top: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.8;
}

/* ===== REQUIREMENTS ===== */
.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.req-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.req-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.req-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.req-card h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.req-card .req-value {
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.req-card .req-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ===== INSTALL STEPS ===== */
.install-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.install-steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: 48px;
  width: 1px;
  background: linear-gradient(180deg, var(--orange), var(--violet), transparent);
}
.install-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.install-step:last-child { border-bottom: none; }
.step-badge {
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange);
  flex-shrink: 0;
  z-index: 1;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.install-step:hover .step-badge {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}
.step-content h4 {
  font-family: var(--head);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
}
.step-content p { font-size: 0.9rem; color: var(--muted); }
.step-content code {
  font-family: var(--mono);
  font-size: 0.78rem;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 3px;
  color: var(--orange2);
}

/* ===== ROADMAP ===== */
.roadmap-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}
.roadmap-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.roadmap-item:hover { border-color: var(--border); }
.roadmap-status {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.status-done     { background: rgba(40,200,64,0.12); color: #28c840; }
.status-alpha    { background: rgba(255,60,0,0.12); color: var(--orange); }
.status-wip      { background: rgba(255,189,46,0.12); color: #ffbd2e; }
.status-planned  { background: rgba(107,107,120,0.2); color: var(--muted); }
.roadmap-item span { color: var(--white); flex: 1; }
.roadmap-item small { color: var(--muted); font-size: 0.8rem; }

/* ===== COMMUNITY ===== */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.community-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.community-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.community-icon {
  width: 56px; height: 56px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background 0.2s;
}
.community-card:hover .community-icon { background: rgba(255,60,0,0.1); }
.community-card h3 {
  font-family: var(--head);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.community-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.community-link {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--orange);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.2s;
}
.community-card:hover .community-link { gap: 10px; }

.community-card-full {
  display: block;
  text-decoration: none;
  transition: 0.25s ease;
  border-radius: 10px;
}

.community-card-full:hover > div {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px rgba(255, 60, 0, 0.25),
              0 0 30px rgba(255, 60, 0, 0.25);
  background: rgba(255, 60, 0, 0.04);
}

/* ===== CTA FINAL ===== */
#cta {
  text-align: center;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,60,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-quote {
  max-width: 700px;
  margin: 0 auto;
}
.cta-quote blockquote {
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.cta-quote blockquote span { color: var(--orange); }
.cta-quote p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 40px;
}
.cta-author {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 20px;
  letter-spacing: 0.04em;
}
.cta-author strong { color: var(--orange); }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted);
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

/* ===== UTILITY ===== */
.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255,60,0,0.1);
  color: var(--orange);
  border: 1px solid rgba(255,60,0,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .about-grid,
  .split-section,
  .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .usecase-steps { grid-template-columns: 1fr; }
  .usecase-step { border-right: none; border-bottom: 1px solid var(--border); }
  .usecase-step:last-child { border-bottom: none; }
  .community-grid { grid-template-columns: 1fr 1fr; }
  .hexagon-grid { display: none; }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  section { padding: 64px 20px; }
  .community-grid { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s 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; }
