*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink: #111110;
    --carbon: #333330;
    --graphite: #666662;
    --ash: #AAAAA6;
    --mist: #E0E0DC;
    --white: #F4F4F0;
    --page: #ffffff;
    --border: #E0E0DC;
    /* Active accent — Oxide (Founder / materials) */
    --accent: #B5541E;
  }

  body {
    font-family: 'Archivo', sans-serif;
    background: var(--page);
    color: var(--ink);
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
  }

  html {
    overflow-x: hidden;
  }

  .site-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
  }

  /* ── Shared components ───────────────────────────── */
  .section { padding: 60px 68px; border-bottom: 0.5px solid var(--border); }
  .section:last-child { border-bottom: none; }

  .section-label {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ash);
    margin-bottom: 25px;
  }

  .section-rule {
    height: 0.5px;
    background: var(--border);
    margin-bottom: 20px;
  }

  .section-headline {
    font-size: 35px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.018em;
    color: var(--ink);
    margin-bottom: 30px;
  }

  .section-headline strong { font-weight: 500; }

  .section-body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--graphite);
    max-width: 980px;
    margin-bottom: 42px;
  }

  .accent-rule {
    height: 0.5px;
    background: var(--accent);
    opacity: 0.4;
    margin: 60px 0;
  }

  /* ── Mark SVG ────────────────────────────────────── */
  .mark-lockup {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .lockup-text .primary {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    line-height: 1;
  }

  .lockup-text .sub {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.1em;
    display: block;
    margin-top: 4px;
  }

  /* ── CTA buttons ─────────────────────────────────── */
  .cta-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 42px;
  }

  .cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--white);
    padding: 18px 36px;
    border: none;
    cursor: pointer;
    text-decoration: none;
  }

  .cta-primary:hover {
    background: var(--accent);
    color: var(--white);
    text-decoration: underline;
  }

  .cta-primary:hover svg line,
  .cta-primary:hover svg path {
    stroke: var(--white);
  }

  .cta-ghost {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--graphite);
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative; /* needed for underline */
    transition: color 0.2s ease;
}

/*lighter color on hover */
.cta-ghost:hover {
  color: #777774; 
}

/* underline animation */
.cta-ghost::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: currentColor;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.cta-ghost:hover::after {
  transform: scaleX(1);
}

/* icon animation */
.cta-ghost svg,
.cta-ghost span.icon {
  transition: transform 0.2s ease;
}

.cta-ghost:hover svg,
.cta-ghost:hover span.icon {
  transform: translateX(3px);
}

  /* ── HERO ────────────────────────────────────────── */
  .hero {
    background: var(--ink);
    padding: 80px 68px 95px;
  }

  .hero-nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 80px;
  }

  .hero-body {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
      }

 

  /* ── CHC PANEL ── */
  .chc-panel {
    border: 0.5px solid #252523;
    border-top: 2px solid var(--accent);
    padding: 30px 30px 46px;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 4px;
  }

  .chc-panel-eyebrow {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
  }

  .chc-panel-headline {
    font-size: 25px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.012em;
    color: var(--white);
    margin-bottom: 24px;
  }
  .chc-panel-headline strong { font-weight: 500; }

  .chc-panel-dims {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 0.5px solid #222220;
  }

  .chc-panel-dim {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888886;
  }

  .chc-panel-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .chc-panel-note {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #888886;
    margin-bottom: 26px;
  }

  .chc-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--white);
    padding: 18px 24px;
    text-decoration: none;
    align-self: flex-start;
  }

  .chc-panel-cta:hover {
    background: var(--mist);
  }

  
  .hero-eyebrow {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
  }

  .hero-headline {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -0.028em;
    color: var(--white);
    margin-bottom: 48px;
  }

  .hero-headline strong { font-weight: 500; }

  .hero-sub {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.55;
    color: #888886;
    max-width: 820px;
    margin-bottom: 18px;
  }

  .hero-sub strong {
    font-weight: 300;
    color: #AAAAAA;
  }

  .hero-rule {
    height: 0.5px;
    background: #222220;
    margin:35px 0;
  }

  .hero-audience {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888886;
    margin-top: 26px;
    max-width: 560px;
    line-height: 1.6;
  }

  .hero-subsidy {
    margin-top: 48px;
    padding: 18px 24px;
    border: 0.5px solid #222220;
    border-left: 2px solid var(--accent);
  }

  .hero-subsidy-text {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #888886;
    line-height: 1.65;
  }

  .hero-subsidy-text strong {
    font-weight: 600;
    color: #888886;
  }

  /* ── VERSION BADGE ───────────────────────────────── */
  .version-tag {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888886;
    background: var(--ink);
    border: 0.5px solid #2A2A28;
    padding: 5px 10px;
    align-self: flex-start;
  }

  /* ── DILEMMA ─────────────────────────────────────── */
  .dilemma-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 0.5px solid var(--border);
    margin-top: 25px;
  }

  .dilemma-cell {
    padding: 28px 28px 32px;
    border-right: 0.5px solid var(--border);
  }

  .dilemma-cell:last-child { border-right: none; }

  .dilemma-num {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--accent);
    margin-bottom: 14px;
  }

  .dilemma-title {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 12px;
  }

  .dilemma-title strong { font-weight: 500; }

  .dilemma-body {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.72;
    color: var(--graphite);
  }

  /* ── CHC ─────────────────────────────────────────── */
  .chc-box {
    background: var(--ink);
    padding: 36px 40px;
    margin-top: 32px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }

  .chc-left { flex: 1; }

  .chc-eyebrow {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }

  .chc-headline {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.012em;
    color: var(--white);
    margin-bottom: 14px;
  }

  .chc-headline strong { font-weight: 500; }

  .chc-body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.72;
    color: #888886;
  }

  .chc-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
  }

  .chc-dimension {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888886;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .chc-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
    flex-shrink: 0;
  }

  .chc .cta-primary {
    margin-top: 20px;
    align-self: flex-start;
  }

  /* ── TRACKS ──────────────────────────────────────── */
  .tracks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 0.5px solid var(--border);
    margin-top: 32px;
  }

  .tracks-grid.on-dark {
    border-color: #252523;
  }

  .tracks-grid.on-dark .track-cell {
    border-right-color: #252523;
    border-bottom-color: #252523;
    background: #161614;
  }

  .track-cell {
    padding: 30px 26px 34px;
    border-right: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .track-cell:nth-child(3n) { border-right: none; }
  .track-cell:nth-last-child(-n+3) { border-bottom: none; }

  .track-accent-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
  }

  .track-num {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--mist);
    margin-bottom: 18px;
    margin-top: 6px;
  }

  .track-name {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 10px;
  }

  .track-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--graphite);
  }

  .track-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ash);
    margin-top: 18px;
    text-decoration: none;
  }

  /* ── THE WORK ────────────────────────────────────── */
  .work-quote {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.45;
    letter-spacing: -0.012em;
    color: var(--ink);
    max-width: 680px;
    padding-left: 24px;
    border-left: 1.5px solid var(--accent);
    margin: 42px 0;
  }

  .work-quote strong { font-weight: 500; }

  /* ── TIERS ───────────────────────────────────────── */
  .tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 0.5px solid var(--border);
    margin-top: 54px;
  }

  .tiers-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .tiers-grid.two-col .tier-cell:nth-child(2n) { border-right: none; }
  .tiers-grid.two-col .tier-cell:nth-child(n+3) { border-bottom: none; }

  .tier-cell {
    padding: 44px 36px 48px;
    border-right: 0.5px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .tier-cell:last-child { border-right: none; }

  .tier-num {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 20px;
  }

  .tier-name {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 14px;
  }

  .tier-body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.72;
    color: var(--graphite);
    flex: 1;
  }

  .tier-price {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--ash);
    margin-top: 18px;
    padding-top: 16px;
    border-top: 0.5px solid var(--border);
  }

  .tier-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 16px;
    text-decoration: none;
  }

  .tier-cta:hover {
    color: var(--graphite);
  }

  /* ── ABOUT (Section 7 in V3.1) ───────────────────── */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 82px;
    align-items: start;
    margin-top: 42px;
  }


  .about-headline {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.016em;
    color: var(--ink);
    margin-bottom: 24px;
  }

  .about-headline strong { font-weight: 500; }

  .about-copy {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--graphite);
    margin-bottom: 18px;
  }

  .about-closing {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.72;
    color: var(--carbon);
    font-style: italic;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 0.5px solid var(--border);
  }

  .about-creds {
    border: 0.5px solid var(--border);
    padding: 0;
  }

  .cred-item {
    padding: 18px 22px;
    border-bottom: 0.5px solid var(--border);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--graphite);
  }

  .cred-item:last-child { border-bottom: none; }

  .cred-label {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ash);
    margin-bottom: 6px;
  }

  /* ── CREDIBILITY BANNERS ─────────────────────────── */
  .cred-banner {
    padding: 42px 72px;
    border-bottom: 0.5px solid var(--border);
  }

  .cred-banner-label {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mist);
    margin-bottom: 26px;
  }

  .cred-banner-logos {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
  }

  .cred-banner-logo {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mist);
    padding: 14px 32px;
    border-right: 0.5px solid var(--border);
    white-space: nowrap;
  }

  .cred-banner-logo:first-child { padding-left: 0; }
  .cred-banner-logo:last-child { border-right: none; }

  /* ── CASE STUDY CARDS ────────────────────────────── */
  .case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 0.5px solid var(--border);
    margin-top: 54px;
  }

  .case-card {
    padding: 52px 44px 56px;
    border-right: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .case-card:nth-child(2n) { border-right: none; }
  .case-card:nth-child(3),
  .case-card:nth-child(4) { border-bottom: none; }

  .case-sector {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }

  .case-company {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 14px;
  }

  .case-headline {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 18px;
  }

  .case-headline strong { font-weight: 500; }

  .case-body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.72;
    color: var(--graphite);
    flex: 1;
    margin-bottom: 24px;
  }

  .case-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    margin-top: auto;
  }

  .case-cta:hover {
    color: var(--graphite);
  }

  /* ── FOOTER CTA ──────────────────────────────────── */
  .footer-cta {
    background: var(--ink);
    padding: 90px 104px;
  }

  .footer-cta-headline {
    font-size: 45px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.018em;
    color: var(--white);
    margin-bottom: 26px;
  }

  .footer-cta-headline strong { font-weight: 500; color: var(--accent); }

  .footer-cta-body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.72;
    color: #888886;
    max-width: 680px;
    margin-bottom: 54px;
  }

  .footer-cta .cta-row { margin-top: 0; }

  .footer-dark a:hover {
    text-decoration: underline;
    color: var(--graphite);
  }

  /* ── DOC FOOTER ──────────────────────────────────── */
  .doc-footer {
    padding: 18px 60px;
    border-top: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .doc-footer-text {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ash);
  }

  .doc-footer-version {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--mist);
  }
  /* ── CREDIBILITY BANNERS ─────────────────────────── */
  .cvc-teaser {
    background: var(--ink);
    padding: 52px 60px;
    border-bottom: 0.5px solid #1E1E1C;
  }

  .cvc-teaser-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
  }

  .cvc-tag {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }

  .cvc-headline {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.18;
    letter-spacing: -0.016em;
    color: var(--white);
    margin-bottom: 14px;
  }

  .cvc-headline strong { font-weight: 500; }

  .cvc-body {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.72;
    color: #888886;
    max-width: 460px;
  }

  .cvc-divider {
    width: 0.5px;
    background: #1E1E1C;
    align-self: stretch;
  }

  .cvc-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex-shrink: 0;
  }

  .cvc-stat {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #333330;
    padding-bottom: 10px;
    border-bottom: 0.5px solid #1E1E1C;
    width: 100%;
  }

  .cvc-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--accent);
    margin-bottom: 2px;
  }

  .cta-bookcall {
    position: relative;
    transition: color 0.2s ease;
  }

  .cta-bookcall:hover {
    color: #8a8a86;
  }

  .cta-bookcall::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }

  .cta-bookcall:hover::after {
    transform: scaleX(1);
  }

  .clarity-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c1c1c1;
    text-decoration: none;
    margin-top: 10px;
    padding: 12px 12px;
    border: 1px solid #c1c1c1;
  }

  .clarity-btn:hover {
    color: var(--white);
  }

  .logo-primary {
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
  }

  /* MOBILE */
  @media (max-width: 768px) {

  .site-wrap {
    width: 100%;
  }

  .hero,
  .section,
  .cred-banner,
  .footer-cta,
  .cvc-teaser,
  .doc-footer {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero-body,
  .tracks-grid,
  .tiers-grid,
  .case-grid,
  .about-grid,
  .dilemma-grid,
  .cvc-teaser-inner {
    grid-template-columns: 1fr !important;
  }

  .hero-nav,
  .cta-row,
  .chc-box {
    flex-direction: column !important;
  }

  .hero-headline {
    font-size:4rem !important;
    line-height: 1.05 !important;
  }

  .section-headline,
  .footer-cta-headline {
    font-size: 30px !important;
  }

  .track-cell,
  .tier-cell,
  .case-card,
  .dilemma-cell {
    border-right: none !important;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  body {
    overflow-x: hidden;
  }

   .clarity-btn {
    margin-top: 30px;
    margin-bottom: 0px !important;

  }

  .hero-nav {
     margin-bottom: 40px !important;
  }
}