/* ===== Lonjak — aurora glass / bento ===== */
:root {
  --bg: #07070d;
  --bg-2: #0c0c16;
  --text: #f3f1fb;
  --muted: #9b9ab2;
  --faint: #6b6a82;
  --line: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-2: rgba(255, 255, 255, 0.06);
  --pink: #2e9bff;   /* primary — cyan-blue from logo arrow */
  --gold: #7b5cff;   /* secondary — violet from logo bars */
  --violet: #8b5cf6;
  --teal: #2dd4bf;
  --radius: 24px;
  --radius-sm: 16px;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, .logo-text { font-family: "Bricolage Grotesque", "Inter", sans-serif; line-height: 1.05; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
svg { display: block; }

.grad {
  background: linear-gradient(100deg, var(--pink), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ===== Aurora backdrop ===== */
.aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: var(--bg); }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.b1 { width: 560px; height: 560px; background: var(--pink); top: -180px; left: -120px; animation: float1 18s ease-in-out infinite; }
.b2 { width: 520px; height: 520px; background: var(--violet); top: 20%; right: -160px; animation: float2 22s ease-in-out infinite; }
.b3 { width: 480px; height: 480px; background: var(--gold); bottom: -200px; left: 30%; opacity: 0.35; animation: float1 26s ease-in-out infinite reverse; }
@keyframes float1 { 50% { transform: translate(60px, 50px) scale(1.1); } }
@keyframes float2 { 50% { transform: translate(-50px, 70px) scale(1.05); } }
.grain {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
}

/* ===== Glass utility ===== */
.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--maxw); margin: 0 auto;
}
.site-header.scrolled {
  background: rgba(10, 10, 18, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  display: block; border-radius: 11px; object-fit: cover;
  border: 1px solid rgba(120, 160, 255, 0.3);
  background: rgba(120, 160, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(46, 155, 255, 0.08), 0 6px 20px -6px rgba(46, 155, 255, 0.55);
}
.logo:hover .logo-mark { box-shadow: 0 0 0 4px rgba(46, 155, 255, 0.14), 0 8px 26px -6px rgba(46, 155, 255, 0.7); }
.logo-text { font-weight: 700; font-size: 22px; }
.logo-text .dot { color: var(--pink); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--muted); font-weight: 500; font-size: 15px; transition: color 0.2s; }
.nav a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(100deg, var(--pink), var(--gold));
  color: #0a0a12 !important; font-weight: 600;
  padding: 10px 18px; border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px -8px rgba(46, 155, 255, 0.6); }

.burger { display: none; flex-direction: column; gap: 5px; background: var(--glass); border: 1px solid var(--line); border-radius: 12px; padding: 11px; cursor: pointer; }
.burger span { width: 20px; height: 2px; background: var(--text); transition: 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: 1px solid transparent; transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-block { width: 100%; }
.btn-primary { background: linear-gradient(100deg, var(--pink), var(--gold)); color: #0a0a12; box-shadow: 0 14px 34px -12px rgba(46, 155, 255, 0.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(46, 155, 255, 0.7); }
.btn-ghost { background: var(--glass); border-color: var(--line); color: var(--text); }
.btn-ghost:hover { background: var(--glass-2); transform: translateY(-2px); }

.pill {
  display: inline-block; padding: 8px 16px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--line);
  font-size: 13px; color: var(--muted); margin-bottom: 26px;
}

/* ===== Hero ===== */
.hero { max-width: var(--maxw); margin: 0 auto; padding: 60px 28px 40px; text-align: center; }
.hero-title { font-size: clamp(40px, 7vw, 82px); font-weight: 800; margin-bottom: 24px; }
.hero-title em { font-style: italic; color: var(--gold); font-weight: 700; }
.hero-sub { font-size: 19px; color: var(--muted); max-width: 600px; margin: 0 auto 34px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

/* ===== Bento ===== */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: left; }
.bento-card { padding: 26px; display: flex; flex-direction: column; justify-content: space-between; min-height: 150px; position: relative; overflow: hidden; }
.span-2 { grid-column: span 2; }
.bento-card.accent { background: linear-gradient(150deg, rgba(46,155,255,0.18), rgba(123,92,255,0.08)); border-color: rgba(46,155,255,0.3); }
.bento-eyebrow { font-size: 13px; color: var(--muted); }
.bento-big { font-family: "Bricolage Grotesque"; font-size: clamp(48px, 7vw, 72px); font-weight: 800; line-height: 1; background: linear-gradient(100deg, var(--pink), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 8px 0; }
.bento-big2 { font-family: "Bricolage Grotesque"; font-size: 40px; font-weight: 800; }
.bento-note { font-size: 14px; color: var(--muted); }
.bento-card.row { flex-direction: row; align-items: center; justify-content: space-between; gap: 16px; }
.badge-google { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--muted); text-align: right; }
.spark { display: flex; align-items: flex-end; gap: 7px; height: 54px; margin-top: 14px; }
.spark span { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--gold), var(--pink)); border-radius: 5px 5px 0 0; animation: rise 0.9s ease backwards; }
@keyframes rise { from { height: 0; } }

/* ===== Trust ===== */
.trust { max-width: var(--maxw); margin: 60px auto; padding: 0 28px; text-align: center; }
.trust p { color: var(--faint); font-size: 14px; margin-bottom: 22px; }
.trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; }
.trust-row span { font-family: "Bricolage Grotesque"; font-weight: 700; font-size: 20px; color: var(--faint); transition: color 0.2s; }
.trust-row span:hover { color: var(--text); }

/* ===== Sections ===== */
.section { max-width: var(--maxw); margin: 0 auto; padding: 80px 28px; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.eyebrow { color: var(--pink); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 46px); font-weight: 800; margin: 12px 0 14px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* ===== Services ===== */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc {
  background: var(--glass); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.svc:hover { transform: translateY(-6px); border-color: rgba(46,155,255,0.35); background: var(--glass-2); }
.svc.featured { grid-column: span 1; background: linear-gradient(155deg, rgba(46,155,255,0.16), rgba(139,92,246,0.08)); border-color: rgba(46,155,255,0.3); position: relative; }
.svc-icon { font-size: 32px; margin-bottom: 16px; }
.svc h3 { font-size: 21px; margin-bottom: 10px; }
.svc p { color: var(--muted); font-size: 15px; }
.svc-tag { display: inline-block; margin-top: 16px; font-size: 12px; font-weight: 600; color: var(--gold); border: 1px solid rgba(123,92,255,0.4); border-radius: 999px; padding: 4px 12px; }

/* ===== Timeline ===== */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tl-step { padding: 28px 24px; position: relative; }
.tl-no { font-family: "Bricolage Grotesque"; font-size: 38px; font-weight: 800; background: linear-gradient(100deg, var(--pink), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 18px; }
.tl-step h3 { font-size: 19px; margin-bottom: 10px; }
.tl-step p { color: var(--muted); font-size: 14px; }

/* ===== Results ===== */
.results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.result { padding: 28px; transition: transform 0.25s, border-color 0.25s; }
.result:hover { transform: translateY(-6px); border-color: rgba(123,92,255,0.4); }
.r-tag { display: inline-block; font-size: 12px; font-weight: 600; color: var(--gold); background: rgba(123,92,255,0.12); border-radius: 999px; padding: 5px 13px; margin-bottom: 16px; }
.result h3 { font-size: 20px; margin-bottom: 8px; }
.result > p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.r-stats { display: flex; gap: 26px; border-top: 1px solid var(--line); padding-top: 18px; }
.r-stats strong { display: block; font-family: "Bricolage Grotesque"; font-size: 28px; }
.r-stats span { font-size: 13px; color: var(--muted); }

/* ===== About ===== */
.about { display: grid; grid-template-columns: 1.3fr 1fr; gap: 46px; padding: 46px; align-items: center; }
.about-text h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin: 12px 0 16px; }
.about-text p { color: var(--muted); font-size: 16px; margin-bottom: 14px; }
.about-text em { color: var(--gold); font-style: italic; }
.checklist { list-style: none; display: grid; gap: 12px; margin-top: 22px; }
.checklist li { padding-left: 32px; position: relative; font-weight: 500; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; background: linear-gradient(100deg, var(--pink), var(--gold)); color: #0a0a12; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stats div { background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px; text-align: center; }
.about-stats strong { display: block; font-family: "Bricolage Grotesque"; font-size: 34px; font-weight: 800; background: linear-gradient(100deg, var(--pink), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about-stats span { font-size: 13px; color: var(--muted); }

/* ===== Contact ===== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; padding: 46px; align-items: start; }
.contact-info h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin: 12px 0 14px; }
.contact-info > p { color: var(--muted); margin-bottom: 28px; }
.contact-list { list-style: none; display: grid; gap: 18px; margin-bottom: 26px; }
.contact-list li { display: grid; gap: 4px; }
.ci-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--pink); font-weight: 600; }
.contact-list a:hover { color: var(--gold); }
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.socials a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: var(--glass); border: 1px solid var(--line); font-size: 14px; font-weight: 500; transition: 0.2s; }
.socials a:hover { border-color: rgba(46,155,255,0.4); color: var(--gold); transform: translateY(-2px); }

.contact-form { display: grid; gap: 15px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 14px; font-weight: 500; color: var(--muted); }
.field input, .field textarea, .field select {
  background: rgba(0,0,0,0.25); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 13px 15px;
  color: var(--text); font-family: inherit; font-size: 15px; resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field select { appearance: none; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(46,155,255,0.15); }
.field input.invalid, .field textarea.invalid { border-color: var(--pink); }
.form-note { font-size: 12px; color: var(--faint); text-align: center; }
.form-success { color: var(--teal); font-weight: 600; text-align: center; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--line); margin-top: 40px; padding: 56px 28px 28px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto 36px; display: grid; grid-template-columns: 1.8fr 1fr 1.2fr 1fr; gap: 32px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 270px; }
.footer-col h4 { font-size: 15px; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; color: var(--muted); font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--faint); font-size: 13px; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .services, .results { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .about, .contact { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav {
    position: fixed; inset: 70px 12px auto 12px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(12,12,22,0.96); backdrop-filter: blur(20px);
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 8px; transform: translateY(-130%); opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav a { padding: 14px 16px; border-radius: 12px; }
  .nav a:hover { background: var(--glass); }
  .nav-cta { text-align: center; margin-top: 4px; }
  .burger { display: flex; }
  .bento, .services, .results, .timeline, .about-stats, .footer-inner { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }
  .bento-card.row { flex-direction: column; align-items: flex-start; }
  .about, .contact { padding: 28px; }
  .section { padding: 56px 22px; }
  .hero { padding: 40px 22px; }
}
