/* Page-specific layouts — uses tokens from soley.css */

/* Nav: subpages always solid */
.nav.nav--solid {
  background: rgba(8, 17, 31, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
}

/* Hero (home) */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://osndxtfztvvzdwimuykn.supabase.co/storage/v1/object/public/business-assets/Website%20Image%20with%20the%20parrot%20and%20pitons.png");
  background-size: cover;
  background-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(13, 24, 41, 0.93) 0%,
    rgba(13, 24, 41, 0.8) 42%,
    rgba(13, 24, 41, 0.38) 72%,
    rgba(13, 24, 41, 0.15) 100%
  );
}
.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 150px var(--pad) 100px;
  max-width: min(92vw, 880px);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  animation: pulse-hero 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-hero {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
      transform: scale(0.75);
  }
}
.hero .display-xl {
  margin-bottom: 26px;
  line-height: 1.08;
}
.hero-sub {
  font-size: 18px;
  color: rgba(230, 236, 247, 0.82);
  max-width: min(62ch, 620px);
  line-height: 1.75;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero-sub strong {
  color: var(--white);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  width: 100%;
  box-sizing: border-box;
  padding: 22px var(--pad);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-divider {
  width: 1px;
  height: 22px;
  background: var(--line);
  flex-shrink: 0;
}
.trust-items {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  min-width: min(100%, 280px);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--text-body);
  font-weight: 400;
}
@media (min-width: 1200px) {
  .trust-bar {
    gap: 48px;
  }
  .trust-items {
    gap: 48px;
  }
}
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

.section-sub {
  font-size: 17px;
  color: var(--text-body);
  max-width: 65ch;
  line-height: 1.75;
  font-weight: 400;
}
.section-head .display-md,
.section-head .display-lg {
  margin-bottom: 22px;
}

.services {
  background: var(--navy-light);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 28px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 18px;
}
.svc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.28s;
  position: relative;
  overflow: hidden;
}
.svc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.28s;
}
.svc:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  background: var(--card-hover);
}
.svc:hover::after {
  opacity: 1;
}
.svc.featured {
  background: var(--gold-soft);
  border-color: var(--gold-border);
}
.svc-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.svc-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 550;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.svc p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  margin-top: 16px;
  font-weight: 500;
  transition: gap 0.2s;
}
.svc-link:hover {
  gap: 9px;
}

.product {
  background: var(--navy);
}
.product-inner {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 88px;
  align-items: center;
}
.product-badge {
  display: inline-block;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
  font-family: var(--font-sans);
}
.product-logo-wrap {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.product-logo {
  height: 150px;
  width: auto;
  display: block;
  object-fit: contain;
}
.product .display-md {
  margin-bottom: 20px;
  line-height: 1.15;
}
.product-desc {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.78;
  margin-bottom: 28px;
  font-weight: 400;
}
.product-features {
  list-style: none;
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-body);
}
.product-features li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--gold-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%23f59e0b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/10px no-repeat;
  border: 1px solid var(--gold-border);
}
.product-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.product-screen {
  background: var(--navy-mid);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}
.screen-bar {
  background: rgba(255, 255, 255, 0.04);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--line);
}
.browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.screen-body {
  padding: 22px;
}
.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
.kpi {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 14px;
}
.kpi-l {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 3px;
}
.kpi-v {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--white);
}
.kpi-c {
  font-size: 9.5px;
  color: #4ade80;
  margin-top: 2px;
}
.chart-wrap {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 15px;
  margin-bottom: 11px;
}
.chart-l {
  font-size: 10.5px;
  color: var(--text-muted);
  margin-bottom: 9px;
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 58px;
}
.bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: rgba(245, 158, 11, 0.18);
}
.bar.hi {
  background: var(--gold);
}
.s-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.s-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 11.5px;
}
.s-row-l {
  display: flex;
  align-items: center;
  gap: 7px;
}
.av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-sans);
}
.s-row-n {
  color: var(--text-body);
}
.s-row-r {
  display: flex;
  align-items: center;
  gap: 7px;
}
.s-amt {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}
.dash-pill {
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 100px;
  font-family: var(--font-sans);
}
.dash-pill--g {
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
}
.dash-pill--a {
  background: var(--gold-soft);
  color: var(--gold);
}

.product-screenshot {
  background: var(--navy-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.screenshot-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}
.screenshot-text .display-md {
  margin-bottom: 18px;
  line-height: 1.12;
}
.screenshot-text p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.78;
  margin-bottom: 28px;
  font-weight: 400;
}
.screenshot-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
}
.screenshot-img img {
  width: 100%;
  height: auto;
  display: block;
}

.why {
  background: var(--navy-light);
  position: relative;
  overflow: hidden;
}
.why-map {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 46%;
  opacity: 0.06;
  pointer-events: none;
}
.why-map img {
  width: 100%;
  height: auto;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pillar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.28s, transform 0.28s, background 0.28s;
}
.pillar:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  background: var(--card-hover);
}
.pillar-num {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: rgba(245, 158, 11, 0.22);
  line-height: 1;
  margin-bottom: 12px;
}
.pillar h4 {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 550;
  color: var(--white);
  margin-bottom: 8px;
}
.pillar p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.bay-cta {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.bay-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://osndxtfztvvzdwimuykn.supabase.co/storage/v1/object/public/business-assets/website%20image%20of%20a%20bay.png");
  background-size: cover;
  background-position: center;
}
.bay-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 24, 41, 0.96) 0%,
    rgba(13, 24, 41, 0.86) 50%,
    rgba(13, 24, 41, 0.45) 100%
  );
}
.bay-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad);
  max-width: 620px;
}
.bay-content .display-md {
  margin-bottom: 18px;
  line-height: 1.12;
}
.bay-content p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 460px;
}

.industries {
  background: var(--navy);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.ind {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: all 0.28s;
}
.ind:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  background: var(--card-hover);
}
.ind-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.ind-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ind h4 {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 550;
  color: var(--white);
  margin-bottom: 8px;
}
.ind p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 80% at 5% 50%,
    rgba(245, 158, 11, 0.04) 0%,
    transparent 55%
  );
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-info .display-lg {
  margin-bottom: 20px;
  line-height: 1.08;
}
.contact-info p {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.78;
  margin-bottom: 34px;
  font-weight: 400;
}
.c-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.c-detail {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
  color: var(--text-body);
}
.c-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cform {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-head {
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 550;
  color: var(--white);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fg {
  margin-bottom: 16px;
}
.fg label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 6px;
}
.fg input,
.fg textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.fg input:focus,
.fg textarea:focus {
  border-color: var(--gold-border);
  background: rgba(255, 255, 255, 0.065);
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--text-muted);
}
.fg textarea {
  resize: vertical;
  min-height: 112px;
}
.form-btn {
  width: 100%;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 13px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 550;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  transition: all 0.22s;
}
.form-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.3);
}
a.form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.f-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-muted);
}
.f-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

/* About page */
.page-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 160px var(--pad) 80px;
}
.page-hero .hero-bg,
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
}
.page-hero .hero-bg {
  background-image: url("https://osndxtfztvvzdwimuykn.supabase.co/storage/v1/object/public/business-assets/website%20image%20of%20a%20bay.png");
  background-size: cover;
  background-position: center;
}
.page-hero .hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(13, 24, 41, 0.95) 0%,
    rgba(13, 24, 41, 0.82) 50%,
    rgba(13, 24, 41, 0.5) 100%
  );
}
.page-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: min(92vw, 820px);
}
.page-hero .hero-sub {
  margin-bottom: 0;
}
.page-hero .display-lg {
  margin-bottom: 24px;
  line-height: 1.08;
}

.mission {
  background: var(--navy-mid);
}
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission .display-md {
  margin-bottom: 22px;
  line-height: 1.12;
}
.mission p {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 400;
}
.mission-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.m-stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.m-stat-val {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 4px;
  line-height: 1.1;
}
.m-stat-lbl {
  font-size: 13px;
  color: var(--text-muted);
}

.values {
  background: var(--navy-light);
}
.values .display-md {
  margin-bottom: 16px;
}
.values-sub {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 52px;
  font-weight: 400;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.val {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}
.val:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  background: var(--card-hover);
}
.val-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: rgba(245, 158, 11, 0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.val h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 550;
  color: var(--white);
  margin-bottom: 10px;
}
.val p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

.map-section {
  background: var(--navy);
}
.map-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.map-inner img {
  width: 100%;
  border-radius: var(--radius);
  opacity: 0.85;
}
.map-text .display-md {
  margin-bottom: 20px;
  line-height: 1.12;
}
.map-text p {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 400;
}
.region-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.region-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
}
.region-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.team {
  background: var(--navy-mid);
}
.team .display-md {
  margin-bottom: 16px;
}
.team-sub {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 48px;
  font-weight: 400;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.member {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.member-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 auto 16px;
}
.member h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 550;
  color: var(--white);
  margin-bottom: 6px;
}
.member-title {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 10px;
}
.member p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.member.hiring {
  background: var(--gold-soft);
  border: 1px dashed var(--gold-border);
}

.cta {
  background: var(--navy-light);
  text-align: center;
}
.cta .eyebrow {
  justify-content: center;
}
.cta .display-md {
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.12;
}
.cta p {
  font-size: 16px;
  color: var(--text-body);
  max-width: 480px;
  margin: 0 auto 36px;
  font-weight: 400;
  line-height: 1.7;
}

/* Products page */
.page-hero-simple {
  min-height: 380px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 160px var(--pad) 80px;
  border-bottom: 1px solid var(--line);
}
.page-hero-simple .page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://osndxtfztvvzdwimuykn.supabase.co/storage/v1/object/public/business-assets/website%20image%20of%20a%20bay.png");
  background-size: cover;
  background-position: center;
}
.page-hero-simple .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 24, 41, 0.95) 0%,
    rgba(13, 24, 41, 0.82) 50%,
    rgba(13, 24, 41, 0.5) 100%
  );
}
.page-hero-simple .page-hero-content {
  position: relative;
  z-index: 2;
  max-width: min(92vw, 820px);
  padding: 0;
}
.page-hero-simple .display-lg {
  margin-bottom: 24px;
  line-height: 1.08;
}
.page-hero-simple .hero-sub {
  margin-bottom: 0;
}

.product-feature {
  background: var(--navy);
}
.pf-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.pf-badge {
  display: inline-block;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}
.pf-inner .product-logo {
  margin-bottom: 20px;
}
.pf-inner .display-md {
  margin-bottom: 20px;
  line-height: 1.12;
}
.pf-desc {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 400;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.feat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  transition: border-color 0.3s;
}
.feat:hover {
  border-color: var(--gold-border);
}
.feat h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 550;
  color: var(--white);
  margin-bottom: 6px;
}
.feat p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.pf-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.pf-visual {
  background: var(--navy-mid);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}
.pf-bar {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
}
.pf-body {
  padding: 22px;
}

.pricing-block {
  background: var(--navy-light);
}
.pricing-block .section-h {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.pricing-sub {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 52px;
  font-weight: 400;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.plan:hover {
  border-color: var(--line-strong);
  background: var(--card-hover);
}
.plan.popular {
  border-color: var(--gold-border);
  background: var(--gold-soft);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}
.plan-name {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-sans);
}
.plan-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-body);
}
.plan-features li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--gold-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%23f59e0b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/10px no-repeat;
  border: 1px solid var(--gold-border);
}
.plan-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.plan-cta:hover {
  background: rgba(255, 255, 255, 0.05);
}
.plan.popular .plan-cta {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.plan.popular .plan-cta:hover {
  background: var(--gold-light);
}

.coming-soon {
  background: var(--navy);
}
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.cs-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.cs-card:hover {
  border-color: var(--line-strong);
  background: var(--card-hover);
}
.cs-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.cs-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cs-card h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 550;
  color: var(--white);
  margin-bottom: 10px;
}
.cs-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.cs-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-family: var(--font-sans);
}

.trial-callout {
  font-size: 15px;
  color: var(--text-body);
  font-weight: 400;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}

/* Legal */
.page-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 150px var(--pad) 80px;
}
.legal-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.legal-nav a {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  text-decoration: none;
  color: var(--text-body);
  background: var(--card);
  border: 1px solid var(--line);
  transition: all 0.2s;
  font-weight: 450;
  font-family: var(--font-sans);
}
.legal-nav a:hover,
.legal-nav a.active {
  background: var(--gold-soft);
  border-color: var(--gold-border);
  color: var(--gold);
}
.doc {
  display: none;
}
.doc.active {
  display: block;
}
.doc-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.doc-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.15;
}
.doc-date {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-sans);
}
.doc h2 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 550;
  color: var(--white);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.doc p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 400;
}
.doc ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.doc ul li {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 6px;
  font-weight: 400;
}
.doc a {
  color: var(--gold);
  text-decoration: none;
}
.doc a:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: clamp(48px, 11vw, 80px) 0;
  }
  .services-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  /* Trust bar (all pages): single scrollable row, no page-wide horizontal scroll */
  .trust-bar {
    flex-wrap: nowrap;
    max-width: 100%;
    gap: clamp(16px, 4vw, 28px);
    align-items: center;
    padding-left: max(var(--pad), env(safe-area-inset-left, 0px));
    padding-right: max(var(--pad), env(safe-area-inset-right, 0px));
  }
  .trust-label,
  .trust-divider {
    flex-shrink: 0;
  }
  .trust-items {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    gap: clamp(12px, 3vw, 24px);
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }
  .trust-item {
    flex-shrink: 0;
    white-space: nowrap;
  }
  /* Hero spacing */
  .hero {
    min-height: min(100svh, 760px);
  }
  .hero-content {
    padding: clamp(76px, 18vw, 104px) var(--pad) clamp(36px, 9vw, 56px);
    max-width: 100%;
  }
  .hero-eyebrow {
    margin-bottom: 20px;
  }
  .hero .display-xl {
    margin-bottom: 18px;
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.62;
    margin-bottom: 24px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .page-hero {
    min-height: 0;
    padding: clamp(100px, 24vw, 132px) var(--pad) clamp(48px, 10vw, 64px);
  }
  .page-hero-simple {
    min-height: 0;
    padding: clamp(100px, 24vw, 132px) var(--pad) clamp(44px, 10vw, 60px);
  }
  .page-wrap {
    padding: clamp(96px, 22vw, 120px) var(--pad) clamp(48px, 10vw, 64px);
  }
  .legal-nav {
    gap: 8px;
    margin-bottom: 32px;
  }
  .legal-nav a {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    padding: 8px 12px;
    font-size: 12.5px;
  }
  .product-inner,
  .why-inner,
  .contact-inner,
  .screenshot-inner {
    grid-template-columns: 1fr;
    gap: clamp(40px, 10vw, 56px);
  }
  .product-inner {
    gap: clamp(36px, 9vw, 52px);
  }
  .product-logo {
    max-height: 120px;
    width: auto;
  }
  .product-screen,
  .pf-visual {
    max-width: 100%;
    box-sizing: border-box;
  }
  .screen-body,
  .pf-body {
    padding: 16px;
    box-sizing: border-box;
  }
  .why-map {
    display: none;
  }
  .why-pillars {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .mission-stats {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .map-inner img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .product-features {
    grid-template-columns: 1fr;
  }
  .mission-inner,
  .map-inner {
    grid-template-columns: 1fr;
    gap: clamp(40px, 10vw, 56px);
  }
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .pf-inner {
    grid-template-columns: 1fr;
    gap: clamp(40px, 10vw, 56px);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .cs-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    gap: clamp(40px, 10vw, 56px);
  }
  .cform {
    padding: clamp(24px, 6vw, 32px);
    max-width: 100%;
    box-sizing: border-box;
  }
  .fg input,
  .fg textarea {
    max-width: 100%;
    box-sizing: border-box;
  }
  .form-btn {
    min-height: 48px;
    padding: 14px;
  }
  /* Mock / dashboard rows: prevent flex overflow */
  .s-row {
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    min-width: 0;
  }
  .s-row-l {
    flex: 1 1 auto;
    min-width: 0;
  }
  .s-row-n {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .s-row-r {
    flex-shrink: 0;
    margin-left: auto;
  }
  .pf-body > div[style*="flex-direction:column"] > div[style*="space-between"] {
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    min-width: 0;
  }
  .pf-body
    > div[style*="flex-direction:column"]
    > div[style*="space-between"]
    > span:first-child {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .screenshot-img {
    max-width: 100%;
  }
  .screenshot-img img {
    max-width: 100%;
    height: auto;
  }
  .svc {
    padding: 24px 20px;
  }
  .bay-cta {
    min-height: 0;
    padding: clamp(48px, 12vw, 72px) 0;
  }
  .bay-content {
    max-width: 100%;
  }
  .trial-callout {
    font-size: 14px;
    padding: 14px 16px;
  }
  .m-stat-val {
    font-size: 1.55rem;
  }
  .product-actions,
  .pf-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-bg {
    background-position: 58% 24%;
  }
  .hero .display-xl {
    font-size: clamp(1.85rem, 9.6vw, 2.45rem);
    line-height: 1.1;
  }
  .hero-content {
    padding-top: clamp(68px, 17vw, 88px);
  }
  .page-hero .display-lg,
  .page-hero-simple .display-lg {
    font-size: clamp(1.85rem, 9.5vw, 2.4rem);
    line-height: 1.08;
  }
  .kpis {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .kpi {
    padding: 12px;
  }
  .product-logo {
    max-height: 100px;
  }
  .cform {
    padding: 20px;
  }
  .plan {
    padding: 24px 20px;
  }
  .plan-badge {
    top: -10px;
    font-size: 10px;
    padding: 3px 12px;
  }
  .cs-card {
    padding: 24px 20px;
  }
  .pillar {
    padding: 20px;
  }
  .val {
    padding: 22px;
  }
  .pf-body > div[style*="repeat(2, 1fr)"],
  .pf-body > div[style*="repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}
