body#about {
  --ink: #17252a;
  --muted: #5b5854;
  --surface: #fbf8f3;
  --canvas: #f3ece4;
  --line: #ddd4c9;
  --accent: rgb(217.8976744186, 26.1023255814, 43.1255813953);
  --accent-strong: rgb(181.4623255814, 21.7376744186, 35.9144186047);
  --chip: rgba(232, 63, 78, 0.14);
  background: var(--canvas);
  color: var(--ink);
  display: flex;
  font-family: SSPLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  flex-direction: column;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body#about *,
body#about *::before,
body#about *::after {
  box-sizing: border-box;
}

body#about header,
body#about section {
  clear: none;
}

body#about header > div,
body#about section > div {
  margin: 0;
  max-width: none;
  padding: 0;
}

body#about p + p {
  margin-top: 0;
}

body#about h1 {
  font-family: GothamBook, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

body#about h2 {
  font-family: GothamBook, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0;
}

body#about h2::after {
  content: none;
  display: none;
}

body#about h3 {
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
}

body#about p {
  color: var(--muted);
  font-size: 1.05rem;
}

body#about .container {
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 60px;
}

body#about section {
  padding: 88px 0;
}

body#about #about-nav {
  background: transparent;
  border: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 120;
}

body#about .nav-inner {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 72px;
  position: relative;
}

body#about .nav-logo {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}

body#about .nav-logo-image {
  display: block;
  height: 44px;
  width: auto;
}

body#about .top-links {
  position: absolute;
  top: 16px;
  right: 0;
  align-items: center;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  gap: 6px;
  padding: 8px;
}

body#about .top-link {
  align-items: center;
  background-color: rgba(248, 248, 248, 0.9);
  border-radius: 999px;
  color: rgb(217.8976744186, 26.1023255814, 43.1255813953);
  display: inline-flex;
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
}

body#about .top-link:hover {
  background-color: rgba(233, 233, 233, 0.95);
  color: rgb(181.4623255814, 21.7376744186, 35.9144186047);
}

body#about .top-link.is-active {
  background-color: rgba(232, 63, 78, 0.12);
  color: rgb(199.68, 23.92, 39.52);
}

body#about .hero {
  background: var(--canvas);
  overflow: hidden;
  padding: 160px 0 118px;
  position: relative;
}

body#about > footer {
  margin-top: auto;
  width: 100%;
}

body#about .hero::after {
  background: radial-gradient(circle, rgba(43, 111, 106, 0.14) 0%, transparent 68%);
  content: "";
  height: 620px;
  pointer-events: none;
  position: absolute;
  right: -180px;
  top: -110px;
  width: 620px;
}

body#about .hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

body#about .hero-badge {
  align-items: center;
  background: var(--surface);
  border: 1px solid rgba(23, 37, 42, 0.09);
  border-radius: 100px;
  color: var(--muted);
  display: inline-flex;
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px 16px;
}

body#about .hero-badge .dot {
  background: var(--chip);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

body#about .hero h1 {
  color: var(--ink);
  margin-bottom: 24px;
}

body#about .hero h1 span {
  color: var(--accent);
}

body#about .hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 650px;
}

body#about .hero-actions {
  display: flex;
}

body#about .btn-secondary {
  align-items: center;
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  color: var(--surface);
  display: inline-flex;
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  justify-content: center;
  padding: 14px 32px;
  text-decoration: none;
  transition: all 0.2s ease;
}

body#about .btn-secondary:hover {
  background: var(--accent-strong);
  box-shadow: 0 4px 16px rgba(23, 37, 42, 0.14);
  transform: translateY(-1px);
}

body#about .partnership-banner {
  background: var(--surface);
  border-bottom: 1px solid rgba(23, 37, 42, 0.08);
  border-top: 1px solid rgba(23, 37, 42, 0.08);
  padding: 34px 0;
}

body#about .partnership-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

body#about .partnership-text {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

body#about .partnership-logos {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}

body#about .partner-divider {
  background: rgba(23, 37, 42, 0.2);
  height: 30px;
  width: 1px;
}

body#about .partner-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

body#about .capabilities {
  background: var(--surface);
}

body#about .section-label {
  color: var(--accent);
  display: inline-block;
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

body#about .section-header {
  margin-bottom: 60px;
  max-width: 720px;
}

body#about .section-header h2 {
  margin-bottom: 16px;
}

body#about .capabilities-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

body#about .capability-card {
  background: var(--canvas);
  border: 1px solid rgba(23, 37, 42, 0.08);
  border-radius: 14px;
  padding: 34px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body#about .capability-card:hover {
  box-shadow: 0 10px 28px rgba(23, 37, 42, 0.08);
  transform: translateY(-3px);
}

body#about .capability-icon {
  align-items: center;
  background: rgba(43, 111, 106, 0.12);
  border-radius: 10px;
  color: var(--accent-strong);
  display: flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 22px;
  width: 48px;
}

body#about .capability-icon svg {
  height: 24px;
  width: 24px;
}

body#about .capability-card h3 {
  margin-bottom: 12px;
}

body#about .capability-card p {
  font-size: 0.96rem;
  line-height: 1.65;
}

body#about .platform {
  background: var(--canvas);
}

body#about .platform-layout {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

body#about .platform-text h2 {
  color: var(--ink);
  margin-bottom: 20px;
}

body#about .platform-text p {
  font-size: 1.08rem;
  margin-bottom: 32px;
}

body#about .platform-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body#about .platform-feature {
  align-items: flex-start;
  display: flex;
  gap: 14px;
}

body#about .platform-feature-icon {
  align-items: center;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  flex-shrink: 0;
  height: 28px;
  justify-content: center;
  margin-top: 2px;
  width: 28px;
}

body#about .platform-feature-icon svg {
  height: 16px;
  width: 16px;
}

body#about .platform-feature-text h3 {
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 2px;
}

body#about .platform-feature-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

body#about .platform-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body#about .stack-top {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
}

body#about .stack-layer {
  background: var(--surface);
  border: 1px solid rgba(23, 37, 42, 0.12);
  border-radius: 10px;
  padding: 20px 28px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body#about .stack-layer:hover {
  box-shadow: 0 7px 20px rgba(23, 37, 42, 0.08);
  transform: translateY(-1px);
}

body#about .stack-top .stack-layer {
  padding: 16px 12px;
}

body#about .stack-layer-title {
  color: var(--ink);
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

body#about .stack-layer-desc {
  color: var(--muted);
  font-size: 0.85rem;
}

body#about .stack-top .stack-layer-title {
  font-size: 0.85rem;
}

body#about .stack-top .stack-layer-desc {
  font-size: 0.75rem;
}

body#about .stack-layer-highlight {
  background: rgba(43, 111, 106, 0.08);
  border-color: rgba(43, 111, 106, 0.22);
}

body#about .stack-layer-open {
  background: transparent;
  border-color: rgba(23, 37, 42, 0.22);
  border-style: dashed;
}

body#about .offerings {
  background: var(--surface);
}

body#about .offerings-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

body#about .offer-card {
  background: var(--canvas);
  border: 1px solid rgba(23, 37, 42, 0.08);
  border-radius: 14px;
  overflow: hidden;
  padding: 38px 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body#about .offer-card::before {
  background: linear-gradient(90deg, var(--accent), #d8b08b);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

body#about .offer-card:hover::before {
  transform: scaleX(1);
}

body#about .offer-card:hover {
  box-shadow: 0 8px 28px rgba(23, 37, 42, 0.08);
  transform: translateY(-3px);
}

body#about .offer-number {
  color: rgba(23, 37, 42, 0.08);
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 20px;
}

body#about .offer-card h3 {
  margin-bottom: 12px;
}

body#about .offer-card p {
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  body#about .platform-layout {
    gap: 48px;
    grid-template-columns: 1fr;
  }
  body#about .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  body#about .container {
    padding: 0 20px;
  }
  body#about h1 {
    font-size: 2.2rem;
  }
  body#about h2 {
    font-size: 1.8rem;
  }
  body#about section {
    padding: 72px 0;
  }
  body#about .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 14px;
    padding-top: 12px;
  }
  body#about .top-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 24px;
    position: static;
  }
  body#about .hero {
    padding: 172px 0 92px;
  }
  body#about .partnership-inner {
    flex-direction: column;
    gap: 20px;
  }
  body#about .partnership-logos {
    gap: 16px;
  }
  body#about .capabilities-grid,
  body#about .offerings-grid {
    grid-template-columns: 1fr;
  }
  body#about .stack-top {
    grid-template-columns: repeat(2, 1fr);
  }
}