/* =========================================================
   POWERXP CONSULTANTS — SHARED DESIGN SYSTEM
   Solar EPC · Bikaner, Rajasthan
   Palette: engineering ink + solar gold + desert flare
   Type: Sora (display) / Instrument Sans (body)
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Instrument+Sans:wght@400;500;600&display=swap');

:root {
  --ink-900: #070A11;
  --ink-800: #0A0E17;
  --ink-700: #0E1420;
  --graphite: #121826;
  --graphite-2: #182131;
  --line-d: rgba(255, 255, 255, .09);
  --line-d2: rgba(255, 255, 255, .14);
  --paper: #F5F4F0;
  --paper-2: #ECEAE3;
  --card: #FFFFFF;
  --line-l: rgba(12, 16, 24, .10);
  --line-l2: rgba(12, 16, 24, .16);
  --solar: #FFB020;
  --solar-600: #F59310;
  --flare: #FF7A18;
  --signal: #2FCB86;
  --text-d: #F4F6FA;
  --muted-d: rgba(233, 238, 247, .62);
  --faint-d: rgba(233, 238, 247, .40);
  --text-l: #0B1017;
  --muted-l: #54606F;
  --faint-l: #8A94A2;
  --f-display: "Sora", system-ui, sans-serif;
  --f-body: "Instrument Sans", system-ui, sans-serif;
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --sh-1: 0 1px 2px rgba(7, 10, 17, .06), 0 8px 24px rgba(7, 10, 17, .06);
  --sh-2: 0 20px 60px rgba(7, 10, 17, .14);
  --sh-solar: 0 14px 40px rgba(245, 147, 16, .30);
  --pad: clamp(20px, 5vw, 64px);
  --sec: clamp(72px, 10vw, 148px);
  --max: 1340px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--f-body);
  background: var(--ink-900);
  color: var(--text-l);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

::selection {
  background: var(--solar);
  color: var(--ink-900)
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.02em
}

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

.wrap-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding-inline: var(--pad)
}

.eyebrow {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .6rem
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--solar)
}

.eyebrow.on-dark {
  color: var(--solar)
}

.eyebrow.on-light {
  color: var(--solar-600)
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .94rem;
  padding: .9rem 1.5rem;
  border-radius: 100px;
  transition: transform .25s cubic-bezier(.2, .7, .3, 1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform .3s
}

.btn-solar {
  background: var(--solar);
  color: #241500;
  box-shadow: var(--sh-solar)
}

.btn-solar:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(245, 147, 16, .42)
}

.btn-solar:hover svg {
  transform: translateX(3px)
}

.btn-ghost-d {
  color: var(--text-d);
  border: 1px solid var(--line-d2)
}

.btn-ghost-d:hover {
  background: rgba(255, 255, 255, .06);
  transform: translateY(-2px)
}

.btn-ghost-l {
  color: var(--text-l);
  border: 1px solid var(--line-l2)
}

.btn-ghost-l:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sh-1)
}

.btn-sm {
  padding: .6rem 1.1rem;
  font-size: .85rem
}

/* Utility bar + nav */
.utility {
  background: var(--ink-900);
  color: var(--muted-d);
  font-size: .8rem;
  border-bottom: 1px solid var(--line-d);
  position: relative;
  z-index: 60
}

.utility .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  height: 40px
}

.utility a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s
}

.utility a:hover {
  color: var(--solar)
}

.utility .u-left {
  display: flex;
  gap: 1.4rem
}

.utility .u-right {
  display: flex;
  gap: 1.1rem;
  align-items: center
}

.utility .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px rgba(47, 203, 134, .16)
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 10, 17, .72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-d);
  transition: background .3s, box-shadow .3s
}

.nav.scrolled {
  background: rgba(7, 10, 17, .94);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .35)
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  transition: height .3s
}

.nav.scrolled .wrap {
  height: 64px
}

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

.brand img {
  height: 60px;
  width: auto
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem
}

.nav-links a {
  color: var(--muted-d);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .92rem;
  padding: .5rem .8rem;
  border-radius: 8px;
  transition: color .2s, background .2s
}

.nav-links a:hover {
  color: var(--text-d);
  background: rgba(255, 255, 255, .05)
}

.nav-links a.active {
  color: var(--solar)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: .7rem
}

.nav-phone {
  color: var(--text-d);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: .45rem
}

.nav-phone svg {
  width: 15px;
  height: 15px;
  color: var(--solar)
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--text-d);
  border-radius: 2px;
  transition: .3s
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--ink-800);
  padding: calc(74px + 2rem) var(--pad) 2rem;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.drawer.open {
  transform: translateX(0)
}

.drawer a {
  color: var(--text-d);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.5rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line-d)
}

.drawer .btn {
  margin-top: 1.4rem;
  justify-content: center
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: var(--pad);
  color: var(--text-d);
  font-size: 2rem;
  line-height: 1
}

/* Hero (home) */
.hero {
  position: relative;
  background: var(--ink-800);
  overflow: hidden;
  color: var(--text-d)
}

#hero-canvas,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(80% 60% at 78% 12%, rgba(255, 122, 24, .16), transparent 60%), linear-gradient(180deg, rgba(7, 10, 17, .35), rgba(7, 10, 17, .6) 70%, var(--ink-900));
  pointer-events: none
}

.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: clamp(560px, 84vh, 840px);
  padding-top: 3rem;
  padding-bottom: 4rem
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-d2);
  padding: .5rem .9rem;
  border-radius: 100px;
  font-size: .78rem;
  color: var(--muted-d);
  font-family: var(--f-display);
  font-weight: 500
}

.hero-badge b {
  color: var(--text-d);
  font-weight: 600
}

.hero-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  animation: pulse 2.4s infinite
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 203, 134, .45)
  }

  70% {
    box-shadow: 0 0 0 9px rgba(47, 203, 134, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(47, 203, 134, 0)
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.6rem);
  font-weight: 700;
  margin: 1.4rem 0 0;
  max-width: 14ch
}

.hero h1 .grad {
  background: linear-gradient(120deg, var(--solar), var(--flare));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero-sub {
  color: var(--muted-d);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 46ch;
  margin-top: 1.4rem
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem
}

.hero-trust {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-d)
}

.hero-trust .t {
  display: flex;
  flex-direction: column;
  gap: .15rem
}

.hero-trust .t b {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-d)
}

.hero-trust .t span {
  font-size: .78rem;
  color: var(--faint-d)
}

.play-badge {
  position: absolute;
  bottom: 22px;
  right: var(--pad);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(10, 14, 23, .6);
  border: 1px solid var(--line-d2);
  backdrop-filter: blur(8px);
  padding: .5rem .9rem;
  border-radius: 100px;
  color: var(--muted-d);
  font-size: .78rem;
  font-family: var(--f-display)
}

.play-badge .ring {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--solar);
  display: grid;
  place-items: center;
  color: var(--solar)
}

.play-badge .ring svg {
  width: 12px;
  height: 12px
}

/* Instrument panel */
.panel {
  background: linear-gradient(180deg, rgba(24, 33, 49, .85), rgba(14, 20, 32, .85));
  border: 1px solid var(--line-d2);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--sh-2);
  position: relative;
  overflow: hidden
}

.panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--solar), transparent)
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem
}

.panel-head .live {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--signal);
  font-family: var(--f-display);
  font-weight: 600
}

.panel-head .live .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  animation: pulse 2s infinite
}

.panel-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .86rem;
  color: var(--muted-d)
}

.gauge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-bottom: 1.1rem
}

.gauge .g {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line-d);
  border-radius: var(--r);
  padding: 1rem
}

.gauge .g .n {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--text-d);
  line-height: 1
}

.gauge .g .n small {
  font-size: .9rem;
  color: var(--solar);
  font-weight: 600
}

.gauge .g .l {
  font-size: .72rem;
  color: var(--faint-d);
  margin-top: .4rem
}

.spark {
  height: 44px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-top: .4rem
}

.spark i {
  flex: 1;
  background: linear-gradient(180deg, var(--solar), rgba(255, 176, 32, .15));
  border-radius: 2px;
  opacity: .85
}

.panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-d);
  font-size: .78rem;
  color: var(--muted-d)
}

.panel-foot b {
  color: var(--text-d);
  font-family: var(--f-display)
}

/* Interior page hero */
.page-hero {
  position: relative;
  background: var(--ink-800);
  color: var(--text-d);
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem)
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 120% at 85% 0%, rgba(255, 122, 24, .16), transparent 55%), linear-gradient(180deg, transparent, var(--ink-900))
}

.page-hero .wrap {
  position: relative;
  z-index: 2
}

.breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .82rem;
  color: var(--faint-d);
  font-family: var(--f-display);
  margin-bottom: 1.4rem
}

.breadcrumb a:hover {
  color: var(--solar)
}

.breadcrumb .sep {
  opacity: .5
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 700;
  max-width: 18ch
}

.page-hero p {
  color: var(--muted-d);
  font-size: 1.1rem;
  max-width: 56ch;
  margin-top: 1.1rem
}

/* Partners */
.partners {
  background: var(--ink-900);
  color: var(--muted-d);
  border-bottom: 1px solid var(--line-d);
  padding: 1.6rem 0
}

.partners .wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center
}

.partners .lbl {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--faint-d);
  font-family: var(--f-display);
  font-weight: 600
}

.partners .logos {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  align-items: center
}

.partners .logos span {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: rgba(233, 238, 247, .5);
  transition: color .25s
}

.partners .logos span:hover {
  color: var(--text-d)
}

/* Section shells */
.sec {
  padding-block: var(--sec)
}

.sec-light {
  background: var(--paper);
  color: var(--text-l)
}

.sec-dark {
  background: var(--ink-800);
  color: var(--text-d)
}

.sec-head {
  max-width: 64ch
}

.sec-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  margin: 1rem 0 0;
  font-weight: 600
}

.sec-head p {
  margin-top: 1rem;
  font-size: 1.06rem
}

.sec-light .sec-head p {
  color: var(--muted-l)
}

.sec-dark .sec-head p {
  color: var(--muted-d)
}

.split-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap
}

/* Stats */
.stats {
  background: var(--ink-900);
  color: var(--text-d);
  border-block: 1px solid var(--line-d)
}

.stats-band {
  padding-block: var(--sec)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-d);
  border: 1px solid var(--line-d);
  border-radius: var(--r-lg);
  overflow: hidden
}

.stats-grid .s {
  background: var(--ink-900);
  padding: 2.4rem 1.6rem;
  text-align: center
}

.stats-grid .s .n {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  background: linear-gradient(120deg, var(--solar), var(--flare));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1
}

.stats-grid .s .l {
  color: var(--muted-d);
  margin-top: .5rem;
  font-size: .86rem
}

.stats-note {
  text-align: center;
  color: var(--faint-d);
  font-size: .74rem;
  padding-top: 1.2rem
}

/* Value cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem
}

.vcard {
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden
}

.vcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-2);
  border-color: var(--line-l2)
}

.vcard .ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  background: linear-gradient(160deg, rgba(255, 176, 32, .16), rgba(255, 122, 24, .10));
  color: var(--solar-600)
}

.vcard .ic svg {
  width: 24px;
  height: 24px
}

.vcard h3 {
  font-size: 1.2rem;
  font-weight: 600
}

.vcard p {
  color: var(--muted-l);
  margin-top: .6rem;
  font-size: .96rem
}

.vcard .idx {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .8rem;
  color: var(--faint-l)
}

/* Services */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem
}

.svc {
  background: var(--graphite);
  border: 1px solid var(--line-d);
  border-radius: var(--r-lg);
  padding: 1.7rem;
  transition: transform .3s, border-color .3s, background .3s;
  position: relative;
  display: block
}

.svc:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 176, 32, .4);
  background: var(--graphite-2)
}

.svc .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: rgba(255, 176, 32, .10);
  border: 1px solid rgba(255, 176, 32, .22);
  color: var(--solar)
}

.svc .ic svg {
  width: 23px;
  height: 23px
}

.svc h3 {
  font-size: 1.14rem;
  color: var(--text-d);
  font-weight: 600
}

.svc p {
  color: var(--muted-d);
  margin-top: .55rem;
  font-size: .92rem
}

.svc .more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  color: var(--solar);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .86rem
}

.svc .more svg {
  width: 14px;
  height: 14px;
  transition: transform .25s
}

.svc:hover .more svg {
  transform: translateX(4px)
}

/* Segments */
.segs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.4rem
}

.seg {
  border: 1px solid var(--line-d);
  border-radius: var(--r);
  padding: 1.3rem;
  background: rgba(255, 255, 255, .02)
}

.seg .k {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--solar);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase
}

.seg h4 {
  color: var(--text-d);
  font-size: 1.02rem;
  margin-top: .5rem;
  font-weight: 600
}

.seg p {
  color: var(--muted-d);
  font-size: .84rem;
  margin-top: .35rem
}

/* Process timeline */
.timeline {
  margin-top: 3.2rem;
  position: relative
}

.tl-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  height: 2px;
  background: var(--line-l)
}

.tl-fill {
  position: absolute;
  left: 0;
  top: 34px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--solar), var(--flare))
}

.tl-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative
}

.tl-step .node {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line-l2);
  margin: 24px auto 0;
  position: relative;
  z-index: 2;
  transition: .35s
}

.tl-step.on .node {
  border-color: var(--solar);
  background: var(--solar);
  box-shadow: 0 0 0 6px rgba(255, 176, 32, .18)
}

.tl-step .num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .76rem;
  color: var(--solar-600);
  text-align: center;
  margin-top: 1rem
}

.tl-step h4 {
  text-align: center;
  font-size: 1rem;
  margin-top: .3rem;
  font-weight: 600
}

.tl-step p {
  text-align: center;
  color: var(--muted-l);
  font-size: .82rem;
  margin-top: .35rem;
  padding-inline: .4rem
}

.sec-dark .tl-line {
  background: var(--line-d)
}

.sec-dark .tl-step .node {
  background: var(--graphite)
}

.sec-dark .tl-step h4 {
  color: var(--text-d)
}

.sec-dark .tl-step p {
  color: var(--muted-d)
}

/* Photo slots (swap with real JPGs) */
.photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center
}

.photo.slot::after {
  content: attr(data-label);
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
  font-family: var(--f-display);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted-d);
  background: rgba(7, 10, 17, .55);
  border: 1px solid var(--line-d2);
  padding: .3rem .6rem;
  border-radius: 100px;
  backdrop-filter: blur(6px)
}

.tex-a {
  background: radial-gradient(120% 120% at 20% 0%, #22303a, #0c1420), repeating-linear-gradient(115deg, rgba(255, 176, 32, .06) 0 2px, transparent 2px 22px)
}

.tex-b {
  background: radial-gradient(120% 120% at 80% 10%, #2a2416, #0c1018), repeating-linear-gradient(60deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 16px)
}

.tex-c {
  background: radial-gradient(120% 120% at 0% 100%, #123027, #0b1016)
}

.tex-d {
  background: radial-gradient(120% 120% at 60% 0%, #1c2740, #0b1016), repeating-linear-gradient(115deg, rgba(255, 176, 32, .05) 0 2px, transparent 2px 26px)
}

.tex-sun {
  background: radial-gradient(60% 80% at 75% 20%, rgba(255, 176, 32, .5), rgba(255, 122, 24, .15) 40%, #0c1420 75%)
}

/* Projects */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  margin-top: 3rem
}

.proj {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--line-d);
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  transition: transform .4s;
  border: 1px solid #000000;
}

.proj.big {
  grid-column: span 4
}

.proj.small {
  grid-column: span 2
}

.proj.half {
  grid-column: span 3
}

.proj::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 17, .05), rgba(7, 10, 17, .88));
  z-index: 1
}

.proj:hover {
  transform: translateY(-4px)
}

.proj-body {
  position: relative;
  z-index: 2;
  padding: 1.6rem;
  color: var(--text-d)
}

.proj-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 176, 32, .16);
  border: 1px solid rgba(255, 176, 32, .3);
  color: var(--solar);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .72rem;
  padding: .3rem .7rem;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase
}

.proj h3 {
  font-size: 1.3rem;
  margin-top: .9rem;
  font-weight: 600
}

.proj p {
  color: var(--muted-d);
  font-size: .9rem;
  margin-top: .4rem
}

.proj .meta {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem
}

.proj .meta b {
  font-family: var(--f-display);
  color: var(--solar);
  font-size: 1.05rem;
  display: block
}

.proj .meta span {
  font-size: .72rem;
  color: var(--faint-d)
}

.proj .more {
  display: inline-flex;
  gap: .4rem;
  margin-top: 1rem;
  color: var(--solar);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .85rem
}

.proj .more svg {
  width: 14px;
  height: 14px;
  transition: transform .25s
}

.proj:hover .more svg {
  transform: translateX(4px)
}

/* Project detail */
.pd-hero {
  min-height: clamp(340px, 50vh, 520px)
}

.pd-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem
}

.pd-gallery .photo {
  min-height: 240px
}

.pd-gallery .photo:first-child {
  grid-row: span 2;
  min-height: 100%
}

.pd-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-l);
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 2.4rem
}

.pd-facts .f {
  background: var(--card);
  padding: 1.6rem
}

.pd-facts .f .k {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint-l);
  font-family: var(--f-display);
  font-weight: 600
}

.pd-facts .f .v {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-l);
  margin-top: .4rem
}

.pd-facts .f .v small {
  font-size: .9rem;
  color: var(--solar-600)
}

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  margin-top: 3rem
}

/* Prose */
.prose {
  max-width: 100%;
  color: var(--text-l)
}

.prose p {
  margin-top: 1.2rem;
  font-size: 1.06rem;
  color: #2a323d
}

.prose h2 {
  font-size: 1.7rem;
  margin-top: 2.4rem;
  font-weight: 600
}

.prose h3 {
  font-size: 1.28rem;
  margin-top: 1.8rem;
  font-weight: 600
}

.prose ul {
  margin-top: 1.1rem;
  padding-left: 1.1rem
}

.prose li {
  margin-top: .5rem;
  color: #2a323d
}

.prose li::marker {
  color: var(--solar-600)
}

.prose blockquote {
  margin: 2rem 0;
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--solar);
  background: var(--paper-2);
  border-radius: 0 var(--r) var(--r) 0;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-l)
}

.prose .lead {
  font-size: 1.25rem;
  color: var(--muted-l);
  line-height: 1.55
}

.prose figure {
  margin-top: 1.8rem
}

.prose figcaption {
  font-size: .82rem;
  color: var(--faint-l);
  margin-top: .5rem;
  text-align: center
}

.aside-card {
  position: sticky;
  top: 96px;
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow: var(--sh-1)
}

.aside-card h4 {
  font-size: 1.05rem;
  font-weight: 600
}

.aside-card p {
  color: var(--muted-l);
  font-size: .9rem;
  margin-top: .5rem
}

.aside-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 1rem
}

.toc a {
  display: block;
  padding: .4rem 0;
  color: var(--muted-l);
  font-size: .9rem;
  border-bottom: 1px solid var(--line-l)
}

.toc a:hover {
  color: var(--solar-600)
}

/* Industries */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.6rem
}

.ind {
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r);
  padding: 1.4rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s
}

.ind:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-1)
}

.ind .ic {
  width: 44px;
  height: 44px;
  margin: 0 auto .8rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 176, 32, .12);
  color: var(--solar-600)
}

.ind .ic svg {
  width: 22px;
  height: 22px
}

.ind h4 {
  font-size: .98rem;
  font-weight: 600
}

.ind p {
  color: var(--muted-l);
  font-size: .8rem;
  margin-top: .3rem
}

/* Testimonials */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 3rem
}

.tst {
  background: var(--graphite);
  border: 1px solid var(--line-d);
  border-radius: var(--r-lg);
  padding: 1.9rem;
  position: relative
}

.tst .q {
  font-size: 2.6rem;
  font-family: var(--f-display);
  color: var(--solar);
  line-height: 1;
  opacity: .5
}

.tst p {
  color: var(--text-d);
  font-size: 1.02rem;
  margin-top: .4rem;
  font-style: italic;
  line-height: 1.65
}

.tst .who {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-d)
}

.tst .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  color: #241500;
  background: linear-gradient(160deg, var(--solar), var(--flare))
}

.tst .who b {
  color: var(--text-d);
  font-family: var(--f-display);
  font-weight: 600;
  display: block;
  font-size: .96rem
}

.tst .who span {
  color: var(--faint-d);
  font-size: .8rem
}

/* Certifications */
.cert-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.4rem
}

.cert {
  border: 1px dashed var(--line-l2);
  border-radius: var(--r);
  padding: 1.2rem;
  text-align: center;
  background: var(--card)
}

.cert .ic {
  color: var(--solar-600);
  margin: 0 auto .6rem;
  width: 30px;
  height: 30px
}

.cert b {
  font-family: var(--f-display);
  font-size: .9rem;
  display: block
}

.cert span {
  font-size: .72rem;
  color: var(--faint-l)
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.6rem
}

.member .photo {
  aspect-ratio: 3/4;
  margin-bottom: 1rem
}

.member b {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.05rem;
  display: block
}

.member span {
  color: var(--muted-l);
  font-size: .86rem
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem
}

.post {
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column
}

.post:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-2)
}

.post .thumb {
  aspect-ratio: 16/10;
  position: relative
}

.post .thumb .cat {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--solar);
  color: #241500;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 100px
}

.post .body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1
}

.post .meta {
  font-size: .78rem;
  color: var(--faint-l);
  font-family: var(--f-display);
  display: flex;
  gap: .6rem
}

.post h3 {
  font-size: 1.18rem;
  font-weight: 600;
  margin-top: .6rem
}

.post p {
  color: var(--muted-l);
  font-size: .92rem;
  margin-top: .5rem;
  flex: 1
}

.post .more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  color: var(--solar-600);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .85rem
}

.post .more svg {
  width: 14px;
  height: 14px;
  transition: transform .25s
}

.post:hover .more svg {
  transform: translateX(4px)
}

.post.feature {
  grid-column: span 2;
  flex-direction: row
}

.post.feature .thumb {
  aspect-ratio: auto;
  width: 52%;
  min-height: 320px
}

.post.feature .body {
  width: 48%;
  justify-content: center
}

.blog-featured {
  grid-template-columns: 1fr
}

.chips {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 2rem
}

.chip {
  padding: .5rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--line-l2);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--muted-l);
  transition: .2s;
  cursor: pointer
}

.chip:hover,
.chip.active {
  background: var(--solar);
  border-color: var(--solar);
  color: #241500
}

.tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 1.6rem
}

.tag {
  font-family: var(--f-display);
  font-size: .78rem;
  color: var(--muted-l);
  border: 1px solid var(--line-l2);
  padding: .3rem .7rem;
  border-radius: 100px
}

/* FAQ */
.faq {
  margin-top: 2.6rem;
  max-width: 860px
}

.q-item {
  border-bottom: 1px solid var(--line-l)
}

.q-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 0;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--text-l)
}

.q-btn .pm {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line-l2);
  display: grid;
  place-items: center;
  transition: .3s;
  color: var(--solar-600)
}

.q-item.open .q-btn .pm {
  transform: rotate(45deg);
  background: var(--solar);
  color: #241500;
  border-color: var(--solar)
}

.q-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  color: var(--muted-l)
}

.q-a p {
  padding-bottom: 1.3rem;
  font-size: .98rem
}

/* CTA */
.cta {
  position: relative;
  background: var(--ink-800);
  color: var(--text-d);
  overflow: hidden
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 120% at 80% 0%, rgba(255, 122, 24, .22), transparent 60%), radial-gradient(60% 100% at 10% 100%, rgba(255, 176, 32, .14), transparent 60%)
}

.cta .wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: var(--sec)
}

.cta h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  max-width: 18ch;
  margin: 1rem auto 0;
  font-weight: 700
}

.cta p {
  color: var(--muted-d);
  margin-top: 1rem;
  font-size: 1.1rem;
  max-width: 52ch;
  margin-inline: auto
}

.cta-actions {
  display: flex;
  gap: .9rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2.4rem;
  margin-top: 3rem
}

.contact-info .ci {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-l)
}

.contact-info .ci .ic {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 176, 32, .12);
  color: var(--solar-600)
}

.contact-info .ci .ic svg {
  width: 22px;
  height: 22px
}

.contact-info .ci b {
  font-family: var(--f-display);
  font-weight: 600;
  display: block;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint-l)
}

.contact-info .ci a,
.contact-info .ci span {
  color: var(--text-l);
  font-size: 1.02rem
}

.contact-info .ci a:hover {
  color: var(--solar-600)
}

.form {
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  padding: 1.9rem;
  box-shadow: var(--sh-1)
}

.form h3 {
  font-size: 1.3rem;
  font-weight: 600
}

.form p.sub {
  color: var(--muted-l);
  margin-top: .4rem;
  font-size: .92rem;
  margin-bottom: 1.4rem
}

.field {
  margin-bottom: 1rem
}

.field label {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .82rem;
  margin-bottom: .4rem;
  color: var(--text-l)
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line-l2);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .95rem;
  background: var(--paper);
  color: var(--text-l);
  transition: border .2s, box-shadow .2s
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--solar);
  box-shadow: 0 0 0 3px rgba(255, 176, 32, .18)
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.form .btn {
  width: 100%;
  justify-content: center;
  margin-top: .6rem
}

.form-note {
  font-size: .78rem;
  color: var(--faint-l);
  margin-top: .9rem;
  text-align: center
}

.map-slot {
  margin-top: 1.4rem;
  border: 1px dashed var(--line-l2);
  border-radius: var(--r);
  padding: 1.2rem;
  color: var(--muted-l);
  font-size: .86rem
}

.map-slot b {
  font-family: var(--f-display);
  color: var(--text-l)
}

/* Footer */
.footer {
  background: var(--ink-900);
  color: var(--muted-d);
  padding-top: var(--sec)
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-d)
}

.footer .brand {
  margin-bottom: 1.2rem
}

.footer-about p {
  font-size: .9rem;
  max-width: 34ch
}

.footer .social {
  display: flex;
  gap: .6rem;
  margin-top: 1.4rem
}

.footer .social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line-d);
  display: grid;
  place-items: center;
  color: var(--muted-d);
  transition: .25s
}

.footer .social a:hover {
  color: var(--solar);
  border-color: rgba(255, 176, 32, .4);
  transform: translateY(-2px)
}

.footer .social svg {
  width: 18px;
  height: 18px
}

.footer-col h4 {
  color: var(--text-d);
  font-family: var(--f-display);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem
}

.footer-col a {
  display: block;
  font-size: .9rem;
  padding: .35rem 0;
  transition: color .2s
}

.footer-col a.btn-solar{
  display: inline-block;
  padding-inline: .5rem;
}

.footer-col a:hover {
  color: var(--solar)
}

.footer-col a.btn-solar:hover{
  color: var(--ink-900);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.8rem;
  font-size: .82rem;
  color: var(--faint-d)
}

.footer-bottom a:hover {
  color: var(--solar)
}

/* Floating actions */
.floats {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: .7rem
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-2);
  transition: transform .25s
}

.fab:hover {
  transform: scale(1.08)
}

.fab svg {
  width: 26px;
  height: 26px
}

.fab-wa {
  background: #25D366;
  color: #fff
}

.fab-top {
  background: var(--ink-700);
  color: var(--text-d);
  border: 1px solid var(--line-d2);
  width: 46px;
  height: 46px;
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .25s
}

.fab-top.show {
  opacity: 1;
  pointer-events: auto
}

.fab-top svg {
  width: 20px;
  height: 20px
}

.sticky-quote {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  z-index: 80;
  display: none;
  box-shadow: var(--sh-solar)
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px)
}

.no-js [data-reveal] {
  opacity: 1;
  transform: none
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--solar);
  outline-offset: 2px;
  border-radius: 4px
}

/* Responsive */
@media(max-width:1024px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .panel {
    max-width: 520px
  }

  .why-grid,
  .svc-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .segs {
    grid-template-columns: repeat(2, 1fr)
  }

  .tl-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem
  }

  .tl-line,
  .tl-fill {
    display: none
  }

  .tl-step .node {
    margin-top: 0
  }

  .proj-grid {
    grid-template-columns: 1fr 1fr
  }

  .proj.big,
  .proj.small,
  .proj.half {
    grid-column: span 1
  }

  .ind-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .cert-strip {
    grid-template-columns: repeat(3, 1fr)
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .post.feature {
    grid-column: span 2
  }

  .pd-layout {
    grid-template-columns: 1fr
  }

  .aside-card {
    position: static
  }

  .pd-facts {
    grid-template-columns: 1fr 1fr
  }

  .pd-gallery {
    grid-template-columns: 1fr 1fr
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:680px) {

  .nav-links,
  .nav-phone {
    display: none
  }

  .burger {
    display: flex
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr
  }

  .why-grid,
  .svc-grid,
  .segs,
  .tst-grid {
    grid-template-columns: 1fr
  }

  .tl-steps {
    grid-template-columns: 1fr 1fr
  }

  .proj-grid,
  .blog-grid {
    grid-template-columns: 1fr
  }

  .post.feature {
    flex-direction: column;
    grid-column: span 1
  }

  .post.feature .thumb,
  .post.feature .body {
    width: 100%
  }

  .post.feature .thumb {
    aspect-ratio: 16/10;
    min-height: 0
  }

  .ind-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cert-strip {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-top {
    grid-template-columns: 1fr
  }

  .field-row {
    grid-template-columns: 1fr
  }

  .pd-facts,
  .pd-gallery {
    grid-template-columns: 1fr
  }

  .team-grid {
    grid-template-columns: 1fr 1fr
  }

  .utility .u-left .hide-sm {
    display: none
  }

  .sticky-quote {
    display: inline-flex
  }

  .floats {
    bottom: 80px
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important
  }

  [data-reveal] {
    opacity: 1;
    transform: none
  }
}