/* ============================================
   ORA - Opportunities in Real Assets
   Design System v3 — CONSTRUCTION / BUILDING UX
   Innovative brick-build animations, crane effects,
   scaffold overlays, blueprint grid, 4px corners
   ============================================ */

/* ---- CSS Custom Properties ---- */

:root {
  --navy: #1B3A5C;
  --navy-dark: #0F2440;
  --navy-light: #2A5580;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --charcoal: #2C3E50;
  --light-gray: #E5E7EB;
  --medium-gray: #9CA3AF;
  --copper: #B87333;
  --copper-light: #D4955A;
  --copper-dark: #8F5A27;
  --sage: #6B8E7F;
  --sage-light: #8FB5A4;
  --teal: #2C5F5D;
  --teal-light: #3D7F7C;
  --font-title: 'DM Serif Display', serif;
  /*Title: rounded serif for hero/h1;*/
  --font-heading: 'Playfair Display', serif;
  /*Title: pointy serif for h2;*/
  --font-sub: 'Space Grotesk', sans-serif;
  /*Subtitle: wider sans-serif;*/
  --font-body: 'Inter', sans-serif;
  /*Subtitle/body: tightly grouped;*/
  --font-mono: 'Space Mono', monospace;
  --font-accent: 'Lora', serif;
  --fs-hero: clamp(2.5rem, 5vw, 4.5rem);
  --fs-h1: clamp(2rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
  --fs-h4: clamp(1.05rem, 1.5vw, 1.2rem);
  --fs-body: clamp(0.95rem, 1.1vw, 1.05rem);
  --fs-sm: clamp(0.8rem, 1vw, 0.9rem);
  --fs-xs: 0.75rem;
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 2.5rem;
  --sp-6: 3rem;
  --sp-7: 4rem;
  --sp-8: 5rem;
  --sp-9: 6rem;
  --sp-10: 8rem;
  --max-w: 1280px;
  --max-narrow: 900px;
  --max-wide: 1440px;
  --radius: 4px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(27,58,92,.08);
  --shadow-md: 0 4px 14px rgba(27,58,92,.10);
  --shadow-lg: 0 8px 30px rgba(27,58,92,.12);
  --shadow-xl: 0 20px 50px rgba(27,58,92,.16);
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --ease-construct: cubic-bezier(.22,1,.36,1);
  --t-fast: .2s;
  --t-base: .3s;
  --t-slow: .5s;
  --t-build: .8s;
  --z-drop: 100;
  --z-sticky: 200;
  --z-header: 300;
  --z-overlay: 400;
  --z-modal: 500;
}

/* ---- Reset ---- */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--copper);
}

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---- Typography ---- */

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  color: var(--navy);
  font-weight: 700;
}

h1 {
  font-family: var(--font-title);
  font-size: var(--fs-h1);
  letter-spacing: -.01em;
  font-weight: 400;
}

h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  letter-spacing: -.01em;
}

h3 {
  font-family: var(--font-sub);
  font-size: var(--fs-h3);
  font-weight: 600;
}

h4 {
  font-family: var(--font-sub);
  font-size: var(--fs-h4);
  font-weight: 500;
}

p {
  margin-bottom: var(--sp-2);
  color: var(--charcoal);
}

.text-hero {
  font-family: var(--font-title);
  font-size: var(--fs-hero);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.05;
}

.text-serif {
  font-family: var(--font-accent);
}

.text-mono {
  font-family: var(--font-mono);
}

.text-center {
  text-align: center;
}

/* ---- Layout ---- */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

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

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

.section {
  padding: var(--sp-9) 0;
}

.section-sm {
  padding: var(--sp-7) 0;
}

.grid {
  display: grid;
  gap: var(--sp-4);
}

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

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

.grid-4 {
  grid-template-columns: repeat(4,1fr);
}

.grid-5 {
  grid-template-columns: repeat(5,1fr);
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-1 {
  gap: var(--sp-1);
}

.gap-2 {
  gap: var(--sp-2);
}

.gap-3 {
  gap: var(--sp-3);
}

.gap-4 {
  gap: var(--sp-4);
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding: .8rem 1.8rem;
  font-family: var(--font-sub);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--radius);
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Brick-laying shimmer on hover */

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .6s var(--ease);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}

.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-copper {
  background: var(--copper);
  color: var(--white);
  border: 2px solid var(--copper);
}

.btn-copper:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
}

.btn-teal:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: .55rem 1.2rem;
  font-size: .82rem;
}

.btn-lg {
  padding: 1rem 2.4rem;
  font-size: 1rem;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  transition: all .4s var(--ease);
  padding: var(--sp-2) 0;
}

.site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  padding: var(--sp-1) 0;
}

.site-header.scrolled .nav-link {
  color: var(--charcoal);
}

.site-header.scrolled .nav-link:hover, .site-header.scrolled .nav-link.active {
  color: var(--navy);
}

.site-header.scrolled .logo-white {
  display: none;
}

.site-header.scrolled .logo-navy {
  display: block;
}

.logo-navy {
  display: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  z-index: var(--z-modal);
}

.nav-logo img {
  height: 44px;
  transition: height .4s var(--ease);
}

.site-header.scrolled .nav-logo img {
  height: 36px;
}

.nav-logo-text {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--white);
  transition: color var(--t-base);
}

.site-header.scrolled .nav-logo-text {
  color: var(--navy);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-sub);
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: var(--sp-1) 0;
  position: relative;
  transition: color var(--t-fast);
}

/* Copper underline build effect */

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width var(--t-base) var(--ease);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
}

/* Dropdown */

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-1) 0;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base);
  pointer-events: none;
  z-index: var(--z-drop);
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--white);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.nav-dd-link {
  display: block;
  padding: .5rem var(--sp-3);
  color: var(--charcoal);
  font-size: .85rem;
  transition: all var(--t-fast);
}

.nav-dd-link:hover {
  background: var(--off-white);
  color: var(--navy);
  padding-left: calc(var(--sp-3) + 4px);
}

.nav-cta {
  margin-left: var(--sp-1);
}

/* Mobile toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: var(--z-modal);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-base);
}

.site-header.scrolled .nav-toggle span {
  background: var(--navy);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px,-5px);
}

/* Mobile nav panel */

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: var(--z-overlay);
  padding: var(--sp-10) var(--sp-4) var(--sp-4);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mob-link {
  display: block;
  font-family: var(--font-sub);
  font-size: 1.2rem;
  color: var(--white);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--t-fast);
}

.mob-link:hover {
  color: var(--copper);
}

.mob-sub {
  padding-left: var(--sp-3);
}

.mob-sub .mob-link {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
}

/* ============================================================
   HERO with CONSTRUCTION ANIMATION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-ov-navy {
  background: linear-gradient(135deg, rgba(15,36,64,.92) 0%, rgba(27,58,92,.78) 50%, rgba(44,95,93,.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-top: var(--sp-10);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--copper-light);
  margin-bottom: var(--sp-3);
  padding: .35rem .9rem;
  border: 1px solid rgba(184,115,51,.3);
  border-radius: var(--radius);
}

.hero-title {
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.hero-sub {
  font-size: clamp(1rem,1.4vw,1.2rem);
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

/* Blueprint grid lines on hero */

.hero-blueprint {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .04;
}

.hero-blueprint-line {
  position: absolute;
  background: var(--white);
}

.hero-blueprint-line.h {
  height: 1px;
  width: 100%;
}

.hero-blueprint-line.v {
  width: 1px;
  height: 100%;
}

/* Scroll indicator */

.scroll-hint {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  color: rgba(255,255,255,.5);
  font-size: var(--fs-xs);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.scroll-hint-bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Page-level hero (shorter) */

.hero-page {
  min-height: 48vh;
  padding-top: var(--sp-10);
}

.hero-page .hero-content {
  padding-top: var(--sp-7);
}

/* ============================================================
   BRICK-BUILD REVEAL ANIMATION
   Elements "build up" like bricks being laid
   ============================================================ */

/* Base hidden state */

.brick {
  opacity: 0;
  transform: translateY(40px) scale(.97);
  transition: opacity .65s var(--ease-construct), transform .65s var(--ease-construct);
}

.brick.built {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered delays for grid children */

.brick-d1 {
  transition-delay: .06s;
}

.brick-d2 {
  transition-delay: .12s;
}

.brick-d3 {
  transition-delay: .18s;
}

.brick-d4 {
  transition-delay: .24s;
}

.brick-d5 {
  transition-delay: .30s;
}

.brick-d6 {
  transition-delay: .36s;
}

.brick-d7 {
  transition-delay: .42s;
}

.brick-d8 {
  transition-delay: .48s;
}

.brick-d9 {
  transition-delay: .54s;
}

.brick-d10 {
  transition-delay: .60s;
}

/* Variant: slide from left */

.brick-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .65s var(--ease-construct), transform .65s var(--ease-construct);
}

.brick-left.built {
  opacity: 1;
  transform: translateX(0);
}

/* Variant: slide from right */

.brick-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .65s var(--ease-construct), transform .65s var(--ease-construct);
}

.brick-right.built {
  opacity: 1;
  transform: translateX(0);
}

/* Variant: scale up from center */

.brick-scale {
  opacity: 0;
  transform: scale(.85);
  transition: opacity .65s var(--ease-construct), transform .65s var(--ease-construct);
}

.brick-scale.built {
  opacity: 1;
  transform: scale(1);
}

/* Variant: build from bottom like stacking bricks */

.brick-stack {
  opacity: 0;
  transform: translateY(60px) rotateX(8deg);
  transform-origin: bottom center;
  transition: opacity .7s var(--ease-construct), transform .7s var(--ease-construct);
}

.brick-stack.built {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* Construction crane line — animated top-down reveal */

.crane-line {
  position: absolute;
  top: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--copper), transparent);
  height: 0;
  transition: height 1.2s var(--ease);
  opacity: .15;
}

.crane-line.built {
  height: 100%;
}

/* ============================================================
   BRICK WALL ANIMATION (used for hero & section entrances)
   Creates an actual brick-laying animation with CSS grid
   ============================================================ */

.brick-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, 60px);
  grid-auto-rows: 24px;
  gap: 3px;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.brick-wall.active {
  opacity: 1;
}

.brick-wall .bw-brick {
  background: rgba(184,115,51,.06);
  border-radius: 1px;
  opacity: 0;
  transform: translateY(10px);
  animation: layBrick .4s var(--ease-construct) forwards;
}

@keyframes layBrick {
  0% {
    opacity: 0;
    transform: translateY(10px) scaleY(.5);
  }
  60% {
    opacity: 1;
    transform: translateY(-2px) scaleY(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

/* ============================================================
   CONSTRUCTION SCAFFOLD ANIMATION
   A rising scaffold/frame effect
   ============================================================ */

.scaffold-frame {
  position: relative;
  overflow: hidden;
}

.scaffold-frame::before, .scaffold-frame::after {
  content: '';
  position: absolute;
  background: var(--copper);
  opacity: 0;
  transition: all var(--t-build) var(--ease-construct);
}

/* Left vertical bar */

.scaffold-frame::before {
  left: 0;
  top: 100%;
  width: 2px;
  height: 100%;
}

/* Bottom horizontal bar */

.scaffold-frame::after {
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
}

.scaffold-frame.built::before {
  top: 0;
  opacity: .2;
}

.scaffold-frame.built::after {
  left: 0;
  opacity: .2;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.sec-header {
  margin-bottom: var(--sp-7);
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--copper);
  margin-bottom: var(--sp-2);
}

.sec-tag-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--copper);
}

.sec-title {
  margin-bottom: var(--sp-2);
}

.sec-desc {
  font-size: var(--fs-body);
  color: var(--medium-gray);
  max-width: 620px;
  line-height: 1.7;
}

.sec-header.text-center .sec-desc {
  margin: 0 auto;
}

/* ============================================================
   CARDS (all 4px radius)
   ============================================================ */

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .4s var(--ease);
  border: 1px solid var(--light-gray);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.card:hover .card-img img {
  transform: scale(1.06);
}

.card-body {
  padding: var(--sp-3);
}

.card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--copper);
  background: rgba(184,115,51,.07);
  padding: .2rem .6rem;
  border-radius: var(--radius);
  margin-bottom: var(--sp-1);
}

.card-title {
  font-family: var(--font-sub);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-1);
  line-height: 1.3;
}

.card-text {
  font-size: var(--fs-sm);
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: var(--sp-2);
}

.card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--medium-gray);
  font-family: var(--font-mono);
}

.card-link {
  font-family: var(--font-sub);
  font-size: var(--fs-sm);
  color: var(--copper);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.card-link:hover {
  color: var(--copper-dark);
}

/* Icon Card */

.icard {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--sp-4);
  transition: all .4s var(--ease);
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

/* Construction bottom-bar build effect */

.icard::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}

.icard:hover::before {
  transform: scaleX(1);
}

.icard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.icard-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(27,58,92,.06), rgba(44,95,93,.06));
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: var(--sp-3);
  transition: all var(--t-base);
}

.icard:hover .icard-icon {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.08);
}

.icard-title {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: var(--fs-h4);
  color: var(--navy);
  margin-bottom: var(--sp-1);
}

.icard-text {
  font-size: var(--fs-sm);
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Division Card */

.div-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: all .4s var(--ease);
}

.div-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.div-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow);
}

.div-card:hover .div-card-bg {
  transform: scale(1.08);
}

.div-card-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,36,64,.95) 0%, rgba(15,36,64,.2) 60%, rgba(15,36,64,.05) 100%);
  transition: background var(--t-base);
}

.div-card:hover .div-card-ov {
  background: linear-gradient(to top, rgba(15,36,64,.98) 0%, rgba(15,36,64,.45) 60%, rgba(15,36,64,.15) 100%);
}

.div-card-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-4);
  z-index: 2;
}

.div-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  color: var(--copper-light);
  font-size: 1.1rem;
  margin-bottom: var(--sp-2);
  transition: all var(--t-base);
}

.div-card:hover .div-card-icon {
  background: var(--copper);
  color: var(--white);
}

.div-card-title {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: var(--sp-1);
}

.div-card-desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.65);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}

.div-card:hover .div-card-desc {
  max-height: 80px;
}

.div-card-link {
  font-family: var(--font-sub);
  font-size: var(--fs-sm);
  color: var(--copper-light);
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: var(--sp-1);
}

/* ============================================================
   STATS with counter
   ============================================================ */

.stat-row {
  display: flex;
  justify-content: center;
  gap: var(--sp-7);
  flex-wrap: wrap;
  padding: var(--sp-5) 0;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-num.white {
  color: var(--white);
}

.stat-label {
  font-family: var(--font-sub);
  font-size: var(--fs-sm);
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: var(--sp-1);
}

.stat-label.white {
  color: rgba(255,255,255,.65);
}

/* ============================================================
   BUILDING BLOCKS — construction-themed section divider
   ============================================================ */

.block-divider {
  display: flex;
  gap: 2px;
  height: 6px;
  max-width: 120px;
  margin: 0 auto var(--sp-6);
}

.block-divider span {
  flex: 1;
  border-radius: 1px;
}

.block-divider span:nth-child(1) {
  background: var(--navy);
}

.block-divider span:nth-child(2) {
  background: var(--copper);
}

.block-divider span:nth-child(3) {
  background: var(--teal);
}

.block-divider span:nth-child(4) {
  background: var(--sage);
}

.block-divider span:nth-child(5) {
  background: var(--navy-light);
}

/* Construction progress bar */

.construct-bar {
  height: 4px;
  background: var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--sp-4);
}

.construct-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--copper));
  width: 0;
  transition: width 1.5s var(--ease);
  border-radius: var(--radius);
}

.construct-bar-fill.built {
  width: 100%;
}

/* Animated construction progress with percentage */

.progress-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.progress-item {
  position: relative;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sub);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .4rem;
}

.progress-pct {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--copper);
}

.progress-track {
  height: 6px;
  background: var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: var(--radius);
  width: 0;
  transition: width 1.8s var(--ease-construct);
}

/* ============================================================
   SCAFFOLDING GRID — visible grid overlay (subtle)
   ============================================================ */

.bg-scaffold {
  position: relative;
}

.bg-scaffold::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .025;
  background-image: linear-gradient(rgba(27,58,92,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(27,58,92,.6) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* ============================================================
   FEATURES / TWO-COL LAYOUTS
   ============================================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
}

.two-col-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.two-col-img img {
  width: 100%;
  display: block;
  transition: transform var(--t-slow);
}

.two-col-img:hover img {
  transform: scale(1.03);
}

/* Process Steps */

.steps {
  display: flex;
  gap: var(--sp-3);
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-num {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  margin: 0 auto var(--sp-2);
  position: relative;
  z-index: 2;
}

.step-bar {
  position: absolute;
  top: 26px;
  left: calc(50% + 26px);
  width: calc(100% - 52px);
  height: 2px;
  background: var(--light-gray);
}

.step:last-child .step-bar {
  display: none;
}

.step-title {
  font-family: var(--font-sub);
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .2rem;
}

.step-text {
  font-size: var(--fs-sm);
  color: var(--medium-gray);
}

/* ============================================================
   TIMELINE — vertical construction timeline
   ============================================================ */

.timeline {
  position: relative;
  padding-left: var(--sp-7);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light-gray);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--sp-5);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: calc(-1 * var(--sp-7) + 12px);
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 3px solid var(--copper);
  border-radius: var(--radius);
  z-index: 2;
}

.timeline-item:first-child .timeline-dot {
  background: var(--copper);
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .3rem;
}

.timeline-title {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .3rem;
}

.timeline-text {
  font-size: var(--fs-sm);
  color: var(--medium-gray);
  line-height: 1.6;
}

/* ============================================================
   ACCORDION / FAQ
   ============================================================ */

.acc-item {
  border-bottom: 1px solid var(--light-gray);
}

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) 0;
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color var(--t-fast);
}

.acc-head:hover {
  color: var(--teal);
}

.acc-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base);
  flex-shrink: 0;
  font-size: .8rem;
}

.acc-item.active .acc-icon {
  transform: rotate(45deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}

.acc-item.active .acc-body {
  max-height: 500px;
}

.acc-content {
  padding-bottom: var(--sp-3);
  font-size: var(--fs-body);
  color: var(--medium-gray);
  line-height: 1.7;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--copper-dark), var(--copper) 50%, var(--copper-light));
  padding: var(--sp-8) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 48px), repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 48px);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-title);
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
  margin-bottom: var(--sp-4);
}

/* Navy CTA variant */

.cta-banner-navy {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy) 50%, var(--navy-light));
  padding: var(--sp-8) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 48px), repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 48px);
  pointer-events: none;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */

.nl-box {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: var(--sp-5);
  text-align: center;
  border: 1px solid var(--light-gray);
}

.nl-title {
  font-family: var(--font-title);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: var(--sp-1);
}

.nl-text {
  color: var(--medium-gray);
  margin-bottom: var(--sp-3);
}

/* ============================================================
   FILTER BAR (Insights)
   ============================================================ */

.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: var(--sp-5);
}

.fbtn {
  padding: .45rem 1.1rem;
  font-family: var(--font-sub);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--medium-gray);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  transition: all var(--t-fast);
  cursor: pointer;
  background: transparent;
}

.fbtn:hover, .fbtn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.search-box {
  margin-left: auto;
  position: relative;
}

.search-box input {
  padding: .45rem .9rem .45rem 2.2rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  min-width: 200px;
  transition: border-color var(--t-fast);
}

.search-box input:focus {
  border-color: var(--teal);
  outline: none;
}

.search-icon {
  position: absolute;
  left: .7rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--medium-gray);
  font-size: .8rem;
}

/* ============================================================
   FORMS
   ============================================================ */

.fg {
  margin-bottom: var(--sp-3);
}

.fl {
  display: block;
  font-family: var(--font-sub);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .4rem;
}

.fi, .fs, .ft {
  width: 100%;
  padding: .78rem .9rem;
  font-size: var(--fs-body);
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  transition: all var(--t-fast);
}

.fi:focus, .fs:focus, .ft:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(44,95,93,.1);
  outline: none;
}

.ft {
  resize: vertical;
  min-height: 120px;
}

.fi::placeholder {
  color: var(--medium-gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.form-inline {
  display: flex;
  gap: var(--sp-2);
}

.form-inline .fi {
  flex: 1;
}

/* ============================================================
   FEATURED CARD (large insight hero)
   ============================================================ */

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: all .4s var(--ease);
}

.featured-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: transparent;
  transform: translateY(-4px);
}

.featured-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.featured-card:hover .featured-card-img img {
  transform: scale(1.04);
}

.featured-card-body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============================================================
   TEAM CARDS
   ============================================================ */

.team-card {
  text-align: center;
  padding: var(--sp-3);
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: var(--radius);
  margin: 0 auto var(--sp-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: var(--font-sub);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .1rem;
}

.team-role {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .3rem;
}

.team-uni {
  font-size: var(--fs-xs);
  color: var(--medium-gray);
}

/* ============================================================
   CONSTRUCTION PARTICLE CANVAS (hero background)
   ============================================================ */

#constructCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
  padding-top: var(--sp-8);
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-7);
}

.ft-brand {
  max-width: 300px;
}

.ft-logo {
  height: 54px;
  width: auto;
  margin-bottom: var(--sp-3);
}

.ft-desc {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: var(--sp-3);
}

.ft-social {
  display: flex;
  gap: var(--sp-2);
}

.ft-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  transition: all var(--t-base);
}

.ft-social a:hover {
  background: var(--copper);
  color: var(--white);
  transform: translateY(-2px);
}

.ft-heading {
  font-family: var(--font-sub);
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-3);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ft-links li {
  margin-bottom: var(--sp-1);
}

.ft-links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.55);
  transition: all var(--t-fast);
}

.ft-links a:hover {
  color: var(--copper-light);
  padding-left: 3px;
}

.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--sp-3) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.ft-bottom-text {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.35);
}

.ft-bottom-links {
  display: flex;
  gap: var(--sp-3);
}

.ft-bottom-links a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.35);
}

.ft-bottom-links a:hover {
  color: rgba(255,255,255,.6);
}

/* ============================================================
   BACKGROUNDS
   ============================================================ */

.bg-navy {
  background: var(--navy);
}

.bg-dark {
  background: var(--navy-dark);
}

.bg-off {
  background: var(--off-white);
}

.bg-white {
  background: var(--white);
}

/* ============================================================
   PODCAST — Built Futures Podcast
   ============================================================ */

.podcast-player {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-dark);
}

.podcast-player iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

.episode-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  padding: var(--sp-4);
  transition: all .4s var(--ease);
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.episode-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.episode-num {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
}

.episode-body {
  flex: 1;
}

.episode-title {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .3rem;
  line-height: 1.3;
}

.episode-meta {
  display: flex;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--copper);
  margin-bottom: .5rem;
  flex-wrap: wrap;
}

.episode-desc {
  font-size: var(--fs-sm);
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

.platform-links {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-top: var(--sp-3);
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-sub);
  font-size: var(--fs-sm);
  font-weight: 500;
  border: 1px solid var(--light-gray);
  color: var(--charcoal);
  transition: all var(--t-fast);
}

.platform-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.platform-link i {
  font-size: 1rem;
}

.waveform {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 32px;
  margin-bottom: var(--sp-3);
}

.waveform span {
  width: 4px;
  border-radius: 2px;
  background: var(--copper);
  opacity: .6;
  animation: waveAnim 1.2s ease-in-out infinite alternate;
}

.waveform span:nth-child(1) {
  height: 40%;
  animation-delay: 0s;
}

.waveform span:nth-child(2) {
  height: 70%;
  animation-delay: .1s;
}

.waveform span:nth-child(3) {
  height: 50%;
  animation-delay: .2s;
}

.waveform span:nth-child(4) {
  height: 90%;
  animation-delay: .3s;
}

.waveform span:nth-child(5) {
  height: 60%;
  animation-delay: .4s;
}

.waveform span:nth-child(6) {
  height: 80%;
  animation-delay: .5s;
}

.waveform span:nth-child(7) {
  height: 45%;
  animation-delay: .6s;
}

.waveform span:nth-child(8) {
  height: 75%;
  animation-delay: .7s;
}

.waveform span:nth-child(9) {
  height: 55%;
  animation-delay: .8s;
}

.waveform span:nth-child(10) {
  height: 65%;
  animation-delay: .9s;
}

@keyframes waveAnim {
  0% {
    transform: scaleY(.5);
  }
  100% {
    transform: scaleY(1);
  }
}

/* ============================================================
   UTILITIES
   ============================================================ */

.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;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: var(--sp-1);
}

.mb-2 {
  margin-bottom: var(--sp-2);
}

.mb-3 {
  margin-bottom: var(--sp-3);
}

.mb-4 {
  margin-bottom: var(--sp-4);
}

.mb-5 {
  margin-bottom: var(--sp-5);
}

.mb-6 {
  margin-bottom: var(--sp-6);
}

.mt-2 {
  margin-top: var(--sp-2);
}

.mt-4 {
  margin-top: var(--sp-4);
}

.mt-6 {
  margin-top: var(--sp-6);
}

.w-full {
  width: 100%;
}

.scroll-mt {
  scroll-margin-top: 80px;
}

/* Copper accent text */

.text-copper {
  color: var(--copper);
}

.text-white {
  color: var(--white);
}

.text-sage {
  color: var(--sage);
}

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

@media (max-width:1024px) {
  .grid-5 {
    grid-template-columns: repeat(3,1fr);
  }
}

@media (max-width:1024px) {
  .grid-4 {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:1024px) {
  .grid-3 {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:1024px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }
}

@media (max-width:1024px) {
  .ft-brand {
    grid-column: 1/-1;
    max-width: none;
  }
}

@media (max-width:1024px) {
  .steps {
    flex-wrap: wrap;
  }
}

@media (max-width:1024px) {
  .step-bar {
    display: none;
  }
}

@media (max-width:1024px) {
  .featured-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px) {
  .nav-menu {
    display: none;
  }
}

@media (max-width:768px) {
  .nav-toggle {
    display: flex;
  }
}

@media (max-width:768px) {
  .mobile-nav {
    display: block;
  }
}

@media (max-width:768px) {
  .grid-5, .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px) {
  .hero {
    min-height: 88vh;
  }
}

@media (max-width:768px) {
  .hero-page {
    min-height: 42vh;
  }
}

@media (max-width:768px) {
  .hero-content {
    padding-top: var(--sp-8);
  }
}

@media (max-width:768px) {
  .hero-actions {
    flex-direction: column;
  }
}

@media (max-width:768px) {
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width:768px) {
  .section {
    padding: var(--sp-7) 0;
  }
}

@media (max-width:768px) {
  .stat-row {
    gap: var(--sp-3);
  }
}

@media (max-width:768px) {
  .stat-num {
    font-size: 1.8rem;
  }
}

@media (max-width:768px) {
  .steps {
    flex-direction: column;
    gap: var(--sp-4);
  }
}

@media (max-width:768px) {
  .step {
    display: flex;
    text-align: left;
    gap: var(--sp-2);
    align-items: flex-start;
  }
}

@media (max-width:768px) {
  .step-num {
    margin: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    font-size: .85rem;
  }
}

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

@media (max-width:768px) {
  .ft-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width:768px) {
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width:768px) {
  .search-box {
    margin-left: 0;
  }
}

@media (max-width:768px) {
  .search-box input {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width:768px) {
  .form-inline {
    flex-direction: column;
  }
}

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

@media (max-width:768px) {
  .div-card {
    aspect-ratio: 16/9;
  }
}

@media (max-width:768px) {
  .hero-blueprint {
    display: none;
  }
}

@media (max-width:768px) {
  .featured-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px) {
  .timeline {
    padding-left: var(--sp-5);
  }
}

@media (max-width:768px) {
  .timeline::before {
    left: 12px;
  }
}

@media (max-width:768px) {
  .timeline-dot {
    left: calc(-1 * var(--sp-5) + 4px);
  }
}

@media (max-width:480px) {
  .hero {
    min-height: 82vh;
  }
}

@media (max-width:480px) {
  .btn-lg {
    padding: .85rem 1.8rem;
    font-size: .92rem;
  }
}

