:root{
  /* Cold / dark palette */
  --bg: #000;
  --bg-2: #000;

  --text: rgba(241,246,255,0.94);
  --muted: rgba(241,246,255,0.70);

  /* Axis palette (same hue family) */
  --axis: #2F2B73;        /* Axis Blue */
  --axis-bright: #4B47B8; /* brighter Axis hue */

  /* UI */
  --border: rgba(47,43,115,0.22);
  --panel: rgba(47,43,115,0.10);
  --panel-2: rgba(47,43,115,0.14);

  /* Accents (now Axis, no cyan) */
  --accent: var(--axis);
  --accent-2: var(--axis-bright);
  --accent-3: var(--axis);

  --shadow: 0 18px 55px rgba(0,0,0,0.55);
  --radius: 18px;
  --radius-sm: 12px;

  --max: 1100px;
  --pad: 22px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: rgba(255,255,255,0.92);

  background:
    radial-gradient(
      900px 600px at 15% 12%,
      rgba(47,43,115,0.45),
      rgba(47,43,115,0.15) 40%,
      transparent 65%
    ),
    radial-gradient(
      800px 500px at 85% 18%,
      rgba(47,43,115,0.35),
      rgba(47,43,115,0.12) 45%,
      transparent 70%
    ),
    linear-gradient(180deg, #000 0%, #000 100%);

  line-height: 1.5;
}

/* Subtle grid + noise overlay */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background-image:
    linear-gradient(to right, rgba(47,43,115,0.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(47,43,115,0.10) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.28; /* reduced a bit so it doesn’t wash */
}

body::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04), transparent 35%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,0.03), transparent 40%),
    linear-gradient(0deg, rgba(0,0,0,0.18), rgba(0,0,0,0.18));
  mix-blend-mode: overlay;
  opacity: 0.25; /* reduced */
}

.site-header, main, footer{
  position: relative;
  z-index: 1;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: 0.92; }

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

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

/* HEADER / NAV */
.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.62);
  border-bottom: 1px solid var(--border);
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
  gap: 12px;
}

/* Gradient logo text + glass chip */
.logo{
  font-weight: 900;
  letter-spacing: 0.2px;
  padding: 8px 10px;
  border-radius: 12px;

  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  position: relative;
  border: 1px solid rgba(47,43,115,0.26);
  box-shadow: 0 10px 30px rgba(47,43,115,0.16);
}

.logo::before{
  content:"";
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(47,43,115,0.16), rgba(47,43,115,0.08));
  z-index: -1;
}

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

.nav-links a{
  color: rgba(241,246,255,0.74);
  font-size: 14px;
}
.nav-links a:hover{ color: rgba(241,246,255,0.92); }

/* Buttons (now Axis tone) */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;

  border: 1px solid rgba(75,71,184,0.42);
  background:
    linear-gradient(180deg, rgba(75,71,184,0.30), rgba(47,43,115,0.16));

  color: rgba(245,252,255,0.98);
  font-weight: 750;
  font-size: 14px;
  cursor: pointer;

  box-shadow:
    0 16px 38px rgba(0,0,0,0.40),
    0 0 26px rgba(47,43,115,0.22);

  transition: transform 140ms ease, box-shadow 140ms ease, opacity 140ms ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow:
    0 18px 44px rgba(0,0,0,0.46),
    0 0 34px rgba(47,43,115,0.28);
}

.btn-outline{
  background: transparent;
  border: 1px solid rgba(47,43,115,0.42);
  box-shadow: none;
}
.btn-outline:hover{
  box-shadow:
    0 18px 44px rgba(0,0,0,0.40),
    0 0 26px rgba(47,43,115,0.18);
}

/* Burger */
.burger{
  display: none;
  width: 44px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(47,43,115,0.30);
  background: rgba(47,43,115,0.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.burger span{
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(241,246,255,0.86);
  margin: 3px 0;
  border-radius: 999px;
}

/* Mobile menu */
.mobile-menu{
  border-top: 1px solid rgba(47,43,115,0.18);
  background: rgba(0,0,0,0.92);
}
.mobile-menu-inner{
  padding: 14px var(--pad) 18px;
  display: grid;
  gap: 12px;
}
.mobile-link{
  color: rgba(241,246,255,0.78);
  font-size: 15px;
  padding: 10px 10px;
  border-radius: 12px;
  background: rgba(47,43,115,0.08);
  border: 1px solid rgba(47,43,115,0.18);
}
.mobile-link:hover{
  border-color: rgba(75,71,184,0.34);
}

/* HERO */
.hero{ padding: 70px 0 40px; }

.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

/* Slightly brighter eyebrow (Axis tone) */
.eyebrow{
  color: rgba(195,192,255,0.92);
  font-weight: 900;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 10px;
  text-shadow: 0 0 18px rgba(47,43,115,0.28);
}

h1{
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.07;
  margin: 0 0 12px;
  letter-spacing: -0.7px;
}

.page-title{
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.1;
  margin: 0 0 10px;
  letter-spacing: -0.6px;
}

/* Gradient underline on section titles (Axis) */
h2{
  font-size: 28px;
  margin: 0 0 6px;
  letter-spacing: -0.3px;
  display: inline-block;
  position: relative;
}
h2::after{
  content:"";
  display: block;
  height: 3px;
  width: 64px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(75,71,184,1), rgba(47,43,115,1));
  box-shadow: 0 0 22px rgba(47,43,115,0.22);
  opacity: 0.95;
}

.lead{
  font-size: 18px;
  color: rgba(241,246,255,0.72);
  margin: 0 0 18px;
  max-width: 52ch;
}

/* CTA row (container) — add subtle Axis glow so it “reads” as Axis */
.cta-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  position: relative;
}
.cta-row::before{
  content:"";
  position: absolute;
  inset: -10px -10px -10px -10px;
  background: radial-gradient(circle at 20% 50%, rgba(47,43,115,0.18), transparent 60%);
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

.hero-note{
  margin: 0;
  max-width: 56ch;
  color: rgba(241,246,255,0.70);
  font-size: 14px;
}

/* Hero card */
.hero-card .card{
  border-radius: var(--radius);
  border: 1px solid rgba(47,43,115,0.26);
  background:
    linear-gradient(180deg, rgba(47,43,115,0.16), rgba(47,43,115,0.08));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 10px;
  border-bottom: 1px solid rgba(47,43,115,0.18);
}

/* Card right: only video */
.card--video{
  padding: 0;
  overflow: hidden;
  background: rgba(47,43,115,0.10);
  border: 1px solid rgba(47,43,115,0.26);
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
}

/* 4:5 frame so it matches 1080x1350 without crop */
.card-video{
  width: 100%;
  aspect-ratio: 4 / 5;   /* key */
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.35); /* letterbox area if needed */
}

/* NO CROP */
.card-video video{
  width: 100%;
  height: 100%;
  object-fit: contain;   /* key */
  display: block;
}

/* Replaces the “pill” */
.card-label{
  font-size: 12px;
  letter-spacing: 0.3px;
  color: rgba(245,252,255,0.82);
}

.dots{ display: flex; gap: 6px; }
.dots span{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(47,43,115,0.55);
}

.card-body{ padding: 16px; display: grid; gap: 10px; }
.mock-line{
  height: 10px;
  border-radius: 999px;
  background: rgba(47,43,115,0.12);
  border: 1px solid rgba(47,43,115,0.14);
}
.w-90{ width: 90%; }
.w-75{ width: 75%; }
.w-60{ width: 60%; }

.mock-box{
  height: 130px;
  border-radius: 14px;
  background: rgba(47,43,115,0.10);
  border: 1px solid rgba(47,43,115,0.14);
}

.mock-row{ display: flex; gap: 10px; }
.mock-chip{
  flex: 1;
  height: 34px;
  border-radius: 12px;
  background: rgba(47,43,115,0.08);
  border: 1px solid rgba(47,43,115,0.12);
}

.card-bottom{
  display: flex;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(47,43,115,0.18);
}
.stat{
  font-size: 12px;
  color: rgba(245,252,255,0.78);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(47,43,115,0.18);
  border: 1px solid rgba(47,43,115,0.24);
}

/* SECTIONS */
.section{
  padding: 54px 0;
  border-top: 1px solid rgba(47,43,115,0.14);
}

.section-head{ margin-bottom: 18px; }

.two-col{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
}

.prose p{
  margin: 0 0 12px;
  color: rgba(241,246,255,0.82);
}

.grid-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature{
  border: 1px solid rgba(47,43,115,0.18);
  background: rgba(47,43,115,0.06);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.22);
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.feature h3{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.1px;
  color: rgba(245,252,255,0.94);
}

.feature p{
  margin: 0;
  color: rgba(241,246,255,0.74);
}

.feature:hover{
  border-color: rgba(75,71,184,0.34);
  box-shadow:
    0 22px 55px rgba(0,0,0,0.28),
    0 0 34px rgba(47,43,115,0.18);
  transform: translateY(-1px);
}

/* OUR WORK GRID */
.work-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.work-item{
  text-align: left;
  padding: 0;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(47,43,115,0.18);
  background: rgba(47,43,115,0.06);
  overflow: hidden;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
  box-shadow: 0 18px 42px rgba(0,0,0,0.22);
}

.work-item:hover{
  transform: translateY(-2px);
  border-color: rgba(75,71,184,0.34);
  background: rgba(47,43,115,0.07);
  box-shadow:
    0 22px 55px rgba(0,0,0,0.30),
    0 0 0 1px rgba(47,43,115,0.22),
    0 0 38px rgba(47,43,115,0.14);
}

.work-item:focus-visible{
  outline: 2px solid rgba(75,71,184,0.55);
  outline-offset: 2px;
}

.work-item-link{ display: block; }

.thumb{
  position: relative;
  height: 150px;
  background:
    radial-gradient(800px 260px at 25% 20%, rgba(47,43,115,0.22), transparent 55%),
    radial-gradient(600px 260px at 80% 60%, rgba(75,71,184,0.18), transparent 60%),
    rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(47,43,115,0.14);
}

.thumb-badge{
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
  color: rgba(245,252,255,0.90);
  border: 1px solid rgba(47,43,115,0.26);
  background: rgba(0,0,0,0.42);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.thumb-play,
.thumb-link{
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47,43,115,0.30);
  background: rgba(0,0,0,0.44);
  color: rgba(245,252,255,0.92);
  font-size: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 22px rgba(47,43,115,0.14);
}

.work-item:hover .thumb-play,
.work-item:hover .thumb-link{
  box-shadow: 0 0 30px rgba(47,43,115,0.18);
}

.work-meta{ padding: 14px 14px 16px; }
.work-meta h3{
  margin: 0 0 6px;
  font-size: 15px;
  letter-spacing: -0.1px;
}
.work-meta p{ margin: 0; font-size: 13.5px; }

/* CTA */
.cta{ background: rgba(47,43,115,0.05); }

/* cta-inner (the one you pointed out) — now clearly Axis tone */
.cta-inner{
  border-radius: var(--radius);
  border: 1px solid rgba(47,43,115,0.26);
  background:
    radial-gradient(900px 240px at 20% 30%, rgba(75,71,184,0.22), transparent 60%),
    rgba(47,43,115,0.08);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow:
    0 22px 60px rgba(0,0,0,0.28),
    0 0 42px rgba(47,43,115,0.16);
}

/* FOOTER */
.site-footer{
  border-top: 1px solid rgba(47,43,115,0.12);
  padding: 22px 0;
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.footer-links{
  display: flex;
  gap: 14px;
  color: rgba(241,246,255,0.72);
  font-size: 14px;
}

/* MODAL */
.modal{
  width: min(980px, calc(100% - 28px));
  border: 1px solid rgba(47,43,115,0.22);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.82);
  color: var(--text);
  padding: 0;
  box-shadow: var(--shadow);
}
.modal::backdrop{ background: rgba(0,0,0,0.62); }

.modal-inner{ padding: 14px; }

.modal-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 4px 12px;
}
.modal-head h3{
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.1px;
}

.icon-btn{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(47,43,115,0.22);
  background: rgba(47,43,115,0.08);
  color: var(--text);
  cursor: pointer;
}

.ratio-16x9{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(47,43,115,0.14);
  background: rgba(47,43,115,0.05);
}
.ratio-16x9 iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Sticky Audit CTA */
.sticky-audit{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 50;
  pointer-events: none;

  opacity: 0;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-audit.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.sticky-audit-inner{
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  border-radius: 999px;
  border: 1px solid rgba(47,43,115,0.26);
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  box-shadow:
    0 22px 60px rgba(0,0,0,0.40),
    0 0 42px rgba(47,43,115,0.14);
  padding: 10px 10px 10px 14px;
}

.sticky-audit-copy{
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  line-height: 1.2;
}

.sticky-audit-copy strong{
  font-size: 13px;
  color: rgba(245,252,255,0.92);
}

.sticky-audit-copy .muted{
  font-size: 12px;
  color: rgba(241,246,255,0.68);
}

/* RESPONSIVE */
@media (max-width: 900px){
  .nav-links{ display: none; }
  .burger{ display: inline-flex; }
  .hero-grid{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .work-grid{ grid-template-columns: 1fr; }
  .cta-inner{ flex-direction: column; align-items: flex-start; }

  .sticky-audit{
    bottom: 12px;
  }

  .sticky-audit-inner{
    border-radius: 18px;
    align-items: flex-start;
    flex-direction: column;
    padding: 12px;
  }

  .sticky-audit-inner .btn{
    width: 100%;
  }
}


/* CONTACT FORM */
.contact-section{
  min-height: calc(100vh - 142px);
}

.contact-grid{
  align-items: start;
}

.contact-side{
  margin-top: 26px;
  display: grid;
  gap: 22px;
}

.contact-box h3{
  margin: 0 0 10px;
  font-size: 18px;
}

.contact-box p{
  margin: 0;
}

.contact-box ul{
  margin: 0;
  padding-left: 22px;
}

.form{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(47,43,115,0.22);
  background: rgba(47,43,115,0.06);
  box-shadow: 0 18px 42px rgba(0,0,0,0.22);
}

.form label{
  display: grid;
  gap: 8px;
  color: rgba(245,252,255,0.92);
  font-weight: 700;
  font-size: 14px;
}

.form label.full,
.form .full{
  grid-column: 1 / -1;
}

.form em{
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

.form input,
.form select,
.form textarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(47,43,115,0.30);
  background: rgba(0,0,0,0.46);
  color: rgba(245,252,255,0.94);
  font: inherit;
  padding: 12px 13px;
  outline: none;
}

.form select{
  appearance: auto;
}

.form textarea{
  resize: vertical;
  min-height: 150px;
}

.form input:focus,
.form select:focus,
.form textarea:focus{
  border-color: rgba(75,71,184,0.70);
  box-shadow: 0 0 0 3px rgba(75,71,184,0.18);
}

.form-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.form-note{
  margin: 0;
  font-size: 13px;
}

/* Logo image */
.logo{
  display:flex;
  align-items:center;
  padding:0;
  border:none;
  background:none;
  box-shadow:none;
}

.logo::before{
  display:none;
}

.logo img{
  height:48px;
  width:auto;
  display:block;
}

@media (max-width: 700px){
  .form{
    grid-template-columns: 1fr;
  }

  .form-actions .btn{
    width: 100%;
  }
}
