/* =========================
   STRAT AI (V2) — Dark Navy / Black Theme
   - Keeps existing class names so you can swap CSS without rewriting HTML.
========================= */

:root{
  --bg0: #020617;          /* near-black */
  --bg1: #051225;          /* deep navy */
  --bg2: #071b36;          /* navy */

  --ink: #e5e7eb;          /* slate-200 */
  --ink-soft: rgba(229, 231, 235, 0.80);
  --muted: rgba(229, 231, 235, 0.62);

  --card: rgba(2, 6, 23, 0.55);
  --card-strong: rgba(2, 6, 23, 0.72);

  --border: rgba(148, 163, 184, 0.22);
  --border-strong: rgba(148, 163, 184, 0.34);
  --shadow: 0 16px 40px rgba(0,0,0,0.40);

  --radius: 18px;
  --radius-sm: 14px;

  --accent1: #2563eb;      /* blue-600 */
  --accent2: #22d3ee;      /* cyan-400 */
  --accent3: #60a5fa;      /* blue-400 */
  --accent4: #0ea5e9;      /* sky-500 */
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.15px;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 18% 12%, rgba(37,99,235,0.22), transparent 60%),
    radial-gradient(900px 600px at 82% 22%, rgba(34,211,238,0.18), transparent 58%),
    radial-gradient(900px 700px at 60% 90%, rgba(96,165,250,0.12), transparent 60%),
    linear-gradient(135deg, var(--bg0), var(--bg1) 45%, var(--bg2));
}

.accent{
  color: var(--accent2);
  font-weight: 600;
}

/* Keep footer at bottom */
.page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content{ flex: 1; }

.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section{
  padding: 72px 0;
}

.section-soft{
  background: rgba(148, 163, 184, 0.06);
  border-top: 1px solid rgba(148, 163, 184, 0.10);
  border-bottom: 1px solid rgba(148, 163, 184, 0.10);
}

/* =========================
   NAV (Fixed top-right)
========================= */

.nav-fixed{
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1000;

  display: flex;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.52);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.42);
}

.nav-link{
  text-decoration: none;
  font-weight: 750;
  color: var(--ink);
  opacity: 0.82;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-link:hover{
  opacity: 1;
  background: rgba(148, 163, 184, 0.10);
}

.nav-link.is-active{
  opacity: 1;
  color: #f8fafc;
  background: rgba(103, 232, 249, 0.16);
  border-color: rgba(103, 232, 249, 0.48);
  box-shadow: inset 0 0 0 1px rgba(103, 232, 249, 0.18);
}

.cta-note{
  max-width: 760px;
  margin: 14px auto 0;
  color: rgba(203, 213, 225, 0.9);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.55;
  text-align: center;
}

/* =========================
   HERO
========================= */

.site-header{
  padding: 94px 0 26px;
  text-align: center;
}

.title{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.logo{
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(2,6,23,0.48);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}

.brand{
  font-size: 56px;
  margin: 0;
  letter-spacing: -1.2px;
}

.hero-subtitle{
  max-width: 66ch;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.hero-cta{
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badges{
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge{
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  background: rgba(2, 6, 23, 0.40);
  font-weight: 750;
  font-size: 13px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.28);
}

/* =========================
   HERO spotlight card
========================= */

.hero-card{
  width: min(1320px, calc(100vw - 80px));
  margin-left:  50%;
  transform: translateX(-50%);
  padding: 38px 28px;

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(1200px 340px at 18% 0%, rgba(37,99,235,0.30), transparent 62%),
    radial-gradient(1200px 360px at 82% 0%, rgba(34,211,238,0.22), transparent 60%),
    linear-gradient(180deg, rgba(2,6,23,0.86), rgba(2,6,23,0.62));
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(0,0,0,0.52);
}

.hero-card::before{
  content: "";
  position: absolute;
  inset: -140px;
  background:
    radial-gradient(closest-side at 25% 35%, rgba(37,99,235,0.20), transparent 60%),
    radial-gradient(closest-side at 75% 45%, rgba(34,211,238,0.16), transparent 60%);
  filter: blur(2px);
  animation: glowDrift 10s ease-in-out infinite;
  pointer-events: none;
}

.hero-card > *{ position: relative; z-index: 1; }

/* =========================
   HOME HERO SCALE-UP
========================= */

.home-header{
  padding: 98px 0 30px;
}

.home-header .title{
  gap: 14px;
  margin-bottom: 18px;
}

.home-header .logo{
  width: 72px;
  height: 72px;
  border-radius: 16px;
}

.home-header .brand{
  font-size: clamp(56px, 6.8vw, 74px);
  letter-spacing: -1.4px;
}

.home-hero-card{
  width: min(1320px, calc(100vw - 72px));
  padding: 44px 32px;
  border-radius: 26px;
}

.home-hero-subtitle{
  max-width: 24ch;
  font-size: clamp(21px, 2.3vw, 28px);
  line-height: 1.4;
  font-weight: 400;
}

.home-header .hero-cta{
  margin-top: 22px;
  gap: 12px;
}

.home-header .hero-badges{
  margin-top: 16px;
  gap: 10px;
}

.home-header .badge{
  padding: 9px 14px;
  font-size: 13px;
}

/* =========================
   HOME WHAT WE DO SCALE-UP
========================= */

.home-what-we-do{
  padding-top: 84px;
  padding-bottom: 80px;
}

.home-section-header{
  margin-bottom: 28px;
}

.home-section-title{
  margin-bottom: 14px;
  font-size: clamp(50px, 5.8vw, 66px);
  letter-spacing: -1.2px;
  font-style: italic;
  font-weight: 300;
}

.home-section-subtitle{
  max-width: 42ch;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.45;
}

.home-intro-row{
  gap: 24px;
  margin-bottom: 26px;
}

.home-description-row{
  gap: 24px;
}

.what-we-do-followup{
  display: flex;
  justify-content: center;
}

.what-we-do-followup-panel{
  width: min(100%, 720px);
}

.home-card{
  padding: 24px 22px;
  border-radius: 20px;
}

.home-panel{
  padding: 24px 22px;
  border-radius: 20px;
}

.home-card-title,
.home-panel-title{
  display: block;
  width: 100%;
  margin-bottom: 12px;
  font-size: clamp(20px, 1.7vw, 24px);
  letter-spacing: -0.35px;
  font-weight: 400;
  text-align: center;
}

.home-card-text,
.home-panel p,
.home-bullets{
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  font-size: 16px;
  line-height: 1.62;
  text-align: center;
}

.home-bullets li{
  margin: 8px 0;
}

/* =========================
   HOME MAIN SCALE-UP
========================= */

.home-main .section{
  padding-top: 82px;
  padding-bottom: 78px;
}

.home-main .section-header{
  margin-bottom: 28px;
}

#jumpstart-video{
  padding-top: 68px;
  padding-bottom: 64px;
}

#jumpstart-video .section-header{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.home-main .section-title{
  margin-bottom: 14px;
  font-size: clamp(42px, 4.8vw, 54px);
  letter-spacing: -1.1px;
  font-style: italic;
  font-weight: 300;
}

.home-main .section-subtitle{
  max-width: 42ch;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.45;
}

.home-main .grid-2,
.home-main .grid-2-equal,
.home-main .grid-3,
.home-main .intro-row,
.home-main .description-row,
.home-main .book-call-stack{
  gap: 24px;
}

.home-main .card{
  padding: 24px 22px;
  border-radius: 20px;
}

.home-main .panel{
  padding: 24px 22px;
  border-radius: 20px;
}

.home-main .card-title,
.home-main .panel-title{
  display: block;
  width: 100%;
  margin-bottom: 12px;
  font-size: clamp(20px, 1.7vw, 24px);
  letter-spacing: -0.35px;
  font-weight: 400;
  text-align: center;
}

.jumpstart-card-title{
  font-size: clamp(18px, 1.45vw, 22px);
  white-space: nowrap;
}

.home-main .card-text,
.home-main .panel p,
.home-main .bullets{
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  font-size: 16px;
  line-height: 1.62;
  text-align: center;
}

.home-main .bullets li{
  margin: 8px 0;
}

.home-main .pill-row{
  gap: 12px;
}

.home-main .pill{
  padding: 11px 16px;
  font-size: 14px;
}

@media (min-width: 900px){
  .home-hero-subtitle{
    max-width: none;
    white-space: nowrap;
  }

  .home-section-subtitle,
  .home-main .section-subtitle{
    max-width: none;
    white-space: nowrap;
  }
}

#integrations .pill-row{
  gap: 16px;
}

#integrations .pill{
  padding: 17px 24px;
  font-size: 21px;
  border-radius: 999px;
}

.home-main .outcomes-list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-main .outcomes-block{
  margin-top: 28px;
}

.home-main .outcomes-title{
  margin-bottom: 18px;
  font-size: clamp(28px, 2.4vw, 36px);
}

.home-main .outcomes-pills{
  justify-content: center;
  margin-bottom: 18px;
}

.home-main .outcomes-list li{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 21px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  background: rgba(2, 6, 23, 0.40);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
}

.home-main .outcomes-note{
  text-align: center;
}

#book-call .book-call-info .bullets{
  text-align: center;
}

/* =========================
   ABOUT PAGE THEME MATCH
========================= */

.about-header{
  padding: 98px 0 30px;
}

.about-header .title{
  gap: 14px;
  margin-bottom: 18px;
}

.about-header .logo{
  width: 72px;
  height: 72px;
  border-radius: 16px;
}

.about-header .brand{
  font-size: clamp(56px, 6.8vw, 74px);
  letter-spacing: -1.4px;
}

.about-hero-card{
  width: min(1320px, calc(100vw - 72px));
  padding: 44px 32px;
  border-radius: 26px;
}

.about-main .section{
  padding-top: 82px;
  padding-bottom: 78px;
}

.about-main .section-header{
  margin-bottom: 28px;
}

.about-main .section-title{
  margin-bottom: 14px;
  font-size: clamp(42px, 4.8vw, 54px);
  letter-spacing: -1.1px;
  font-style: italic;
  font-weight: 300;
}

.about-main .section-subtitle{
  max-width: 48ch;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.45;
}

.about-main .grid-2,
.about-main .grid-2-equal,
.about-main .grid-3,
.about-main .book-call-stack{
  gap: 24px;
}

.about-main .card{
  padding: 24px 22px;
  border-radius: 20px;
}

.about-main .panel{
  padding: 24px 22px;
  border-radius: 20px;
}

.about-main .card-title,
.about-main .panel-title{
  display: block;
  width: 100%;
  margin-bottom: 12px;
  font-size: clamp(20px, 1.7vw, 24px);
  letter-spacing: -0.35px;
  font-weight: 400;
  text-align: center;
}

.about-main .card-text,
.about-main .panel p,
.about-main .bullets{
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  font-size: 16px;
  line-height: 1.62;
  text-align: center;
}

.about-main .bullets li{
  margin: 8px 0;
}

.founder-video-center{
  display: flex;
  justify-content: center;
}

.founder-bio-panel{
  max-width: 900px;
  margin: 0 auto 28px;
}

.founder-video-panel{
  width: min(100%, 820px);
}

/* =========================
   BUTTONS
========================= */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:active{ transform: translateY(1px) scale(0.99); }

.btn-primary{
  color: #041022;
  background: linear-gradient(135deg, var(--accent2), var(--accent1));
  border-color: rgba(34, 211, 238, 0.18);
  box-shadow: 0 18px 38px rgba(34,211,238,0.16);
}

.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 46px rgba(34,211,238,0.20);
}

.btn-ghost{
  color: var(--ink);
  background: rgba(148, 163, 184, 0.08);
  border-color: rgba(148, 163, 184, 0.18);
}

.btn-ghost:hover{
  background: rgba(148, 163, 184, 0.12);
  border-color: rgba(148, 163, 184, 0.26);
  transform: translateY(-1px);
}

/* =========================
   TYPOGRAPHY / HEADERS
========================= */

.section-header{
  text-align: center;
  margin-bottom: 26px;
}

.section-title{
  margin: 0 0 10px;
  font-size: 34px;
  letter-spacing: -0.7px;
}

.section-subtitle{
  margin: 0 auto;
  max-width: 78ch;
  color: var(--muted);
  line-height: 1.45;
}

/* =========================
   CARDS / PANELS
========================= */

.card,
.panel{
  background: rgba(2,6,23,0.46);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel{ padding: 22px 22px; }
.card{ padding: 22px 20px; }

.panel-soft{
  background: rgba(2,6,23,0.36);
  border-color: rgba(37,99,235,0.18);
}

.card-title,
.panel-title{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.card-text,
.panel p{
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

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

/* =========================
   LAYOUT HELPERS (compatible with existing HTML)
========================= */

.intro-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 26px;
}

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

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

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

#custom-builds .grid-2-equal{
  margin-bottom: 28px;
}

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

/* aboutus-v2.html FAQ box spacing*/
.faq-grid{
  display: grid;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-grid a{
  color: var(--accent2);
}

.faq-grid a:hover{
  color: #67e8f9;
}

@media (minn-wodth: 900px){
  .faq-grid{ gap: 22px; }
}

/* aboutus-v2.html Book A Call box positioning. (ruined it so delete this code to fix)*/
.book-call-stack{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.book-call-stack .calendly-inline-widget{
  height: 100% !important;
  width: 100% !important;
}

/**/

#deliverables .grid-3,
#deliverables .sprint-layout{
  margin-bottom: 28px;
}

.sprint-layout{
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.8fr);
  gap: 24px;
  align-items: stretch;
}

.sprint-layout .card{
  min-height: auto;
}

.sprint-price-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sprint-detail-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.sprint-wide-card{
  grid-column: 1 / -1;
}

#deliverables .cta-row{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

#custom-builds .cta-row{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.custom-inquiry-stack{
  width: min(100%, 940px);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: stretch;
}

#custom-builds .custom-inquiry-panel{
  width: 100%;
  margin: 0;
  text-align: center;
}

#custom-builds .custom-inquiry-panel + .custom-inquiry-panel{
  margin-top: 0;
}

#deliverables .deliverables-summary-panel{
  width: min(100%, 600px);
  margin: 0 auto;
  padding: 18px 20px;
}

.sprint-price-card{
  border-color: rgba(103, 232, 249, 0.38);
  background: linear-gradient(180deg, rgba(103, 232, 249, 0.10), rgba(15, 23, 42, 0.78));
}

.flagship-panel{
  border-color: rgba(103, 232, 249, 0.38);
  background: linear-gradient(180deg, rgba(103, 232, 249, 0.10), rgba(15, 23, 42, 0.78));
}

#bottlenecks .grid-3{
  margin-bottom: 28px;
}

.metric-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 20px 0 18px;
}

.metric-item{
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.54);
}

.metric-value{
  display: block;
  color: var(--accent2);
  font-size: clamp(1.12rem, 1.45vw, 1.45rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 8px;
}

.metric-label{
  display: block;
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.55;
}

.book-call-grid{
  align-items: stretch;
  gap: 28px;
  margin-top: 24px;
}

#who .book-call-grid{
  align-items: stretch;
}

#who .book-call-grid > .panel{
  width: auto;
}

#book-call .book-call-stack{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 16px;
}

#book-call .container{
  max-width: 1320px;
}

#book-call .book-call-popup{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

#book-call .book-call-popup-text{
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
}

#book-call .book-call-popup-btn{
  min-width: 220px;
}

#book-call .book-call-info{
  width: fit-content;
  max-width: min(100%, 620px);
  margin: 0 auto;
  padding: 20px 22px;
}

#book-call .calendly-shell{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  box-sizing: border-box;
}

#book-call .calendly-inline-widget{
  width: 100% !important;
  height: 760px !important;
  min-height: 760px !important;
}

#book-call .calendly-shell > .calendly-inline-widget{
  margin: 0 !important;
}

#book-call .calendly-shell iframe{
  display: block;
  width: 100% !important;
  height: 760px !important;
  border: 0 !important;
  border-radius: 0;
}

.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.bullets li{ margin: 6px 0; }

/* Pills */
.pill-row{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 18px;
}

.pill{
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2,6,23,0.42);
  color: rgba(229,231,235,0.92);
  font-weight: 700;
  font-size: 13px;
  position: relative;
  overflow: hidden;
}

.pill::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(34,211,238,0.10), transparent);
  transform: translateX(-120%);
  animation: shimmer 4.8s ease-in-out infinite;
}

.note{
  margin-top: 26px;
  text-align: center;
  color: var(--ink-soft);
}

/* Timeline */
.timeline{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step{
  padding: 18px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2,6,23,0.44);
  box-shadow: var(--shadow);
  text-align: center;
  animation: fadeUp .55s ease both;
}

.step h3{ margin: 10px 0 6px; }
.step p{ margin: 0; color: var(--ink-soft); line-height: 1.6; }

.step-wide{
  grid-column: 1 / -1;
}

.step-pill{
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37,99,235,0.22);
  background: rgba(37,99,235,0.12);
  color: rgba(229,231,235,0.92);
  font-weight: 850;
  font-size: 12px;
}

/* Signup */
.signup{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2,6,23,0.44);
  box-shadow: var(--shadow);
}

.signup-form{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.signup-form input{
  height: 44px;
  min-width: 260px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2,6,23,0.55);
  color: var(--ink);
  outline: none;
}

.signup-form input::placeholder{ color: rgba(229,231,235,0.55); }

/* Founder video */
.video-wrap{
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: calc(var(--radius) - 6px);
  background: rgba(2,6,23,0.72);
  aspect-ratio: 16 / 9;
}

.video-wrap iframe,
.video-wrap video{
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.offer-video-panel{
  width: min(100%, 1040px);
  margin: 0 auto;
}

.offer-video-wrap{
  max-width: none;
  margin: 0 auto;
  background: #000;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
}

.offer-video-wrap video{
  object-fit: contain;
}

/* Calendly shell */
.calendly-shell{
  padding: 18px;
}

/* Footer */
.footer{
  padding: 42px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(2,6,23,0.52);
}

.footer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.footer-heading{ margin: 0 0 10px; font-weight: 850; }

.footer-links{
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li{ margin: 8px 0; }

.footer-links a{
  color: rgba(229,231,235,0.78);
  text-decoration: none;
}

.footer-links a:hover{ color: rgba(229,231,235,0.95); }

.footer-bottom{ margin-top: 22px; text-align: center; }

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

.footer-logo-dot{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent2), var(--accent1));
  box-shadow: 0 12px 26px rgba(34,211,238,0.18);
}

.footer-title{ margin: 0; font-weight: 900; }
.footer-text{ margin: 10px 0 16px; color: rgba(229,231,235,0.75); line-height: 1.6; }

/* Accessibility */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}

@keyframes shimmer{
  0%, 55%{ transform: translateX(-120%); opacity: 0; }
  65%{ opacity: 1; }
  100%{ transform: translateX(120%); opacity: 0; }
}

@keyframes glowDrift{
  0%, 100%{ transform: translate3d(0,0,0) scale(1); opacity: 0.95; }
  50%{ transform: translate3d(16px,-10px,0) scale(1.02); opacity: 1; }
}

@keyframes floatSoft{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* Make “text bubbles” feel alive */
.badge{ animation: floatSoft 4.8s ease-in-out infinite; }
.badge:nth-child(2){ animation-delay: .5s; }
.badge:nth-child(3){ animation-delay: 1.0s; }


/* =========================
   SCROLL REVEAL (IntersectionObserver toggles .is-visible)
========================= */

.reveal{
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  filter: blur(14px);
  transition:
    opacity 1.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 120ms;
  will-change: opacity, transform, filter;
}

.reveal-delay-1 { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 280ms; }
.reveal-delay-3 { transition-delay: 440ms; }

.reveal.reveal-left{ transform: translate3d(-26px, 10px, 0); }
.reveal.reveal-right{ transform: translate3d(26px, 10px, 0); }
.reveal.reveal-up{ transform: translate3d(0, 18px, 0); }

.reveal.is-visible{
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: blur(0);
}

.reveal.is-visible.reveal-left,
.reveal.is-visible.reveal-right,
.reveal.is-visible.reveal-up{
  transform: translate3d(0,0,0);
}

/* Stagger intro cards a bit */
.intro-row .reveal:nth-child(1){ transition-delay: .06s; }
.intro-row .reveal:nth-child(2){ transition-delay: .14s; }
.intro-row .reveal:nth-child(3){ transition-delay: .22s; }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px){
  .nav-fixed{
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: calc(100vw - 24px);
    gap: 6px;
    padding: 8px;
  }
  .nav-link{
    padding: 7px 8px;
    font-size: 14px;
    white-space: nowrap;
  }
  .intro-row{ grid-template-columns: 1fr; }
  .description-row{ grid-template-columns: 1fr; }
  .grid-2, .grid-2-equal{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .sprint-layout{ grid-template-columns: 1fr; }
  .sprint-detail-grid{ grid-template-columns: 1fr; }
  .custom-inquiry-stack{ grid-template-columns: 1fr; }
  .metric-grid{ grid-template-columns: 1fr; }
  .timeline{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .hero-card{ width: calc(100vw - 32px); padding: 30px 18px; }
  .brand{ font-size: 44px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation: none !important; transition: none !important; }
  .reveal,
  .reveal.reveal-left,
  .reveal.reveal-right,
  .reveal.reveal-up{
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* New Hero Background & Color Design */
.site-header .hero-card{
  background: #000;
}

.site-header .hero-card .btn.btn-ghost{
  background: #fff;
  color: #000;
}

.site-header .hero-card .logo{
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.site-header .hero-card .badge{
  background: #e3e4e4;
  color: #000;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 28px rgba(0,0,0,0.28);
}

/**/

/* --- FIX: Book-call panels should NOT be forced square --- */
.book-call-stack > .panel{
  aspect-ratio: auto;     /* undo square */
  height: auto;           /* let content define height */
}

/* Info box: wrap to text */
.book-call-stack .book-call-info{
  padding: 22px 24px;     /* keeps it looking tidy */
}

/* Calendly box: give it a reasonable height */
.book-call-stack .calendly-shell{
  height: clamp(520px, 70vh, 760px);
  overflow: hidden;
}

.book-call-stack .calendly-shell .calendly-inline-widget{
  height: 100% !important;
  width: 100% !important;
}
/* So cursor doesn't look like you can edit the text / you're typing */
body { cursor: default; }
p, h1, h2, h3, h4, h5, h6, li, span { cursor: default; }
