:root{
  --bg1:#15122B;
  --bg2:#211C42;
  --coral:#FF6B4A;
  --coral-soft:#FF8F73;
  --surface:#F4F1FB;
  --ink:#181425;
  --ink-soft:#5C5678;
  --lilac:#B4ADD9;
  --off-white:#EFEDFA;
  --line: rgba(239,237,250,0.12);
  --line-strong: rgba(239,237,250,0.18);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',sans-serif;
  background:
    radial-gradient(85% 45% at 85% -5%, rgba(255,107,74,0.16) 0%, rgba(255,107,74,0) 55%),
    radial-gradient(60% 40% at 5% 15%, rgba(255,107,74,0.08) 0%, rgba(0,0,0,0) 55%),
    linear-gradient(150deg, var(--bg1) 0%, var(--bg2) 55%, #171238 100%);
  background-attachment:fixed;
  color:var(--off-white);
  min-height:100vh;
}
a{color:inherit; text-decoration:none;}
img,svg{display:block;}
section{ position:relative; }
.wrap{ max-width:1120px; margin:0 auto; padding:0 32px; }

::selection{ background:var(--coral); color:#1B0E08; }

/* ---------- NAV ---------- */
header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:blur(14px);
  background:rgba(21,18,43,0.72);
  border-bottom:1px solid var(--line);
}
nav.wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.logo{
  font-family:'Space Grotesk', sans-serif; font-weight:700; font-size:19px;
}
.logo span{ color:var(--coral); }
.nav-links{
  display:flex; align-items:center; gap:36px;
  font-size:14px; font-weight:500; color:var(--lilac);
}
.nav-links a:hover{ color:var(--off-white); }
.nav-links a.active{ color:var(--off-white); }
.nav-cta{
  background:var(--coral); color:#1B0E08;
  font-size:14px; font-weight:700;
  padding:11px 22px; border-radius:999px;
}

/* ---------- MOBILE NAV TOGGLE ---------- */
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:40px; height:40px;
  background:none; border:none; cursor:pointer;
  padding:0; margin-left:12px;
  position:relative; z-index:70;
}
.nav-toggle span{
  display:block; width:22px; height:2px; margin:0 auto;
  background:var(--off-white); border-radius:2px;
  transition:transform .25s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  display:none;
}

/* ---------- BREADCRUMB (inner pages) ---------- */
.breadcrumb{
  padding:22px 0 0;
  font-family:'IBM Plex Mono', monospace;
  font-size:13px; color:var(--lilac);
}
.breadcrumb a{ color:var(--lilac); }
.breadcrumb a:hover{ color:var(--off-white); }
.breadcrumb .sep{ margin:0 8px; color:var(--line-strong); }
.breadcrumb .current{ color:var(--coral-soft); }

/* ---------- HERO (home) ---------- */
.hero{ padding:96px 0 120px; overflow:hidden; }
.hero .wrap{
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:40px; align-items:center;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:'IBM Plex Mono', monospace;
  font-size:14px; letter-spacing:0.03em; color:var(--coral-soft);
  border:1px solid rgba(255,107,74,0.35);
  background:rgba(255,107,74,0.08);
  padding:8px 16px; border-radius:999px;
  margin-bottom:28px;
}
.eyebrow .cursor{
  width:6px; height:14px; background:var(--coral); display:inline-block;
  animation:blink 1.1s steps(1) infinite;
}
@keyframes blink{ 50%{opacity:0;} }
h1{
  font-family:'Space Grotesk', sans-serif; font-weight:700;
  font-size:52px; line-height:1.08; letter-spacing:-0.015em;
  margin-bottom:22px;
}
h1 .hl{ color:var(--coral); }
.hero-sub{
  font-size:17px; color:var(--lilac); line-height:1.6; max-width:460px; margin-bottom:34px;
}
.hero-btns{ display:flex; gap:14px; flex-wrap:wrap; }
.btn-primary{
  background:var(--coral); color:#1B0E08; font-weight:700; font-size:15px;
  padding:15px 28px; border-radius:999px;
  box-shadow:0 16px 30px -10px rgba(255,107,74,0.55);
  display:inline-block;
}
.btn-ghost{
  border:1.5px solid var(--line-strong); color:var(--off-white); font-weight:600; font-size:15px;
  padding:14px 27px; border-radius:999px;
  display:inline-block;
}

.hero-visual{ position:relative; height:420px; }
.glow-link{
  position:absolute; top:38%; left:36%; width:260px; height:180px;
  background: radial-gradient(closest-side, rgba(255,107,74,0.35), rgba(255,107,74,0));
  filter: blur(10px); z-index:0;
}
.browser-wrap{ position:absolute; top:10px; left:0; width:340px; transform:rotate(-4deg); z-index:1; }
.browser{ border-radius:13px; background:var(--surface); box-shadow:0 40px 70px -18px rgba(0,0,0,0.6); overflow:hidden; }
.browser-top{ height:32px; background:#E7E3F6; display:flex; align-items:center; gap:12px; padding:0 12px; border-bottom:1px solid rgba(24,20,37,0.08); }
.traffic{ display:flex; gap:5px; }
.traffic span{ width:8px;height:8px;border-radius:50%; display:block; }
.traffic .r{background:#E4675E;} .traffic .y{background:#E5B75B;} .traffic .g{background:#63C069;}
.urlbar{ flex:1; height:18px; background:#F8F6FD; border-radius:5px; display:flex; align-items:center; padding:0 8px; font-family:'IBM Plex Mono', monospace; font-size:9px; color:var(--ink-soft); }
.site{ padding:20px 22px 24px; }
.site-nav{ display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.site-logo{ font-family:'Space Grotesk', sans-serif; font-weight:700; font-size:13px; color:var(--ink); }
.site-logo span{ color:var(--coral); }
.site-links{ display:flex; gap:10px; font-size:9px; color:var(--ink-soft); font-weight:500; }
.site-cta{ background:var(--ink); color:var(--surface); font-size:9px; font-weight:600; padding:6px 10px; border-radius:5px; }
.site-hero-title{ font-family:'Space Grotesk', sans-serif; font-weight:700; font-size:19px; color:var(--ink); line-height:1.15; margin-bottom:10px; max-width:85%; }
.line{ height:5px; border-radius:3px; background:rgba(24,20,37,0.10); margin-bottom:5px; }
.line.w1{width:88%;} .line.w2{width:60%;}

.phone-wrap{ position:absolute; top:96px; right:0; width:190px; transform:rotate(7deg); z-index:2; }
.phone{ width:100%; border-radius:26px; background:#0F0D1E; padding:9px; box-shadow:0 40px 70px -16px rgba(0,0,0,0.7), 0 0 0 1px rgba(239,237,250,0.06); }
.phone-screen{ background:var(--surface); border-radius:18px; overflow:hidden; padding-bottom:10px; }
.phone-status{ display:flex; justify-content:space-between; padding:10px 14px 6px; font-family:'IBM Plex Mono', monospace; font-size:8px; color:var(--ink-soft); }
.phone-header{ padding:4px 14px 10px; font-family:'Space Grotesk', sans-serif; font-weight:700; font-size:12px; color:var(--ink); }
.app-card{ margin:0 11px 8px; padding:9px; background:#FFFFFF; border-radius:10px; box-shadow:0 6px 14px -8px rgba(24,20,37,0.18); display:flex; gap:8px; align-items:center; }
.app-card .thumb{ width:26px; height:26px; border-radius:7px; background:linear-gradient(135deg, var(--coral), #FFB199); flex-shrink:0; }
.app-card .meta{ flex:1; }
.app-card .l1{ height:5px; width:78%; border-radius:3px; background:rgba(24,20,37,0.14); margin-bottom:4px;}
.app-card .l2{ height:4px; width:50%; border-radius:3px; background:rgba(24,20,37,0.08);}

.trust-row{
  display:flex; gap:40px; margin-top:56px; flex-wrap:wrap;
}
.trust-item .num{ font-family:'Space Grotesk', sans-serif; font-weight:700; font-size:28px; color:var(--off-white); }
.trust-item .lbl{ font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--lilac); margin-top:4px; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero{ padding:36px 0 76px; }
.page-hero h1{ font-size:44px; }
.page-hero .page-sub{ color:var(--lilac); font-size:17px; line-height:1.6; max-width:600px; }

/* ---------- SECTION HEADER ---------- */
.section-head{ max-width:560px; margin-bottom:56px; }
.section-tag{
  font-family:'IBM Plex Mono', monospace; font-size:13px; color:var(--coral-soft);
  letter-spacing:0.12em; text-transform:uppercase; margin-bottom:14px; display:block;
}
h2{ font-family:'Space Grotesk', sans-serif; font-weight:700; font-size:36px; line-height:1.15; letter-spacing:-0.01em; }
.section-sub{ color:var(--lilac); font-size:16px; margin-top:14px; line-height:1.6; }

/* ---------- SERVICES ---------- */
.services{ padding:20px 0 120px; }
.services-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
.service-card{
  border:1px solid var(--line); background:rgba(239,237,250,0.03);
  border-radius:18px; padding:32px 28px; transition:border-color .2s;
}
.service-card:hover{ border-color:var(--line-strong); }
.service-icon{
  width:46px; height:46px; border-radius:12px;
  background:linear-gradient(135deg, var(--coral), var(--coral-soft));
  display:flex; align-items:center; justify-content:center;
  font-family:'Space Grotesk', sans-serif; font-weight:700; color:#1B0E08; font-size:18px;
  margin-bottom:22px;
}
.service-card h2, .service-card h3{ font-family:'Space Grotesk', sans-serif; font-weight:600; font-size:20px; margin-bottom:12px; }
.service-card p{ color:var(--lilac); font-size:14.5px; line-height:1.6; }
.service-card ul{ margin-top:16px; padding-left:0; list-style:none; }
.service-card li{ color:var(--lilac); font-size:13.5px; line-height:1.9; padding-left:20px; position:relative; }
.service-card li::before{ content:"—"; color:var(--coral); position:absolute; left:0; }
.service-card .btn-ghost{ margin-top:22px; font-size:13.5px; padding:10px 20px; }

/* ---------- WORK ---------- */
.work{ padding:20px 0 120px; }
.work-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
.work-card{
  border-radius:16px; overflow:hidden; border:1px solid var(--line);
  background:rgba(239,237,250,0.03);
}
.work-thumb{
  height:190px; background:var(--surface); position:relative; overflow:hidden;
}
.work-thumb img{ width:100%; height:100%; object-fit:cover; object-position:top; display:block; transition:transform .3s; }
.work-card:hover .work-thumb img{ transform:scale(1.04); }
.work-body{ padding:20px 22px 24px; }
.work-body .tag{
  font-family:'IBM Plex Mono', monospace; font-size:11px; color:var(--coral-soft);
  letter-spacing:0.06em; text-transform:uppercase; margin-bottom:8px; display:block;
}
.work-body h3{ font-family:'Space Grotesk', sans-serif; font-weight:600; font-size:17px; margin-bottom:6px; }
.work-body p{ font-size:13.5px; color:var(--lilac); }

/* ---------- PROCESS ---------- */
.process{ padding:20px 0 120px; }
.process-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:22px; }
.process-step{ position:relative; padding-top:8px; }
.process-step .n{
  font-family:'Space Grotesk', sans-serif; font-weight:700; font-size:15px;
  color:var(--coral); border:1px solid rgba(255,107,74,0.4);
  width:34px; height:34px; border-radius:10px; display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.process-step h3{ font-family:'Space Grotesk', sans-serif; font-weight:600; font-size:16.5px; margin-bottom:8px; }
.process-step p{ font-size:13.5px; color:var(--lilac); line-height:1.55; }

/* ---------- FAQ ---------- */
.faq{ padding:20px 0 120px; }
.faq-list{ display:flex; flex-direction:column; gap:14px; max-width:760px; }
.faq-item{
  border:1px solid var(--line); background:rgba(239,237,250,0.03);
  border-radius:16px; padding:26px 28px;
}
.faq-item h2, .faq-item h3{
  font-family:'Space Grotesk', sans-serif; font-weight:600; font-size:17px;
  margin-bottom:10px; display:flex; align-items:baseline; gap:10px;
}
.faq-item h2::before, .faq-item h3::before{
  content:"?"; color:var(--coral); font-weight:700; flex-shrink:0;
}
.faq-item p{ color:var(--lilac); font-size:14.5px; line-height:1.65; padding-left:22px; }

/* ---------- CTA BANNER ---------- */
.cta-banner{ padding:0 0 120px; }
.cta-box{
  border:1px solid var(--line-strong);
  background:rgba(239,237,250,0.04);
  border-radius:24px; padding:56px;
  display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
}
.cta-box h2{ font-size:28px; margin-bottom:8px; }
.cta-box p{ color:var(--lilac); font-size:15px; }

/* ---------- CONTACT ---------- */
.contact{ padding:20px 0 130px; }
.contact-box{
  border:1px solid var(--line-strong);
  background:rgba(239,237,250,0.04);
  border-radius:24px; padding:56px;
  display:grid; grid-template-columns:1fr 1fr; gap:56px;
}
.contact-left h1, .contact-left h2{ margin-bottom:18px; }
.contact-left p{ color:var(--lilac); font-size:15.5px; line-height:1.65; margin-bottom:28px; max-width:400px; }
.contact-direct{ display:flex; flex-direction:column; gap:14px; }
.contact-direct a{
  display:flex; align-items:center; gap:12px;
  font-size:14.5px; font-weight:600; color:var(--off-white);
}
.contact-direct .ic{
  width:36px; height:36px; border-radius:10px; background:rgba(255,107,74,0.12);
  display:flex; align-items:center; justify-content:center; color:var(--coral-soft); font-size:16px;
}

form{ display:flex; flex-direction:column; gap:16px; }
.form-row{ display:flex; gap:16px; }
label{ font-family:'IBM Plex Mono', monospace; font-size:11.5px; color:var(--lilac); letter-spacing:0.04em; margin-bottom:7px; display:block; }
input, select, textarea{
  width:100%; background:rgba(239,237,250,0.06); border:1px solid var(--line-strong);
  border-radius:10px; padding:13px 14px; color:var(--off-white); font-family:'Inter', sans-serif; font-size:14px;
  outline:none;
}
select option{
  color:#181425; background:#F4F1FB;
}
input::placeholder, textarea::placeholder{ color:rgba(239,237,250,0.35); }
input:focus, select:focus, textarea:focus{ border-color:var(--coral); }
textarea{ resize:vertical; min-height:96px; }
.field{ flex:1; }
.submit-btn{
  background:var(--coral); color:#1B0E08; font-weight:700; font-size:15px;
  padding:15px; border-radius:10px; border:none; cursor:pointer; margin-top:4px;
  transition:filter .15s;
}
.submit-btn:hover{ filter:brightness(1.08); }
.form-note{ font-size:12.5px; color:var(--lilac); margin-top:2px; }

/* ---------- FOOTER ---------- */
footer{ border-top:1px solid var(--line); padding:40px 0; }
footer .wrap{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.footer-left{ display:flex; align-items:center; gap:12px; }
.footer-mark{
  width:30px; height:30px; border-radius:8px;
  background:linear-gradient(135deg, var(--coral), var(--coral-soft));
  display:flex; align-items:center; justify-content:center;
  font-family:'Space Grotesk', sans-serif; font-weight:700; font-size:14px; color:#1B0E08;
}
.footer-left span{ font-size:13px; color:var(--lilac); font-family:'IBM Plex Mono', monospace; }
.footer-links{ display:flex; gap:24px; font-size:13.5px; color:var(--lilac); }
.footer-links a:hover{ color:var(--off-white); }

/* ---------- RESPONSIVE ---------- */
@media (max-width:860px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
  .mobile-menu{
    display:block;
    position:fixed; top:76px; left:0; right:0; bottom:0;
    background:#100D22;
    z-index:60;
    overflow-y:auto;
    border-top:1px solid var(--line);
    opacity:0; visibility:hidden; pointer-events:none;
    transform:translateY(-6px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .mobile-menu.open{
    opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0);
  }
  .mobile-menu .wrap{
    padding-top:12px; padding-bottom:40px;
    display:flex; flex-direction:column;
  }
  .mobile-menu a{
    font-family:'Space Grotesk', sans-serif;
    font-size:21px; font-weight:600; color:var(--off-white);
    padding:18px 0; border-bottom:1px solid var(--line);
  }
  .mobile-menu a.active{ color:var(--coral-soft); }
  .mobile-menu .mobile-cta{
    margin-top:24px; text-align:center; border:none;
    font-family:'Inter', sans-serif; font-size:15px;
  }
  .hero .wrap{ grid-template-columns:1fr; }
  .hero-visual{ height:320px; margin-top:20px; }
  .browser-wrap{ width:280px; }
  .phone-wrap{ width:150px; top:120px; }
  h1{ font-size:38px; }
  .page-hero h1{ font-size:32px; }
  .services-grid, .work-grid{ grid-template-columns:1fr; }
  .process-grid{ grid-template-columns:1fr 1fr; }
  .contact-box{ grid-template-columns:1fr; padding:32px 24px; }
  .cta-box{ padding:32px 24px; }
  .form-row{ flex-direction:column; }
  .trust-row{ gap:28px; }
}
