/* WK209.011A32
   Offline-safe build: all pages in root, assets in /assets, css in /css, js in /js
   Links are normalized to explicit files (e.g., index.html#request) to avoid file:// quirks.
*/

:root{
  --wk-navy:#0B1F3B;
  --wk-blue:#2f7cff;
  --wk-blue-soft:#74b8ff;
  --wk-yellow:#ffd83d;
  --bg:#010104;
  --text:#f4f7ff;
  --muted:#abb5c8;
  --card:rgba(7, 13, 25, .74);
  --card-strong:rgba(5, 10, 21, .9);
  --border:rgba(125, 164, 255, .2);
  --radius:16px;
}

*{ box-sizing:border-box; }

html{
  margin:0;
  padding:0;
  min-height:100%;
  color-scheme:dark;
  background:#010104;
}

body{
  margin:0;
  padding:0;
  min-height:100vh;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  color:var(--text);
  background-color:var(--bg);
  background-image:
    radial-gradient(ellipse 72% 46% at -8% 108%, rgba(47,124,255,.62) 0, rgba(22,75,184,.3) 28%, transparent 70%),
    radial-gradient(ellipse 72% 46% at 108% 108%, rgba(255,216,61,.48) 0, rgba(186,126,0,.2) 30%, transparent 70%),
    radial-gradient(ellipse 56% 18% at 10% 102%, rgba(116,184,255,.18) 0, transparent 72%),
    radial-gradient(ellipse 56% 18% at 90% 102%, rgba(255,216,61,.14) 0, transparent 72%),
    linear-gradient(180deg, #010104 0%, #010207 58%, #040404 100%);
  background-size:auto;
  background-position:center bottom;
  background-repeat:no-repeat;
  background-attachment:fixed;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible{
  outline:3px solid rgba(255,216,61,.88);
  outline-offset:3px;
}
img{ max-width:100%; height:auto; }

.container{ width:min(1100px, 92vw); margin:0 auto; }

header.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(1, 3, 9, .78);
  border-bottom:1px solid rgba(125,164,255,.18);
  box-shadow:0 18px 54px rgba(0,0,0,.24);
  backdrop-filter:blur(18px) saturate(145%);
  -webkit-backdrop-filter:blur(18px) saturate(145%);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:260px;
}

.brand img{
  width:auto;
  height:56px;
  display:block;
  border-radius:0;
  filter:
    drop-shadow(0 0 6px rgba(255,216,61,.24))
    drop-shadow(0 0 16px rgba(255,216,61,.1));
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

.nav a{
  padding:8px 10px;
  border-radius:10px;
  color:#eaf2ff;
  font-weight:600;
  transition:color .2s ease, background .2s ease, box-shadow .2s ease;
}

.nav a:hover{
  color:#fff;
  background:rgba(47,124,255,.12);
  text-decoration:none;
}

.nav a[aria-current="page"]{
  color:#fff;
  background:linear-gradient(135deg, rgba(47,124,255,.26), rgba(255,216,61,.1));
  box-shadow:inset 0 0 0 1px rgba(116,184,255,.2), 0 0 22px rgba(47,124,255,.12);
  text-decoration:none;
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(116,184,255,.52);
  font-weight:700;
  cursor:pointer;
  user-select:none;
  text-decoration:none !important;
  line-height:1;
  transition:transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.btn-primary{
  background:linear-gradient(135deg, #1758d6, #2f7cff);
  color:#fff;
  box-shadow:0 0 24px rgba(47,124,255,.24);
}

.btn-ghost{
  background:rgba(4, 9, 19, .8);
  color:#fff1a3;
  border-color:rgba(255,216,61,.48);
  box-shadow:0 0 20px rgba(255,216,61,.08);
}

.btn:hover{
  filter:brightness(1.1);
  transform:translateY(-1px);
}
.btn:active{ transform:translateY(1px); }

main{ padding:28px 0 44px; }

.hero{
  position:relative;
  border:1px solid rgba(116,184,255,.25);
  background:
    radial-gradient(ellipse 72% 100% at 0% 118%, rgba(47,124,255,.28) 0, transparent 64%),
    radial-gradient(ellipse 72% 100% at 100% 118%, rgba(255,216,61,.16) 0, transparent 64%),
    rgba(5,10,21,.78);
  border-radius:var(--radius);
  padding:26px;
  overflow:hidden;
  box-shadow:0 28px 86px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.04);
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(0deg, rgba(116,184,255,.04), transparent 42%);
}

.hero > *{ position:relative; z-index:1; }
.hero h1{ margin:0 0 10px; font-size:clamp(28px, 3.2vw, 44px); letter-spacing:-0.02em; }
.hero p{ margin:0 0 16px; color:var(--muted); font-size:1.05rem; line-height:1.5; }

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

.card{
  grid-column:span 4;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  min-height:120px;
  box-shadow:0 18px 54px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.card:nth-child(1){ box-shadow:0 20px 58px rgba(47,124,255,.09), inset 0 1px 0 rgba(255,255,255,.035); }
.card:nth-child(3){ box-shadow:0 20px 58px rgba(255,216,61,.06), inset 0 1px 0 rgba(255,255,255,.035); }
.card h3{ margin:0 0 8px; color:#eaf2ff; }
.card p{ margin:0; color:var(--muted); line-height:1.5; }

.section{
  margin-top:26px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  background:rgba(4, 8, 17, .72);
  box-shadow:0 20px 64px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.section .section{ background:rgba(2, 6, 14, .65); }
.section h2{ margin:0 0 10px; color:#eef5ff; }
.section p{ margin:0; color:var(--muted); line-height:1.6; }

/* Homepage: open editorial sections without card-like containers. */
.home-page main{ padding-top:0; }

.home-page .home-hero{
  border:0;
  border-bottom:1px solid rgba(125,164,255,.2);
  border-radius:0;
  padding:clamp(68px, 9vw, 112px) 0 clamp(48px, 6vw, 70px);
  background:transparent;
  box-shadow:none;
  overflow:visible;
}

.home-page .home-hero::after{
  inset:auto 0 -1px;
  height:1px;
  background:linear-gradient(90deg, rgba(47,124,255,.6), rgba(125,164,255,.1) 44%, rgba(255,216,61,.42));
  box-shadow:0 0 18px rgba(47,124,255,.14);
}

.home-page .home-hero h1{
  max-width:940px;
  margin-bottom:22px;
  font-size:clamp(42px, 6.5vw, 78px);
  line-height:1.02;
  letter-spacing:-.045em;
}

.home-page .home-hero p{ display:none; }

.home-pillars{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  padding:clamp(46px, 6vw, 70px) 0;
  border-bottom:1px solid rgba(125,164,255,.16);
}

.home-pillar{
  min-width:0;
  padding:0 clamp(24px, 3vw, 38px);
}

.home-pillar:first-child{ padding-left:0; }
.home-pillar:last-child{ padding-right:0; }

.home-pillar + .home-pillar{
  border-left:1px solid rgba(125,164,255,.18);
}

.home-pillar h3{
  margin:0 0 16px;
  color:#edf4ff;
  font-size:clamp(1.12rem, 1.65vw, 1.35rem);
  line-height:1.25;
}

.home-pillar p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.home-request{
  display:grid;
  grid-template-columns:minmax(150px, .42fr) minmax(0, 1.58fr);
  gap:clamp(34px, 7vw, 90px);
  padding:clamp(56px, 7vw, 82px) 0 36px;
  scroll-margin-top:110px;
}

.request-heading h2{
  margin:0;
  color:#eef5ff;
  font-size:clamp(2rem, 4vw, 3.75rem);
  line-height:1;
  letter-spacing:-.035em;
}

.request-heading h2::after{
  content:"";
  display:block;
  width:54px;
  height:2px;
  margin-top:20px;
  background:linear-gradient(90deg, var(--wk-blue), var(--wk-yellow));
  box-shadow:0 0 14px rgba(47,124,255,.3);
}

.request-form{
  padding-left:clamp(26px, 4vw, 52px);
  border-left:1px solid rgba(125,164,255,.18);
}

.home-page .request-form input,
.home-page .request-form textarea{
  border:0;
  border-bottom:1px solid rgba(125,164,255,.26);
  border-radius:0;
  padding:10px 2px 12px;
  background:transparent;
  box-shadow:none;
}

.home-page .request-form input:focus,
.home-page .request-form textarea:focus{
  border-bottom-color:rgba(255,216,61,.7);
}

footer.site-footer{
  border-top:1px solid rgba(125,164,255,.18);
  background:rgba(1, 3, 9, .84);
  padding:18px 0;
  color:#dce8ff;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.footer-inner{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
}

.small{ font-size:.92rem; color:var(--muted); }
.large{ color:#eaf2ff; }

.footer-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
  color:#eaf2ff;
}

.footer-phone{
  width:max-content;
  color:#fff1a3;
  font-weight:700;
  letter-spacing:.035em;
}

.footer-phone:hover{
  color:#fff7c9;
  text-decoration:none;
  text-shadow:0 0 14px rgba(255,216,61,.34);
}

.footer-credits{
  margin-top:14px;
  padding-top:10px;
  border-top:1px solid rgba(125,164,255,.1);
  color:#778399;
  font-size:.72rem;
  letter-spacing:.025em;
  text-align:center;
}

.footer-credits a{
  color:#9aa8bf;
  font-weight:600;
}

.footer-credits a:hover{
  color:#fff1a3;
  text-decoration:none;
}

.social-links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:10px;
}

.social-links a{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(116,184,255,.24);
  border-radius:12px;
  background:rgba(8, 16, 31, .88);
  box-shadow:0 0 0 rgba(47,124,255,0);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.social-links a:nth-child(n+4){ border-color:rgba(255,216,61,.22); }

.social-links a:hover{
  transform:translateY(-2px);
  border-color:rgba(116,184,255,.72);
  box-shadow:0 0 22px rgba(47,124,255,.22);
  text-decoration:none;
}

.social-links a:nth-child(n+4):hover{
  border-color:rgba(255,216,61,.7);
  box-shadow:0 0 22px rgba(255,216,61,.16);
}

.social-links img{
  width:23px;
  height:23px;
  object-fit:contain;
  filter:invert(1) brightness(1.2);
}

.form-row{
  display:grid;
  gap:10px;
  grid-template-columns:1fr 1fr;
}

label{ font-weight:700; color:#eaf2ff; font-size:.95rem; }

input,
textarea{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(125,164,255,.24);
  background:rgba(1, 5, 12, .82);
  color:var(--text);
  font-size:1rem;
  box-shadow:inset 0 1px 8px rgba(0,0,0,.28);
}

input::placeholder,
textarea::placeholder{ color:#758097; }
textarea{ min-height:110px; resize:vertical; }

.notice{
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  border:1px dashed rgba(125,164,255,.2);
  background:rgba(2, 6, 14, .58);
  color:var(--muted);
  font-size:.95rem;
}

.typewriter-bg{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:center;
  background-image:
    radial-gradient(ellipse 46% 110% at 0% 120%, rgba(47,124,255,.58) 0, transparent 72%),
    radial-gradient(ellipse 46% 110% at 100% 120%, rgba(255,216,61,.42) 0, transparent 72%),
    linear-gradient(180deg, #010104 0%, #040509 100%);
  background-size:auto;
  background-position:center bottom;
  padding:20px;
  border-bottom:1px solid rgba(125,164,255,.18);
  box-shadow:inset 0 -22px 54px rgba(0,0,0,.34), 0 18px 70px rgba(0,0,0,.22);
}

.typewriter{
  font-family:monospace;
  font-size:clamp(1.1rem, 2.3vw, 1.5rem);
  white-space:nowrap;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  color:#fff;
  text-shadow:0 0 12px rgba(47,124,255,.65), 0 0 28px rgba(255,216,61,.22);
}

.cursor{
  display:inline-block;
  width:1ch;
  animation:blink .7s infinite;
  color:var(--wk-yellow);
  text-shadow:0 0 14px rgba(255,216,61,.8);
}

@keyframes blink{
  0%, 100%{ opacity:1; }
  50%{ opacity:0; }
}

/* Specifically shrinks the logos in the Quick links section. */
.dev-card-top img{
  height:50px !important;
  width:auto;
  display:block;
}

/* Services page */
.services-page .page-wrap{
  width:min(1200px, 92vw);
  margin:0 auto;
}

.services-hero{
  position:relative;
  overflow:hidden;
  margin-top:28px;
  padding:54px clamp(22px, 4vw, 48px) 38px;
  border:1px solid rgba(116,184,255,.24);
  border-radius:var(--radius);
  background:
    radial-gradient(ellipse 72% 105% at 0% 118%, rgba(47,124,255,.3) 0, transparent 64%),
    radial-gradient(ellipse 72% 105% at 100% 118%, rgba(255,216,61,.17) 0, transparent 64%),
    rgba(4,8,17,.82);
  box-shadow:0 28px 86px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.04);
}

.services-hero h1{
  margin:0 0 12px;
  max-width:820px;
  font-size:clamp(34px, 5vw, 54px);
  letter-spacing:-.025em;
  color:#fff;
}

.services-hero p{
  margin:0;
  max-width:820px;
  font-size:1.1rem;
  line-height:1.65;
  color:var(--muted);
}

.mini-nav{
  margin-top:22px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding:9px 13px;
  border-radius:999px;
  border:1px solid rgba(116,184,255,.24);
  background:rgba(6,13,27,.8);
  color:#dceaff;
  font-weight:700;
  font-size:.9rem;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.chip:nth-child(n+4){
  color:#fff3ab;
  border-color:rgba(255,216,61,.24);
}

.chip:hover{
  transform:translateY(-1px);
  border-color:rgba(116,184,255,.68);
  box-shadow:0 0 20px rgba(47,124,255,.14);
  text-decoration:none;
}

.services-section{
  margin-top:22px;
  padding:clamp(24px, 4vw, 40px);
  border:1px solid rgba(125,164,255,.18);
  border-radius:var(--radius);
  background:rgba(4,8,17,.74);
  box-shadow:0 24px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.services-section h2{
  margin:0 0 14px;
  font-size:clamp(27px, 3.2vw, 36px);
  color:#f1f6ff;
}

.services-section > h3,
.services-section #addons > h3{
  margin-top:32px;
  color:#eaf2ff;
  font-size:1.4rem;
}

.services-section p{
  margin:0;
  max-width:920px;
  line-height:1.7;
  color:var(--muted);
}

.two-col{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:start;
  margin-top:18px;
}

.bullet{
  margin:0;
  padding-left:20px;
  color:#c9d3e4;
  line-height:1.55;
}

.bullet li{ margin:8px 0; }
.bullet li::marker{ color:var(--wk-blue-soft); }

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:20px;
  margin-top:22px;
}

.price-card{
  position:relative;
  padding:26px;
  border:1px solid rgba(125,164,255,.2);
  border-radius:14px;
  background:linear-gradient(180deg, rgba(8,15,29,.94), rgba(3,7,15,.92));
  box-shadow:0 18px 52px rgba(0,0,0,.27), inset 0 1px 0 rgba(255,255,255,.04);
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.price-card:hover{
  transform:translateY(-3px);
  border-color:rgba(116,184,255,.5);
  box-shadow:0 24px 62px rgba(0,0,0,.34), 0 0 25px rgba(47,124,255,.08);
}

.price-card.highlight{
  border-color:rgba(255,216,61,.48);
  box-shadow:0 22px 62px rgba(255,216,61,.08), inset 0 1px 0 rgba(255,255,255,.04);
}

.price-card h3{
  margin:0 0 10px;
  padding-right:82px;
  color:#eef5ff;
}

.price{
  margin:10px 0 14px;
  font-size:1.75rem;
  font-weight:800;
  color:#9bc9ff;
}

.price-card.highlight .price{ color:#ffe36c; }

.badge{
  position:absolute;
  top:14px;
  right:14px;
  padding:6px 10px;
  border:1px solid rgba(255,216,61,.35);
  border-radius:999px;
  background:rgba(75,54,0,.72);
  color:#fff1a3;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.3px;
}

.cta-row{
  margin-top:20px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.btn-outline{
  background:rgba(4,9,19,.8);
  color:#fff1a3;
  border-color:rgba(255,216,61,.48);
}

.small-note{
  max-width:900px;
  color:#8f9bb0 !important;
  font-size:.9rem;
}

.services-page #addons{
  scroll-margin-top:110px;
  margin-top:48px;
  padding-top:8px;
  border-top:1px solid rgba(125,164,255,.14);
}

.services-page footer.site-footer{ margin-top:42px; }

@media (max-width:900px){
  .card{ grid-column:span 6; }
  .brand{ min-width:auto; }
  .two-col{ grid-template-columns:1fr; }
  .home-page .home-hero h1{ font-size:clamp(40px, 8vw, 64px); }
}

@media (max-width:640px){
  .header-inner{ flex-direction:column; align-items:stretch; }
  .nav{ justify-content:flex-start; }
  .actions{ width:100%; }
  .actions .btn{ flex:1; }
  .card{ grid-column:span 12; }
  .form-row{ grid-template-columns:1fr; }
  .footer-inner{ align-items:flex-start; }
  .social-links{ justify-content:flex-start; }
  .services-hero{ padding:38px 22px 30px; }
  .services-section{ padding:24px 20px; }
  .price-card h3{ padding-right:0; }
  .badge{ position:static; display:inline-flex; margin-bottom:12px; }
  .brand img{ height:48px; }
  .home-page .home-hero{ padding:56px 0 44px; }
  .home-page .home-hero h1{ font-size:clamp(38px, 12vw, 54px); }
  .home-pillars{ grid-template-columns:1fr; padding:20px 0; }
  .home-pillar,
  .home-pillar:first-child,
  .home-pillar:last-child{ padding:28px 0; }
  .home-pillar + .home-pillar{
    border-left:0;
    border-top:1px solid rgba(125,164,255,.18);
  }
  .home-request{ grid-template-columns:1fr; gap:34px; padding-top:54px; }
  .request-form{ padding-left:0; border-left:0; }
}

@media (prefers-reduced-motion:reduce){
  *, *::before, *::after{
    scroll-behavior:auto !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}
