/* WebNova — Ultra High-End Static Site
   Authoring: ChatGPT
   Notes: Drop this folder into Bluehost /public_html. No build tools required.
*/

/* -----------------------------
   Design tokens
------------------------------ */
:root{
  --bg: #05070d;
  --bg2:#070a14;
  --surface: rgba(255,255,255,0.06);
  --surface2: rgba(255,255,255,0.085);
  --border: rgba(255,255,255,0.14);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --muted2: rgba(255,255,255,0.58);

  --accent: #34c6ff;
  --accent2:#2a7bff;
  --glow: rgba(52,198,255,0.38);

  --shadow: 0 22px 70px rgba(0,0,0,0.55);
  --shadow2: 0 12px 40px rgba(0,0,0,0.40);

  --radius: 18px;
  --radius2: 28px;

  /* Layout */
  --max: 1200px;
  --gutter: clamp(18px, 3vw, 28px);

  /* Spacing scale (vertical rhythm) */
  --s-1: 10px;
  --s0: 14px;
  --s1: 18px;
  --s2: 24px;
  --s3: 32px;
  --s4: 44px;
  --s5: 64px;
  --s6: clamp(72px, 8vw, 120px);

  --lead: 60ch;
}

/* -----------------------------
   Base
------------------------------ */
*{ box-sizing:border-box }
html,body{ height:100% }
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 14% 12%, rgba(52,198,255,0.12), transparent 65%),
    radial-gradient(820px 540px at 88% 26%, rgba(42,123,255,0.12), transparent 62%),
    radial-gradient(680px 420px at 48% 92%, rgba(52,198,255,0.08), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a{ color:inherit; text-decoration:none }
img{ max-width:100%; display:block }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.muted{ color: var(--muted) }
.muted2{ color: var(--muted2) }

.kicker{
  margin-bottom: 18px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 12px;
}

.dot{
  width: 14px;
  height: 14px;
  display: inline-grid;
  place-items: center;
  background: transparent;
  border-radius: 50%;
  box-shadow: none;
}
.dot::before{
  content: "✦";
  font-size: 12px;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(52,198,255,0.35);
}

h1,h2,h3{ margin:0 0 0.35em 0; font-family: Sora, Inter, ui-sans-serif, system-ui; letter-spacing:-0.02em }
p{ margin:0 0 1em 0 }

h1{
  font-size: clamp(40px, 5.2vw, 62px);
  line-height: 1.03;
}
h2{
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
}
h3{
  font-size: 18px;
  line-height:1.25;
}

.lead{
  max-width: var(--lead);
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
}

/* -----------------------------
   Nav
------------------------------ */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4,6,12,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
}

.nav-inner{
  height: 78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

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

.brand-logo{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  display:grid;
  place-items:center;
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.brand-logo img{ width: 28px; height: 28px; object-fit: contain; }

.brand-name{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand-name strong{ font-weight: 800; letter-spacing:-0.02em; }
.brand-name span{ color: var(--muted2); font-size: 12px; margin-top: 3px; }

.nav-links{
  display:flex;
  align-items:center;
  gap: 22px;
}

.nav-links a{
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover{
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.06);
}
.nav-links a.active{
  color: rgba(255,255,255,0.95);
  background: rgba(52,198,255,0.10);
  border: 1px solid rgba(52,198,255,0.20);
}

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

.burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.90);
}
.burger span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  margin: 4px auto;
  border-radius: 2px;
}

.mobile{
  display:none;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(4,6,12,0.75);
}
.mobile[data-open="true"]{ display:block; }
.mobile a{
  display:block;
  padding: 14px var(--gutter);
  color: rgba(255,255,255,0.86);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
}
.mobile a:last-child{ border-bottom: none; }

/* -----------------------------
   Buttons
------------------------------ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  font-size: 14px;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  box-shadow: 0 10px 26px rgba(0,0,0,0.30);
  will-change: transform;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
}

.btn-primary{
  background: linear-gradient(135deg, rgba(52,198,255,0.22), rgba(42,123,255,0.16));
  border-color: rgba(52,198,255,0.26);
  box-shadow: 0 18px 54px rgba(52,198,255,0.14);
}
.btn-primary:hover{
  background: linear-gradient(135deg, rgba(52,198,255,0.28), rgba(42,123,255,0.20));
  border-color: rgba(52,198,255,0.34);
}

.btn-ghost{
  box-shadow:none;
  background: transparent;
}

.btn svg{ width: 16px; height: 16px; }

/* -----------------------------
   Sections
------------------------------ */
.section{
  padding: var(--s6) 0;
}

.section-tight{ padding: var(--s5) 0; }

.section-head{
  display:flex;
  flex-direction:column;
  gap: 12px;
  margin-bottom: var(--s4);
}

.section-head .lead{ margin:0; }

.grid{
  display:grid;
  gap: 26px;
}

.grid-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }

.card{
  position:relative;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow2);
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(540px 180px at 22% 0%, rgba(52,198,255,0.12), transparent 60%);
  pointer-events:none;
}

.card-inner{
  position:relative;
  padding: 34px;
}

.card-title{
  display:flex;
  align-items:flex-start;
  gap: 14px;
  margin-bottom: 12px;
}
.icon{
  width: 42px; height: 42px;
  border-radius: 14px;
  background: rgba(52,198,255,0.10);
  border: 1px solid rgba(52,198,255,0.20);
  box-shadow: 0 16px 50px rgba(52,198,255,0.10);
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.icon svg{ width: 20px; height: 20px; }

.card p{ color: var(--muted); margin-bottom: 0; }
.card ul{ margin: 16px 0 0 0; padding-left: 18px; color: var(--muted); }
.card li{ margin: 10px 0; line-height: 1.55; }

/* -----------------------------
   Hero
------------------------------ */
.hero{
  padding: clamp(66px, 7vw, 120px) 0 clamp(58px, 6vw, 100px);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(26px, 4vw, 44px);
  align-items:center;
}
.hero h1{ margin-bottom: 14px; }
.hero .lead{ margin-bottom: 26px; }

.hero-ctas{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 6px;
}

.hero-panel{
  border-radius: var(--radius2);
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}

.hero-metrics{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}

.metric{
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 14px 14px;
}
.metric strong{ font-size: 18px; letter-spacing:-0.01em; }
.metric span{ display:block; margin-top: 6px; color: var(--muted2); font-size: 12px; }

/* -----------------------------
   Portfolio cards
------------------------------ */
.project{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.project-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 6px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.82);
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
}

.project-actions{ display:flex; gap: 10px; flex-wrap:wrap; }

.project-shot{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
  aspect-ratio: 16 / 10;
  display:grid;
  place-items:center;
  position:relative;
}

.project-shot img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease;
  filter: saturate(1.05) contrast(1.02);
}
.card:hover .project-shot img{ transform: scale(1.06); }

.project-shot::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.55));
}

.project-meta{
  display:grid;
  gap: 8px;
}

.project-meta p{ margin:0; }

/* -----------------------------
   Pricing
------------------------------ */
.pricing{
  align-items:stretch;
}
.price{
  font-size: 40px;
  letter-spacing:-0.03em;
  margin: 6px 0 0 0;
}
.price small{
  font-size: 14px;
  color: var(--muted2);
  font-weight: 700;
  margin-left: 8px;
}

.plan-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
}

.plan-feats{
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 16px;
}
.plan-feats li{ margin: 12px 0; }

/* Make pricing cards equal height and push buttons to bottom */
.pricing .card{
  height: 100%;
}

.pricing .card-inner{
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing .plan-actions{
  margin-top: auto;          /* pushes to bottom */
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 22px;
}

/* -----------------------------
   CTA slab
------------------------------ */
.cta{
  padding: clamp(42px, 5vw, 64px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}
.cta .lead{ margin: 0; }
.cta-actions{ display:flex; gap: 12px; flex-wrap:wrap; }

/* -----------------------------
   Forms
------------------------------ */
.form{
  display:grid;
  gap: 14px;
  margin-top: 10px;
}
.field{
  display:grid;
  gap: 8px;
}
label{
  font-size: 13px;
  color: rgba(255,255,255,0.84);
  font-weight: 700;
}
input, textarea, select{
  width:100%;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.92);
  outline: none;
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}
textarea{ min-height: 140px; resize: vertical; }
input:focus, textarea:focus, select:focus{
  border-color: rgba(52,198,255,0.38);
  background: rgba(255,255,255,0.065);
  box-shadow: 0 0 0 6px rgba(52,198,255,0.10);
}

/* Status banners */
.notice{
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.88);
}
.notice.ok{
  border-color: rgba(52,198,255,0.25);
  background: rgba(52,198,255,0.10);
}
.notice.err{
  border-color: rgba(255,99,99,0.24);
  background: rgba(255,99,99,0.09);
}

/* -----------------------------
   Footer
------------------------------ */
.footer{
  padding: var(--s5) 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(3,5,10,0.4);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}

.footer .brand-logo{ width: 44px; height: 44px; border-radius: 16px; }
.footer .brand-logo img{ width: 34px; height: 34px; }

.footer a{ color: rgba(255,255,255,0.74); }
.footer a:hover{ color: rgba(255,255,255,0.95); }

.socials{
  display:flex;
  gap: 10px;
  margin-top: 14px;
}
.social{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  display:grid;
  place-items:center;
}
.social svg{ width: 18px; height: 18px; opacity: 0.9; }

/* -----------------------------
   Reveal
------------------------------ */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important }
  .reveal{ transition:none; opacity:1; transform:none; }
  .btn{ transition:none; }
  .card:hover .project-shot img{ transform: scale(1.02); }
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .nav-links{ display:none; }
  .burger{ display:inline-grid; }
  .grid-2{ grid-template-columns: 1fr; }
  .cta{ flex-direction: column; align-items:flex-start; }
  .hero-metrics{ grid-template-columns: 1fr 1fr; }
}
