/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Archivo', sans-serif;
    color: #000;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ── Landing Background ── */
.landing {
    position: relative;
}

.landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 700px;
    background: url('assets/workstation-drawing.png') no-repeat;
    background-size: auto 100%;
    background-position: right top;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

/* ── Site Wrapper ── */
.site-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Navigation ── */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 60px;
}

.nav a {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    transition: opacity 0.2s;
}

.nav a:hover {
    opacity: 0.5;
}

/* ── Landing Hero (title + text side by side) ── */
.landing-hero {
    display: flex;
    align-items: center;
    gap: 170px;
    padding: 80px 60px 0;
}

.landing-title {
    font-family: 'Archivo', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    flex: 1;
    min-width: 0;
}

/* ── Hero Section ── */
.hero {
    flex: 0 0 380px;
    margin: 0;
    padding: 12px 0 0;
    max-width: 380px;
}

.hero-text {
    max-width: 480px;
    margin: 0 auto;
    color: #000;
    text-align: justify;
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 2px;
}

.hero-text strong {
    font-weight: 700;
}

/* ── Logo Section ── */
.logo-section {
    padding: 180px 60px 120px; /* to change space */
    text-align: center;
}

.logo-section img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

/* ── Offerings (Hardware + Axon) ── */
.offerings {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 150px;
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 60px 80px;  /* to change space */
}

.offering {
    display: flex;
    flex-direction: column;
}

.offering-title {
    color: #000;
    font-family: 'Archivo', sans-serif;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 24px;
    min-height: 2em;
}

.offering-title a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

.offering-title a:hover {
    opacity: 0.5;
}

.offering-text {
    color: #000;
    font-family: 'Archivo', sans-serif;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 11px;
    text-align: center;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 2px;
    flex: 1;
}

.offering-cta {
    margin-top: 32px;
    text-align: center;
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #000;
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

/* ── Partners ── */
.partners {
    padding: 40px 60px 120px; /* to change space */
    text-align: center;
    background: linear-gradient(to bottom, #fff 0%, #f0f0f0 30%, #e1e0e0 50%, #0a0a0a 100%);
}

.partners-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-title {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.partners-divider {
    width: 260px;
    height: 1px;
    background: #000;
    margin: 0 auto 24px; /* to change space */
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

/* White-on-transparent logos: invert to make them black */
.partner-logo.bpifrance img,
.partner-logo.galion img {
    filter: invert(1);
}

/* White bg logo: multiply hides the white bg */
.partner-logo.nvidia img {
    height: 150px;
    mix-blend-mode: multiply;
}

/* White outline + blue on transparent: make all black */
.partner-logo.future40 img {
    height: 100px;
    filter: brightness(0);
}

.partner-logo.galion img {
    height: 40px;
}

.partner-logo.stationf img {
    height: 24px;
}

.partner-logo.scaleway img {
    height: 30px;
}

.partner-logo.bpifrance img {
    height: 32px;
}

/* ── Modal ── */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: 12px;
    padding: 48px;
    max-width: 420px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #000;
}

.modal-title {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.modal-field {
    margin-bottom: 24px;
}

.modal-field label {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
}

.modal-field input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    outline: none;
    transition: border-color 0.2s;
}

.modal-field input[type="email"]:focus {
    border-color: #000;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #333;
    line-height: 1;
}

.modal-option span {
    line-height: 16px;
}

.modal-option input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    border: 1.5px solid #999;
    border-radius: 50%;
    position: relative;
    top: 1px;
}

.modal-option input[type="radio"]:checked {
    border-color: #000;
}

.modal-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #000;
}

.modal-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.modal-success {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #000;
    padding: 20px 0;
    letter-spacing: 0.5px;
}

/* ── Gradient Transition ── */
.gradient-transition {
    height: 200px;
    background: linear-gradient(to bottom, #fff 0%, #fff 20%, #0a0a0a 100%);
}

/* ── Footer ── */
.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 48px 0;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.footer-top-title {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-newsletter-title {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

.email-input-wrap {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px 20px;
    width: 280px;
    transition: border-color 0.2s;
}

.email-input-wrap:focus-within {
    border-color: #666;
}

.email-input-wrap .at-icon {
    color: #888;
    margin-right: 12px;
    font-size: 18px;
    font-weight: 500;
}

.email-input-wrap input {
    background: transparent;
    border: none;
    outline: none;
    color: #999;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    width: 100%;
}

.email-input-wrap input::placeholder {
    color: #666;
}

.footer-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-links a {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ccc;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-legal {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-legal a {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ccc;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #fff;
}

/* ── Papers Page ── */
.papers-header {
    padding: 36px 60px;
}

.papers-logo img {
    height: 48px;
    width: auto;
}

.papers-section {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 60px 450px;
}

.open-roles-section {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 60px 350px;
}

.papers-title {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 16px;
}

.papers-subtitle {
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 40px;
}

.papers-divider {
    width: 100%;
    height: 1px;
    background: #000;
    margin: 0 0 0;
}

.papers-list {
    display: flex;
    flex-direction: column;
}

.papers-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 24px 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.papers-row:hover {
    opacity: 0.5;
}

.papers-date {
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #888;
    flex-shrink: 0;
    width: 120px;
}

.papers-name {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.5;
    flex: 1;
}

.papers-category {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: capitalize;
    flex-shrink: 0;
    margin-left: 32px;
}

.papers-apply {
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    flex-shrink: 0;
    margin-left: 32px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.papers-divider-light {
    width: 100%;
    height: 1px;
    background: #ccc;
}

/* ── Axon Page ── */
.axon-hero {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 0 60px;
    text-align: center;
}

.axon-title {
    font-family: 'Archivo', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 20px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.axon-subtitle {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 6px;
    color: #555;
    margin-bottom: 32px;
}

.axon-description {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #333;
    max-width: 620px;
    margin: 0 auto 16px;
}

.axon-video {
    max-width: 900px;
    width: 100%;
    margin: 40px auto 48px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16 / 9;
}

.axon-video iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.axon-trust {
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-style: italic;
    color: #888;
    letter-spacing: 2px;
    margin-top: 12px;
    text-align: center;
}

.axon-ctas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #000;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-download:hover {
    background: #333;
}

.btn-download svg {
    flex-shrink: 0;
}

.btn-github {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1.5px solid #000;
    border-radius: 8px;
    color: #000;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn-github:hover {
    background: #000;
    color: #fff;
}

.btn-github svg {
    flex-shrink: 0;
}

.axon-download-note {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 12px;
}

.axon-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 60px;
}

.axon-feature {
    border-top: 1px solid #eee;
    padding-top: 28px;
    display: flex;
    flex-direction: column;
}

.axon-feature-title {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    min-height: 2.4em;
}

.axon-feature-text {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: #444;
}

.axon-section-title {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 48px;
}

.axon-steps-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px 100px;
}

.axon-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.axon-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid #000;
    border-radius: 50%;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.axon-step-title {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
    min-height: 2em;
}

.axon-step-text {
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.3px;
    color: #555;
}

.axon-platforms {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px 100px;
    text-align: center;
}

.axon-platforms-text {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #444;
}

.axon-opensource {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px 140px;
    text-align: center;
}

.axon-opensource-text {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #444;
    margin-bottom: 32px;
}

/* ── Hardware Page ── */
.hardware-title-section {
    text-align: center;
    padding: 60px 60px 0;
}

.hardware-title {
    font-family: 'Archivo', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 14px;
    text-transform: uppercase;
}

.hardware-intro {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #555;
    max-width: 600px;
    margin: 24px auto 0;
    text-align: center;
}

.hardware-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
}

.hardware-content:last-of-type {
    padding-bottom: 160px;
}

.hardware-content--reverse {
    direction: rtl;
}

.hardware-content--reverse > * {
    direction: ltr;
}

.hardware-product-title {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hardware-image img {
    width: 100%;
    height: auto;
}

.hardware-text {
    padding-top: 20px;
}

.hardware-text p {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #222;
    margin-bottom: 24px;
}

.hardware-text strong {
    font-weight: 700;
}

.hardware-features {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
}

.hardware-features li {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 2.2;
}

.hardware-features li::before {
    content: '•';
    margin-right: 10px;
}

/* ── Article Page ── */
.article {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 60px 120px;
}

.article-back {
    display: inline-block;
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 48px;
    transition: color 0.2s;
}

.article-back:hover {
    color: #000;
}

.article-title {
    font-family: 'Archivo', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.article-subtitle {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    letter-spacing: 1px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.article-meta-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.article-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.article-meta-label {
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #888;
}

.article-meta-value {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #000;
}

.article-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 48px;
}

.article h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 56px;
    margin-bottom: 24px;
}

.article h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 36px;
    margin-bottom: 16px;
}

.article p {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: #222;
    margin-bottom: 16px;
}

.article a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article a:hover {
    opacity: 0.5;
}

.article strong {
    font-weight: 700;
}

.article em {
    font-style: italic;
}

.article ul {
    margin: 0 0 16px 24px;
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: #222;
}

.article ul li {
    margin-bottom: 4px;
}

.article-media {
    margin: 32px 0 8px;
    text-align: center;
}

.article-media img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.article-media--sm img {
    max-width: 60%;
}

.article-media--xs img {
    max-width: 45%;
}

.article-media--video {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 380px;
    background: #fff;
}

.article-media--video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: auto;
    min-height: 110%;
    object-fit: cover;
}

.article-caption {
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-style: italic;
    color: #888;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}

.article-references {
    border-top: 1px solid #ddd;
    padding-top: 24px;
    margin-top: 24px;
}

.article-references p {
    font-size: 13px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .landing-hero {
        gap: 60px;
        padding: 60px 40px 0;
    }

    .landing-title {
        font-size: 52px;
    }

    .offering-title {
        font-size: 18px;
        letter-spacing: 10px;
    }
}

@media (max-width: 768px) {
    .landing::before {
        display: none;
    }

    .landing-hero {
        flex-direction: column;
        padding: 40px 24px 0;
        gap: 32px;
    }

    .landing-title {
        font-size: 36px;
    }

    .hero {
        flex: none;
        max-width: 100%;
        padding: 0;
    }

    .hero-text {
        max-width: 100%;
    }

    .logo-section {
        padding: 60px 24px 60px;
    }

    .nav {
        padding: 24px 24px;
        gap: 16px;
    }

    .nav a {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .hero {
        padding: 0 24px;
        margin-top: 40px;
    }

    .hero-text {
        max-width: 100%;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 2px;
    }

    .logo-section {
        padding: 60px 24px 40px;
    }

    .offerings {
        grid-template-columns: 1fr;
        padding: 20px 24px 60px;
        gap: 48px;
    }

    .offering-title {
        font-size: 16px;
        letter-spacing: 8px;
    }

    .offering-text {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 2px;
    }

    .axon-hero {
        margin-top: 40px;
        padding: 0 24px;
    }

    .axon-title {
        font-size: 32px;
        letter-spacing: 14px;
    }

    .axon-subtitle {
        font-size: 15px;
        letter-spacing: 4px;
    }

    .axon-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .axon-features {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 32px;
    }

    .axon-steps-section {
        padding: 0 24px 60px;
    }

    .axon-steps {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .axon-platforms {
        padding: 0 24px 60px;
    }

    .axon-opensource {
        padding: 0 24px 80px;
    }

    .hardware-title-section {
        padding: 40px 24px 0;
    }

    .hardware-title {
        font-size: 22px;
        letter-spacing: 10px;
    }

    .hardware-intro {
        font-size: 13px;
        padding: 0 12px;
    }

    .hardware-content {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 32px;
    }

    .hardware-content:last-of-type {
        padding-bottom: 80px;
    }

    .hardware-content--reverse {
        direction: ltr;
    }

    .hardware-product-title {
        text-align: center;
    }

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

    .hardware-text p,
    .hardware-features {
        text-align: left;
    }

    .hardware-product-title {
        font-size: 18px;
        letter-spacing: 6px;
    }

    .partners {
        padding: 40px 24px 60px;
    }

    .partners-logos {
        gap: 28px;
    }

    .partner-logo img {
        height: 36px !important;
    }

    .partner-logo.future40 img {
        height: 70px !important;
    }

    .partner-logo.stationf img {
        height: 16px !important;
    }

    .partner-logo.nvidia img {
        height: 100px !important;
    }

    .partner-logo.scaleway img {
        height: 24px !important;
    }

    .papers-header {
        padding: 24px 24px;
    }

    .papers-logo img {
        height: 36px;
    }

    .papers-section {
        margin-top: 40px;
        padding: 0 24px 80px;
    }

    .papers-row {
        flex-wrap: wrap;
        gap: 4px;
    }

    .papers-date {
        width: 100%;
        font-size: 12px;
    }

    .papers-name {
        font-size: 14px;
    }

    .papers-category {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .article {
        padding: 0 24px 80px;
    }

    .article-title {
        font-size: 24px;
    }

    .article-media--sm img,
    .article-media--xs img {
        max-width: 100%;
    }

    .article-media--video {
        height: 240px;
    }

    .article-meta-grid {
        flex-direction: column;
        gap: 16px;
    }

    .footer {
        padding: 36px 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 24px;
        gap: 28px;
    }

    .email-input-wrap {
        width: 100%;
        max-width: 300px;
    }

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

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

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