/* ==========================================================================
   Senocom — stylesheet v5
   Dark enterprise-SaaS redesign. Inspired by Crae Group / modern product sites.
   Deep navy background + violet-navy primary + emerald green secondary accents.
   Gradient glows, bento tiles, grid overlays.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --bg:          #0A0D1A;
  --bg-2:        #0F1220;
  --bg-3:        #151A2E;
  --surface:     rgba(255, 255, 255, 0.03);
  --surface-2:   rgba(255, 255, 255, 0.06);
  --border:      rgba(255, 255, 255, 0.08);
  --border-2:    rgba(255, 255, 255, 0.14);
  --border-3:    rgba(255, 255, 255, 0.22);

  --text:        #F5F6FA;
  --text-soft:   #B8BBC9;
  --text-muted:  #737685;
  --text-faint:  #4D4F5C;

  --navy:        #4C5FFA;
  --navy-light:  #6572FF;
  --navy-deep:   #3B4AD9;
  --navy-glow:   rgba(76, 95, 250, 0.45);
  --navy-tint:   rgba(76, 95, 250, 0.12);
  --navy-border: rgba(76, 95, 250, 0.24);

  --green:       #10B981;
  --green-light: #34D399;
  --green-deep:  #0B8F66;
  --green-glow:  rgba(16, 185, 129, 0.4);
  --green-tint:  rgba(16, 185, 129, 0.12);
  --green-border: rgba(16, 185, 129, 0.24);

  --amber:       #F59E0B;

  --container:   1200px;
  --gutter:      clamp(1.25rem, 3vw, 2.5rem);
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: transparent; cursor: pointer; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 500; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(4rem, 7vw, 6.5rem) 0; position: relative; }
.section--sm { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.rule-t { border-top: 1px solid var(--border); }

/* ========================================
   TYPOGRAPHY
   ======================================== */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--green);
}

.section-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.875rem, 3.8vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}
.section-title .grad {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.section-lede {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}
.section-lede p + p { margin-top: 0.75rem; }

.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }

/* ========================================
   NAV
   ======================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 26, 0.75);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: inline-flex; align-items: baseline; gap: 4px; color: var(--text); }
.brand__mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 7px;
  transform: translateY(4px);
  position: relative;
  box-shadow: 0 4px 16px var(--navy-glow);
}
.brand__mark::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border: 2px solid var(--bg);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-glow);
}
.brand__name {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--text);
}

.nav__links { display: flex; align-items: center; gap: 2.25rem; }
.nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 6px 0;
  transition: color 200ms var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link.is-active { color: var(--text); font-weight: 600; }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  border-radius: 1px;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 20px var(--navy-glow);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--navy-glow);
}

.nav__mobile { display: none; }
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__mobile { display: block; position: relative; }
  .nav__mobile summary {
    list-style: none; cursor: pointer;
    font-size: 14px; color: var(--text); font-weight: 500;
  }
  .nav__mobile summary::-webkit-details-marker { display: none; }
  .nav__mobile-menu {
    position: absolute; right: 0; top: 2.25rem;
    min-width: 200px;
    background: var(--bg-2);
    border: 1px solid var(--border-2);
    border-radius: 8px;
    padding: 0.5rem 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  }
  .nav__mobile-menu a {
    display: block; padding: 0.75rem 1.25rem;
    font-size: 14px; color: var(--text-soft); font-weight: 500;
  }
  .nav__mobile-menu a:hover { background: var(--surface-2); color: var(--text); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 200ms var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  box-shadow: 0 6px 24px var(--navy-glow);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px var(--navy-glow);
}
.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-2);
}
.btn--ghost:hover {
  background: var(--surface-2);
  border-color: var(--border-3);
}
.btn svg { transition: transform 200ms var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.text-link {
  color: var(--navy-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 200ms;
}
.text-link::after {
  content: "→";
  transition: transform 200ms var(--ease);
}
.text-link:hover { color: var(--green-light); }
.text-link:hover::after { transform: translateX(3px); }

/* ========================================
   KICKER PILL (status-style badge)
   ======================================== */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}
.kicker .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-glow);
  animation: kicker-pulse 2.5s ease-in-out infinite;
}
@keyframes kicker-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--green-glow); }
  50% { opacity: 0.5; box-shadow: 0 0 14px var(--green-glow); }
}

/* ========================================
   HERO — Home (big version with product mock)
   ======================================== */
.hero {
  position: relative;
  padding: clamp(4rem, 7vw, 5.5rem) 0 clamp(4rem, 7vw, 6rem);
  overflow: hidden;
}
.hero__glow-1 {
  content: "";
  position: absolute;
  top: -200px; left: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--navy-glow) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero__glow-2 {
  content: "";
  position: absolute;
  bottom: -250px; right: -150px;
  width: 650px; height: 650px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 65%);
  filter: blur(50px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 20%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 20%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text);
  margin: 0 0 1.25rem;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.hero__lede {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 44rem;
  margin: 0 auto 0.875rem;
}
.hero__lede--sub {
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 38rem;
  margin-top: 0.625rem;
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
}

/* Hero — inner pages (smaller, no product mock) */
.hero--inner {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 3vw, 2.5rem);
  overflow: hidden;
  position: relative;
}
.hero--inner .hero__glow-1 {
  width: 500px; height: 500px; top: -150px; left: -50px;
  opacity: 0.6;
}
.hero--inner .hero__glow-2 {
  width: 450px; height: 450px; bottom: -180px; right: -80px;
  opacity: 0.45;
}
.hero--inner .hero__inner {
  text-align: left;
  max-width: 64rem;
}
.hero--inner h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}
.hero--inner .hero__lede {
  margin-left: 0; margin-right: 0;
  max-width: 48rem;
}

/* ========================================
   PRODUCT MOCK (hero dashboard)
   ======================================== */
.product-mock {
  position: relative;
  z-index: 2;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  max-width: 840px;
  border-radius: 14px;
  border: 1px solid var(--border-2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.product-mock__inner {
  background: var(--bg-3);
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.product-mock__win {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  align-items: center;
}
.product-mock__win span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.product-mock__win span:nth-child(1) { background: rgba(255, 95, 86, 0.5); }
.product-mock__win span:nth-child(2) { background: rgba(255, 189, 46, 0.5); }
.product-mock__win span:nth-child(3) { background: rgba(39, 201, 63, 0.5); }
.product-mock__url {
  margin-left: auto;
  font-size: 10.5px;
  color: var(--text-muted);
  padding: 2px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}
.product-mock__content { padding: 20px 22px; }
.product-mock__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.125rem;
}
.product-mock__header h3 {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}
.product-mock__period {
  font-size: 10.5px;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 5px;
}
.product-mock__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 1.25rem;
}
.metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
}
.metric::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--navy);
}
.metric--green::before { background: var(--green); }
.metric--amber::before { background: var(--amber); }
.metric__label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.metric__value {
  font-family: "Fraunces", serif;
  font-size: 1.375rem;
  color: var(--text);
  line-height: 1;
  font-weight: 500;
}
.metric__delta {
  font-size: 10px;
  color: var(--green-light);
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.product-mock__chart {
  position: relative;
  height: 140px;
  border-radius: 6px;
  padding: 8px 0;
}

/* ========================================
   BENTO GRID (capabilities)
   ======================================== */
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 250px 210px;
  gap: 12px;
  max-width: 1080px;
  margin: 2.5rem auto 0;
}
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, auto); }
  .bento .tile.t-big { grid-column: 1 / 3; grid-row: auto; min-height: 300px; }
  .bento .tile.t-wide { grid-column: 1 / 3; grid-row: auto; min-height: 200px; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bento .tile.t-big, .bento .tile.t-wide { grid-column: 1; }
}

.tile {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  overflow: hidden;
  transition: border-color 300ms var(--ease), transform 300ms var(--ease);
}
.tile:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}
.tile.t-big { grid-column: 1 / 2; grid-row: 1 / 3; }
.tile.t-wide { grid-column: 2 / 4; grid-row: 1 / 2; }

.tile__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--navy-tint);
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid var(--navy-border);
}
.tile__icon svg { width: 18px; height: 18px; }
.tile.t-green .tile__icon {
  background: var(--green-tint);
  color: var(--green-light);
  border-color: var(--green-border);
}
.tile h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.015em;
}
.tile p {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}
.tile__decor {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 95, 250, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.tile.t-green .tile__decor {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, transparent 65%);
}
.tile.t-big .tile__img {
  position: absolute;
  bottom: 14px; right: 14px; left: 14px;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}

/* ========================================
   SERVICE ROW (Services deep page)
   ======================================== */
.service-row {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.service-row__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .service-row__inner { grid-template-columns: 1fr; gap: 2rem; } }

.service-row__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--navy-tint);
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid var(--navy-border);
  position: relative;
}
.service-row__icon-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-light) 0%, transparent 50%);
  opacity: 0.15;
  pointer-events: none;
}
.service-row__icon-wrap.is-green {
  background: var(--green-tint);
  color: var(--green-light);
  border-color: var(--green-border);
}
.service-row__icon-wrap.is-green::before {
  background: linear-gradient(135deg, var(--green-light) 0%, transparent 50%);
}
.service-row__icon-wrap svg { width: 30px; height: 30px; }

.service-row h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0;
}

.service-row__lede {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
  margin: 0 0 0.75rem;
  max-width: 42rem;
}
.service-row__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 1.5rem;
  max-width: 42rem;
}
.service-row__caps-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin: 0 0 0.75rem;
}
.service-row__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-row__list li {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.55;
  transition: color 200ms;
}
.service-row__list li:hover { color: var(--text); }
.service-row__list li::before {
  content: "";
  margin-top: 0.625rem;
  display: block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  flex-shrink: 0;
  border-radius: 1px;
}

/* ========================================
   PRINCIPLES (About page)
   ======================================== */
.principles { max-width: 52rem; margin: 0 auto; }
.principle {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.principle:first-child { border-top: 0; padding-top: 0; }
.principle__n {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  padding-top: 0.375rem;
  background: linear-gradient(135deg, var(--navy-light), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.principle h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 0.625rem;
}
.principle p {
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
  font-size: 0.9375rem;
  max-width: 42rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info__block h3 {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin: 0 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-info__block h3::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--green);
}
.contact-info__block a.email {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 500;
  transition: color 200ms;
}
.contact-info__block a.email:hover { color: var(--navy-light); }
.contact-info__block ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.625rem;
  font-size: 14px; color: var(--text-soft); line-height: 1.5;
}
.contact-info__block ul li {
  padding-left: 1.5rem;
  position: relative;
}
.contact-info__block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  border-radius: 1px;
}

/* Form */
.form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.form h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 1.5rem;
}
.field {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: 1.125rem;
}
.field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-2);
  border-radius: 7px;
  padding: 0.75rem 0.9375rem;
  font: inherit;
  color: var(--text);
  font-size: 14px;
  transition: border-color 200ms, background 200ms, box-shadow 200ms;
}
.field textarea { resize: vertical; min-height: 6rem; }
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--navy-light);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px var(--navy-tint);
}
.form__actions {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem; margin-top: 1.25rem;
}
.form__note {
  font-size: 11.5px;
  color: var(--text-muted);
  max-width: 22rem;
  margin: 0;
}

/* ========================================
   SECTORS STRIP (tag pills)
   ======================================== */
.strip { padding: clamp(2.5rem, 4vw, 3.5rem) 0; position: relative; }
.strip__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.strip__head .eyebrow { margin-bottom: 0.5rem; }
.strip__head h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}
.strip__head p {
  color: var(--text-soft);
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
  max-width: 26rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 12.5px;
  font-weight: 500;
  transition: all 200ms;
}
.tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--navy-light);
  box-shadow: 0 0 6px var(--navy-glow);
}
.tag.is-green::before {
  background: var(--green);
  box-shadow: 0 0 6px var(--green-glow);
}
.tag:hover {
  border-color: var(--border-3);
  background: var(--surface-2);
}

/* ========================================
   ROLES (team strip)
   ======================================== */
.roles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.625rem;
}
@media (max-width: 900px) { .roles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .roles { grid-template-columns: repeat(2, 1fr); } }
.role {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.125rem;
  transition: border-color 200ms, transform 200ms;
}
.role:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}
.role__icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--navy-tint);
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.625rem;
  border: 1px solid var(--navy-border);
}
.role.is-green .role__icon {
  background: var(--green-tint);
  color: var(--green-light);
  border-color: var(--green-border);
}
.role__icon svg { width: 16px; height: 16px; }
.role__title {
  font-family: "Fraunces", serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.role__note {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 0.1875rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) 0;
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(76, 95, 250, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .eyebrow { justify-content: center; }
.cta-section h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.05;
  color: var(--text);
  position: relative;
  z-index: 1;
  letter-spacing: -0.03em;
}
.cta-section h2 .grad {
  background: linear-gradient(135deg, var(--navy-light), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.cta-section p.cta-lede {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 42rem;
  margin: 1rem auto 0;
  position: relative;
  z-index: 1;
}
.cta-section__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  position: relative;
  z-index: 1;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  border-top: 1px solid var(--border);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.75rem;
  background: var(--bg-2);
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; } }

.footer__brand .brand { margin-bottom: 0.5rem; }
.footer__brand p {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
  margin: 0.5rem 0 0;
  max-width: 22rem;
}
.footer__col h5 {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin: 0 0 0.875rem;
}
.footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.footer__col ul a {
  color: var(--text-soft);
  font-size: 13px;
  transition: color 200ms;
}
.footer__col ul a:hover { color: var(--text); }
.footer__col address {
  font-style: normal;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.7;
}
.footer__fine-row {
  margin-top: clamp(2.5rem, 5vw, 3rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 12px;
  color: var(--text-muted);
}
.footer__fine-row a {
  color: var(--text-muted);
  transition: color 200ms;
}
.footer__fine-row a:hover { color: var(--text); }

/* ========================================
   PROSE (legal pages)
   ======================================== */
.prose {
  max-width: 44rem;
  margin: 0 auto;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.9375rem;
}
.prose h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 1rem 0 2rem;
}
.prose p + p { margin-top: 0.875rem; }
.prose a {
  color: var(--navy-light);
  border-bottom: 1px solid rgba(76, 95, 250, 0.3);
}
.prose a:hover { color: var(--green-light); border-color: var(--green-light); }

/* ========================================
   UTILS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: reveal 800ms var(--ease) forwards;
}
@keyframes reveal { to { opacity: 1; transform: none; } }
.reveal-1 { animation-delay: 50ms; }
.reveal-2 { animation-delay: 180ms; }
.reveal-3 { animation-delay: 320ms; }
.reveal-4 { animation-delay: 460ms; }

::selection { background: var(--navy); color: #fff; }
*:focus-visible {
  outline: 2px solid var(--navy-light);
  outline-offset: 3px;
  border-radius: 4px;
}

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