:root {
  --ink: #111;
  --cream: #f7f1e7;
  --panel: #f0eae1;
  --cyan: #25c4d0;
  --orange: #ff851b;
  --yellow: #ffc226;
  --green: #14a46d;
  --coral: #ff5e47;
  --muted: #5d6672;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  margin: 0;
  overflow-x: hidden;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: Nunito, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.header-shell {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.hero-shell {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.05fr 0.95fr;
  margin: 0 auto;
  max-width: 1180px;
  padding: 4rem 1.25rem;
}
.footer-shell {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  padding-bottom: 3.5rem;
  padding-top: 3.5rem;
}
.logo-kooki {
  color: var(--cyan);
  letter-spacing: -0.07em;
}
.logo-tech {
  color: var(--orange);
  letter-spacing: -0.07em;
}
.site-header {
  background: rgba(247, 241, 231, 0.96);
  border-bottom: 1px solid #e4ddd2;
  border-top: 3px solid var(--cyan);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand-lockup {
  display: grid;
  gap: 0.2rem;
  line-height: 1;
}
.brand-lockup strong,
.footer-brand {
  font:
    900 2rem/1 Nunito,
    sans-serif;
  letter-spacing: -0.05em;
}
.brand-lockup small {
  color: #65707d;
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  gap: 1.5rem;
  color: #59636e;
  font-size: 0.78rem;
  font-weight: 600;
}
.desktop-nav a:hover,
footer a:hover {
  color: var(--cyan);
}
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 700;
  gap: 0.45rem;
  justify-content: center;
  padding: 0.78rem 1.18rem;
  transition: 0.18s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-cyan {
  background: var(--cyan);
  color: var(--ink);
}
.button-outline {
  border: 1px solid #b9b4ab;
}
.button-light {
  background: white;
  color: var(--ink);
  font-size: 0.72rem;
  padding: 0.65rem 0.85rem;
}
.mobile-menu {
  display: none;
  position: relative;
}
.mobile-menu summary {
  cursor: pointer;
  display: grid;
  gap: 0.25rem;
  list-style: none;
}
.mobile-menu summary::-webkit-details-marker {
  display: none;
}
.mobile-menu summary i {
  background: var(--ink);
  display: block;
  height: 2px;
  width: 1.35rem;
}
.mobile-menu nav {
  background: var(--cream);
  border: 1px solid #dfd7cb;
  border-radius: 1rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  position: absolute;
  right: 0;
  top: 2rem;
  width: 15rem;
}
.mobile-menu nav a {
  font-size: 0.88rem;
  padding: 0.6rem;
}
.mobile-menu nav .button {
  color: white;
  margin-top: 0.3rem;
}
.hero-section {
  overflow: hidden;
  position: relative;
}
.hero-orb {
  border-radius: 50%;
  position: absolute;
}
.orb-one {
  background: rgba(37, 196, 208, 0.12);
  height: 23rem;
  right: -10rem;
  top: -11rem;
  width: 23rem;
}
.orb-two {
  background: rgba(255, 194, 38, 0.12);
  bottom: -14rem;
  height: 26rem;
  left: -13rem;
  width: 26rem;
}
.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}
.eyebrow {
  color: var(--orange);
  font-size: 0.80rem;
  font-weight: 1000;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-copy h1 {
  font-size: clamp(3.2rem, 5.6vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.95;
  margin-top: 1rem;
}
.hero-copy h1 span {
  color: var(--cyan);
}
.hero-copy > p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
  margin: 1.5rem 0 2rem;
  max-width: 37rem;
}
.cta-row {
  display: flex;
  gap: 0.7rem;
}
.hero-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}
.hero-paths span {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid #e2dbd1;
  border-radius: 99px;
  color: #59636e;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
}
.hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 24rem;
}
.hero-visual:before {
  background: #eee7dc;
  border-radius: 45% 55% 61% 39%/45% 45% 55% 55%;
  content: "";
  height: 24rem;
  position: absolute;
  transform: rotate(-7deg);
  width: 24rem;
}
.hero-visual img {
  max-width: 28rem;
  position: relative;
  width: 94%;
}
.visual-note {
  background: white;
  border-radius: 0.8rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.7rem 0.85rem;
  position: absolute;
  z-index: 1;
}
.top-note {
  right: 0;
  top: 9%;
}
.bottom-note {
  bottom: 9%;
  left: 0;
  max-width: 10rem;
}
.bottom-note strong {
  color: var(--orange);
}
.content-wrap {
  margin: auto;
  max-width: 1180px;
  padding: 5rem 1.25rem;
}
.about-section {
  align-items: end;
  border-bottom: 1px solid #e4ddd2;
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.9fr 1.1fr;
  padding-bottom: 4rem;
}
.about-section h2,
.section-heading h2,
.custom-panel h2,
.final-cta h2 {
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-top: 0.7rem;
}
.lead-copy,
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
  max-width: 39rem;
}
.text-link {
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 0.35rem;
  margin-top: 1.25rem;
}
.text-link b {
  transition: 0.18s;
}
.text-link:hover b {
  transform: translateX(4px);
}
.tinted-section {
  background: var(--panel);
}
.section-heading {
  margin: auto;
  max-width: 42rem;
  text-align: center;
}
.section-heading > p:last-child {
  margin: 1.2rem auto 0;
}
.split-heading {
  align-items: end;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 0.75fr;
  max-width: none;
  text-align: left;
}
.split-heading > p:last-child {
  margin: 0;
}
.offer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.4rem;
}
.offer-card {
  border-radius: 1.5rem;
  min-height: 27rem;
  padding: 1.7rem;
  position: relative;
  transition: 0.18s;
}
.offer-card:hover,
.tool-card:hover,
.product-card:hover {
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}
.offer-tools {
  background: #dff8f8;
}
.offer-systems {
  background: #fff0d9;
}
.offer-custom {
  background: #e1f1df;
}
.offer-card > span {
  color: rgba(0, 0, 0, 0.14);
  font:
    900 4rem/0.8 Nunito,
    sans-serif;
  letter-spacing: -0.1em;
}
.card-kicker {
  color: #59636e;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-top: 1.45rem;
  text-transform: uppercase;
}
.offer-card h3,
.product-card h3 {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-top: 0.65rem;
}
.offer-card > p:not(.card-kicker),
.product-card > p:not(.card-kicker) {
  color: #53606b;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 0.8rem;
}
.offer-card ul {
  color: #46525d;
  font-size: 0.8rem;
  line-height: 1.8;
  list-style: none;
  margin: 1.2rem 0;
  padding: 0;
}
.offer-card li:before {
  color: var(--orange);
  content: "•";
  margin-right: 0.45rem;
}
.offer-card .text-link {
  bottom: 1.5rem;
  position: absolute;
}
.tool-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
}
.tool-card {
  background: white;
  border: 1px solid #e5ddd2;
  border-radius: 1.2rem;
  min-height: 14rem;
  padding: 1.3rem;
  position: relative;
  transition: 0.18s;
}
.tool-card i,
.product-card > i {
  align-items: center;
  border-radius: 0.65rem;
  display: inline-flex;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  height: 2.65rem;
  justify-content: center;
  width: 2.65rem;
}
.tool-card .cyan,
.pc-cyan {
  background: #ddf8f8;
}
.tool-card .yellow,
.pc-yellow {
  background: #fff1c9;
}
.tool-card .green,
.pc-green {
  background: #e1f2dc;
}
.tool-card .orange,
.pc-orange {
  background: #ffe8d0;
}
.tool-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-top: 1.2rem;
}
.tool-card p {
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.5;
  margin-top: 0.45rem;
}
.tool-card > b {
  bottom: 1.15rem;
  position: absolute;
  right: 1.2rem;
}
.center-action {
  text-align: center;
}
.center-action .button {
  margin-top: 2.2rem;
}
.product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.4rem;
}
.product-card {
  border-radius: 1.2rem;
  min-height: 16rem;
  padding: 1.4rem;
  position: relative;
  transition: 0.18s;
}
.pc-coral {
  background: #ffe3dc;
}
.pc-plain {
  background: white;
  border: 1px solid #e5ddd2;
}
.product-card .card-kicker {
  margin-top: 1rem;
}
.product-card h3 {
  font-size: 1.32rem;
}
.product-card .text-link,
.product-card em {
  bottom: 1.2rem;
  position: absolute;
}
.product-card em {
  background: rgba(255, 255, 255, 0.68);
  border-radius: 99px;
  color: #59636e;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
  padding: 0.4rem 0.6rem;
}
.custom-panel {
  align-items: center;
  background: #f3eee7;
  border-radius: 1.6rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  padding: 3rem 3.5rem;
  position: relative;
}
.custom-panel:after {
  background: rgba(37, 196, 208, 0.12);
  border-radius: 50%;
  bottom: -8rem;
  content: "";
  height: 20rem;
  position: absolute;
  right: -8rem;
  width: 20rem;
}
.custom-panel > *,
.custom-panel img {
  position: relative;
  z-index: 1;
}
.custom-panel h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-top: 0.7rem;
}
.custom-panel div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-top: 1rem;
}
.custom-panel .button {
  margin-top: 1.4rem;
}
.custom-panel img {
  justify-self: center;
  max-width: 27rem;
  width: 100%;
}
.process-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1rem;
}
.process-grid article {
  padding: 1.3rem 0.75rem;
}
.process-grid i,
.path-grid i {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}
.process-grid h3 {
  font-size: 0.94rem;
  font-weight: 800;
  margin-top: 0.8rem;
}
.process-grid p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
  margin-top: 0.4rem;
}
.path-grid {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  margin-top: 3rem;
  text-align: center;
}
.path-grid article {
  background: white;
  border-radius: 1.2rem;
  min-height: 12rem;
  padding: 1.5rem;
}
.path-grid h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-top: 1rem;
}
.path-grid p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
  margin-top: 0.6rem;
}
.path-grid > b {
  color: var(--orange);
  font-size: 1.5rem;
}
.benefit-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 3rem;
}
.benefit-grid article {
  border-top: 2px solid var(--ink);
  padding: 1rem 0;
}
.benefit-grid span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
}
.benefit-grid h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-top: 1.15rem;
}
.benefit-grid p {
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.55;
  margin-top: 0.5rem;
}
.final-section {
  padding-top: 0;
}
.final-cta {
  background: var(--ink);
  border-radius: 1.7rem;
  overflow: hidden;
  padding: 3.5rem;
  position: relative;
  text-align: center;
}
.final-cta:before {
  background: rgba(37, 196, 208, 0.14);
  border-radius: 50%;
  content: "";
  height: 22rem;
  left: -10rem;
  position: absolute;
  top: -12rem;
  width: 22rem;
}
.final-cta > * {
  position: relative;
}
.final-cta .eyebrow {
  color: var(--cyan);
}
.final-cta h2 {
  color: white;
}
.final-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.4rem;
  text-align: left;
}
.final-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.1rem;
  padding: 1.35rem;
}
.final-grid h3 {
  color: white;
  font-size: 1.08rem;
  font-weight: 800;
}
.final-grid p {
  color: #bfc5cd;
  font-size: 0.81rem;
  line-height: 1.55;
  margin: 0.5rem 0 1.1rem;
}
footer {
  background: #ebe4da;
  border-top: 1px solid #ddd4c8;
}
footer p {
  color: #59636e;
  font-size: 0.87rem;
  line-height: 1.55;
  margin-top: 1rem;
  max-width: 15rem;
}
footer h2 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
footer a:not(.footer-brand) {
  color: #59636e;
  display: block;
  font-size: 0.83rem;
  margin-top: 0.55rem;
  width: fit-content;
}
.email {
  color: var(--ink) !important;
  font-weight: 700;
  margin-top: 1rem !important;
}
.footer-bottom {
  border-top: 1px solid #ddd4c8;
  color: #67707a;
  font-size: 0.72rem;
  padding: 1.2rem;
  text-align: center;
}
@media (max-width: 900px) {
  .hero-shell,
  .footer-shell {
    grid-template-columns: 1fr;
  }
  .hero-shell {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .desktop-nav,
  .desktop-cta {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-row,
  .hero-paths {
    justify-content: center;
  }
  .about-section,
  .custom-panel {
    grid-template-columns: 1fr;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .offer-card {
    min-height: 20rem;
  }
  .tool-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .split-heading {
    grid-template-columns: 1fr;
  }
  .path-grid {
    grid-template-columns: 1fr;
  }
  .path-grid > b {
    transform: rotate(90deg);
  }
  .final-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .site-shell,
  .hero-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .brand-lockup strong,
  .footer-brand {
    font-size: 1.75rem;
  }
  .hero-copy h1 {
    font-size: 3.25rem;
  }
  .hero-visual {
    min-height: 16rem;
  }
  .hero-visual:before {
    height: 17rem;
    width: 17rem;
  }
  .hero-visual img {
    max-width: 20rem;
  }
  .visual-note {
    font-size: 0.6rem;
    padding: 0.55rem 0.6rem;
  }
  .top-note {
    right: -0.4rem;
  }
  .bottom-note {
    left: -0.4rem;
  }
  .about-section {
    padding-bottom: 3rem;
  }
  .tool-grid,
  .product-grid,
  .benefit-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .custom-panel {
    padding: 2rem 1.5rem;
  }
  .process-grid article {
    border-bottom: 1px solid #e3dbd0;
    padding: 1.1rem 0;
  }
  .final-cta {
    padding: 2.5rem 1.4rem;
  }
  .final-grid {
    text-align: center;
  }
}
.solution-menu {
  position: relative;
}
.solution-menu summary {
  cursor: pointer;
  list-style: none;
}
.solution-menu summary::-webkit-details-marker {
  display: none;
}
.solution-menu summary:after {
  content: "+";
  margin-left: 0.3rem;
}
.solution-menu[open] summary:after {
  content: "-";
}
.solution-menu div {
  background: var(--cream);
  border: 1px solid #dfd7cb;
  border-radius: 0.8rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.11);
  display: grid;
  left: -1rem;
  padding: 0.5rem;
  position: absolute;
  top: 1.5rem;
  width: 12.5rem;
}
.solution-menu div a {
  font-size: 0.75rem;
  padding: 0.5rem;
}
.solution-menu .menu-all {
  border-top: 1px solid #e2dad0;
  color: var(--ink);
  font-weight: 800;
  margin-top: 0.25rem;
}
.featured-section {
  padding-top: 0;
}
.featured-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}
.featured-grid > a {
  background: var(--panel);
  border-radius: 1.2rem;
  min-height: 11rem;
  padding: 1.3rem;
  position: relative;
  transition: 0.18s;
}
.featured-grid > a:hover {
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.featured-grid i {
  align-items: center;
  border-radius: 0.6rem;
  display: inline-flex;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
  height: 2.4rem;
  justify-content: center;
  width: 2.4rem;
}
.featured-grid .cyan {
  background: #dff8f8;
}
.featured-grid .coral {
  background: #ffe3dc;
}
.featured-grid .green {
  background: #e1f2dc;
}
.featured-grid span {
  color: #59636e;
  display: block;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-top: 1rem;
  text-transform: uppercase;
}
.featured-grid h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-top: 0.4rem;
}
.featured-grid b {
  bottom: 1.2rem;
  position: absolute;
  right: 1.3rem;
}
@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

/* Keep the headings strong without the heavy extra-bold appearance. */
.brand-lockup strong {
  font-family: "DM Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.065em;
}
.brand-lockup small {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
}
.footer-brand {
  font-weight: 700;
}
.hero-copy h1,
.about-section h2,
.section-heading h2,
.custom-panel h2,
.final-cta h2 {
  font-weight: 700;
}
.offer-card h3,
.product-card h3,
.tool-card h3,
.custom-panel h3,
.process-grid h3,
.path-grid h3,
.benefit-grid h3,
.final-grid h3,
.featured-grid h3 {
  font-weight: 700;
}

.hero-copy h1 .hero-your {
  color: var(--orange);
}

.offer-card {
  min-height: 31rem;
}
.offer-card .offer-tagline {
  margin-top: 0.6rem;
  font-weight: 700;
}
.offer-tools .offer-tagline {
  color: var(--green);
}
.offer-systems .offer-tagline {
  color: #4f46e5;
}
.offer-custom .offer-tagline {
  color: var(--orange);
}

@media (max-width: 900px) {
  .offer-card {
    min-height: 25rem;
  }
}

/* Three offer paths: reference-inspired layout using the Kooki palette. */
#offers.tinted-section {
  background: #f3f1eb;
}
#offers .content-wrap {
  max-width: 1180px;
}
#offers .section-heading {
  max-width: 68rem;
}
#offers .offer-grid {
  gap: 1.5rem;
}
#offers .offer-card {
  display: flex;
  min-height: 29rem;
  flex-direction: column;
  border: 0;
  border-radius: 1.1rem;
  background: #fffdfa;
  overflow: hidden;
  padding: 1.75rem;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
}
#offers .offer-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
#offers .offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0.95rem;
  color: white;
  font-size: 1.45rem;
}
#offers .offer-icon .iconify {
  width: 1.45rem;
  height: 1.45rem;
}
#offers .offer-tools .offer-icon {
  background: var(--green);
}
#offers .offer-systems .offer-icon {
  background: var(--cyan);
}
#offers .offer-custom .offer-icon {
  background: var(--orange);
}
#offers .offer-number {
  font-family: "Nunito", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}
#offers .offer-tools .offer-number {
  color: #8be5bd;
}
#offers .offer-systems .offer-number {
  color: #8adfe5;
}
#offers .offer-custom .offer-number {
  color: #f3ca62;
}
#offers .offer-card h3 {
  margin-top: 1.45rem;
  font-size: 1.45rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
#offers .offer-card .offer-tagline {
  margin-top: 0.25rem;
}
#offers .offer-card > p:not(.offer-tagline) {
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}
#offers .offer-card ul {
  margin-top: 1rem;
  font-size: 0.78rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
#offers .offer-card .text-link {
  position: static;
  width: fit-content;
  margin-top: auto;
  padding: 0.72rem 1.1rem;
  border-radius: 0.75rem;
  color: white;
  font-size: 0.78rem;
}
#offers .offer-tools .text-link {
  background: var(--green);
}
#offers .offer-systems .text-link {
  background: var(--cyan);
  color: var(--ink);
}
#offers .offer-custom .text-link {
  background: var(--orange);
}
@media (max-width: 900px) {
  #offers .offer-card {
    min-height: 27rem;
  }
}

.who-section {
  padding: 4.75rem 0;
  background: #E5F5FC;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 5rem;
  max-width: 1180px;
  margin: auto;
  padding: 0 1.25rem;
}
.who-copy h2 {
  max-width: 34rem;
  margin-top: 0.8rem;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: #0d0d0e
  /* -webkit-text-stroke: px #6b2b2b; */

}
.who-copy .who-title {
  margin-top: 0;
  color: var(--cyan);
}
.who-copy > p:not(.eyebrow) {
  max-width: 35rem;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}
.who-points {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.7rem;
  color: #3f4a55;
  font-size: 0.85rem;
  font-weight: 700;
}
.who-points span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.who-points iconify-icon {
  color: var(--green);
  font-size: 1.1rem;
}
.who-image-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 20rem;
}
.who-image-slot img {
  display: block;
  width: 100%;
  max-width: 30rem;
  object-fit: contain;
}
@media (max-width: 850px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .who-image-slot {
    min-height: 13rem;
  }
}

@media (min-width: 640px) {
  .content-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .who-grid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.scroll-reveal.scroll-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.custom-panel {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  position: static;
}

.custom-panel::after {
  display: none;
}

.custom-panel > * {
  position: static;
  z-index: auto;
}

.who-section,
.content-wrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.custom-panel {
  padding: 0;
  gap: 4rem;
}

@media (max-width: 850px) {
  .who-section,
  .content-wrap {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .custom-panel {
    gap: 2rem;
  }
}
