/* ── Hero ── */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 20%, transparent 100%);
}
.hero-glow {
  position: absolute; top: -15%; left: 50%; transform: translateX(-50%);
  width: min(900px, 140vw); height: 500px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(124,106,255,0.18) 0%, rgba(0,212,255,0.07) 40%, transparent 70%);
  filter: blur(50px);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(124,106,255,0.3);
  padding: 0.35rem 1rem; border-radius: 999px;
  background: rgba(124,106,255,0.06); margin-bottom: 1.6rem;
}
.hero-eyebrow .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; line-height: 1.05; letter-spacing: -2px;
  background: linear-gradient(160deg, #fff 30%, rgba(255,255,255,0.5));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  margin: 1.5rem auto 0; max-width: 480px;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem); color: var(--muted); line-height: 1.75;
}
.hero-ctas { display: flex; justify-content: center; gap: 0.8rem; margin-top: 2.5rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; font-weight: 600; padding: 0.75rem 1.6rem; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #6055cc); color: #fff;
  border: 1px solid rgba(124,106,255,0.5); transition: all .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,106,255,.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; font-weight: 500; padding: 0.75rem 1.5rem; border-radius: 10px;
  background: rgba(255,255,255,0.04); color: #bbb;
  border: 1px solid var(--border); transition: all .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); color: #fff; }

.stats {
  display: flex; margin: 4rem auto 0; width: fit-content;
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.stat { flex: 1; min-width: 100px; padding: 1.2rem 1.4rem; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat .num { font-size: clamp(1.3rem, 4vw, 1.7rem); font-weight: 800; color: #fff; letter-spacing: -1px; }
.stat .lbl { font-size: 0.68rem; color: var(--muted); margin-top: 0.2rem; white-space: nowrap; }

/* ── Portals section ── */
.section { padding: 5rem 0; }
.section-header { margin-bottom: 3rem; }
.section-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.7rem; }
.section-title { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -1px; line-height: 1.15; }
.section-sub { color: var(--muted); font-size: 0.92rem; line-height: 1.7; margin-top: 0.6rem; max-width: 440px; }

.portals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px; border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
}
@media (max-width: 600px) { .portals { grid-template-columns: 1fr; } }
.portal {
  background: var(--bg2); padding: 2rem;
  display: flex; flex-direction: column; position: relative; overflow: hidden; transition: background .2s;
}
.portal::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--portal-color, var(--accent)), transparent);
  opacity: 0; transition: opacity .2s;
}
.portal:hover { background: rgba(255,255,255,0.025); }
.portal:hover::before { opacity: 1; }
.portal-icon {
  width: 44px; height: 44px; border-radius: 11px; margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
}
.portal h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.portal p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; flex: 1; }
.portal-footer { margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.3rem; }
.portal-link { font-size: 0.78rem; font-weight: 600; color: var(--portal-color, var(--accent)); display: flex; align-items: center; gap: 0.35rem; transition: gap .2s; }
.portal:hover .portal-link { gap: 0.6rem; }
.portal-domain { font-size: 0.7rem; color: rgba(255,255,255,0.12); }

/* ── Designer spotlight ── */
.designer-spot {
  border: 1px solid rgba(124,106,255,0.2); border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, rgba(124,106,255,0.06), var(--bg2));
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; margin-top: 4rem;
}
@media (max-width: 700px) {
  .designer-spot { grid-template-columns: 1fr; }
  .dspot-visual { display: none; }
}
.designer-spot::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,106,255,0.1), transparent 70%);
  pointer-events: none;
}
.dspot-content { padding: clamp(2rem, 5vw, 3.5rem); position: relative; z-index: 1; }
.dspot-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--designer); background: rgba(167,139,250,0.1);
  border: 1px solid rgba(167,139,250,0.25); border-radius: 6px;
  padding: 0.3rem 0.7rem; margin-bottom: 1.3rem;
}
.dspot-content h2 { font-size: clamp(1.5rem, 3.5vw, 2.3rem); font-weight: 800; letter-spacing: -1px; color: #fff; line-height: 1.2; margin-bottom: 0.9rem; }
.dspot-content p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; max-width: 360px; margin-bottom: 1.8rem; }
.dspot-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.dspot-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.83rem; color: #bbb; }
.dspot-features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--designer); flex-shrink: 0; }
.dspot-visual {
  display: flex; align-items: center; justify-content: center; padding: 2.5rem;
}
.dspot-orb {
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(167,139,250,0.25), rgba(124,106,255,0.08) 50%, transparent 70%);
  border: 1px solid rgba(167,139,250,0.12);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.dspot-orb::before {
  content: ''; position: absolute; inset: 18px; border-radius: 50%;
  border: 1px solid rgba(167,139,250,0.08); animation: spin 12s linear infinite;
}
.dspot-orb::after {
  content: ''; position: absolute; inset: 36px; border-radius: 50%;
  border: 1px dashed rgba(167,139,250,0.06); animation: spin 18s linear infinite reverse;
}
@keyframes spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.orb-center { font-size: 3rem; z-index: 1; }
