/* Generated by Arbel Generator — ASDASD */
:root {
  --bg: #0a0a0f;
  --surface: #0a1220;
  --fg: #e8f4f0;
  --fg2: #8cb0a8;
  --accent: #00d4aa;
  --border: rgba(255,255,255,0.06);
  --font-body: "Inter", -apple-system, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-mono: "Space Mono", monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg); color: var(--fg); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
.mono { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }
em { font-family: var(--font-display); font-style: italic; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* ═══ PRELOADER ═══ */
.preloader { position: fixed; inset: 0; z-index: 9999; background: var(--bg); display: flex; align-items: center; justify-content: center; transition: opacity 0.6s, visibility 0.6s; }
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1.5rem; opacity: 0.9; }
.preloader-line { width: 120px; height: 2px; background: var(--border); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.preloader-fill { height: 100%; width: 0; background: var(--accent); transition: width 0.3s; }

/* ═══ CURSOR ═══ */
.cursor { position: fixed; top: 0; left: 0; z-index: 10000; pointer-events: none; mix-blend-mode: difference; }
.cursor-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-ring { width: 36px; height: 36px; border: 1.5px solid rgba(255,255,255,0.5); border-radius: 50%; position: absolute; top: -15px; left: -15px; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s; }
@media (pointer: coarse) { .cursor { display: none; } }

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

/* ═══ HEADER ═══ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1rem 2rem; background: rgba(10,10,15,0.8); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.logo { font-family: var(--font-display); font-size: 1.3rem; }
.nav { display: flex; gap: 2rem; align-items: center; }
.nav-link { font-size: 0.85rem; color: var(--fg2); transition: color 0.3s; }
.nav-link:hover { color: var(--fg); }
.menu-btn { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; }
.menu-btn span { display: block; width: 100%; height: 2px; background: var(--fg); position: absolute; left: 0; transition: all 0.3s; }
.menu-btn span:first-child { top: 0; }
.menu-btn span:last-child { bottom: 0; }
@media (max-width: 768px) {
  .nav { display: none; position: fixed; inset: 0; background: var(--bg); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 99; }
  .nav.open { display: flex; }
  .nav-link { font-size: 1.5rem; }
  .menu-btn { display: block; z-index: 101; }
}

/* ═══ HERO ═══ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 40%, var(--bg) 100%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem; max-width: 800px; }
.hero-heading { font-size: clamp(2.5rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.05; margin-bottom: 1.5rem; }
.hero-heading .line { display: block; overflow: hidden; }
.hero-heading .line-inner { display: inline-block; }
.hero-sub { color: var(--fg2); font-size: 1.05rem; line-height: 1.6; max-width: 500px; margin: 0 auto 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: var(--fg2); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.scroll-track { width: 1px; height: 40px; background: var(--border); position: relative; overflow: hidden; }
.scroll-thumb { width: 100%; height: 40%; background: var(--accent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%{transform:translateY(-100%)} 100%{transform:translateY(250%)} }

/* ═══ BUTTONS ═══ */
.btn { display: inline-flex; align-items: center; padding: 0.85rem 2rem; border: 1px solid var(--border); border-radius: 4px; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.3s var(--ease); background: transparent; color: var(--fg); position: relative; overflow: hidden; }
.btn::before { content: ""; position: absolute; inset: 0; background: var(--accent); transform: translateY(100%); transition: transform 0.4s var(--ease); }
.btn:hover::before { transform: translateY(0); }
.btn span, .btn { position: relative; z-index: 1; }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-primary::before { background: #fff; }
.btn-primary:hover { color: var(--bg); }

/* ═══ SECTIONS ═══ */
.section { padding: 8rem 0; position: relative; }
.section-label { color: var(--accent); margin-bottom: 1rem; }
.section-heading { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 2rem; }
.section-heading .line { display: block; overflow: hidden; }
.section-heading .line-inner { display: inline-block; }

/* ═══ SERVICES ═══ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.service-card { padding: 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; transition: border-color 0.3s, transform 0.3s var(--ease); }
.service-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.service-num { color: var(--accent); margin-bottom: 1rem; }
.service-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-desc { color: var(--fg2); font-size: 0.9rem; line-height: 1.6; }

/* ═══ PORTFOLIO ═══ */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; }
.portfolio-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: border-color 0.3s, transform 0.3s var(--ease); }
.portfolio-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.portfolio-card-inner { padding: 2rem; position: relative; min-height: 200px; display: flex; flex-direction: column; justify-content: flex-end; }
.portfolio-meta { color: var(--accent); margin-bottom: 0.5rem; }
.portfolio-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.portfolio-desc { color: var(--fg2); font-size: 0.9rem; }
.portfolio-num { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 3rem; color: var(--border); font-weight: 800; }

/* ═══ ABOUT ═══ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-desc { color: var(--fg2); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.stats-row { display: flex; gap: 3rem; }
.stat-val { font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-label { color: var(--fg2); margin-top: 0.25rem; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ═══ PROCESS ═══ */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.process-card { padding: 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; }
.process-num { color: var(--accent); margin-bottom: 1rem; font-size: 1.5rem; font-weight: 700; }
.process-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.75rem; }
.process-desc { color: var(--fg2); font-size: 0.9rem; line-height: 1.6; }

/* ═══ TESTIMONIALS ═══ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 3rem; }
.testimonial-card { padding: 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; }
.testimonial-quote { font-size: 1.05rem; line-height: 1.7; color: var(--fg2); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-name { font-weight: 600; display: block; }
.testimonial-role { color: var(--fg2); }

/* ═══ PRICING ═══ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.pricing-card { padding: 2.5rem 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; text-align: center; }
.pricing-card--accent { border-color: var(--accent); position: relative; }
.pricing-card--accent::before { content: "POPULAR"; position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 0.2rem 0.8rem; border-radius: 3px; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; }
.pricing-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--accent); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { padding: 0.5rem 0; color: var(--fg2); font-size: 0.9rem; border-bottom: 1px solid var(--border); }

/* ═══ FAQ ═══ */
.faq-list { max-width: 700px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { padding: 1.25rem 0; font-size: 1rem; font-weight: 500; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: "+"; font-size: 1.2rem; color: var(--accent); transition: transform 0.3s; }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 1.25rem; color: var(--fg2); line-height: 1.6; }

/* ═══ CONTACT ═══ */
.contact { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; }
.contact-inner { position: relative; z-index: 2; }
.contact-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; }

/* ═══ FOOTER ═══ */
.footer { padding: 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer .logo { font-size: 1rem; }
.footer .mono { color: var(--fg2); }

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal-up { opacity: 0; transform: translateY(40px); }
.line-inner { transform: translateY(110%); }

/* ═══ WEBGL ═══ */
.webgl-bg { position: absolute; inset: 0; }
.webgl-bg canvas { width: 100% !important; height: 100% !important; display: block; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .hero-heading { font-size: clamp(2rem, 8vw, 3.5rem); }
  .stats-row { gap: 1.5rem; }
  .stat-val { font-size: 1.5rem; }
}
