/*
  Mariche Landing Page (Apple-inspired)
  This stylesheet is scoped to index.html.
  Keep other pages (e.g. profile.html) on their existing styles.
*/

:root{
  --bg: #f5f5f7;
  --surface: rgba(255,255,255,0.72);
  --surface-solid: #ffffff;
  --surface-2: rgba(255,255,255,0.92);
  --text: #0b0b0f;
  --muted: rgba(11,11,15,0.62);
  --hairline: rgba(11,11,15,0.10);
  --shadow-sm: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-md: 0 18px 60px rgba(0,0,0,0.10);
  --accent: #0071e3;
  --accent-2: rgba(0,113,227,0.14);
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 700px at 20% -10%, rgba(0,113,227,0.12), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(118, 255, 220, 0.10), transparent 55%),
              var(--bg);
}

a{color:inherit}
img{max-width:100%; height:auto}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* Utilities */
.hairline{border-top:1px solid var(--hairline)}
.kicker{
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--muted);
}

/* Compact badges used by auth UI */
.verification-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-left:10px;
  font-size:12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,11,15,0.12);
  color: rgba(11,11,15,0.72);
  background: rgba(255,255,255,0.62);
}
.verification-badge svg{width:16px; height:16px}
.verification-badge.verified{border-color: rgba(52,199,89,0.30); background: rgba(52,199,89,0.10); color: rgba(5, 90, 43, 0.95)}
.verification-badge.unverified{border-color: rgba(245,158,11,0.30); background: rgba(245,158,11,0.10); color: rgba(146,64,14,0.95)}

.verification-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size:12px;
  border: 1px solid rgba(11,11,15,0.12);
}
.verification-status svg{width:16px; height:16px}
.verification-status.verified{border-color: rgba(52,199,89,0.30); background: rgba(52,199,89,0.10); color: rgba(5, 90, 43, 0.95)}
.verification-status.unverified{border-color: rgba(245,158,11,0.30); background: rgba(245,158,11,0.10); color: rgba(146,64,14,0.95)}

/* Nav */
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(245,245,247,0.76);
  border-bottom: 1px solid var(--hairline);
}
.nav-container{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.nav-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:-0.02em;
  text-decoration:none;
}

.brand-mark{
  width:28px; height:28px;
  border-radius:10px;
  background: radial-gradient(14px 14px at 30% 30%, rgba(255,255,255,0.9), rgba(255,255,255,0)),
              linear-gradient(135deg, rgba(0,113,227,0.95), rgba(64, 128, 255, 0.85));
  box-shadow: 0 10px 20px rgba(0,113,227,0.22);
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:26px;
}

.nav-links{
  display:flex;
  gap:22px;
  align-items:center;
}

.nav-link{
  position:relative;
  text-decoration:none;
  font-weight:500;
  color: rgba(11,11,15,0.72);
  padding:10px 2px;
  letter-spacing:-0.01em;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:6px;
  height:1px;
  background:rgba(11,11,15,0.0);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 240ms ease, background 240ms ease;
}
.nav-link:hover{color:var(--text)}
.nav-link:hover::after{background:rgba(11,11,15,0.22); transform:scaleX(1)}
.nav-link.active{color:var(--text)}
.nav-link.active::after{background:rgba(0,113,227,0.70); transform:scaleX(1)}

.nav-auth{
  display:flex;
  align-items:center;
  gap:10px;
}

.nav-toggle{
  display:none;
  width:40px; height:40px;
  border-radius:12px;
  border:1px solid var(--hairline);
  background: rgba(255,255,255,0.6);
  cursor:pointer;
  align-items:center;
  justify-content:center;
}

.nav-toggle .bars{
  width:18px; height:12px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.nav-toggle .bars span{
  height:1.6px;
  background: rgba(11,11,15,0.72);
  border-radius:2px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:1px solid var(--hairline);
  background: rgba(255,255,255,0.6);
  color: var(--text);
  padding:12px 16px;
  border-radius: 999px;
  font-weight:600;
  letter-spacing:-0.01em;
  cursor:pointer;
  text-decoration:none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 16px 38px rgba(0,0,0,0.09)}
.btn:active{transform: translateY(0px)}
.btn:focus-visible{outline:3px solid var(--accent-2); outline-offset:2px}

.btn-primary{
  background: linear-gradient(180deg, rgba(0,113,227,1), rgba(0,98,206,1));
  border-color: rgba(0,113,227,0.55);
  color:#fff;
  box-shadow: 0 16px 42px rgba(0,113,227,0.24);
}
.btn-primary:hover{box-shadow: 0 22px 60px rgba(0,113,227,0.30)}

.btn-secondary{
  background: rgba(255,255,255,0.72);
}

.btn-ghost{
  background: transparent;
  border-color: rgba(11,11,15,0.14);
  box-shadow:none;
}
.btn-ghost:hover{background: rgba(255,255,255,0.6)}

.btn-lg{padding:14px 18px; font-size:15px}
.btn-sm{padding:10px 14px; font-size:13px; box-shadow:none}
.btn-full{width:100%}

/* Section spacing */
.section{padding:96px 0}
.section-tight{padding:72px 0}

.section-header{
  margin:0 0 44px;
}
.section-header h2{
  margin:0;
  font-size:40px;
  letter-spacing:-0.03em;
  line-height:1.1;
}
.section-header p{
  margin:12px 0 0;
  font-size:16px;
  color:var(--muted);
  max-width:72ch;
}

/* Hero */
.hero{
  padding: 92px 0 54px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:44px;
  align-items:center;
}

.hero h1{
  font-size: clamp(40px, 6vw, 64px);
  margin:0;
  letter-spacing:-0.04em;
  line-height:1.03;
}

.hero .subhead{
  margin:16px 0 0;
  font-size:18px;
  color:rgba(11,11,15,0.66);
  max-width:62ch;
}

.hero-actions{display:flex; gap:12px; margin-top:28px; flex-wrap:wrap}
.hero-proof{margin-top:18px; color:var(--muted); font-size:13px; display:flex; gap:16px; flex-wrap:wrap}
.hero-proof span{display:inline-flex; gap:8px; align-items:center}

.hero-visual{
  position:relative;
  min-height: 420px;
}

.hero-orb{
  position:absolute;
  inset:0;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(500px 340px at 30% 30%, rgba(0,113,227,0.35), transparent 60%),
    radial-gradient(420px 300px at 70% 70%, rgba(255, 90, 140, 0.16), transparent 55%),
    radial-gradient(520px 340px at 60% 20%, rgba(68, 255, 214, 0.20), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.55));
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow-md);
  overflow:hidden;
}

.hero-orb::before{
  content:"";
  position:absolute;
  inset:-60px;
  background: radial-gradient(closest-side, rgba(255,255,255,0.55), transparent 65%);
  filter: blur(18px);
  opacity:0.55;
  transform: translate3d(0,0,0);
}

.hero-float{
  position:absolute;
  right:18px;
  bottom:18px;
  width:min(320px, 85%);
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(11,11,15,0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
  padding:16px 16px 14px;
}

.hero-float .title{display:flex; align-items:center; justify-content:space-between; gap:12px}
.hero-float h3{margin:0; font-size:14px; letter-spacing:-0.02em}
.hero-float p{margin:8px 0 0; font-size:13px; color:var(--muted); line-height:1.45}
.hero-float .pill{
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(0,113,227,0.35);
  background: rgba(0,113,227,0.10);
  color: rgba(0,113,227,0.95);
  font-weight:600;
}

/* Spotlight: CCR Event CRM */
.spotlight{
  padding: 62px 0 0;
}

.spotlight-shell{
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(11,11,15,0.10);
  box-shadow: var(--shadow-sm);
  overflow:hidden;
}

.spotlight-head{
  padding: 42px 42px 26px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:26px;
}

.spotlight-head h2{
  margin:6px 0 0;
  font-size:36px;
  letter-spacing:-0.04em;
  line-height:1.1;
}

.spotlight-head p{
  margin:10px 0 0;
  color: var(--muted);
  max-width:70ch;
}

.spotlight-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 0 42px 42px;
}

.pillars{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.pillar{
  border-radius: 16px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(11,11,15,0.10);
  padding: 14px 14px;
  min-height: 108px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.pillar:hover{transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,0.08)}
.pillar h4{margin:10px 0 0; font-size:14px; letter-spacing:-0.02em}
.pillar p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.4}

.icon{
  width:18px; height:18px;
  display:inline-block;
  color: rgba(11,11,15,0.72);
}

.mock{
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(11,11,15,0.12);
  box-shadow: var(--shadow-md);
  overflow:hidden;
}

.mock .chrome{
  height: 40px;
  display:flex;
  align-items:center;
  gap:8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(11,11,15,0.10);
  background: rgba(245,245,247,0.72);
}

.dot{width:10px; height:10px; border-radius:999px; background: rgba(11,11,15,0.18)}
.dot.red{background: rgba(255,89,89,0.55)}
.dot.yellow{background: rgba(255,196,0,0.55)}
.dot.green{background: rgba(52,199,89,0.55)}

.mock .screen{
  aspect-ratio: 16/11;
  position:relative;
  background:
    radial-gradient(380px 240px at 25% 30%, rgba(0,113,227,0.22), transparent 60%),
    radial-gradient(320px 220px at 70% 70%, rgba(68, 255, 214, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.62), rgba(255,255,255,0.35));
}

.mock .screen::after{
  content:"Screenshot placeholder";
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(11,11,15,0.42);
  font-size:13px;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

/* How it works */
.flow{
  display:grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 10px;
}

.step{
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(11,11,15,0.10);
  padding: 14px;
}

.step .n{
  width:26px; height:26px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,113,227,0.12);
  border: 1px solid rgba(0,113,227,0.22);
  color: rgba(0,113,227,0.95);
  font-weight:700;
  font-size:12px;
}
.step h4{margin:10px 0 0; font-size:14px; letter-spacing:-0.02em}
.step p{margin:6px 0 0; font-size:13px; color:var(--muted); line-height:1.45}

/* Proof section */
.proof{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items:start;
}

.proof-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(11,11,15,0.10);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.proof-card h3{margin:0; font-size:18px; letter-spacing:-0.03em}
.proof-card p{margin:10px 0 0; color:var(--muted)}

.modules{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top: 14px;
}

.module{
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(11,11,15,0.10);
  background: rgba(255,255,255,0.68);
  font-size: 12px;
  color: rgba(11,11,15,0.70);
}

/* Plugins */
.plugins-section{padding: 84px 0}

.plugins-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin: 18px 0 22px;
}

.chips{display:flex; gap:8px; flex-wrap:wrap}
.chip{
  font-size:12px;
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(11,11,15,0.12);
  background: rgba(255,255,255,0.60);
  color: rgba(11,11,15,0.72);
}

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

.plugin-card{
  grid-column: span 4;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(11,11,15,0.10);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
  transform-style: preserve-3d;
}

.plugin-card:hover{transform: translateY(-2px); box-shadow: 0 18px 52px rgba(0,0,0,0.10)}

.plugin-image{
  height: 180px;
  background:
    radial-gradient(320px 220px at 30% 30%, rgba(0,113,227,0.22), transparent 60%),
    radial-gradient(280px 200px at 70% 70%, rgba(255,90,140,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.25));
  position:relative;
}

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

.plugin-overlay{position:absolute; inset:12px 12px auto auto}

.plugin-tier-badge{
  font-size:11px;
  letter-spacing:0.10em;
  text-transform:uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.70);
  border:1px solid rgba(11,11,15,0.12);
}

.tier-0{color: rgba(11,11,15,0.68)}
.tier-1{color: rgba(0,113,227,0.95)}
.tier-2{color: rgba(110, 64, 255, 0.95)}
.tier-3{color: rgba(245, 158, 11, 0.95)}

.plugin-content{padding: 14px 14px 16px}
.plugin-header{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
.plugin-title{margin:0; font-size:15px; letter-spacing:-0.02em; line-height:1.2}
.plugin-version{font-size:12px; color: rgba(11,11,15,0.56); background: rgba(245,245,247,0.72); border:1px solid rgba(11,11,15,0.08); padding: 4px 8px; border-radius:999px}
.plugin-description{margin:10px 0 0; color:var(--muted); font-size:13px; line-height:1.5; min-height: 44px}
.plugin-categories{display:flex; gap:6px; flex-wrap:wrap; margin:12px 0 0}
.category-tag{font-size:11px; padding: 6px 8px; border-radius: 999px; border:1px solid rgba(11,11,15,0.10); background: rgba(255,255,255,0.55); color: rgba(11,11,15,0.70)}
.category-more{font-size:11px; padding: 6px 8px; border-radius: 999px; border:1px solid rgba(11,11,15,0.10); background: rgba(245,245,247,0.72); color: rgba(11,11,15,0.58)}

.plugin-actions{display:flex; gap:10px; margin-top: 14px}

/* Loading skeleton */
.loading{padding: 18px 0 0}
.skeleton-grid{display:grid; grid-template-columns: repeat(12, 1fr); gap: 14px}
.skeleton-card{grid-column: span 4; border-radius: var(--radius); border:1px solid rgba(11,11,15,0.10); background: rgba(255,255,255,0.66); overflow:hidden}
.skeleton-media{height: 180px; background: linear-gradient(90deg, rgba(245,245,247,1), rgba(245,245,247,0.35), rgba(245,245,247,1)); background-size: 200% 100%; animation: shimmer 1.2s linear infinite}
.skeleton-body{padding: 14px}
.skeleton-line{height: 12px; border-radius: 999px; background: linear-gradient(90deg, rgba(245,245,247,1), rgba(245,245,247,0.35), rgba(245,245,247,1)); background-size: 200% 100%; animation: shimmer 1.2s linear infinite; margin: 10px 0}
.skeleton-line.sm{height:10px; width: 65%}
.skeleton-line.md{width: 88%}

@keyframes shimmer{0%{background-position: 200% 0} 100%{background-position:-200% 0}}

/* Error state */
.error-state{
  text-align:center;
  padding: 44px 0;
  border-radius: var(--radius-lg);
  border:1px solid rgba(11,11,15,0.10);
  background: rgba(255,255,255,0.70);
}
.error-state h3{margin:14px 0 0; font-size:18px; letter-spacing:-0.02em}
.error-state p{margin:8px auto 0; color:var(--muted); max-width:58ch}

/* Control Tower */
.control-tower-section{padding: 92px 0}

.tower-wrap{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11,11,15,0.10);
  background: rgba(255,255,255,0.66);
  box-shadow: var(--shadow-sm);
  overflow:hidden;
}

.tower-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  padding: 42px;
}

.tower-copy h2{margin:6px 0 0; font-size:36px; letter-spacing:-0.04em; line-height:1.1}
.tower-copy p{margin:10px 0 0; color:var(--muted); line-height:1.6}

.tower-feats{display:grid; gap:10px; margin-top:18px}
.tower-feat{display:flex; gap:10px; align-items:flex-start; padding: 12px; border-radius: 14px; border: 1px solid rgba(11,11,15,0.10); background: rgba(255,255,255,0.72)}
.tower-feat h4{margin:0; font-size:14px; letter-spacing:-0.02em}
.tower-feat p{margin:6px 0 0; font-size:13px; color:var(--muted)}

.viz{
  border-radius: 18px;
  border:1px solid rgba(11,11,15,0.10);
  background: rgba(255,255,255,0.75);
  box-shadow: var(--shadow-md);
  padding: 18px;
  position:relative;
  overflow:hidden;
}

.viz::before{
  content:"";
  position:absolute;
  inset:-60px;
  background: radial-gradient(closest-side, rgba(0,113,227,0.16), transparent 62%);
  filter: blur(18px);
  opacity:0.8;
}

.viz-inner{position:relative}
.viz-title{display:flex; justify-content:space-between; align-items:center; gap:10px}
.viz-title strong{font-size:13px; letter-spacing:-0.02em}
.viz-title span{font-size:12px; color:var(--muted)}

.bars{display:grid; gap:10px; margin-top:16px}
.bar-row{display:grid; grid-template-columns: 1fr; gap:6px}
.bar-row label{font-size:12px; color: rgba(11,11,15,0.70)}
.bar{height:10px; border-radius: 999px; background: rgba(11,11,15,0.08); overflow:hidden}
.bar > i{display:block; height:100%; width:50%; background: linear-gradient(90deg, rgba(0,113,227,0.95), rgba(0,113,227,0.55)); border-radius: 999px}

/* CTA band */
.cta-band{
  padding: 84px 0;
}

.cta-shell{
  border-radius: var(--radius-lg);
  border:1px solid rgba(11,11,15,0.10);
  background: radial-gradient(900px 360px at 30% 20%, rgba(0,113,227,0.18), transparent 60%),
              radial-gradient(760px 320px at 85% 80%, rgba(68,255,214,0.14), transparent 60%),
              rgba(255,255,255,0.70);
  box-shadow: var(--shadow-sm);
  padding: 42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 22px;
}

.cta-shell h2{margin:0; font-size:30px; letter-spacing:-0.04em; line-height:1.1}
.cta-shell p{margin:10px 0 0; color:var(--muted)}
.cta-proofs{margin-top:12px; color:var(--muted); font-size:13px; display:flex; gap:14px; flex-wrap:wrap}

/* Pricing */
.pricing-section{padding: 92px 0}

.pricing-wrap{
  border-radius: var(--radius-lg);
  border:1px solid rgba(11,11,15,0.10);
  background: radial-gradient(980px 420px at 15% 20%, rgba(0,113,227,0.12), transparent 60%),
              rgba(255,255,255,0.65);
  box-shadow: var(--shadow-sm);
  padding: 42px;
}

.pricing-top{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap}

.toggle{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 6px;
  border-radius: 999px;
  border:1px solid rgba(11,11,15,0.12);
  background: rgba(255,255,255,0.64);
}
.toggle button{
  border:none;
  background:transparent;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight:600;
  font-size:13px;
  color: rgba(11,11,15,0.68);
  cursor:pointer;
  transition: background 200ms ease, color 200ms ease;
}
.toggle button[aria-pressed="true"]{
  background: rgba(0,113,227,0.10);
  color: rgba(0,113,227,0.95);
}

.pricing-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.pricing-card{
  grid-column: span 4;
  border-radius: var(--radius);
  border:1px solid rgba(11,11,15,0.10);
  background: rgba(255,255,255,0.72);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
  position:relative;
}

.pricing-card.featured{
  border-color: rgba(0,113,227,0.40);
  box-shadow: 0 18px 54px rgba(0,113,227,0.14);
}

.pricing-badge{
  position:absolute;
  top: -12px;
  left: 16px;
  background: rgba(0,113,227,0.95);
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding: 7px 10px;
  border-radius: 999px;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.pricing-header h3{margin:0; font-size:16px; letter-spacing:-0.02em}
.price{margin-top:12px; display:flex; align-items:baseline; gap:6px}
.price .currency{font-size:14px; color: rgba(11,11,15,0.55)}
.price .amount{font-size:40px; letter-spacing:-0.04em}
.price .period{font-size:13px; color: rgba(11,11,15,0.55)}

.pricing-features{list-style:none; padding:0; margin:14px 0 18px; display:grid; gap:10px}
.pricing-features li{display:flex; gap:10px; color: rgba(11,11,15,0.70); font-size:13px; line-height:1.35}
.pricing-features li::before{content:""; width:10px; height:10px; border-radius:999px; margin-top:3px; background: rgba(0,113,227,0.26); border:1px solid rgba(0,113,227,0.22)}

/* Footer */
.footer{
  padding: 34px 0 40px;
  color: rgba(11,11,15,0.60);
}
.footer-top{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}
.footer-links{display:flex; gap:18px; flex-wrap:wrap}
.footer-links a{text-decoration:none; color: rgba(11,11,15,0.60)}
.footer-links a:hover{color: rgba(11,11,15,0.90)}
.footer-bottom{margin-top:18px; font-size:12px; color: rgba(11,11,15,0.46)}

/* Modal (Apple-like sheet) */
.modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:2000;
  padding: 24px;
  background: rgba(11,11,15,0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.modal.show{display:flex; align-items:center; justify-content:center}

.modal-content{
  width: min(520px, 100%);
  max-height: min(86vh, 760px);
  overflow:auto;
  border-radius: 22px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 26px 90px rgba(0,0,0,0.30);
}

.modal-header{
  padding: 18px 18px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom: 1px solid rgba(11,11,15,0.10);
}
.modal-header h2{margin:0; font-size:16px; letter-spacing:-0.02em}

.modal-close{
  width:36px; height:36px;
  border-radius: 999px;
  border: 1px solid rgba(11,11,15,0.12);
  background: rgba(255,255,255,0.6);
  cursor:pointer;
}

.modal-body{padding: 16px 18px 18px}

.form-group{margin-bottom: 14px}
.form-group label{display:block; font-size:13px; color: rgba(11,11,15,0.70); margin-bottom:6px}
.form-group input{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,11,15,0.12);
  background: rgba(255,255,255,0.72);
  color: var(--text);
  font-size: 14px;
}
.form-group input:focus{outline: 3px solid var(--accent-2); border-color: rgba(0,113,227,0.32)}

.auth-switch{margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(11,11,15,0.10); color: rgba(11,11,15,0.62); text-align:center}
.auth-switch a{color: rgba(0,113,227,0.95); text-decoration:none}
.auth-switch a:hover{text-decoration:underline}

.btn-link{background:none; border:none; color: rgba(0,113,227,0.95); cursor:pointer; font-weight:600}

/* Reveal animations */
.reveal{opacity:0; transform: translateY(10px); transition: opacity 500ms ease, transform 600ms ease}
.reveal.is-visible{opacity:1; transform: translateY(0)}
.stagger > *{opacity:0; transform: translateY(10px)}
.stagger.is-visible > *{opacity:1; transform: translateY(0)}
.stagger.is-visible > *{transition: opacity 520ms ease, transform 620ms ease}
.stagger.is-visible > *:nth-child(1){transition-delay: 60ms}
.stagger.is-visible > *:nth-child(2){transition-delay: 120ms}
.stagger.is-visible > *:nth-child(3){transition-delay: 180ms}
.stagger.is-visible > *:nth-child(4){transition-delay: 240ms}
.stagger.is-visible > *:nth-child(5){transition-delay: 300ms}
.stagger.is-visible > *:nth-child(6){transition-delay: 360ms}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .reveal, .stagger > *{opacity:1 !important; transform:none !important; transition:none !important}
  .btn{transition:none}
  .plugin-card{transition:none}
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr;}
  .hero-visual{min-height: 360px}
  .spotlight-grid{grid-template-columns: 1fr}
  .pillars{grid-template-columns: 1fr}
  .flow{grid-template-columns: 1fr;}
  .proof{grid-template-columns: 1fr}
  .tower-grid{grid-template-columns: 1fr}
  .cta-shell{flex-direction: column; align-items:flex-start}
  .plugins-grid .plugin-card, .skeleton-grid .skeleton-card{grid-column: span 6}
  .pricing-grid .pricing-card{grid-column: span 6}
}

@media (max-width: 720px){
  .nav-toggle{display:flex}
  .nav-menu{
    position:fixed;
    left: 0;
    right: 0;
    top:72px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events:none;
    background: rgba(245,245,247,0.92);
    border-bottom: 1px solid var(--hairline);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 14px 18px 18px;
    display:block;
  }
  .nav-menu.active{opacity:1; transform: translateY(0); pointer-events:auto}
  .nav-links{flex-direction:column; align-items:flex-start; gap: 8px; padding: 6px 0 10px}
  .nav-auth{justify-content:flex-start; padding-top: 10px; border-top: 1px solid var(--hairline)}
  .plugins-grid .plugin-card, .skeleton-grid .skeleton-card{grid-column: span 12}
  .pricing-grid .pricing-card{grid-column: span 12}
  .section{padding: 76px 0}
  .section-header h2{font-size: 34px}
  .spotlight-head{padding: 30px 20px 18px}
  .spotlight-grid{padding: 0 20px 22px}
  .tower-grid{padding: 26px}
  .pricing-wrap{padding: 26px}
  .cta-shell{padding: 26px}
}