:root {
  --bg: #0a0612;
  --fg: #f5f0fb;
  --surface: #15101f;
  --card: #181125;
  --muted: #221a30;
  --muted-fg: #9b8eb5;
  --border: rgba(120, 90, 180, 0.22);
  --primary: #c46cff;
  --primary-2: #8a6cff;
  --lime: #d6ff5e;
  --primary-soft: rgba(196, 108, 255, 0.12);
  --destructive: #ff7a5c;
  --gradient-primary: linear-gradient(135deg, #c46cff, #8a6cff, #d6ff5e);
  --gradient-aurora: conic-gradient(from 180deg at 50% 50%, #c46cff, #6c9fff, #d6ff5e, #c46cff);
  --shadow-glow: 0 0 80px rgba(196, 108, 255, 0.4);
  --shadow-soft: 0 20px 60px -20px rgba(196, 108, 255, 0.35);
  --shadow-card: 0 8px 32px -8px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html, body { background: var(--bg); color: var(--fg); }
body { font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--muted-fg); font-weight: 400; }

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

/* Typography */
.display, .display-md, .display-sm { font-family: 'Instrument Serif', serif; font-weight: 400; letter-spacing: -0.02em; line-height: 1; }
.display { font-size: clamp(3rem, 8vw, 7rem); }
.display-md { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05; }
.display-sm { font-size: 2rem; }
.gradient-text { background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.kicker { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--primary); margin-bottom: 16px; }
.lead { font-size: 18px; color: var(--muted-fg); line-height: 1.6; max-width: 560px; }
.muted, .muted-sm, .muted-xs { color: var(--muted-fg); }
.muted-sm { font-size: 14px; line-height: 1.6; }
.muted-xs { font-size: 12px; }
.bold-sm { font-size: 14px; font-weight: 600; }
.bold-xs { font-size: 12px; font-weight: 600; }
.label-xs { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-fg); margin-bottom: 4px; }

/* Buttons */
.primary-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; background: var(--gradient-primary); color: #fff; font-size: 14px; font-weight: 600; box-shadow: var(--shadow-soft); transition: all 0.2s; }
.primary-btn:hover { box-shadow: var(--shadow-glow); transform: translateY(-1px); }
.primary-btn.lg { padding: 14px 24px; font-weight: 700; }
.primary-btn.sm { padding: 8px 16px; font-size: 12px; font-weight: 700; }
.primary-btn.full { width: 100%; justify-content: center; padding: 16px; border-radius: 16px; }
.secondary-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: 999px; border: 1px solid var(--border); background: rgba(21, 16, 31, 0.6); backdrop-filter: blur(10px); font-size: 14px; font-weight: 600; transition: all 0.2s; }
.secondary-btn:hover { background: rgba(34, 26, 48, 0.6); }
.ghost-btn { font-size: 14px; font-weight: 500; color: var(--muted-fg); }
.ghost-btn:hover { color: var(--fg); }

/* Header */
.header { position: sticky; top: 0; z-index: 40; background: rgba(10, 6, 18, 0.6); backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 36px; height: 36px; border-radius: 12px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; font-weight: 700; box-shadow: var(--shadow-glow); transition: transform 0.3s; color: #fff; }
.brand-mark.sm { width: 28px; height: 28px; border-radius: 8px; font-size: 12px; }
.brand:hover .brand-mark { transform: rotate(12deg); }
.brand-text { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.dot { color: var(--primary); }
.nav { display: none; align-items: center; gap: 4px; background: rgba(21, 16, 31, 0.6); border: 1px solid var(--border); border-radius: 999px; padding: 6px; }
.nav a { padding: 6px 14px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--muted-fg); transition: all 0.2s; }
.nav a:hover { color: var(--fg); background: rgba(196, 108, 255, 0.1); }
.header-cta { display: flex; align-items: center; gap: 12px; }
@media (min-width: 768px) { .nav { display: flex; } }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 80px 0 112px; }
.aurora { position: absolute; top: 33%; left: 50%; width: 800px; height: 800px; transform: translate(-50%, -50%); border-radius: 50%; background: var(--gradient-aurora); opacity: 0.3; filter: blur(80px); animation: aurora 12s ease-in-out infinite; z-index: -1; }
.grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(245, 240, 251, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 240, 251, 0.04) 1px, transparent 1px); background-size: 64px 64px; z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .hero { padding: 112px 0 144px; } .hero-grid { grid-template-columns: 7fr 5fr; gap: 32px; } }
.pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(21, 16, 31, 0.8); backdrop-filter: blur(10px); border: 1px solid var(--border); padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 500; color: var(--muted-fg); }
.ping { position: relative; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.ping::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--lime); opacity: 0.75; animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite; }
.display em { display: block; }
.hero-left .display { margin-top: 24px; }
.gradient-text { display: inline-block; }
.hero-left .lead { margin-top: 32px; }
.hero-actions { margin-top: 40px; display: flex; gap: 12px; flex-wrap: wrap; }
.stats { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--border); display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 480px; }
.stat-v { font-family: 'Instrument Serif', serif; font-size: 30px; letter-spacing: -0.02em; }
.stat-l { font-size: 11px; color: var(--muted-fg); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.1em; }

/* Floating Preview */
.floating-preview { position: relative; }
.floating-preview::before { content: ""; position: absolute; inset: -32px; border-radius: 40px; background: var(--gradient-primary); opacity: 0.4; filter: blur(80px); z-index: -1; animation: pulse-glow 3s ease-in-out infinite; }
.float-badge { position: absolute; z-index: 20; padding: 10px 16px; border-radius: 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-soft); animation: float 6s ease-in-out infinite; }
.float-badge.top { top: -24px; left: -24px; background: var(--lime); color: var(--bg); }
.float-badge.bottom { bottom: -16px; right: -16px; background: var(--surface); border: 1px solid var(--border); animation-delay: 1.5s; }
.float-badge.bottom i { color: var(--lime); }
.preview-card { background: rgba(24, 17, 37, 0.8); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-card); }
.preview-head { display: flex; align-items: center; gap: 12px; padding: 20px; border-bottom: 1px solid var(--border); }
.icon-square { width: 40px; height: 40px; border-radius: 12px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; color: #fff; }
.flex-1 { flex: 1; }
.badge-urgent { font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: rgba(255, 122, 92, 0.2); color: var(--destructive); text-transform: uppercase; letter-spacing: 0.1em; }
.preview-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.photo-tile { aspect-ratio: 1; border-radius: 12px; background: linear-gradient(135deg, var(--muted), var(--surface)); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted-fg); transition: transform 0.2s; }
.photo-tile:hover { transform: scale(1.05); }
.preview-foot { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-top: 1px solid var(--border); background: rgba(21, 16, 31, 0.5); }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: #fff; }
.accept-btn { padding: 8px 16px; border-radius: 999px; background: var(--lime); color: var(--bg); font-size: 12px; font-weight: 700; transition: transform 0.2s; }
.accept-btn:hover { transform: scale(1.05); }

/* Marquee */
.marquee-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; overflow: hidden; background: rgba(21, 16, 31, 0.3); }
.marquee { display: flex; gap: 48px; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-item { display: flex; align-items: center; gap: 12px; font-family: 'Instrument Serif', serif; font-size: 24px; color: var(--muted-fg); }
.marquee-item i { color: var(--primary); font-size: 16px; }

/* Sections */
.section { padding: 112px 0; }
.section.bordered { border-top: 1px solid var(--border); }
.section.tinted { background: rgba(21, 16, 31, 0.2); }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Features */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card { position: relative; padding: 24px; border-radius: 24px; border: 1px solid var(--border); background: rgba(24, 17, 37, 0.6); backdrop-filter: blur(10px); transition: all 0.3s; overflow: hidden; }
.feature-card:hover { border-color: rgba(196, 108, 255, 0.4); transform: translateY(-4px); }
.feature-icon { width: 48px; height: 48px; border-radius: 16px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 20px; }
.feature-card h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.feature-card p { margin-top: 8px; font-size: 14px; color: var(--muted-fg); line-height: 1.6; }

/* Request */
.request-section { position: relative; overflow: hidden; }
.bg-blob { position: absolute; top: 0; left: 25%; width: 384px; height: 384px; border-radius: 50%; background: var(--gradient-primary); opacity: 0.2; filter: blur(80px); z-index: 0; }
.request-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .request-grid { grid-template-columns: 4fr 8fr; } .request-info { position: sticky; top: 96px; } }
.benefits { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.benefits li { display: flex; align-items: center; gap: 12px; }
.b-icon { width: 32px; height: 32px; border-radius: 10px; background: var(--primary-soft); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.request-card { border: 1px solid var(--border); background: rgba(24, 17, 37, 0.6); backdrop-filter: blur(20px); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-card); }
#request-form { padding: 32px; display: flex; flex-direction: column; gap: 32px; }
.label-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.num { font-family: ui-monospace, monospace; font-size: 10px; color: var(--muted-fg); }
.lbl { font-size: 14px; font-weight: 600; }
.line { flex: 1; height: 1px; background: var(--border); }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 12px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.service-card, .urgency-card { text-align: left; padding: 16px; border-radius: 16px; border: 2px solid var(--border); background: rgba(21, 16, 31, 0.4); transition: all 0.2s; position: relative; overflow: hidden; }
.service-card { padding: 20px; }
.service-card:hover, .urgency-card:hover { border-color: rgba(196, 108, 255, 0.4); }
.service-card.active, .urgency-card.active { border-color: var(--primary); background: var(--primary-soft); }
.service-card .s-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(34, 26, 48, 0.8); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; transition: all 0.2s; }
.service-card.active .s-icon { background: var(--gradient-primary); color: #fff; }
.urgency-card.active::after { content: ""; position: absolute; top: 8px; right: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }

.select-wrap { position: relative; }
.select-wrap i { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--muted-fg); pointer-events: none; }
select, input[type="text"], textarea {
  width: 100%; border: 1px solid var(--border); background: rgba(21, 16, 31, 0.6); padding: 14px 16px; border-radius: 12px; font-size: 14px; color: var(--fg); font-family: inherit; transition: all 0.2s;
}
select { appearance: none; padding-right: 40px; }
select option { background: var(--surface); color: var(--fg); }
input::placeholder, textarea::placeholder { color: var(--muted-fg); }
select:focus, input:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(196, 108, 255, 0.2); }
textarea { resize: none; }

.dropzone { border: 2px dashed var(--border); border-radius: 20px; padding: 32px; text-align: center; cursor: pointer; transition: all 0.2s; }
.dropzone:hover, .dropzone.dragover { border-color: var(--primary); background: rgba(196, 108, 255, 0.05); }
.dz-icon { width: 48px; height: 48px; border-radius: 16px; background: var(--gradient-primary); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; transition: transform 0.2s; }
.dropzone:hover .dz-icon { transform: scale(1.1); }
.photo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 12px; }
.photo-grid:empty { display: none; }
.photo-thumb { position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); animation: scale-in 0.2s ease-out; }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.photo-thumb .remove { position: absolute; top: 4px; right: 4px; width: 22px; height: 22px; border-radius: 50%; background: rgba(10, 6, 18, 0.8); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; font-size: 12px; }
.photo-thumb:hover .remove { opacity: 1; }

/* AI Panel */
.ai-panel { margin-top: 16px; border: 1px solid var(--border); background: rgba(21, 16, 31, 0.6); backdrop-filter: blur(10px); border-radius: 16px; padding: 16px; }
.ai-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ai-icon { width: 36px; height: 36px; border-radius: 12px; background: var(--gradient-primary); color: #fff; display: flex; align-items: center; justify-content: center; }
.ai-head > div:not(.ai-icon):not(button) { flex: 1; }
.ai-head .i-sparkles { color: var(--lime); font-size: 12px; }
.ai-head button { margin-left: auto; }
.ai-error { margin-top: 12px; font-size: 12px; color: var(--destructive); display: flex; align-items: center; gap: 8px; }
.ai-result { margin-top: 16px; animation: fade-up 0.4s ease-out; display: flex; flex-direction: column; gap: 12px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-size: 12px; padding: 4px 12px; border-radius: 999px; font-weight: 600; }
.chip.primary { background: var(--primary-soft); color: var(--primary); }
.chip.border { border: 1px solid var(--border); font-weight: 500; }
.chip.sev-high { background: rgba(255, 122, 92, 0.2); color: var(--destructive); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; font-size: 11px; }
.chip.sev-medium { background: rgba(214, 255, 94, 0.2); color: var(--lime); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; font-size: 11px; }
.chip.sev-low { background: var(--muted); color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; font-size: 11px; }
.chip.cost { background: rgba(214, 255, 94, 0.15); color: var(--lime); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.ai-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.ai-list li { font-size: 12px; display: flex; gap: 8px; }
.ai-list li::before { content: "→"; color: var(--primary); }
.ai-disclaimer { font-size: 10px; color: var(--muted-fg); font-style: italic; }

.success { padding: 56px; text-align: center; animation: fade-up 0.5s ease-out; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; color: #fff; margin: 0 auto 24px; box-shadow: var(--shadow-glow); font-size: 32px; }
.success h3 { margin-bottom: 12px; }
.success .muted { max-width: 360px; margin: 0 auto; }
.success button { margin-top: 32px; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card { position: relative; padding: 24px; border-radius: 24px; border: 1px solid var(--border); background: rgba(24, 17, 37, 0.6); backdrop-filter: blur(10px); transition: all 0.3s; overflow: hidden; }
.step-card:hover { border-color: rgba(196, 108, 255, 0.4); }
.step-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.step-icon { width: 48px; height: 48px; border-radius: 16px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.step-card:hover .step-icon { transform: scale(1.1); }
.step-num { font-family: 'Instrument Serif', serif; font-size: 30px; color: var(--muted-fg); }
.step-card h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.step-card p { margin-top: 8px; font-size: 14px; color: var(--muted-fg); line-height: 1.6; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.review { position: relative; padding: 28px; border-radius: 24px; border: 1px solid var(--border); background: rgba(24, 17, 37, 0.6); backdrop-filter: blur(10px); }
.review .quote-mark { position: absolute; top: 20px; right: 20px; font-size: 32px; color: rgba(196, 108, 255, 0.2); }
.review .stars { display: flex; gap: 2px; margin-bottom: 16px; color: var(--lime); }
.review p.text { font-size: 14px; line-height: 1.6; }
.review-foot { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.review-foot .avatar { width: 36px; height: 36px; font-size: 12px; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); background: rgba(24, 17, 37, 0.4); backdrop-filter: blur(10px); border-radius: 16px; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; text-align: left; padding: 20px; transition: background 0.2s; }
.faq-q:hover { background: rgba(196, 108, 255, 0.05); }
.faq-q span { font-size: 14px; font-weight: 600; padding-right: 16px; }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; font-size: 14px; }
.faq-item.open .faq-toggle { background: var(--primary); border-color: var(--primary); color: #fff; }
.faq-a { padding: 0 20px 20px; font-size: 14px; color: var(--muted-fg); line-height: 1.6; display: none; }
.faq-item.open .faq-a { display: block; animation: fade-up 0.3s ease-out; }

/* CTA */
.cta-section { padding: 112px 24px; }
.cta-card { max-width: 960px; margin: 0 auto; position: relative; border-radius: 40px; overflow: hidden; border: 1px solid var(--border); padding: 80px 32px; text-align: center; background: linear-gradient(135deg, #2a1b40, #181125); }
.cta-blob { position: absolute; width: 384px; height: 384px; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: pulse-glow 3s ease-in-out infinite; }
.cta-blob.a { top: 0; left: 25%; background: var(--gradient-primary); }
.cta-blob.b { bottom: 0; right: 25%; background: var(--lime); animation-delay: 1.5s; }
.cta-card > * { position: relative; z-index: 1; }
.cta-card .primary-btn { margin-top: 40px; }

/* Footer */
.footer { border-top: 1px solid var(--border); background: rgba(21, 16, 31, 0.3); }
.footer-inner { padding: 48px 24px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 24px; }
@media (min-width: 640px) { .footer-inner { flex-direction: row; } }
.brand.small { gap: 10px; }
.footer-links { display: flex; gap: 24px; font-size: 14px; color: var(--muted-fg); }
.footer-links a:hover { color: var(--fg); }

/* Noise */
.noise::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.04; background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"); z-index: 0; }

/* Animations */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes aurora { 0%, 100% { transform: translate(-50%, -50%) rotate(0) scale(1); } 50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.2); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-20px) rotate(2deg); } }
@keyframes pulse-glow { 0%, 100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.05); } }
@keyframes ping { 75%, 100% { transform: scale(2.5); opacity: 0; } }
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scale-in { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.fade-up { animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; }
.fade-up.delay { animation-delay: 0.15s; }

/* Lucide icons sizing */
[class^="i-"] { font-family: 'lucide'; display: inline-block; font-style: normal; font-size: 16px; line-height: 1; }
.i-arrow-up-right::before { content: "\ea63"; }
.i-camera::before { content: "\eb78"; }
.i-zap::before { content: "\ea1f"; }
.i-check::before { content: "\ea5f"; }
.i-wrench::before { content: "\ea20"; }
.i-package::before { content: "\ea2c"; }
.i-upload::before { content: "\ea2f"; }
.i-chevron::before { content: "\ea5f"; transform: rotate(0); content: "\ea4e"; }
.i-shield::before { content: "\ea30"; }
.i-brain::before { content: "\ec70"; }
.i-sparkles::before { content: "\ec05"; }
