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

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background-color: #131314;
    color: #e4e2e2;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 24px;
    -webkit-font-smoothing: antialiased;
}

body::selection,
body ::selection {
    background-color: #f0bf5c;
    color: #412d00;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
blockquote {
    margin: 0;

    font-size: inherit;
    font-weight: inherit;
}

ul {
    list-style: none;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: inherit;
}

button {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    text-align: inherit;
    background: none;
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.pt-20 {
    padding-top: 100px;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.hidden {
    display: none;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.-inset-4 {
    top: -16px;
    right: -16px;
    bottom: -16px;
    left: -16px;
}

.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.bottom-10 {
    bottom: 40px;
}

.left-1\/2 {
    left: 50%;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.-translate-x-1\/2 {
    transform: translateX(-50%);
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.col-span-2 {
    grid-column: span 2 / span 2;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.w-4 {
    width: 16px;
}

.w-10 {
    width: 40px;
}

.w-16 {
    width: 64px;
}

.w-20 {
    width: 80px;
}

.w-auto {
    width: auto;
}

.w-full {
    width: 100%;
}

.w-px {
    width: 1px;
}

.h-1 {
    height: 4px;
}

.h-4 {
    height: 16px;
}

.h-10 {
    height: 40px;
}

.h-12 {
    height: 48px;
}

.h-16 {
    height: 64px;
}

.h-20 {
    height: 80px;
}

.h-full {
    height: 100%;
}

.max-w-2xl {
    max-width: 672px;
}

.max-w-5xl {
    max-width: 1024px;
}

.max-w-7xl {
    max-width: 1280px;
}

.max-w-xs {
    max-width: 320px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-margin {
    padding-left: max(24px, 4vw);
    padding-right: max(24px, 4vw);
}

.px-md {
    padding-left: 24px;
    padding-right: 24px;
}

.px-lg {
    padding-left: 48px;
    padding-right: 48px;
}

.px-xl {
    padding-left: 80px;
    padding-right: 80px;
}

.py-sm {
    padding-top: 12px;
    padding-bottom: 12px;
}

.py-xl {
    padding-top: 80px;
    padding-bottom: 80px;
}

.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
}

.py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.p-lg {
    padding: 48px;
}

.pt-lg {
    padding-top: 48px;
}

.pl-md {
    padding-left: 24px;
}

.pl-0 {
    padding-left: 0;
}

.pr-0 {
    padding-right: 0;
}

.pb-md {
    padding-bottom: 24px;
}

.mb-sm {
    margin-bottom: 12px;
}

.mb-md {
    margin-bottom: 24px;
}

.mb-lg {
    margin-bottom: 48px;
}

.mb-xl {
    margin-bottom: 80px;
}

.mt-sm {
    margin-top: 12px;
}

.mt-xl {
    margin-top: 80px;
}

.mt-1 {
    margin-top: 4px;
}

.ml-2 {
    margin-left: 8px;
}

.gap-md {
    gap: 24px;
}

.gap-lg {
    gap: 48px;
}

.gap-gutter {
    gap: 32px;
}

.gap-xl {
    gap: 80px;
}

.space-y-sm>*+* {
    margin-top: 12px;
}

.space-y-md>*+* {
    margin-top: 24px;
}

.space-y-xl>*+* {
    margin-top: 80px;
}

.rounded-lg {
    border-radius: 8px;
}

.rounded-xl {
    border-radius: 12px;
}

.rounded-full {
    border-radius: 9999px;
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.blur-2xl {
    filter: blur(40px);
}

.backdrop-blur-xl {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.brightness-50 {
    filter: brightness(0.5);
}

.grayscale {
    filter: grayscale(100%);
}

.scale-100 {
    transform: scale(1);
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-80 {
    opacity: 0.8;
}

.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

.bg-cover {
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-center {
    background-position: center;
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-2 {
    border-width: 2px;
    border-style: solid;
}

.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

.border-l-4 {
    border-left-width: 4px;
    border-left-style: solid;
}

.italic {
    font-style: italic;
}

.leading-relaxed {
    line-height: 1.625;
}

.tracking-tighter {
    letter-spacing: -0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.align-middle {
    vertical-align: middle;
}

.font-bold {
    font-weight: 700;
}

.text-sm {
    font-size: 14px;
    line-height: 20px;
}

.bg-background {
    background-color: #131314;
}

.bg-background\/80,
.dark\:bg-background\/80 {
    background-color: rgba(19, 19, 20, 0.8);
}

.bg-on-primary {
    background-color: #412d00;
}

.bg-primary {
    background-color: #f0bf5c;
}

.bg-primary\/10 {
    background-color: rgba(240, 191, 92, 0.1);
}

.bg-primary\/20 {
    background-color: rgba(240, 191, 92, 0.2);
}

.bg-surface-container-low {
    background-color: #1b1c1c;
}

.bg-surface-container-lowest {
    background-color: #0d0e0f;
}

.border-on-primary {
    border-color: #412d00;
}

.border-outline-variant {
    border-color: #4e4637;
}

.border-primary {
    border-color: #f0bf5c;
}

.border-white\/5 {
    border-color: rgba(255, 255, 255, 0.05);
}

.text-on-primary {
    color: #412d00;
}

.text-on-primary-fixed {
    color: #261900;
}

.text-on-surface-variant {
    color: #d2c5b1;
}

.text-outline {
    color: #9b8f7d;
}

.text-primary {
    color: #f0bf5c;
}

.text-white {
    color: #ffffff;
}

.bg-gradient-to-b.from-background\/40.via-background\/20.to-background {
    background-image: linear-gradient(to bottom, rgba(19, 19, 20, 0.4), rgba(19, 19, 20, 0.2), #131314);
}

.bg-gradient-to-t.from-background.to-transparent {
    background-image: linear-gradient(to top, #131314, transparent);
}

.font-display-2xl,
.font-display-xl,
.font-display-xl-mobile,
.font-headline-lg,
.font-headline-md {
    font-family: 'Space Grotesk', sans-serif;
}

.font-body-lg,
.font-body-md,
.font-label-caps {
    font-family: 'Manrope', sans-serif;
}

.text-display-xl-mobile {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.text-headline-md {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    font-weight: 500;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.duration-700 {
    transition-duration: 700ms;
}

.hover\:bg-on-primary\/10:hover {
    background-color: rgba(65, 45, 0, 0.1);
}

.hover\:bg-primary\/10:hover {
    background-color: rgba(240, 191, 92, 0.1);
}

.hover\:opacity-100:hover {
    opacity: 1;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover\:text-primary:hover {
    color: #f0bf5c;
}

.hover\:underline:hover {
    text-decoration: underline;
}

.active\:scale-95:active {
    transform: scale(0.95);
}

.group:hover .group-hover\:bg-primary\/30 {
    background-color: rgba(240, 191, 92, 0.3);
}

.group:hover .group-hover\:grayscale-0 {
    filter: grayscale(0%);
}

.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.animate-bounce {
    animation: about-bounce 1s infinite;
}

@keyframes about-bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .md\:block {
        display: block;
    }

    .md\:flex {
        display: flex;
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(2fr));
        grid-template-columns: 2fr;
        display: flex;
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .md\:order-1 {
        order: 1;
    }

    .md\:order-2 {
        order: 2;
    }

    .md\:pl-12 {
        padding-left: 48px;
    }

    .md\:pr-12 {
        padding-right: 48px;
    }

    .md\:text-display-2xl {
        font-size: 96px;
        line-height: 104px;
        letter-spacing: -0.04em;
        font-weight: 700;
    }

    .md\:text-headline-lg {
        font-size: 48px;
        line-height: 56px;
        letter-spacing: -0.02em;
        font-weight: 500;
    }
}

@media (max-width: 500px) {

    .w-full.timeline-col.text-right.about-timeline-pad-right.order-2.md\:order-1.js-reveal {
        text-align: left;
    }

}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.glass-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gold-glow:hover {
    box-shadow: 0 0 20px rgba(200, 155, 60, 0.2);
    transform: translateY(-4px);
}

.timeline-line {
    background: linear-gradient(to bottom, transparent, #f0bf5c, transparent);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #f0bf5c 0%, #c89b3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.about-hero-gradient {
    background: linear-gradient(to bottom, #111111, transparent, #111111);
}

.about-hero-section {
    min-height: 380px;
    padding-top: 60px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .about-hero-section {
        min-height: 520px;
    }
}

.story-image {
    height: 500px;
}

.group:hover .story-image {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .timeline-col {
        width: 45%;
    }
}

.timeline-line {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
}

.about-timeline-progress-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 16px;
    height: 16px;
    margin-left: -8px;
    margin-top: -8px;
    border-radius: 9999px;
    background-color: #f0bf5c;
    box-shadow: 0 0 16px rgba(240, 191, 92, 0.7);
    z-index: 11;
}

.about-hero-content {
    max-width: 1024px;
    padding-left: max(24px, 4vw);
    padding-right: max(24px, 4vw);
}

.about-hero-eyebrow {
    font-family: 'Manrope', sans-serif;
    color: #f0bf5c;
    margin-bottom: 24px;
}

.about-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
}

@media (min-width: 1025px) {
    .about-hero-title {
        font-size: 68px;
        line-height: 76px;
        letter-spacing: -0.03em;
        font-weight: 700;
    }
}

.about-hero-desc {
    font-family: 'Manrope', sans-serif;
    color: #d2c5b1;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.about-hero-scroll {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.about-hero-scroll-icon {
    color: #f0bf5c;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    font-weight: 500;
}

.about-story-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #0d0e0f;
}

.about-story-eyebrow {
    font-family: 'Manrope', sans-serif;
    color: #9b8f7d;
}

.about-story-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    font-weight: 500;
    color: #ffffff;
}

@media (min-width: 1025px) {
    .about-story-heading {
        font-size: 40px;
        line-height: 48px;
    }
}

.about-story-divider {
    width: 80px;
    height: 4px;
    background-color: #f0bf5c;
}

.about-story-body {
    font-family: 'Manrope', sans-serif;
    color: #d2c5b1;
    line-height: 1.625;
}

.about-story-quote {
    font-family: 'Manrope', sans-serif;
    color: #d2c5b1;
    opacity: 0.7;
    border-left: 4px solid #f0bf5c;
    padding: 8px 0 8px 24px;
}

.about-story-cta-wrap {
    padding-top: 48px;
}

.about-story-btn {
    border: 1px solid #f0bf5c;
    color: #f0bf5c;
    padding: 12px 48px;
    border-radius: 8px;
}

.about-story-btn:hover {
    background-color: rgba(240, 191, 92, 0.1);
}

.about-story-image-glow {
    inset: -16px;
    background-color: rgba(240, 191, 92, 0.2);
    border-radius: 12px;
    filter: blur(40px);
}

.group:hover .about-story-image-glow {
    background-color: rgba(240, 191, 92, 0.3);
}

.about-story-image-card {
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-stats-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #131314;
}

.about-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
    color: #f0bf5c;
}

@media (min-width: 1025px) {
    .about-stat-value {
        font-size: 60px;
    }
}

.about-stat-label {
    font-family: 'Manrope', sans-serif;
    color: #d2c5b1;
    margin-top: 12px;
}

.about-philosophy-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #1b1c1c;
}

.about-philosophy-header {
    margin-bottom: 80px;
}

.about-philosophy-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 24px;
}

@media (min-width: 1025px) {
    .about-philosophy-heading {
        font-size: 72px;
        line-height: 80px;
        letter-spacing: -0.03em;
        font-weight: 600;
    }
}

.about-philosophy-desc {
    font-family: 'Manrope', sans-serif;
    color: #d2c5b1;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.7;
}

.about-value-card {
    padding: 25px;
    border-radius: 12px;
}

.about-value-card:hover {
    translate: 0 -6px !important;
    scale: 1.03 !important;
}

.about-value-icon-wrap {
    width: 64px;
    height: 64px;
    background-color: rgba(240, 191, 92, 0.1);
    margin-bottom: 24px;
}

.about-value-icon {
    color: #f0bf5c;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    font-weight: 500;
}

.about-value-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.01em;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
}

@media (min-width: 1025px) {
    .about-value-title {
        font-size: 24px;
        line-height: 40px;
    }
}

.about-value-desc {
    font-family: 'Manrope', sans-serif;
    color: #d2c5b1;
    opacity: 0.8;
    line-height: 1.625;
}

.about-timeline-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #131314;
}

.about-timeline-header {
    margin-bottom: 80px;
}

.about-timeline-eyebrow {
    font-family: 'Manrope', sans-serif;
    color: #f0bf5c;
}

.about-timeline-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: #ffffff;
    margin-top: 12px;
}

@media (min-width: 1025px) {
    .about-timeline-heading {
        font-size: 72px;
        line-height: 80px;
        letter-spacing: -0.03em;
        font-weight: 600;
    }
}

.about-timeline-rows>*+* {
    margin-top: 80px;
}

.about-timeline-pad-right {
    padding-right: 0;
}

.about-timeline-pad-left {
    padding-left: 0;
}

@media (min-width: 768px) {
    .about-timeline-pad-right {
        padding-right: 48px;
    }

    .about-timeline-pad-left {
        padding-left: 48px;
    }
}

.about-timeline-dot {
    width: 40px;
    height: 40px;
    background-color: #f0bf5c;
}

.about-timeline-dot-core {
    width: 16px;
    height: 16px;
    background-color: #131314;
}

.about-timeline-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    font-weight: 600;
    color: #f0bf5c;
}

@media (min-width: 1025px) {
    .about-timeline-year {
        font-size: 40px;
        line-height: 48px;
    }
}

.about-timeline-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

@media (min-width: 1025px) {
    .about-timeline-title {
        font-size: 24px;
        line-height: 32px;
    }
}

.about-timeline-desc {
    color: #d2c5b1;
    opacity: 0.7;
}

.about-leadership-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #0d0e0f;
}

.about-leadership-header {
    margin-bottom: 80px;
}

.about-leadership-eyebrow {
    font-family: 'Manrope', sans-serif;
    color: #9b8f7d;
}

.about-leadership-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.01em;
    font-weight: 500;
    color: #ffffff;
    margin-top: 12px;
}

@media (min-width: 1025px) {
    .about-leadership-heading {
        font-size: 56px;
        line-height: 64px;
        letter-spacing: -0.02em;
    }
}

.about-leadership-cta {
    color: #f0bf5c;
}

.about-leadership-cta-icon {
    margin-left: 8px;
}

.about-leader-photo-wrap {
    border-radius: 12px;
    margin-bottom: 24px;
}

.about-leader-overlay {
    opacity: 0.6;
}

.about-leader-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.01em;
    font-weight: 500;
    color: #ffffff;
}

@media (min-width: 1025px) {
    .about-leader-name {
        font-size: 24px;
        line-height: 32px;
        padding-inline: 10px;
    }
}

.about-leader-role {
    font-family: 'Manrope', sans-serif;
    color: #f0bf5c;
    margin-top: 4px;
    padding-inline: 10px;
    padding-bottom: 15px;
}

.about-partners-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #131314;
}

.about-partners-col-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #f0bf5c;
    margin-bottom: 8px;
}

@media (min-width: 1025px) {
    .about-partners-col-heading {
        font-size: 16px;
        line-height: 22px;
    }
}

.about-industries-header {
    margin-bottom: 48px;
}

.about-industries-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    font-weight: 500;
    color: #ffffff;
}

@media (min-width: 1025px) {
    .about-industries-heading {
        font-size: 40px;
        line-height: 48px;
    }
}

.about-industries-grid {
    gap: 24px;
}

.about-industry-card {
    padding: 32px 24px;
}

.about-industry-card:hover {
    translate: 0 -6px !important;
    scale: 1.03 !important;
}

.about-industry-icon {
    display: block;
    color: #f0bf5c;
    font-size: 36px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}

.about-industry-title {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #e4e2e2;
}

@media (min-width: 1025px) {
    .about-industry-card {
        padding: 40px 24px;
    }

    .about-industry-icon {
        font-size: 40px;
    }

    .about-industry-title {
        font-size: 18px;
        line-height: 26px;
    }
}

.about-partners-grid {
    gap: 48px;
}

.about-partner-logo-wrap {
    height: 48px;
    opacity: 0.3;
}

.about-partner-logo-wrap:hover {
    opacity: 1;
}

.about-partner-logo-text {
    font-family: 'Space Grotesk', sans-serif;
}

.about-awards-list>*+* {
    margin-top: 24px;
}

.about-award-item {
    gap: 24px;
    padding-bottom: 24px;
}

.about-award-icon {
    color: #f0bf5c;
}

.about-award-title {
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
}

@media (min-width: 1025px) {
    .about-award-title {
        font-size: 20px;
        line-height: 28px;
    }
}

.about-award-subtitle {
    color: #d2c5b1;
}

.about-cta-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f0bf5c;
}

.about-cta-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: #412d00;
    margin-bottom: 48px;
}

@media (min-width: 1025px) {
    .about-cta-heading {
        font-size: 56px;
        line-height: 64px;
        font-weight: 500;
    }
}

.about-cta-actions {
    gap: 24px;
}

.about-cta-btn-primary {
    background-color: #412d00;
    color: #f0bf5c;
    padding: 16px 54px;
    border-radius: 8px;
}

.about-cta-btn-secondary {
    border-color: #412d00;
    color: #412d00;
    padding: 16px 80px;
    border-radius: 8px;
}

/* Section spacing must stay a flat 60px top/bottom on tablet and mobile
   (<=1024px) instead of inheriting the desktop 80px on every screen size. */
@media (max-width: 1024px) {

    .about-story-section,
    .about-stats-section,
    .about-philosophy-section,
    .about-timeline-section,
    .about-leadership-section,
    .about-partners-section,
    .about-cta-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-philosophy-header,
    .about-timeline-header,
    .about-leadership-header {
        margin-bottom: 40px;
    }

    .about-timeline-rows>*+* {
        margin-top: 48px;
    }

    .gap-xl {
        gap: 40px;
    }

    .mb-xl {
        margin-bottom: 40px;
    }

    .mt-xl {
        margin-top: 40px;
    }

    .space-y-xl>*+* {
        margin-top: 40px;
    }
}

/* App-like mobile pass: guaranteed hero clearance below the fixed header,
   tighter section rhythm, and smaller display type below 700px. */
@media (max-width: 699px) {
    .about-hero-section {
        padding-top: 90px;
        padding-bottom: 32px;



        .absolute.animate-bounce.about-hero-scroll {
            display: none;
        }
    }




    .about-story-section,
    .about-stats-section,
    .about-philosophy-section,
    .about-timeline-section,
    .about-leadership-section,
    .about-partners-section,
    .about-cta-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .about-hero-title {
        font-size: 30px;
        line-height: 38px;
    }

    .about-story-heading {
        font-size: 26px;
        line-height: 32px;
    }

    .about-industries-heading {
        font-size: 26px;
        line-height: 32px;
    }

    .about-industries-header {
        margin-bottom: 24px;
    }

    .about-industries-grid {
        gap: 16px;
    }

    .about-industry-card {
        padding: 24px 16px;
    }

    .about-philosophy-heading,
    .about-timeline-heading {
        font-size: 28px;
        line-height: 34px;
    }

    .about-value-title {
        font-size: 22px;
        line-height: 28px;
    }

    .about-leadership-heading {
        font-size: 26px;
        line-height: 32px;
    }

    .about-cta-heading {
        font-size: 26px;
        line-height: 32px;
    }

    .about-philosophy-header,
    .about-timeline-header,
    .about-leadership-header {
        margin-bottom: 24px;
    }

    .about-timeline-rows>*+* {
        margin-top: 32px;
    }

    .gap-xl {
        gap: 24px;
    }

    .mb-xl {
        margin-bottom: 24px;
    }

    .mt-xl {
        margin-top: 24px;
    }

    .space-y-xl>*+* {
        margin-top: 24px;
    }

}