/* =========================================================
   Immix About Page
   Locked-in Immix style + ScrollMeta 6.0 surface support
   Upload as: /assets/css/immix-about-locked.css
========================================================= */

:root {
  --ixa-page: #f4f7f2;
  --ixa-surface: #ffffff;
  --ixa-surface-soft: #f8fbf7;

  --ixa-navy: #123a66;
  --ixa-navy-deep: #082f5f;
  --ixa-ink: #061f42;

  --ixa-green: #6f9e39;
  --ixa-green-dark: #4f8735;
  --ixa-green-soft: #edf6e9;

  --ixa-text: #193650;
  --ixa-text-soft: #4f6b83;
  --ixa-line: rgba(18, 58, 102, 0.12);
  --ixa-line-strong: rgba(18, 58, 102, 0.18);

  --ixa-shadow-lg: 0 30px 78px rgba(13, 30, 52, 0.13);
  --ixa-shadow-md: 0 18px 44px rgba(13, 30, 52, 0.09);
  --ixa-shadow-soft: 0 10px 28px rgba(13, 30, 52, 0.07);

  --ixa-radius-xl: 36px;
  --ixa-radius-lg: 30px;
  --ixa-radius-md: 22px;

  --ixa-gutter: clamp(28px, 4vw, 72px);
}

.scrollmeta,
[data-scrollmeta],
.scroll-meta,
.scrollMeta,
.sm-scrollmeta {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ixa-page);
  color: var(--ixa-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.ixabout-page {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 12% 8%, rgba(111, 158, 57, 0.065), transparent 32%),
    linear-gradient(180deg, #f8fbf7 0%, var(--ixa-page) 100%);
}

.ixabout-main {
  overflow: clip;
}

.ixabout-shell {
  width: min(100% - var(--ixa-gutter), 1280px);
  margin-inline: auto;
}

.ixabout-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--ixa-green-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.15;
  text-transform: uppercase;
}

.ixabout-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.62;
}

.ixabout-kicker--light {
  color: rgba(255, 255, 255, 0.78);
}

.ixabout-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.ixabout-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.ixabout-btn--primary {
  color: #ffffff;
  background: linear-gradient(180deg, #74ad43 0%, var(--ixa-green-dark) 100%);
  box-shadow: 0 16px 34px rgba(79, 135, 53, 0.26);
}

.ixabout-btn--primary:hover {
  color: #ffffff;
  background: linear-gradient(180deg, #648f39 0%, #426f2b 100%);
}

.ixabout-btn--secondary {
  color: var(--ixa-navy);
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--ixa-line-strong);
  box-shadow: 0 12px 28px rgba(13, 30, 52, 0.08);
}

.ixabout-btn--secondary:hover {
  color: var(--ixa-navy);
  background: #ffffff;
}

/* Hero */

.ixabout-hero {
  position: relative;
  min-height: clamp(720px, 62vw, 900px);
  isolation: isolate;
  overflow: hidden;
}

.ixabout-hero__media {
  position: absolute;
  inset: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  transform: translateX(-50%);
}

.ixabout-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(720px, 62vw, 900px);
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(1.02);
}

.ixabout-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(248, 251, 247, 0.995) 0%,
      rgba(248, 251, 247, 0.985) 29%,
      rgba(248, 251, 247, 0.84) 50%,
      rgba(248, 251, 247, 0.48) 72%,
      rgba(248, 251, 247, 0.14) 100%
    ),
    linear-gradient(
      180deg,
      rgba(248, 251, 247, 0.08) 0%,
      rgba(248, 251, 247, 0.00) 45%,
      rgba(248, 251, 247, 0.20) 100%
    );
  pointer-events: none;
}

.ixabout-hero__inner {
  min-height: clamp(720px, 62vw, 900px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.55fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.ixabout-hero__content {
  position: relative;
  max-width: 800px;
  z-index: 2;
  padding: clamp(68px, 7vw, 118px) 0;
}

.ixabout-hero__content::before {
  content: "";
  position: absolute;
  top: 2%;
  bottom: 2%;
  left: calc(50% - 50vw);
  right: -120px;
  z-index: -1;
  border-radius: 0 42px 42px 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(251, 252, 250, 0.88) 58%,
      rgba(251, 252, 250, 0.50) 83%,
      rgba(251, 252, 250, 0.00) 100%
    );
  pointer-events: none;
}

.ixabout-hero h1 {
  max-width: 12ch;
  margin: 0 0 24px;
  color: var(--ixa-navy);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(3.4rem, 6.4vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.062em;
}

.ixabout-hero__lede {
  max-width: 660px;
  margin: 0 0 18px;
  color: var(--ixa-navy);
  font-size: clamp(1.18rem, 1.55vw, 1.48rem);
  line-height: 1.62;
  font-weight: 800;
}

.ixabout-hero p:not(.ixabout-kicker):not(.ixabout-hero__lede) {
  max-width: 690px;
  color: #385872;
  font-size: 17px;
  line-height: 1.78;
  font-weight: 560;
}

.ixabout-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.ixabout-hero__panel {
  position: relative;
  z-index: 3;
  padding: clamp(26px, 3vw, 34px);
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(111, 158, 57, 0.22), transparent 38%),
    linear-gradient(145deg, var(--ixa-navy) 0%, var(--ixa-ink) 100%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 30px 72px rgba(13, 30, 52, 0.22);
}

.ixabout-metric-grid {
  display: grid;
  gap: 14px;
}

.ixabout-metric-grid div {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ixabout-metric-grid div:first-child {
  border-top: 0;
}

.ixabout-metric-grid strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  line-height: 1;
}

.ixabout-metric-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

/* Shared sections */

.ixabout-section {
  padding: clamp(78px, 7vw, 112px) 0;
}

.ixabout-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.ixabout-section-copy h2,
.ixabout-section-head h2,
.ixabout-group__card h2,
.ixabout-commitment h2 {
  margin: 0 0 18px;
  color: var(--ixa-navy);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.ixabout-section-copy p,
.ixabout-section-head p,
.ixabout-card p,
.ixabout-proof-card p,
.ixabout-wide-note p,
.ixabout-group__card p,
.ixabout-values li span,
.ixabout-cta-card p {
  color: var(--ixa-text-soft);
  font-size: 17px;
  line-height: 1.82;
}

.ixabout-section-copy p:last-child,
.ixabout-section-head p:last-child,
.ixabout-card p:last-child,
.ixabout-proof-card p:last-child,
.ixabout-wide-note p:last-child,
.ixabout-group__card p:last-child,
.ixabout-cta-card p:last-child {
  margin-bottom: 0;
}

/* Independence */

.ixabout-proof-card {
  padding: clamp(26px, 3vw, 36px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(111, 158, 57, 0.10), transparent 38%),
    #ffffff;
  border: 1px solid var(--ixa-line);
  box-shadow: var(--ixa-shadow-lg);
}

.ixabout-proof-card h3 {
  margin: 0 0 14px;
  color: var(--ixa-navy);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  font-weight: 880;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.ixabout-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ixabout-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--ixa-green-dark);
  background: rgba(111, 158, 57, 0.10);
  border: 1px solid rgba(111, 158, 57, 0.18);
  font-size: 14px;
  font-weight: 800;
}

/* What we do */

.ixabout-section-head {
  max-width: 980px;
  margin: 0 0 38px;
}

.ixabout-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ixabout-card {
  position: relative;
  min-height: 100%;
  padding: clamp(26px, 3vw, 36px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(111, 158, 57, 0.055), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfa 100%);
  border: 1px solid var(--ixa-line);
  box-shadow: var(--ixa-shadow-md);
  overflow: hidden;
}

.ixabout-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--ixa-green) 0%, var(--ixa-navy) 100%);
}

.ixabout-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 19px;
  color: var(--ixa-green-dark);
  background:
    linear-gradient(180deg, rgba(111, 158, 57, 0.11) 0%, rgba(111, 158, 57, 0.07) 100%);
  border: 1px solid rgba(111, 158, 57, 0.16);
  font-size: 22px;
}

.ixabout-card h3 {
  margin: 0 0 14px;
  color: var(--ixa-navy);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
  font-weight: 880;
}

.ixabout-wide-note {
  margin-top: 24px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(111, 158, 57, 0.20), transparent 38%),
    linear-gradient(145deg, var(--ixa-navy) 0%, var(--ixa-ink) 100%);
  box-shadow: 0 26px 64px rgba(13, 30, 52, 0.18);
}

.ixabout-wide-note p {
  max-width: 82ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.78;
}

/* Ciccone McKay group */

.ixabout-group {
  padding-top: 0;
}

.ixabout-group__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 38px;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(111, 158, 57, 0.24), transparent 38%),
    linear-gradient(145deg, #123f6e 0%, #0d2a49 58%, #071d37 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 82px rgba(13, 30, 52, 0.22);
}

.ixabout-group__card h2,
.ixabout-group__card p {
  color: #ffffff;
}

.ixabout-group__card p {
  color: rgba(255, 255, 255, 0.84);
}

.ixabout-values {
  padding: clamp(22px, 3vw, 30px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.ixabout-values h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.ixabout-values ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ixabout-values li {
  display: grid;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.ixabout-values li:first-child {
  padding-top: 0;
  border-top: 0;
}

.ixabout-values strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
}

.ixabout-values li span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.62;
}

/* Commitment */

.ixabout-commitment {
  padding-top: 0;
}

.ixabout-commitment__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(330px, 0.74fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.ixabout-cta-card {
  padding: clamp(26px, 3.5vw, 38px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(111, 158, 57, 0.10), transparent 38%),
    #ffffff;
  border: 1px solid var(--ixa-line);
  box-shadow: var(--ixa-shadow-lg);
}

.ixabout-cta-card h3 {
  margin: 0 0 14px;
  color: var(--ixa-navy);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  font-weight: 880;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.ixabout-cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

/* Compatibility */

.ix-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */

@media (max-width: 1120px) {
  .ixabout-hero__inner,
  .ixabout-split,
  .ixabout-group__card,
  .ixabout-commitment__inner {
    grid-template-columns: 1fr;
  }

  .ixabout-hero__content::before {
    right: calc(50% - 50vw);
  }

  .ixabout-hero__panel {
    max-width: 640px;
    margin-bottom: 56px;
  }

  .ixabout-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .ixabout-hero,
  .ixabout-hero__inner,
  .ixabout-hero__media img {
    min-height: auto;
  }

  .ixabout-hero__inner {
    display: block;
    padding: 54px 0 64px;
  }

  .ixabout-hero__media img {
    min-height: 920px;
  }

  .ixabout-hero__media::before {
    background:
      linear-gradient(
        180deg,
        rgba(248,251,247,0.985) 0%,
        rgba(248,251,247,0.965) 48%,
        rgba(248,251,247,0.72) 78%,
        rgba(248,251,247,0.32) 100%
      );
  }

  .ixabout-hero__content {
    padding: 0 0 30px;
  }

  .ixabout-hero__content::before {
    top: -28px;
    bottom: -18px;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(251,252,250,0.84) 100%);
  }

  .ixabout-hero h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 12vw, 5.2rem);
  }

  .ixabout-section-copy h2,
  .ixabout-section-head h2,
  .ixabout-group__card h2,
  .ixabout-commitment h2 {
    font-size: clamp(2.45rem, 10vw, 4rem);
  }
}

@media (max-width: 720px) {
  .ixabout-shell,
  .ixabout-hero__inner {
    width: min(100% - 28px, 1280px);
  }

  .ixabout-hero__inner {
    padding: 42px 0 54px;
  }

  .ixabout-hero__media img {
    min-height: 980px;
  }

  .ixabout-hero__actions .ixabout-btn,
  .ixabout-cta-card__actions .ixabout-btn {
    width: 100%;
  }

  .ixabout-section {
    padding: 68px 0;
  }

  .ixabout-proof-card,
  .ixabout-card,
  .ixabout-wide-note,
  .ixabout-group__card,
  .ixabout-values,
  .ixabout-cta-card {
    border-radius: 24px;
  }

  .ixabout-metric-grid strong {
    font-size: 1.7rem;
  }
}
