/* ═══════════════════════════════════════════════════════════════════════
   HADRIZ CO LTD · Delivering Clarity
   Stylesheet
   ═══════════════════════════════════════════════════════════════════════
   Type scale (base 16px):
     Eyebrow     0.68rem    Outfit 500 caps tracking .2em
     H1 hero     clamp(2.8rem, 5.2vw, 5.6rem)   Cormorant 600 lh .96
     Positioning clamp(1.05rem, 1.5vw, 1.35rem) Outfit 500 (ital Cormorant accents)
     H2 section  clamp(1.75rem, 2.4vw, 2.4rem)  Cormorant 600 lh 1.08
     H3 cards    1.15rem                         Cormorant 600 lh 1.2
     Lead        0.96rem                         Outfit 400 lh 1.8
     Body        0.9rem                          Outfit 300 lh 1.85
   Breakpoints:
     Desktop  >  1140px
     Tablet   <= 1140px
     Mobile   <= 720px
     Small    <= 480px
   ═══════════════════════════════════════════════════════════════════════ */

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

:root {
  --blue: #018ee0;
  --cyan: #2ac8e5;
  --teal: #0bb4c4;
  --navy: #0a1d36;
  --navy2: #061528;
  --navy3: #040d1a;
  --white: #ffffff;
  --off: #f4f8fc;
  --off2: #eaf1f8;
  --ink: #06101c;
  --body: #283848;
  --sub: #536170;
  --muted: #8da0b6;
  --rule: #dde6f1;
  --rule-soft: #e8eef6;
  --rdk: rgba(255, 255, 255, 0.08);
  --gr: linear-gradient(135deg, #018ee0, #2ac8e5);
  --g90: linear-gradient(90deg, #018ee0, #2ac8e5);
  --fh: "Cormorant Garamond", Georgia, serif;
  --fb: "Outfit", sans-serif;
  --nh: 82px;
  --mw: 1280px;
  --r: 3px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--white);
  color: var(--body);
  font-family: var(--fb);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--off);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

.w {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 4rem;
}
.sec {
  padding: 6rem 0;
}
.sec-off {
  background: var(--off);
}
.sec-dk {
  background: var(--navy);
}
.divider {
  height: 1px;
  background: var(--rule);
}

.ey {
  font-family: var(--fb);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.ey::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}
.ey-lt {
  color: var(--cyan) !important;
}
.ey-lt::before {
  background: var(--cyan) !important;
}

/* ── HERO H1 (now properly sized) ── */
.h1 {
  font-family: var(--fh);
  font-size: clamp(2.2rem, 3.4vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.h1 .bl {
  color: var(--blue);
  font-style: italic;
}
.h1 .gh {
  color: rgba(6, 16, 28, 0.08);
}

/* ── H2 sections (slightly larger to match new hero) ── */
.h2 {
  font-family: var(--fh);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.h2-lt {
  color: var(--white) !important;
}
.h2 em,
.h1 em {
  font-style: italic;
  color: var(--blue);
}

.h3 {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.lead {
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--body);
}
.body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--sub);
}
.body-dk {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.45);
}

.gc {
  background: var(--g90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rv {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.rv.on {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}

.btn {
  font-family: var(--fb);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.95rem;
  border-radius: var(--r);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}
.btn-p {
  background: var(--gr);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(1, 142, 224, 0.25);
}
.btn-p:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 142, 224, 0.35);
}
.btn-g {
  border: 1px solid var(--rule);
  color: var(--sub);
  background: transparent;
}
.btn-g:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-w {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
.btn-w:hover {
  background: var(--off);
  transform: translateY(-1px);
}
.btn .arr {
  transition: transform 0.25s;
}
.btn:hover .arr {
  transform: translateX(3px);
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 700;
  height: var(--nh);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--rule);
  transition:
    box-shadow 0.3s,
    height 0.25s;
  will-change: transform;
}
#nav.sc {
  box-shadow: 0 4px 24px rgba(6, 16, 28, 0.08);
}
.ni {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 4rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nlo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.nmark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.nlo:hover .nmark {
  transform: rotate(8deg) scale(1.05);
}
.nbrand {
  font-family: var(--fb);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.ntag {
  font-family: var(--fh);
  font-size: 0.9rem;
  font-weight: 500;
  font-style: italic;
  color: var(--blue);
  display: block;
  margin-top: 4px;
  letter-spacing: 0.12em;
}
.nlinks {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  list-style: none;
}
.nlinks a {
  font-size: 0.96rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--sub);
  position: relative;
					  
  transition: color 0.2s;
}
.nlinks a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--g90);
  transition: width 0.25s;
}
.nlinks a:hover {
  color: var(--ink);
}
.nlinks a:hover::after,
.nlinks a.ac::after {
  width: 100%;
}
.nlinks a.ac {
  color: var(--ink);
}
.ncta {
  font-size: 0.94rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  padding: 0.62rem 1.65rem;
  background: var(--gr) !important;
  color: var(--white) !important;
  border-radius: var(--r);
  transition:
    opacity 0.2s,
    transform 0.15s,
    box-shadow 0.25s !important;
}
.ncta::after {
  display: none !important;
}
.ncta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(1, 142, 224, 0.3);
}
.burg {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  margin-right: -8px;
}
.burg span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.28s;
}
.burg.op span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burg.op span:nth-child(2) {
  opacity: 0;
}
.burg.op span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mnav {
  display: none;
  position: fixed;
  top: var(--nh);
  inset: var(--nh) 0 0 0;
  background: var(--white);
  z-index: 680;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  padding: 2rem;
}
.mnav.op {
  display: flex;
}
.mnav a {
  font-family: var(--fh);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.mnav a:hover {
  color: var(--blue);
}
.mnav .mn-meta {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: var(--nh);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.hl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4.5rem 6rem 4rem;
  border-right: 1px solid var(--rule);
  position: relative;
}
.hkick {
  animation: up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.02s;
  opacity: 0;
}

/* Positioning line bumped up to match larger H1 */
.hero-positioning {
  font-family: var(--fb);
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--sub);
  line-height: 1.35;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.hero-positioning em {
  font-family: var(--fh);
  font-style: italic;
  font-weight: 600;
  font-size: 1.16em;
  color: var(--blue);
  letter-spacing: 0;
}
.hero-positioning .hp-amp {
  font-family: var(--fh);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
  font-size: 1.12em;
  margin: 0 0.05rem;
}
.hkick2 {
  animation: up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.07s;
  opacity: 0;
}

/* Hero statement (kinetic) */
.hero-statement {
  margin-bottom: 1.8rem;
  font-family: var(--fh);
  font-size: clamp(2.2rem, 3.4vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-statement .line {
  display: block;
  overflow: hidden;
}
.hero-statement .line span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: lineUp 0.9s cubic-bezier(0.18, 1, 0.32, 1) forwards;
}
.hero-statement .l1 span {
  animation-delay: 0.15s;
}
.hero-statement .l2 span {
  animation-delay: 0.3s;
}
.hero-statement .l3 span {
  animation-delay: 0.45s;
}
.hero-statement .l4 span {
  animation-delay: 0.6s;
}
@keyframes lineUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.hero-statement em {
  font-style: italic;
  color: var(--blue);
  position: relative;
  display: inline-block;
}
.hero-statement em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.08em;
  background: var(--g90);
  transform: scaleX(0);
  transform-origin: left;
  animation: underline 1s cubic-bezier(0.18, 1, 0.32, 1) forwards 1s;
}
@keyframes underline {
  to {
    transform: scaleX(1);
  }
}
.hero-statement .ghost {
  color: rgba(6, 16, 28, 0.22);
}

.hdesc {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--sub);
  max-width: 48ch;
  margin-bottom: 2.4rem;
  animation: up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.85s;
  opacity: 0;
}
.hbtns {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  animation: up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.98s;
  opacity: 0;
}

/* Hero right panel */
.hr-pn {
  background: var(--navy3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem;
}
.hr-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
}
.hr-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
  background: radial-gradient(
    circle,
    rgba(1, 142, 224, 0.16) 0%,
    rgba(42, 200, 229, 0.05) 35%,
    transparent 70%
  );
  animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
.hero-stage {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 600px;
  animation: up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
  opacity: 0;
}
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
}
.hero-logo {
  width: 104px;
  height: 104px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(42, 200, 229, 0.32))
    drop-shadow(0 0 70px rgba(1, 142, 224, 0.18));
  margin-bottom: 1.4rem;
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.hero-name {
  font-family: var(--fb);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1;
  margin-bottom: 0.55rem;
}
.hero-divider {
  width: 36px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(42, 200, 229, 0.6),
    transparent
  );
  margin: 0.55rem 0;
}
.hero-tagline {
  font-family: var(--fh);
  font-size: 1.18rem;
  font-weight: 500;
  font-style: italic;
  color: var(--cyan);
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}

/* Lifecycle */
.lcycle {
  position: relative;
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem;
}
.lcycle-line {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(42, 200, 229, 0.4),
    transparent
  );
}
.lcycle-progress {
  position: absolute;
  left: 5%;
  top: 50%;
  height: 2px;
  width: 0;
  background: var(--g90);
  box-shadow: 0 0 12px rgba(42, 200, 229, 0.6);
  animation: flow 5s ease-in-out infinite;
  transform: translateY(-1px);
}
@keyframes flow {
  0% {
    width: 0;
  }
  50% {
    width: 90%;
  }
  100% {
    width: 0;
  }
}
.lstep {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.lstep-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--navy3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.35s;
}
.lstep-dot::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(42, 200, 229, 0.3);
  opacity: 0;
  transition: all 0.35s;
}
.lstep:hover .lstep-dot,
.lstep.active .lstep-dot {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(42, 200, 229, 0.7);
  transform: scale(1.1);
}
.lstep:hover .lstep-dot::after,
.lstep.active .lstep-dot::after {
  opacity: 1;
  animation: dotPulse 1.8s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.lstep-label {
  position: absolute;
  top: 36px;
  font-family: var(--fb);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  transition: color 0.25s;
}
.lstep:hover .lstep-label,
.lstep.active .lstep-label {
  color: var(--cyan);
}
.lstep-num {
  position: absolute;
  bottom: 38px;
  font-family: var(--fh);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.25s;
}
.lstep:hover .lstep-num,
.lstep.active .lstep-num {
  color: var(--cyan);
}
.lcycle-info {
  margin-top: 5.5rem;
  text-align: center;
  min-height: 62px;
}
.lcycle-info-t {
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255);
  margin-bottom: 0.35rem;
  transition: opacity 0.25s;

}
.lcycle-info-d {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
  transition: opacity 0.25s;
  letter-spacing: 0.2em;
}
.h-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--g90);
  z-index: 5;
}

/* Ticker */
.ticker {
  background: var(--ink);
  padding: 0.78rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ttrack {
  display: inline-flex;
  animation: tick 38s linear infinite;
}
.ti {
  font-family: var(--fb);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 0 4rem;
}
.tdot {
  color: var(--blue);
  opacity: 0.55;
  font-size: 0.6rem;
}
@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Showcase */
.showcase {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--off) 100%);
  border-bottom: 1px solid var(--rule);
}
.showcase-hdr {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.showcase-hdr .ey {
  justify-content: center;
}
.showcase-hdr .ey::before {
  display: none;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.sc-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: default;
}
.sc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--g90);
  transition: width 0.5s ease;
  z-index: 2;
}
.sc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(6, 16, 28, 0.08);
  border-color: rgba(1, 142, 224, 0.3);
}
.sc-card:hover::before {
  width: 100%;
}
.sc-img {
  height: 230px;
  background: linear-gradient(135deg, #f4f8fc 0%, #eaf1f8 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--rule-soft);
}
.sc-img svg {
  width: 100%;
  height: 100%;
  max-width: 240px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.sc-card:hover .sc-img svg {
  transform: scale(1.05);
}
.sc-img-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(1, 142, 224, 0.05) 0%,
    transparent 70%
  );
}
.sc-body {
  padding: 1.4rem 1.5rem 1.6rem;
}
.sc-eye {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.4rem;
  display: block;
}
.sc-title {
  font-family: var(--fh);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 0.4rem;
}
.sc-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--sub);
}

/* About */
.ag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rule);
}
.al {
  padding: 4rem;
  border-right: 1px solid var(--rule);
}
.ar {
  display: grid;
  gap: 1px;
  background: var(--rule);
}
.ec {
  background: var(--white);
  padding: 1.75rem 2rem;
  border-left: 2px solid transparent;
  transition: all 0.22s;
  cursor: default;
}
.ec:hover {
  background: var(--off);
  border-left-color: var(--blue);
  transform: translateX(2px);
}
.ec-n {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
  display: block;
}
.ec-b {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.76;
  color: var(--sub);
  margin-top: 0.35rem;
}
.pil {
  margin-top: 1.8rem;
}
.prow {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--rule);
  transition: padding 0.22s;
  cursor: default;
}
.prow:hover {
  padding-left: 0.4rem;
}
.pn {
  font-family: var(--fh);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--rule);
  line-height: 1;
  padding-top: 0.06rem;
  transition: color 0.25s;
}
.prow:hover .pn {
  color: var(--blue);
}
.ph {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.22rem;
}
.pp {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.74;
  color: var(--sub);
}

/* Experience band */
.exp-band {
  background: linear-gradient(
    135deg,
    var(--navy3) 0%,
    var(--navy2) 60%,
    var(--navy) 100%
  );
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.exp-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    rgba(1, 142, 224, 0.1),
    transparent 65%
  );
  pointer-events: none;
}
.exp-band::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(42, 200, 229, 0.3),
    transparent
  );
}
.exp-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.exp-l .ey {
  color: var(--cyan);
  justify-content: flex-start;
}
.exp-l .ey::before {
  background: var(--cyan);
}
.exp-l h2 {
  color: var(--white);
  margin-bottom: 1.4rem;
}
.exp-l h2 em {
  color: var(--cyan);
}
.exp-quote {
  font-family: var(--fh);
  font-size: 1.08rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  border-left: 2px solid var(--cyan);
  padding: 0.4rem 0 0.4rem 1.2rem;
  margin: 1.4rem 0 1.6rem;
  letter-spacing: 0.06em;
}
.exp-quote-cite {
  display: block;
  font-family: var(--fb);
  font-size: 0.7rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(42, 200, 229, 0.55);
  margin-top: 0.85rem;
}
.exp-body {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.2rem;
}
.exp-meta {
  display: flex;
  gap: 1.8rem;
  margin-top: 2.2rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--rdk);
  border-bottom: 1px solid var(--rdk);
}
.exp-meta-item {
  flex: 1;
}
.exp-meta-n {
  font-family: var(--fh);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  background: var(--g90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.18rem;
}
.exp-meta-l {
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  line-height: 1.45;
}
.exp-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
}

/* Capabilities */
.cap-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 2.8rem;
}
.cap-intro-r {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.86;
  color: var(--sub);
  border-top: 1px solid var(--rule);
  padding-top: 0.9rem;
}
.cap-stage {
  display: grid;
  grid-template-columns: 300px 1fr;
  border: 1px solid var(--rule);
  min-height: 480px;
  background: var(--white);
}
.cap-tabs {
  background: var(--off);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.cap-tab {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 0.22s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  -webkit-tap-highlight-color: transparent;
}
.cap-tab:last-child {
  border-bottom: none;
}
.cap-tab.active {
  background: var(--white);
}
.cap-tab.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--g90);
}
.cap-tab-l {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.cap-tab-n {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.cap-tab.active .cap-tab-n {
  color: var(--blue);
}
.cap-tab-t {
  font-family: var(--fb);
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--sub);
  transition: color 0.22s;
}
.cap-tab:hover .cap-tab-t,
.cap-tab.active .cap-tab-t {
  color: var(--ink);
  font-weight: 500;
}
.cap-tab-a {
  font-size: 0.7rem;
  color: var(--blue);
  opacity: 0;
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.cap-tab:hover .cap-tab-a,
.cap-tab.active .cap-tab-a {
  opacity: 1;
}
.cap-tab.active .cap-tab-a {
  transform: translateX(2px);
}
.cap-content {
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.cap-panel {
  display: none;
}
.cap-panel.active {
  display: block;
  animation: fadeUp 0.45s ease;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cap-panel-eye {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.7rem;
}
.cap-panel-h {
  font-family: var(--fh);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.14;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.cap-panel-lead {
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.78;
  color: var(--body);
  margin-bottom: 1rem;
}
.cap-panel-body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--sub);
  margin-bottom: 1.5rem;
}
.cap-viz {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-soft);
}
.cap-viz-card {
  padding: 0.9rem 1rem;
  background: var(--off);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r);
  transition: all 0.25s;
  cursor: default;
}
.cap-viz-card:hover {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(1, 142, 224, 0.08);
  transform: translateY(-2px);
}
.cap-viz-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.7rem;
  color: var(--blue);
  stroke-width: 1.3;
}
.cap-viz-l {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.18rem;
}
.cap-viz-t {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

/* Process flow */
.flow-section {
  background: var(--navy);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.flow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 0%,
    rgba(1, 142, 224, 0.08),
    transparent 60%
  );
}
.flow-inner {
  position: relative;
  z-index: 2;
}
.flow-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.flow-hdr-r {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.86;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid var(--rdk);
  padding-top: 0.9rem;
}
.flow-stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--rdk);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.flow-stage {
  padding: 1.8rem 1.5rem;
  border-right: 1px solid var(--rdk);
  position: relative;
  cursor: default;
  transition: background 0.3s;
}
.flow-stage:last-child {
  border-right: none;
}
.flow-stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--g90);
  transition: width 0.5s ease;
}
.flow-stage:hover {
  background: rgba(255, 255, 255, 0.02);
}
.flow-stage:hover::before {
  width: 100%;
}
.flow-stage-n {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cyan);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.7rem;
  transition: opacity 0.25s;
}
.flow-stage:hover .flow-stage-n {
  opacity: 1;
}
.flow-stage-l {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.45rem;
  display: block;
}
.flow-stage-t {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.18;
  margin-bottom: 0.5rem;
}
.flow-stage-d {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}
.flow-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 5%,
    rgba(42, 200, 229, 0.18) 50%,
    transparent 95%
  );
  overflow: hidden;
}
.flow-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #2ac8e5 50%, transparent);
  box-shadow: 0 0 12px rgba(42, 200, 229, 0.7);
  animation: flowPulse 4.5s linear infinite;
}
@keyframes flowPulse {
  0% {
    left: -10%;
  }
  100% {
    left: 110%;
  }
}

/* Challenges */
.chhdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 2.8rem;
}
.chhdr-r {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.86;
  color: var(--sub);
  border-top: 1px solid var(--rule);
  padding-top: 0.9rem;
}
.chrow {
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  gap: 2.2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
  align-items: start;
  transition:
    background 0.22s,
    padding 0.22s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.chrow:hover {
  background: var(--off);
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  margin: 0 -0.7rem;
}
.chrow > div:nth-child(2) {
  min-width: 0;
}
.chrow > div:nth-child(2) > .h3 {
  margin-bottom: 0;
}
.chn {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rule);
  line-height: 1;
  padding-top: 0.25rem;
  transition: color 0.25s;
}
.chrow:hover .chn {
  color: var(--blue);
}
.chl {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.32rem;
}
.chb {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.86;
  color: var(--sub);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease,
    margin-top 0.4s ease;
  margin-top: 0;
}
.chrow.open .chb {
  max-height: 300px;
  opacity: 1;
  margin-top: 0.6rem;
}
.ch-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
  position: relative;
}
.chrow:hover .ch-toggle {
  border-color: var(--blue);
  background: rgba(1, 142, 224, 0.05);
}
.chrow.open .ch-toggle {
  background: var(--gr);
  border-color: transparent;
}
.ch-toggle::before,
.ch-toggle::after {
  content: "";
  position: absolute;
  background: var(--sub);
  transition: all 0.3s;
}
.ch-toggle::before {
  width: 8px;
  height: 1px;
}
.ch-toggle::after {
  width: 1px;
  height: 8px;
}
.chrow:hover .ch-toggle::before,
.chrow:hover .ch-toggle::after {
  background: var(--blue);
}
.chrow.open .ch-toggle::before {
  background: white;
}
.chrow.open .ch-toggle::after {
  background: white;
  height: 0;
}
.chend {
  border-top: 1px solid var(--rule);
}
.ch-hint {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ch-hint::before {
  content: "↓";
  margin-right: 0.4rem;
  color: var(--blue);
}

/* Contact */
.ctgrid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5.5rem;
  align-items: start;
}
.cth {
  font-family: var(--fh);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.cth em {
  font-style: italic;
  color: var(--blue);
}
.ctmeta {
  border-top: 1px solid var(--rule);
  padding-top: 1.3rem;
  margin-top: 1.6rem;
}
.ctrow {
  display: flex;
  gap: 1.2rem;
  align-items: baseline;
  margin-bottom: 0.65rem;
}
.ctk {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--blue);
  min-width: 2.8rem;
  flex-shrink: 0;
}
.ctv {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--sub);
}
.ctv a {
  color: var(--body);
  transition: color 0.2s;
}
.ctv a:hover {
  color: var(--blue);
}
.fc {
  background: var(--off);
  border: 1px solid var(--rule);
  padding: 2rem;
}
.fr2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.fg {
  margin-bottom: 1rem;
}
.fl {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.38rem;
}
.fi,
.fta {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 0.75rem 0.9rem;
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 300;
  color: var(--body);
  outline: none;
  resize: none;
  border-radius: var(--r);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.fi:focus,
.fta:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(1, 142, 224, 0.06);
}
.fi::placeholder,
.fta::placeholder {
  color: var(--muted);
  font-size: 0.9rem;
}
.fta {
  min-height: 96px;
}
.fsub {
  width: 100%;
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.85rem;
  border: none;
  cursor: pointer;
  background: var(--gr);
  color: var(--white);
  border-radius: var(--r);
  box-shadow: 0 3px 10px rgba(1, 142, 224, 0.18);
  transition:
    opacity 0.22s,
    box-shadow 0.25s,
    transform 0.2s;
  margin-top: 0.25rem;
}
.fsub:hover {
  opacity: 0.92;
  box-shadow: 0 6px 16px rgba(1, 142, 224, 0.3);
  transform: translateY(-1px);
}
.fn-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: 0.65rem;
  line-height: 1.6;
}

/* GDPR consent checkbox */
.fcheck {
  margin: 0.6rem 0 0.4rem;
}
.fcheck-l {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.fcheck-i {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.fcheck-box {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--rule);
  background: var(--white);
  border-radius: 2px;
  margin-top: 1px;
  position: relative;
  transition: all 0.2s;
}
.fcheck-l:hover .fcheck-box {
  border-color: var(--blue);
}
.fcheck-i:focus + .fcheck-box {
  box-shadow: 0 0 0 3px rgba(1, 142, 224, 0.15);
  border-color: var(--blue);
}
.fcheck-i:checked + .fcheck-box {
  background: var(--gr);
  border-color: transparent;
}
.fcheck-i:checked + .fcheck-box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.fcheck-t {
  font-size: 0.76rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--sub);
}
.fcheck-t a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.fcheck-t a:hover {
  opacity: 0.7;
}

/* Cloudflare Turnstile widget container */
.fturnstile {
  display: flex;
  justify-content: flex-start;
  min-height: 36px;
  margin-top: 0.4rem;
}
.cf-turnstile {
  max-width: 100%;
}
.cf-turnstile:empty {
  height: 0;
}
.ferr {
  display: none;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: #a0291e;
}
.fok {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.fok svg {
  margin: 0 auto 0.9rem;
}
.fok strong {
  display: block;
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.fok p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.76;
  color: var(--sub);
}

/* Footer */
footer {
  background: var(--navy3);
  padding: 3.2rem 0 2.4rem;
}
.ft {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rdk);
  margin-bottom: 1.5rem;
}
.flo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.fmk {
  width: 26px;
  height: 26px;
  object-fit: contain;
  opacity: 0.65;
}
.fnm {
  font-family: var(--fb);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: block;
}
.ftg {
  font-family: var(--fh);
  font-size: 0.7rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.15em;
  color: rgba(42, 200, 229, 0.8);
  display: block;
  margin-top: 2px;
}
.flinks {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}
.flinks a {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.22s;
  letter-spacing: 0.06em;
}
.flinks a:hover {
  color: var(--cyan);
}
.fbtm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.freg {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.9;
}
.fleg {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  letter-spacing: 0.06em;
}
.fleg a {
  font-size: 0.66rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.22s;
}
.fleg a:hover {
  color: var(--cyan);
}
.fdisc {
  font-size: 0.62rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rdk);
  max-width: 780px;
}

/* Back-to-top button */
#stt {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 500;
  width: 36px;
  height: 36px;
  background: var(--gr);
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(1, 142, 224, 0.3);
  transition:
    opacity 0.22s,
    transform 0.25s;
}
#stt:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}
#stt svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── ENGAGEMENT ROUTES BAND ───────────────────────────────── */
.er-band {
  padding: 5rem 0;
  background: var(--off);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.er-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.er-hdr h2 {
  margin-bottom: 1rem;
}
.er-lead {
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.78;
  color: var(--sub);
}
.er-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
}
.er-card {
  background: var(--white);
  padding: 1.5rem 1.7rem;
  transition: all 0.22s;
  cursor: default;
  position: relative;
}
.er-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--g90);
  transition: width 0.35s ease;
}
.er-card:hover {
  background: var(--off2);
}
.er-card:hover::before {
  width: 2px;
}
.er-card-n {
  font-family: var(--fb);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.4rem;
}
.er-card .h3 {
  margin-bottom: 0.4rem;
}
.er-card-d {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--sub);
}
@media (max-width: 1140px) {
  .er-band {
    padding: 3.6rem 0;
  }
  .er-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
@media (max-width: 720px) {
  .er-band {
    padding: 3rem 0;
  }
  .er-card {
    padding: 1.3rem 1.4rem;
  }
}

/* ── WHAT WE SOLVE BAND ───────────────────────────────────── */
.ws-band {
  padding: 5.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.ws-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.ws-l h2 {
  margin-bottom: 1.4rem;
}
.ws-lead {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.78;
  color: var(--body);
  margin-bottom: 1.1rem;
}
.ws-body {
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink);
  max-width: 50ch;
}
.ws-r {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.ws-pillar {
  background: var(--off);
  border: 1px solid var(--rule);
  border-left: 2px solid var(--blue);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1.6rem 1.8rem;
  transition: all 0.25s;
}
.ws-pillar:hover {
  background: var(--white);
  border-left-color: var(--blue);
  box-shadow: 0 8px 24px rgba(6, 16, 28, 0.04);
  transform: translateX(2px);
}
.ws-pillar-n {
  font-family: var(--fb);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.6rem;
}
.ws-pillar-t {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.55rem;
}
.ws-pillar-d {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--sub);
}
@media (max-width: 1140px) {
  .ws-band {
    padding: 4rem 0;
  }
  .ws-grid {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
}
@media (max-width: 720px) {
  .ws-band {
    padding: 3rem 0;
  }
  .ws-grid {
    gap: 2rem;
  }
  .ws-pillar {
    padding: 1.3rem 1.4rem;
  }
  .ws-pillar-t {
    font-size: 1.05rem;
  }
}
																	
		  
				  
						 
									
									   
 
		  
				
								   
			
					 
 
			
					  
 
		  
					 
				   
					
					
 
		   
				
						 
		   
						  
								
						  
				   
 
		  
						   
						 
						
				  
					 
 
				  
			  
					 
		  
		 
			
		   
						 
							   
 
				
						  
 
						
			 
 
			
						 
					
				   
						 
							
					 
				 
						
 
			  
						
 
			
					 
				   
					
					
 
							
			
					  
   
			
							   
				
   
 
						   
			
					
   
			
						   
   
 

																		
		  
					
						   
									   
 
		  
				
								   
			
					 
 
		  
						
 
		  
				  
				   
					
					 
						
 
		  
					 
				   
				   
					
				  
 
	   
				
						 
			  
 
			
						 
								
									 
									   
						 
						
 
				  
						   
								 
											   
							 
 
			  
						 
					 
				   
						 
							
					 
				 
						
 
			  
						 
					 
				   
				   
					
						 
 
			  
					
				   
				   
					
 
							
			
					
   
			
							   
				
   
 
						   
			
					
   
			
			  
   
			  
						   
   
				
					   
   
 

/* ── PROCUREMENT VISUAL BAND ──────────────────────────────── */
.pv-band {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--off) 100%);
  border-bottom: 1px solid var(--rule);
}
.pv-hdr {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}
.pv-hdr .ey {
  justify-content: center;
}
.pv-hdr .ey::before {
  display: none;
}
.pv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.pv-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.pv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--g90);
  transition: width 0.5s ease;
  z-index: 2;
}
.pv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(6, 16, 28, 0.08);
  border-color: rgba(1, 142, 224, 0.3);
}
.pv-card:hover::before {
  width: 100%;
}
.pv-illus {
  aspect-ratio: 6/5;
  background: linear-gradient(135deg, #f4f8fc 0%, #eaf1f8 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--rule-soft);
}
.pv-illus::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(1, 142, 224, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.pv-illus svg {
  width: 100%;
  height: 100%;
  max-width: 260px;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}
.pv-card:hover .pv-illus svg {
  transform: scale(1.04);
}
.pv-body {
  padding: 1.5rem 1.7rem 1.8rem;
}
.pv-cap {
  font-family: var(--fb);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.45rem;
}
.pv-title {
  font-family: var(--fh);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}
@media (max-width: 1140px) {
  .pv-band {
    padding: 4rem 0;
  }
  .pv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
  .pv-card:last-child {
    grid-column: 1/-1;
    max-width: 480px;
    justify-self: center;
    width: 100%;
  }
}
@media (max-width: 720px) {
  .pv-band {
    padding: 3rem 0;
  }
  .pv-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pv-card:last-child {
    max-width: none;
  }
  .pv-illus {
    aspect-ratio: 8/5;
  }
  .pv-illus svg {
    max-width: 220px;
  }
  .pv-body {
    padding: 1.2rem 1.3rem 1.4rem;
  }
  .pv-hdr {
    margin-bottom: 2.2rem;
  }
}

/* ── COOKIE CONSENT BANNER ────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 580px;
  margin: 0 auto;
  z-index: 900;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(42, 200, 229, 0.22);
  border-radius: var(--r);
  padding: 1.5rem 1.6rem;
  box-shadow:
    0 16px 48px rgba(6, 16, 28, 0.5),
    0 0 0 1px rgba(42, 200, 229, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0.4s;
  pointer-events: none;
}
#cookie-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0s;
}
.cb-text {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}
.cb-text strong {
  display: block;
  font-family: var(--fb);
  font-weight: 500;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.cb-text a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cb-text a:hover {
  opacity: 0.8;
}
.cb-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}
.cb-btn {
  font-family: var(--fb);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.4rem;
  border: none;
  cursor: pointer;
  border-radius: var(--r);
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  display: inline-block;
}
.cb-accept {
  background: var(--gr);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(1, 142, 224, 0.3);
}
.cb-accept:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(1, 142, 224, 0.4);
}
.cb-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.cb-reject:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}
.cb-settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.65rem 0.6rem;
  font-size: 0.72rem;
}
.cb-settings:hover {
  color: var(--cyan);
}
@media (max-width: 600px) {
  #cookie-banner {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1.3rem 1.3rem;
  }
  .cb-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cb-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: block;
  }
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(13px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1140px) {
  .w,
  .ni {
    padding: 0 2.4rem;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hr-pn {
    display: none;
  }
  .hl {
    padding: 5rem 2.4rem;
    min-height: auto;
    border-right: none;
  }
  .ag {
    grid-template-columns: 1fr;
  }
  .al {
    padding: 3rem;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .cap-stage {
    grid-template-columns: 1fr;
  }
  .cap-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .cap-tab {
    flex: 1;
    min-width: 140px;
    border-bottom: none;
    border-right: 1px solid var(--rule);
  }
  .cap-tab:last-child {
    border-right: none;
  }
  .cap-content {
    padding: 2.5rem 2rem;
  }
  .cap-viz {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .flow-stages {
    grid-template-columns: 1fr 1fr;
  }
  .flow-stage {
    border-right: 1px solid var(--rdk) !important;
    border-bottom: 1px solid var(--rdk);
  }
  .flow-stage:nth-child(2) {
    border-right: none !important;
  }
  .flow-stage:last-child {
    border-bottom: none;
  }
  .cap-intro,
  .flow-hdr,
  .chhdr {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ctgrid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .fr2 {
    grid-template-columns: 1fr 1fr;
  }
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sc-img {
    height: 240px;
  }
}

/* Mobile (and tablet portrait) */
@media (max-width: 720px) {
  :root {
    --nh: 68px;
  }
  .sec {
    padding: 3.6rem 0;
  }
  .w,
  .ni {
    padding: 0 1.2rem;
  }
  .nlinks {
    display: none;
  }
  .burg {
    display: flex;
  }
  .nmark {
    width: 36px;
    height: 36px;
  }
  .nbrand {
    font-size: 0.96rem;
    letter-spacing: 0.16em;
  }
  .ntag {
    font-size: 0.84rem;
  }
  .hl {
    padding: 3.6rem 1.2rem 4rem;
  }
  .hero-positioning {
    font-size: 1rem;
  }
  .hdesc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .hbtns {
    gap: 0.6rem;
  }
  .btn {
    padding: 0.78rem 1.5rem;
    font-size: 0.76rem;
  }
  .ticker {
    padding: 0.6rem 0;
  }
  .ti {
    font-size: 0.6rem;
    padding: 0 1.6rem;
  }
  .showcase {
    padding: 3.5rem 0;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .sc-img {
    height: 200px;
  }
  .sc-img svg {
    max-width: 200px;
  }
  .sc-body {
    padding: 1.2rem 1.2rem 1.4rem;
  }
  .ag {
    grid-template-columns: 1fr;
  }
  .al {
    padding: 2.2rem 1.4rem;
  }
  .ec {
    padding: 1.4rem 1.6rem;
  }
  .pil {
    margin-top: 1.4rem;
  }
  .prow {
    grid-template-columns: 1.6rem 1fr;
    gap: 0.8rem;
    padding: 1rem 0;
  }
  .pn {
    font-size: 1.2rem;
  }
  .exp-band {
    padding: 3.6rem 0;
  }
  .exp-quote {
    font-size: 1rem;
    padding-left: 0.9rem;
    margin: 1rem 0 1.2rem;
  }
  .exp-meta {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .exp-meta-item {
    flex: 1 1 30%;
  }
  .exp-meta-n {
    font-size: 1.4rem;
  }
  .cap-tabs {
    flex-direction: column;
  }
  .cap-tab {
    flex: none;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .cap-tab:last-child {
    border-bottom: none;
  }
  .cap-content {
    padding: 1.8rem 1.4rem;
  }
  .cap-panel-h {
    font-size: 1.25rem;
  }
  .cap-viz {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .flow-section {
    padding: 3.6rem 0;
  }
  .flow-stages {
    grid-template-columns: 1fr;
  }
  .flow-stage {
    border-right: none !important;
    border-bottom: 1px solid var(--rdk);
  }
  .flow-stage:last-child {
    border-bottom: none;
  }
  .chrow {
    grid-template-columns: 1fr 22px;
    gap: 1rem;
    padding: 1.4rem 0;
    align-items: start;
  }
  .chn {
    display: none;
  }
  .chrow:hover {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }
  .ctgrid {
    gap: 2.4rem;
  }
  .fr2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .fc {
    padding: 1.5rem;
  }
  .ctmeta {
    padding-top: 1rem;
    margin-top: 1.2rem;
  }
  .ctrow {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .ctk {
    min-width: auto;
  }
  footer {
    padding: 2.4rem 0 1.8rem;
  }
  .ft {
    padding-bottom: 1.4rem;
    margin-bottom: 1.2rem;
  }
  .flinks {
    gap: 1.2rem;
    width: 100%;
  }
  .flinks a {
    font-size: 0.74rem;
  }
  .fbtm {
    flex-direction: column;
    align-items: flex-start;
  }
  .freg {
    font-size: 0.62rem;
  }
  .fleg {
    gap: 1.2rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .w,
  .ni {
    padding: 0 1rem;
  }
  .hl {
    padding: 2.6rem 1rem 3rem;
  }
  .hero-positioning {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }
  .hero-positioning em {
    font-size: 1.12em;
  }
  .ticker {
    padding: 0.5rem 0;
  }
  .ti {
    padding: 0 1.2rem;
  }
  .mnav a {
    font-size: 1.8rem;
  }
  .exp-meta {
    gap: 0.7rem;
  }
  .exp-meta-n {
    font-size: 1.2rem;
  }
  .exp-meta-l {
    font-size: 0.6rem;
  }
  .cap-content {
    padding: 1.4rem 1rem;
  }
  .cap-panel-h {
    font-size: 1.15rem;
  }
  .h2 {
    margin-bottom: 0.85rem;
  }
  .hbtns .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .lcycle-progress,
  .flow-line::after,
  .hero-logo,
  .hr-glow {
    animation: none !important;
  }
}

/* Print styles */
@media print {
  #nav,
  .mnav,
  .burg,
  #stt,
  .ticker,
  .hero-stage,
  .hr-pn,
  .lcycle {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  .hero {
    padding-top: 0;
    border: none;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hl {
    padding: 1rem;
    border: none;
  }
  .h1,
  .h2,
  .h3,
  .cth,
  .cap-panel-h {
    color: black !important;
  }
  .lead,
  .body,
  .hdesc {
    color: #333 !important;
  }
  .sec {
    padding: 1.5rem 0;
    page-break-inside: avoid;
  }
  .exp-band,
  .flow-section,
  footer {
    background: white !important;
    color: black !important;
    border-top: 1px solid #ccc;
  }
  .h2-lt,
  .exp-l h2,
  .body-dk {
    color: black !important;
  }
}

/* ── LEGAL PAGES ───────────────────────────────────────── */
.legal-page {
  background: linear-gradient(180deg, var(--off) 0%, #fff 38%);
}
.legal-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}
.legal-hero::before {
  content: "";
  position: absolute;
  inset: -35% -15% auto auto;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(1, 142, 224, 0.13),
    rgba(42, 200, 229, 0.04) 42%,
    transparent 68%
  );
  pointer-events: none;
}
.legal-hero .w {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.legal-kicker {
  font-family: var(--fb);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.legal-kicker::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}
.legal-title {
  font-family: var(--fh);
  font-size: clamp(2.1rem, 2.1vw, 3rem);
  font-weight: 200;
  line-height: 1;
  color: var(--ink);
  max-width: 820px;
  margin-bottom: 1rem;
}
.legal-title em {
  font-style: italic;
  color: var(--blue);
}
.legal-intro {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--body);
  max-width: 820px;
}
.legal-section {
  padding: 2rem 0 2rem 0;
}
.legal-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 2rem;
  align-items: start;
}
.legal-card {
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: 0 18px 60px rgba(6, 16, 28, 0.07);
  padding: 1rem 3rem 3rem 3rem;
  border-radius: var(--r);
}
.legal-card h1 {
  display: none;
}
.legal-card h2,
.legal-card h3 {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 100;
  line-height: 1.2;
  color: var(--ink);
  margin: 2.4rem 0 0.4rem;
}
.legal-card h2:first-child,
.legal-card h3:first-child {
  margin-top: 0;
}
.legal-card p,
.legal-card li,
.legal-card td,
.legal-card th {
  font-family: var(--fb);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--sub);
}
.legal-card p {
  margin: 0 0 1rem;
}
.legal-card ul,
.legal-card ol {
  margin: 0 0 1.15rem 1.25rem;
  padding-left: 0.6rem;
}
.legal-card li {
  margin: 0.35rem 0;
}
.legal-card a {
  color: var(--blue);
}
.legal-card strong {
  font-weight: 600;
  color: var(--body);
}
.legal-table-wrapper {
  overflow-x: auto;
  margin: 1.4rem 0 1.8rem;
  border: 1px solid var(--rule);
  border-radius: var(--r);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  border: 0 !important;
  min-width: 760px;
  background: #fff;
}
.legal-table th {
  background: var(--off);
  color: var(--ink);
  font-weight: 600;
  text-align: left;
  border: 1px solid var(--rule) !important;
  padding: 0.8rem;
  vertical-align: top;
}
.legal-table td {
  border: 1px solid var(--rule) !important;
  padding: 0.8rem;
  vertical-align: top;
}
.legal-side {
  position: sticky;
  top: calc(var(--nh) + 2rem);
  border-left: 1px solid var(--rule);
  padding-left: 1.4rem;
}
.legal-side-title {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.legal-side a {
  display: block;
  font-size: 0.88rem;
  color: var(--sub);
  padding: 0.48rem 0;
  border-bottom: 1px solid var(--rule-soft);
  transition: color 0.2s;
}
.legal-side a:hover {
  color: var(--blue);
}
.legal-side .active {
  color: var(--blue);
}
.legal-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--muted);
}
@media (max-width: 960px) {
  .legal-shell {
    grid-template-columns: 1fr;
  }
  .legal-side {
    position: relative;
    top: auto;
    border-left: 0;
    border-top: 1px solid var(--rule);
    padding: 1.4rem 0 0;
    order: -1;
  }
  .legal-card {
    padding: 2.2rem;
  }
}
@media (max-width: 720px) {
  .legal-hero .w {
    padding-top: 4rem;
    padding-bottom: 3.6rem;
  }
  .legal-section {
    padding: 3rem 0 4rem;
  }
  .legal-card {
    padding: 1.5rem;
  }
  .legal-card h2,
  .legal-card h3 {
    font-size: 1.1rem;
  }
}
body {
  padding-top: var(--nh);
}
.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 4rem;
}
.legal-wrap h1 {
  font-family: var(--fh);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.legal-wrap .meta {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 2.4rem;
}
.legal-wrap h2 {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin: 2.2rem 0 0.8rem;
}
.legal-wrap h3 {
  font-family: var(--fb);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 1.6rem 0 0.5rem;
}
.legal-wrap p {
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--sub);
  margin-bottom: 1rem;
}
.legal-wrap a {
  color: var(--blue);
  transition: opacity 0.2s;
}
.legal-wrap a:hover {
  opacity: 0.7;
}
.legal-wrap ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-wrap li {
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--sub);
  margin-bottom: 0.4rem;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--blue);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}
.legal-callout {
  background: var(--off);
  border-left: 2px solid var(--blue);
  padding: 1rem 1.4rem;
  margin: 1.4rem 0;
  border-radius: 0 var(--r) var(--r) 0;
}
.legal-callout p {
  margin: 0;
  font-size: 0.9rem;
}
.legal-toc {
  background: var(--off);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 1.6rem 1.6rem;
}
.legal-toc h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: var(--ink);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.legal-toc ol {
  margin: 0;
  padding-left: 1.4rem;
  list-style-type: decimal;
}
.legal-toc li {
  font-size: 0.84rem;
  line-height: 1.7;
  margin-bottom: 0.15rem;
  color: var(--sub);
}
.legal-toc a {
  color: var(--sub);
  transition: color 0.15s;
}
.legal-toc a:hover {
  color: var(--blue);
}
.legal-content {
  padding-top: 2rem;
}
@media (max-width: 720px) {
  .legal-wrap {
    padding: 3rem 1.5rem;
  }
}
