/*
  BRAND TOKENS — Anthros
  ─────────────────────────────────────────────────
  Source: Technical JSON Export from Figma
  Extracted: 2026-02-26
  Officer: Brand Compliance Officer (Antigravity Agency)
  
  ⚠️ PROTECTED — DO NOT MODIFY MANUALLY.
  ─────────────────────────────────────────────────
*/

@font-face {
    font-family: 'Clarika Pro Grot';
    src: url('assets/fonts/ClarikaProGrot-Rg.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Clarika Pro Grot';
    src: url('assets/fonts/ClarikaProGrot-Lt.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Clarika Pro Grot';
    src: url('assets/fonts/ClarikaProGrot-Md.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Clarika Pro Grot';
    src: url('assets/fonts/ClarikaProGrot-Bd.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Clarika Pro Grot';
    src: url('assets/fonts/ClarikaProGrot-Dm.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Clarika Pro Grot';
    src: url('assets/fonts/ClarikaProGrot-Hvy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Clarika Pro Grot';
    src: url('assets/fonts/ClarikaProGrot-Blk.otf') format('opentype');
    font-weight: 900;
    /* Black — used for H1, H2 headlines */
    font-style: normal;
}

:root {
    /* ── COLORS (From Variable Collection) ── */
    --brand-color-primary: #007ad2;
    /* Color-1: Anthros Blue */
    --brand-color-cyan: #05c9f5;
    /* Color-2 */
    --brand-color-black: #000000;
    /* Color-3 */
    --brand-color-grey-dark: #464646;
    /* Color-4 */
    --brand-color-white: #ffffff;
    /* Color-5 */
    --brand-color-grey-light: #8d8d8d;
    /* Color-6 */
    --brand-color-ivory: #F0ECE6;
    /* Color-7: Anthros Ivory — Figma: color/base/light Cream */
    --brand-color-cyan-light: #e8ffff;
    /* Color-8 */

    /* ── TYPOGRAPHY RULES (Technical Sync) ── */
    --brand-font-primary: 'Clarika Pro Grot', sans-serif;

    /* Headers */
    --brand-h1-large-size: clamp(2.5rem, 3.08vw + 1.73rem, 4.5rem);
    /* 40px -> 72px */
    --brand-h1-large-leading: 1.1;

    --brand-h2-size: clamp(2rem, 3.08vw + 1.23rem, 4rem);
    /* 32px -> 64px */
    --brand-h2-leading: 1.1;

    --brand-h3-size: clamp(1.75rem, 2.69vw + 1.08rem, 3.5rem);
    /* 28px -> 56px */
    --brand-h3-leading: 1.1;
    --brand-h3-tracking: 0.04em;
    --brand-h3-weight: 300;

    --brand-h4-size: clamp(1.5rem, 1.54vw + 1.12rem, 2.5rem);
    /* 24px -> 40px */
    --brand-h4-leading: 1.2;
    --brand-h4-tracking: 0.02em;

    --brand-h5-size: clamp(1.25rem, 0.96vw + 1.01rem, 1.875rem);
    /* 20px -> 30px */
    --brand-h5-leading: 1.3;

    --brand-h6-size: 1.125rem;
    /* 18px */

    /* Messaging & Body */
    --brand-blockquote-size: clamp(1.5rem, 0.48vw + 1.38rem, 1.875rem);
    /* 24px -> 30px (Matches H5) */

    --brand-tagline-size: clamp(0.75rem, 0.57vw + 0.611rem, 1.125rem);
    /* 12px → 18px */

    --brand-body-l-size: 1.25rem;
    /* 20px */

    --brand-body-std-size: 1.125rem;
    /* 18px */
    --brand-body-std-leading: 1.5;

    --brand-nav-link-size: 1rem;
    /* 16px */
    --brand-nav-small-size: 0.75rem;
    /* 12px */

    /* Data & Captions */
    --brand-caption-head-size: 25px;
    --brand-caption-head-leading: 30px;
    --brand-caption-desc-size: 18px;
    --brand-caption-desc-leading: 22.4px;

    /* Impact Statements */
    --brand-impact-size: 55px;
    --brand-impact-leading: 59px;

    /* Spacing (Standard Agency 8pt Scale) */
    --brand-space-1: 4px;
    --brand-space-2: 8px;
    --brand-space-3: 12px;
    --brand-space-4: 16px;
    --brand-space-5: 24px;
    --brand-space-6: 32px;
    --brand-space-7: 48px;
    --brand-space-8: 64px;
    --brand-space-9: 80px;
    --brand-space-10: 120px;

    /* Radius */
    --brand-radius-none: 0px;
    --brand-radius-sm: 4px;
    --brand-radius-md: 8px;
    --brand-radius-pill: 999px;
}

/* ── GLOBAL RESET & BASE ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--brand-font-primary);
    background-color: var(--brand-color-ivory);
    color: var(--brand-color-black);
    line-height: 1.4;
    overflow-x: hidden;
}

body.navbar-mobile-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    text-transform: uppercase;
}

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

.hero-mobile-only {
    display: none !important;
}

.hero-desktop-only {
    display: block !important;
}

/* ── GLOBAL HEADER (Navbar 12830:5292) ── */
.anthros-navbar {
    width: 100%;
    background-color: var(--brand-color-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 40px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
}

.navbar-logo {
    display: flex;
    align-items: center;
    padding: 9.29px 0;
    flex-shrink: 0;
    text-decoration: none;
}

.navbar-logo img {
    height: 49px;
    width: auto;
    display: block;
}

.logo-mobile {
    display: none !important;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 43px;
    list-style: none;
}

.navbar-links a {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-nav-link-size);
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--brand-color-white);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.navbar-links a:hover {
    opacity: 0.6;
}

.navbar-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.navbar-utils {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-utils-icon {
    width: 13px;
    height: 13px;
    display: block;
    flex-shrink: 0;
}

.navbar-utils-sep {
    width: 2px;
    height: 2px;
    background-color: var(--brand-color-white);
    border-radius: 50%;
    flex-shrink: 0;
}

.navbar-utils a {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-nav-small-size);
    line-height: 1;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    color: var(--brand-color-white);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.navbar-utils a:hover {
    opacity: 0.6;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-shop-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 21px;
    border: 1px solid var(--brand-color-white);
    border-radius: var(--brand-radius-pill);
    font-family: var(--brand-font-primary);
    font-weight: 500;
    font-size: var(--brand-body-std-size);
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--brand-color-white);
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.btn-shop-now:hover {
    background-color: var(--brand-color-white);
    color: var(--brand-color-black);
}

.navbar-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.navbar-icon-btn:hover {
    opacity: 0.6;
}

.navbar-icon-btn.user img {
    width: 25px;
    height: 25px;
}

.navbar-icon-btn.cart img {
    width: 27px;
    height: 27px;
}

.navbar-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: var(--brand-color-white);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.navbar-mobile-toggle .icon-close {
    display: none;
}

body.navbar-mobile-open .navbar-mobile-toggle .icon-menu {
    display: none;
}

body.navbar-mobile-open .navbar-mobile-toggle .icon-close {
    display: inline-flex;
}

.navbar-toggle-icon {
    width: 24px;
    height: 24px;
    stroke-width: 1.75;
}

.navbar-mobile-overlay,
.navbar-mobile-panel {
    display: none;
}

/* ── HERO SECTION (12830:4803) ── */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 827px;
    background-color: var(--brand-color-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 140px 0 0;
    /* Removed horizontal padding to allow full bleed */
    overflow: hidden;
}

.hero-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    flex: 1;
}

.hero-media {
    flex: 1 0 0;
    height: 647px;
    position: relative;
    min-width: 0;
    overflow: visible;
}

.hero-chair-img {
    position: absolute;
    top: -140px;
    right: -34px;
    height: 827px;
    width: 100vw;
    max-width: none;
    object-fit: cover;
    object-position: right center;
    display: block;
    z-index: 1;
}

.hero-video-wrap {
    position: absolute;
    left: -60vw;
    right: -34px;
    top: -140px;
    height: 827px;
}

.hero-video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media-fade {
    position: absolute;
    right: -34px;
    top: -140px;
    width: 300px;
    height: 827px;
    pointer-events: none;
}

.hero-media-fade img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-col {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    align-items: center;
    align-self: stretch;
    padding: 0 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--brand-space-4);
    width: 100%;
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-title {
    font-family: var(--brand-font-primary);
    font-weight: 900;
    font-size: var(--brand-h1-large-size);
    line-height: var(--brand-h1-large-leading);
    text-transform: uppercase;
}

.hero-title .word-cyan {
    color: #05c9f5;
}

.hero-title .word-white {
    color: var(--brand-color-white);
}

.hero-subtitle {
    font-family: var(--brand-font-primary);
    font-weight: 700;
    font-size: var(--brand-body-std-size);
    line-height: 1.5;
    color: #e7e7e7;
    max-width: 424px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 46px;
    max-width: 350px;
    background-color: var(--brand-color-white);
    border: 1px solid var(--brand-color-black);
    border-radius: var(--brand-radius-pill);
    font-family: var(--brand-font-primary);
    font-weight: 500;
    font-size: var(--brand-body-l-size);
    line-height: 1.5;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: var(--brand-color-black);
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.btn-explore:hover {
    background-color: var(--brand-color-black);
    color: var(--brand-color-white);
    border-color: var(--brand-color-white);
}

/* ── TEXT BLOCK SECTION (12830:4818) ── */
.text-block-section {
    width: 100%;
    min-height: 498px;
    background-color: var(--brand-color-ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 64px;
    overflow: hidden;
}

.text-block-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 892px;
    text-align: center;
}

.text-block-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.text-block-h2 {
    font-family: var(--brand-font-primary);
    font-weight: 900;
    font-size: var(--brand-h2-size);
    line-height: 1.1;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    color: #121212;
}

.text-block-h2-line2 {
    display: flex;
    align-items: center;
    gap: 16px;
}

.text-block-h2-outline {
    color: transparent;
    -webkit-text-stroke: 2px #121212;
}

.text-block-h2-solid {
    color: #121212;
}

.text-block-body {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    letter-spacing: 0.18px;
    color: #595959;
    max-width: 892px;
    text-align: center;
}

.text-block-body p+p {
    margin-top: 18px;
}

/* ── SPLIT MEDIA RIGHT (12830:4827) ── */
.smr-section {
    width: 100%;
    background-color: #ffffff;
    padding: 112px 40px 40px;
}

.smr-row {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
}

.smr-media {
    flex: 1 0 0;
    height: 647px;
    min-width: 0;
    position: relative;
    overflow: visible;
    border-radius: 4px;
}

.smr-media video,
.smr-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smr-content-col {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.smr-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 100%;
}

.smr-h2 {
    font-family: var(--brand-font-primary);
    font-weight: 900;
    font-size: var(--brand-h2-size);
    line-height: 1.1;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    color: #121212;
}

.smr-body-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.smr-body {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-l-size);
    line-height: 1.5;
    letter-spacing: 0.18px;
    color: #2a2a2a;
}

.smr-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.smr-bullet-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.bullet-x {
    flex-shrink: 0;
    align-self: flex-start;
    width: 10px;
    height: 10px;
    position: relative;
    margin-top: 8px;
}

.bullet-x::before,
.bullet-x::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 13px;
    background-color: #05c9f5;
    border-radius: 1px;
    transform-origin: center;
}

.bullet-x::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.bullet-x::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.smr-bullet-item .smr-body {
    flex: 1;
}

/* ── SPLIT MEDIA LEFT (12830:4859) ── */
.sml-section {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 40px 112px;
}

.sml-row {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
}

.sml-content-col {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.sml-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 100%;
}

.sml-media {
    flex: 1 0 0;
    height: 608px;
    min-width: 0;
    position: relative;
    overflow: visible;
    border-radius: 4px;
}

.sml-media video,
.sml-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sml-h2 {
    font-family: var(--brand-font-primary);
    font-weight: 900;
    font-size: var(--brand-h2-size);
    line-height: 1.1;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    color: #121212;
}

.sml-body-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sml-h5 {
    font-family: var(--brand-font-primary);
    font-weight: 800;
    font-size: var(--brand-h5-size);
    line-height: 1.2;
    letter-spacing: -0.6px;
    text-transform: uppercase;
    color: #121212;
}

.sml-body {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-l-size);
    line-height: 1.5;
    letter-spacing: 0.18px;
    color: #2a2a2a;
}

.sml-body strong {
    font-weight: 700;
}

.sml-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.sml-bullet-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.sml-bullet-tick {
    flex-shrink: 0;
    align-self: flex-start;
    display: block;
    width: 14px;
    height: 20px;
    margin-top: 3px;
    object-fit: contain;
}

.sml-bullet-item .sml-body {
    flex: 1;
}

/* ── UPPER BACK ALIGNMENT SECTION ── */
/* ── UPPER BACK ALIGNMENT SECTION (12830:5030) ── */
.uba-section {
    width: 100%;
    background-color: var(--brand-color-ivory);
    padding: 112px 0;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.uba-inner {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Heading Copy */
.uba-header {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.uba-h2 {
    font-weight: 900;
    font-size: var(--brand-h2-size);
    line-height: 1.1;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    color: #121212;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.uba-h2--outlined {
    color: transparent;
    -webkit-text-stroke: 2px #121212;
}

.uba-header-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    max-width: 828px;
}

.uba-h3 {
    font-weight: 800;
    font-size: var(--brand-h5-size);
    /* Visually H5 (20→30px), semantically H3 */
    line-height: 1.2;
    letter-spacing: -0.6px;
    text-transform: uppercase;
    color: #121212;
}

.uba-body {
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    letter-spacing: 0.18px;
    color: #595959;
}

/* Split Rows */
.uba-split-row {
    display: flex;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.uba-media-col {
    flex: 0 0 640px;
    height: 705px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.uba-media-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uba-video-frame {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    overflow: hidden;
}

.uba-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.uba-tagline {
    font-size: var(--brand-tagline-size);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #121212;
    margin-bottom: 0px;
}

.uba-split-h2 {
    font-weight: 900;
    font-size: var(--brand-h2-size);
    line-height: 1.1;
    letter-spacing: -0.56px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.uba-copy-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.uba-split-body {
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    color: #2a2a2a;
}

.uba-split-body strong,
.uba-split-body.strong {
    font-weight: 800;
}

/* Lists and Icons */
.uba-list-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.uba-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.uba-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.uba-bullet-dot {
    flex-shrink: 0;
    width: 6px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uba-bullet-dot::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--brand-color-cyan);
    border-radius: 50%;
}

.uba-tick-icon {
    width: 14px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 0;
}

.blog-tick-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
}

.blog-tick-list .uba-list-item {
    background-color: #CDF6FF;
    padding: 15px 20px;
    align-items: center;
    gap: 15px;
}

.blog-tick-list .uba-list-item .uba-split-body {
    font-size: var(--brand-body-l-size);
    line-height: 1.4;
    margin: 0;
}

.blog-tick-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 0;
}

/* Testimonial */
.uba-testimonial {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    /* Literal Figma gap */
    width: 100%;
}

.uba-quote-icon {
    width: 72px;
    height: 72px;
    /* Container size */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.uba-quote-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.uba-quote-text {
    font-family: var(--brand-font-primary);
    font-weight: 800;
    font-size: var(--brand-blockquote-size);
    line-height: 1.2;
    color: #121212;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.8px;
    margin: 0;
    max-width: 1184px;
}

.uba-attribution-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    /* Literal gap logo-text */
    margin-top: 22px;
    /* Calculated to achieve 32px gap from text to citation block (32-10) */
}

.uba-logo-waterloo {
    width: 118px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uba-logo-waterloo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.uba-attribution {
    font-family: var(--brand-font-primary);
    font-size: var(--brand-body-l-size);
    font-weight: 400;
    line-height: 1.5;
    color: #121212;
    letter-spacing: 0.2px;
    margin: 0;
}

/* ── WHOLE-SPINE OPTIMIZATION (Dark Block) — 12830:5100 ── */
.wso-section {
    background-color: var(--brand-color-black);
    border: 1px solid #717171;
    border-radius: 8px;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.wso-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.wso-tagline {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-tagline-size);
    line-height: 1;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: var(--brand-color-white);
}

.wso-h2 {
    font-family: var(--brand-font-primary);
    font-weight: 900;
    font-size: var(--brand-h2-size);
    line-height: 1.1;
    letter-spacing: -0.56px;
    text-transform: uppercase;
    color: var(--brand-color-white);
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.wso-h2--cyan {
    color: var(--brand-color-cyan);
}

.wso-body-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.wso-box {
    background-color: rgba(5, 201, 245, 0.07);
    border: 1px solid var(--brand-color-cyan);
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wso-box--desc {
    justify-content: center;
    align-items: center;
}

.wso-box-intro {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.5;
    color: var(--brand-color-white);
}

.wso-list {
    display: flex;
    flex-direction: column;
    gap: 0px;
    list-style: none;
}

.wso-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.wso-tick {
    width: 14px;
    height: 12.5px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 6px;
}

.wso-item-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.5;
    color: var(--brand-color-white);
}

.wso-item-text strong {
    font-weight: 700;
}

.wso-desc-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.5;
    text-align: left;
    color: var(--brand-color-white);
}

/* ── DESIGNED FOR EVERY BODY ── */
.dfeb-h2 {
    font-size: var(--brand-h2-size);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.dfeb-h2 span {
    display: block;
}

.dfeb-h2-line--outlined {
    color: transparent;
    -webkit-text-stroke: 2px #121212;
}

/* ── SCIENCE YOU CAN SIT ON ── */
.uba-science-block {
    background-color: var(--brand-color-white);
    border-radius: 8px;
    padding: 80px 64px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.uba-science-h2 {
    font-size: var(--brand-h2-size);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.uba-science-h2--outlined {
    color: transparent;
    -webkit-text-stroke: 2px #121212;
    margin-left: 0px;
}

.uba-science-copy {
    font-size: var(--brand-body-std-size);
    line-height: 1.5;
    color: #2a2a2a;
}

.uba-science-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.uba-science-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.uba-science-tick {
    width: 32px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── CTA SECTION (12830:5183) ── */
.cta-section {
    width: 100%;
    background-color: var(--brand-color-black);
    padding: 120px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-inner {
    width: 100%;
    max-width: 1360px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.cta-title {
    font-weight: 900;
    font-size: var(--brand-h2-size);
    line-height: 1.1;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-title--cyan {
    color: var(--brand-color-cyan);
}

.cta-title--white {
    color: var(--brand-color-white);
}

.cta-desc {
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    letter-spacing: 0.18px;
    color: #e7e7e7;
    max-width: 800px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-color-white);
    color: var(--brand-color-black);
    padding: 11px 46px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--brand-body-l-size);
    line-height: 1.5;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    transition: transform 0.2s ease, background-color 0.2s ease;
    margin-top: 8px;
}

.cta-btn:hover {
    transform: scale(1.05);
    background-color: #f0f0f0;
}

/* ── GLOBAL FOOTER (12830:5193) ── */
.global-footer {
    width: 100%;
    background-color: var(--brand-color-black);
    color: var(--brand-color-white);
    padding: 50px 40px 40px;
    /* Figma y=50 */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-inner {
    width: 100%;
    max-width: 1360px;
    display: grid;
    grid-template-columns: 277.5px 277.5px 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Exact Figma gap between heading and list */
}

.footer-heading {
    font-family: var(--brand-font-primary);
    font-weight: 900;
    font-size: 18.6px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-color-white);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.59px;
    /*effective row height 25.59px*/
}

.footer-link {
    color: #ffffff;
    font-size: 14.8px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.2s ease;
    opacity: 1;
    white-space: nowrap;
}

.footer-link:hover {
    color: var(--brand-color-cyan);
}

.footer-socials {
    display: flex;
    gap: 8px;
    /* Exact Figma gap */
    margin-top: 16px;
}

.social-btn {
    width: 33.4px;
    /* Exact Figma size 33.396 */
    height: 33.4px;
    border: 0.954px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-btn:hover {
    border-color: var(--brand-color-cyan);
    color: var(--brand-color-cyan);
}

.social-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.social-btn:hover .social-icon {
    filter: brightness(0) saturate(100%) invert(76%) sepia(99%) saturate(349%) hue-rotate(149deg) brightness(101%) contrast(101%);
    /* tint to --brand-color-cyan on hover */
}

.newsletter-col {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 555px;
    /* Exact Figma column width */
}

.newsletter-title {
    font-family: var(--brand-font-primary);
    font-weight: 700;
    font-size: 30.6px;
    line-height: 1.25;
    /* 38.4 / 30.6 */
    margin-bottom: 0;
    color: var(--brand-color-white);
    text-transform: none;
}

.newsletter-desc {
    font-family: var(--brand-font-primary);
    font-size: 17.6px;
    line-height: 1.63;
    /* 28.8 / 17.6 */
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    /* Allow it to fill the grid column */
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-input {
    flex: 1;
    background-color: #323232;
    border: none;
    border-radius: 10px;
    height: 38px;
    padding: 0 16px;
    color: white;
    font-size: 14.1px;
    /* Figma technical value for name inputs */
    font-family: var(--brand-font-primary);
}

.form-input::placeholder {
    color: #eeeeee;
    /* Exact Figma HEX #eee */
    font-weight: 300;
    /* Inter Light */
    opacity: 1;
}

.email-input-wrap {
    flex: 1;
    min-width: 0;
}

.email-input-wrap .form-input {
    width: 100%;
    font-size: 14.3px;
}

.submit-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.form-submit {
    background-color: var(--brand-color-white);
    color: var(--brand-color-black);
    border: none;
    border-radius: 10px;
    height: 38px;
    padding: 0 30px;
    font-size: var(--brand-body-std-size);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.form-submit:hover {
    background-color: var(--brand-color-cyan);
}

.footer-bottom {
    width: 100%;
    max-width: 1360px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.built-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: var(--brand-body-std-size);
    line-height: 1;
    opacity: 1;
    text-transform: uppercase;
}

.flag-icon {
    width: 23px;
    height: 14px;
    object-fit: cover;
}

.copyright {
    color: #ffffff;
    font-size: var(--brand-body-std-size);
    line-height: 1;
    opacity: 1;
}

/* ══════════════════════════════════════════
   SPLIT CARD RIGHT
   Layout: [IMAGE CARD LEFT] [COPY RIGHT]
   Figma node: 12830:4881
   Background: black | padding: 112px 120px 0
   Max-width inner: 1200px | Col gap: 64px
══════════════════════════════════════════ */
.scr-section {
    width: 100%;
    background-color: #000000;
    padding: 112px 120px 0;
    display: flex;
    justify-content: center;
}

.scr-row {
    display: flex;
    gap: 64px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.scr-img-card {
    flex-shrink: 0;
    width: 425px;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.scr-img-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.scr-content {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.scr-h1 {
    display: flex;
    flex-direction: column;
}

.scr-h1-line {
    font-family: var(--brand-font-primary);
    font-weight: 900;
    font-size: 72px;
    line-height: 1.1;
    letter-spacing: -0.72px;
    text-transform: uppercase;
}

.scr-h1-line--white {
    color: #ffffff;
}

.scr-h1-line--cyan {
    color: #05c9f5;
}

.scr-h1-inline-row {
    display: flex;
    gap: 16px;
    align-items: baseline;
}

.scr-body {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    letter-spacing: 0.18px;
    color: #e7e7e7;
}

.scr-body strong {
    font-weight: 700;
}

/* ══════════════════════════════════════════
   SPLIT CARD LEFT
   Layout: [CONTENT LEFT] [IMAGE CARD RIGHT]
   Figma node: 12830:4894
   Background: black | padding: 64px 120px 0
   Max-width inner: 1200px | Col gap: 80px
══════════════════════════════════════════ */
.scl-section {
    width: 100%;
    background-color: #000000;
    padding: 64px 120px 0;
    display: flex;
    justify-content: center;
}

.scl-row {
    display: flex;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.scl-content {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.scl-body-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scl-img-card {
    flex-shrink: 0;
    width: 425px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.scl-img-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.scl-body {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    letter-spacing: 0.18px;
    color: #e7e7e7;
}

.scl-source {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-style: italic;
    font-size: var(--brand-body-small-size);
    line-height: 1.5;
    color: #e7e7e7;
}

.scl-table {
    width: 100%;
    border-collapse: collapse;
}

.scl-table th {
    font-family: var(--brand-font-primary);
    font-weight: 700;
    font-size: var(--brand-body-std-size);
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid #d0d0d0;
}

.scl-table th:first-child {
    border-radius: 4px 0 0 0;
}

.scl-table th:last-child {
    border-radius: 0 4px 0 0;
}

.scl-table td {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    letter-spacing: 0.18px;
    text-align: center;
    color: #e7e7e7;
    padding: 20px;
    border: 1.5px solid #d0d0d0;
}

.scl-table tr:last-child td:first-child {
    border-radius: 0 0 0 4px;
}

.scl-table tr:last-child td:last-child {
    border-radius: 0 0 4px 0;
}

/* ══════════════════════════════════════════
   SPLIT CARD RIGHT — ALT
   Layout: [IMAGE CARD LEFT] [COPY + TICKS RIGHT]
   Figma node: 12830:4922
   Background: black | padding: 64px 120px 112px
   Max-width inner: 1200px | Col gap: 80px
══════════════════════════════════════════ */
.scra-section {
    width: 100%;
    background-color: #000000;
    padding: 64px 120px 112px;
    display: flex;
    justify-content: center;
}

.scra-row {
    display: flex;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.scra-img-card {
    flex-shrink: 0;
    width: 425px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.scra-img-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.scra-content {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.scra-body-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scra-body {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    letter-spacing: 0.18px;
    color: #e7e7e7;
}

.scra-body strong {
    font-weight: 700;
}

.scra-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.scra-bullet-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.scra-bullet-tick {
    flex-shrink: 0;
    align-self: flex-start;
    display: block;
    width: 14px;
    height: 20px;
    margin-top: 3px;
    object-fit: contain;
}

.scra-bullet-item .scra-body {
    flex: 1;
}

/* ══════════════════════════════════════════
   WATERLOO VALIDATION SECTION
   Figma node: 12830:4947
   Bg: ivory | py-112px px-40px | gap-64px
══════════════════════════════════════════ */
.wv-section {
    width: 100%;
    background-color: var(--brand-color-ivory);
    padding: 112px 40px;
    display: flex;
    justify-content: center;
}

.wv-inner {
    width: 100%;
    max-width: 1360px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.wv-header-row {
    display: flex;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.wv-header-content {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.wv-images-content {
    display: flex;
    gap: 30px;
    align-items: stretch;
    width: 100%;
}

.wv-testimonial-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.wv-testimonial-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    /* Fill the parent width to match the image grid above */
}

.tm-quote-icon {
    display: block;
    margin: 0 auto;
    width: 72px;
    height: 72px;
}

.hc-block {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hc-h2 {
    display: flex;
    flex-direction: column;
    font-family: var(--brand-font-primary);
    font-weight: 900;
    font-size: var(--brand-h2-size);
    line-height: 1.1;
    letter-spacing: -0.64px;
    text-transform: uppercase;
}

.hc-h2-line--solid {
    color: #121212;
}

.hc-h2-inline-row {
    display: flex;
    gap: 16px;
    align-items: baseline;
    flex-wrap: wrap;
}

.hc-h2-word--solid {
    color: #121212;
}

.hc-h2-word--outlined {
    color: transparent;
    -webkit-text-stroke: 2px #121212;
}

.hc-body {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    letter-spacing: 0.18px;
    color: #595959;
}

.fc-stack {
    flex-shrink: 0;
    width: 490px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fc-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fc-card-title {
    font-family: var(--brand-font-primary);
    font-weight: 700;
    font-size: var(--brand-body-l-size);
    line-height: 1.3;
    letter-spacing: -0.4px;
    text-transform: uppercase;
    color: #121212;
}

.fc-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.fc-list-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    width: 100%;
}

.fc-tick {
    flex-shrink: 0;
    align-self: flex-start;
    display: block;
    width: 14px;
    height: 26px;
    object-fit: contain;
}

.fc-body {
    flex: 1 0 0;
    min-width: 0;
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    letter-spacing: 0.18px;
    color: #2a2a2a;
}

.ig4-row {
    display: flex;
    gap: 30px;
    align-items: stretch;
    width: 100%;
}

.ig4-slot {
    flex: 1 0 0;
    height: 270px;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.ig4-slot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tm-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.tm-quote-icon {
    display: block;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.tm-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    width: 100%;
    max-width: 1184px;
}

.tm-quote {
    font-family: var(--brand-font-primary);
    font-weight: 800;
    font-size: var(--brand-blockquote-size);
    line-height: 1.2;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    text-align: center;
    color: #121212;
    width: 100%;
}

.tm-attribution {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.tm-logo-pill {
    background-color: #4263a9;
    width: 118px;
    /*padding: 12px 12px 9px 12px;*/
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-logo-pill img {
    display: block;
    width: 100%;
    height: auto;
}

.tm-attribution-text {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-l-size);
    line-height: 1.5;
    letter-spacing: 0.2px;
    text-align: center;
    color: #121212;
}

/* ══════════════════════════════════════════
   DARK WRAPPER (for Technical Blocks)
   Ensures black background for centered components
══════════════════════════════════════════ */
.dark-section-group {
    background-color: #000000;
    color: #ffffff;
    /* Ensures text defaults to white on dark sections */
    padding: 112px 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

/* ══════════════════════════════════════════
   HEADING CENTERED
   Centered tagline + H2 + body text on dark bg
   Figma node: 12830:4997–5001
══════════════════════════════════════════ */
.hcent-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    /* Forced center align for this specific block */
    width: 100%;
    max-width: 1200px;
}

.hcent-headline-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    color: #ffffff;
    text-transform: uppercase;
    width: 100%;
}

.hcent-tagline {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-tagline-size);
    line-height: 1;
    letter-spacing: 3.6px;
    color: #ffffff;
    text-transform: uppercase;
}

.hcent-h2 {
    font-family: var(--brand-font-primary);
    font-weight: 900;
    font-size: var(--brand-h2-size);
    line-height: 1.1;
    letter-spacing: -0.64px;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
}

.hcent-body {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    letter-spacing: 0.18px;
    color: #ffffff;
    text-align: center;
    width: 100%;
}

/* ══════════════════════════════════════════
   TABLE MEDIA
   Bordered card: data table left + image right
   Figma node: 12830:5002
══════════════════════════════════════════ */
.tm-data-card {
    border: 1px solid #b8b8b8;
    border-radius: 4px;
    padding: 24px;
    display: flex;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.tm-left {
    flex: 1 0 0;
    /* Balanced proportion */
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tm-table {
    width: 100%;
    border-collapse: collapse;
}

.tm-table th {
    font-family: var(--brand-font-primary);
    font-weight: 700;
    font-size: var(--brand-body-std-size);
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid #d0d0d0;
    white-space: nowrap;
    /* Ensures headers like 'SIMULATED DISC PRESSURE' stay in one line */
}

.tm-table th:first-child {
    border-radius: 4px 0 0 0;
}

.tm-table th:last-child {
    border-radius: 0 4px 0 0;
}

.tm-table td {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    letter-spacing: 0.18px;
    text-align: center;
    color: #e7e7e7;
    padding: 10px;
    border: 1.5px solid #d0d0d0;
    white-space: nowrap;
    /* Prevents text from breaking into multiple lines */
}

.tm-table tr:last-child td:first-child {
    border-radius: 0 0 0 4px;
}

.tm-table tr:last-child td:last-child {
    border-radius: 0 0 4px 0;
}

.tm-note {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    letter-spacing: 0.18px;
    color: #e7e7e7;
}

.tm-right {
    flex: 1 0 0;
    /* Matches the table column width */
    min-width: 0;
    position: relative;
    overflow: hidden;
    align-self: stretch;
}

.tm-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── RESPONSIVE ── */

/* ── HERO TILT SYSTEM (12830:6627) ── */
.hts-section {
    width: 100%;
    background-color: #000000;
    padding: 190px 40px 110px;
    overflow: hidden;
}

.hts-container {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1360px;
    margin: 0 auto;
    position: relative;
}

.hts-media-col {
    flex-shrink: 0;
    width: 619px;
    height: 647px;
    position: relative;
}

.hts-decoration {
    position: absolute;
    top: -74px;
    left: 0;
    width: 636px;
    height: 794px;
    z-index: 1;
    pointer-events: none;
}

.hts-main-img {
    position: relative;
    z-index: 2;
    width: 619px;
    height: 647px;
    object-fit: cover;
    border-radius: 4px;
}

.hts-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.hts-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 660px;
}

.hts-text-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hts-tagline {
    font-size: var(--brand-body-std-size);
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: #e7e7e7;
    margin: 0;
}

.hts-h2 {
    font-weight: 900;
    font-size: var(--brand-h2-size);
    line-height: 1.1;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    margin: 0;
}

.hts-h2 .cyan {
    color: #05c9f5;
    display: block;
}

.hts-body {
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    letter-spacing: 0.18px;
    color: #e7e7e7;
    margin: 0;
}

.hts-actions {
    padding-top: 16px;
}

.btn-hts {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 11px 46px;
    border-radius: 100px;
    font-weight: 500;
    font-size: var(--brand-body-l-size);
    letter-spacing: 0.2px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #000000;
    transition: all 0.3s ease;
}

.btn-hts:hover {
    background-color: #05c9f5;
    color: #ffffff;
    border-color: #05c9f5;
    transform: translateY(-2px);
}

/* ── HOW TO ACCESS SECTION (12830:6642) ── */
.hta-section {
    width: 100%;
    background-color: var(--brand-color-ivory);
    padding: 80px 40px;
}

.hta-container {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 45px;
    align-items: center;
}

.hta-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hta-h2 {
    font-weight: 900;
    font-size: var(--brand-h2-size);
    line-height: 1.1;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    color: #121212;
}

.hta-h2-outline {
    -webkit-text-stroke: 2px #121212;
    color: transparent;
}

.hta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.step-card {
    background: #F2F1EF;
    border: 1px solid #b9b9b9;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.step-title-group {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1.2px;
    margin: 15px 0 0;
}

.step-number {
    font-size: 35px;
    color: #bdbcbc;
    line-height: 0.99;
}

.step-text {
    font-size: var(--brand-h5-size);
    /* Figma: 30px (text-[30px]) */
    font-weight: 800;
    /* Figma: Clarika Heavy */
    letter-spacing: -1.2px;
    /* Figma: tracking-[-1.2px] */
    color: #000000;
    line-height: 0.99;
    text-transform: none;
}

.step-body {
    font-size: var(--brand-body-std-size);
    line-height: 1.5;
    letter-spacing: 0.18px;
    color: #2a2a2a;
}

.step-body strong {
    font-weight: 700;
}

/* ── SPLIT MEDIA HIGHLIGHT (12830:6675 / 12830:6698) ── */
.smh-section {
    width: 100%;
    padding: 112px 40px;
    background: #ffffff;
}

.smh-row {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1360px;
    margin: 0 auto;
}

.smh-row-reverse {
    flex-direction: row-reverse;
}

.smh-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.smh-title-group {
    display: flex;
    align-items: baseline;
    gap: 12px;
    text-transform: uppercase;
}

.smh-number {
    font-weight: 900;
    /* Figma: Black */
    font-size: var(--brand-h2-size);
    /* Figma: 56px */
    color: #bdbcbc;
    line-height: 1.1;
    text-transform: none;
}

.smh-h2 {
    font-weight: 800;
    /* Figma: Heavy (not Black) */
    font-size: var(--brand-h4-size);
    /* Figma: 40px = H4 token */
    color: #121212;
    line-height: 1.2;
    letter-spacing: -2px;
    /* Figma: letterSpacing -2 */
    text-transform: uppercase;
    /* Figma: uppercase */
}

.smh-highlight-box {
    background-color: #CDF6FF;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.smh-box-label {
    font-weight: 800;
    font-size: var(--brand-body-l-size);
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}

.smh-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.smh-list-horizontal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}

.smh-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--brand-body-std-size);
    color: #000000;
    line-height: 1.4;
}

.smh-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #05c9f5;
    flex-shrink: 0;
}

.smh-body {
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    color: #2a2a2a;
    margin: 0;
}

.smh-body strong {
    font-weight: 700;
}

.smh-media-col {
    flex: 1;
    height: 558px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.smh-media-col video,
.smh-media-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── DETAILED MODES CONTAINER (12830:6671) ── */
.detailed-modes-section {
    padding: 112px 40px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.detailed-modes-header {
    margin-bottom: 30px;
    text-align: center;
}

.detailed-modes-h2 {
    font-weight: 900;
    font-size: var(--brand-h2-size);
    line-height: 1.1;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    color: #121212;
}

/* ── LOCKED POSITIONS SECTION (12830:6721) ── */
.lp-section {
    width: 100%;
    background-color: #000000;
    padding: 112px 40px;
    color: #ffffff;
}

.lp-container {
    max-width: 1360px;
    margin: 0 auto;
}

.lp-header-row {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 64px;
}

.lp-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lp-h2 {
    font-weight: 900;
    font-size: var(--brand-h2-size);
    line-height: 1.1;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    text-align: left;
    margin: 0;
}

.lp-h2 .cyan {
    color: #05c9f5;
}

.lp-intro-text {
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    letter-spacing: 0.18px;
    color: #e7e7e7;
    margin: 0;
}

/* instruction box */
.lp-instruction-box {
    background-color: #CDF6FF;
    padding: 16px;
    border-radius: 8px;
    color: #121212;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-box-title {
    font-weight: 700;
    font-size: var(--brand-body-l-size);
    text-transform: uppercase;
    letter-spacing: -0.4px;
}

.lp-steps {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-step-item {
    display: flex;
    gap: 8px;
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
}

.lp-step-num {
    font-weight: 700;
    color: #05c9f5;
}

.lp-special-note {
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    color: #e7e7e7;
}

.lp-special-note strong {
    font-weight: 700;
    display: block;
}

.lp-header-media {
    flex: 1;
    max-width: 665px;
}

.lp-header-media img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Card Grid */
.lp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.lp-cards-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Tilt Mode Card Dark Variant */
.tm-card-dark {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #b9b9b9;
    border-radius: 4px;
    padding: 30px;
    display: flex;
    gap: 24px;
    color: #ffffff;
}

.tm-img-side {
    width: 236px;
    height: 317px;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.tm-img-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tm-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tm-card-h3 {
    font-weight: 800;
    /* Figma: Heavy */
    font-size: var(--brand-h5-size);
    /* Figma: 30px */
    line-height: 0.99;
    letter-spacing: -1.2px;
    /* Figma: tracking-[-1.2px] */
    text-transform: none;
    /* Figma: mixed case */
    margin: 15px 0 0;
}

.tm-label {
    font-weight: 700;
    font-size: var(--brand-body-l-size);
    color: #e7e7e7;
    letter-spacing: 0.2px;
    margin-bottom: 4px;
}

.tm-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tm-card-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--brand-body-std-size);
    color: #e7e7e7;
    line-height: 1.45;
}

.tm-card-tick {
    width: 14px;
    height: 12px;
}

/* Large Card */
.tm-card-large {
    flex-direction: column;
    height: 100%;
}

.tm-img-large {
    width: 100%;
    height: 388px;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.tm-img-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ── TILT USAGE SECTION (12830:6816) ── */
.tu-section {
    width: 100%;
    background-color: var(--brand-color-ivory);
    padding: 112px 40px;
    display: flex;
    justify-content: center;
}

.tu-row {
    display: flex;
    gap: 80px;
    align-items: stretch;
    width: 100%;
    max-width: 1360px;
}

.tu-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.tu-headline {
    display: flex;
    flex-direction: column;
}

.tu-h2 {
    font-family: var(--brand-font-primary);
    font-weight: 900;
    font-size: var(--brand-h2-size);
    line-height: 1.1;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    color: #121212;
}

.tu-h2--outlined {
    color: transparent;
    -webkit-text-stroke: 2px #121212;
}

.tu-cards-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.tu-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tu-card-header {
    display: flex;
    gap: 16px;
    align-items: center;
}

.tu-card-tick {
    width: 20px;
    height: 16px;
    flex-shrink: 0;
    object-fit: contain;
}

.tu-card-title {
    font-weight: 900;
    font-size: var(--brand-body-l-size);
    letter-spacing: -0.96px;
    text-transform: uppercase;
    color: #000000;
    line-height: 0.99;
}

.tu-card-body {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.5;
    color: #2a2a2a;
}

.tu-card-body strong {
    font-weight: 700;
}

.tu-image-col {
    flex: 0 0 640px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.tu-main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── DECOMPRESS COMPROMISE SECTION (12830:6844) ── */
.dc-section {
    width: 100%;
    background-color: #ffffff;
    padding: 112px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dc-inner {
    width: 100%;
    max-width: 1360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.dc-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.dc-h2 {
    font-family: var(--brand-font-primary);
    font-weight: 900;
    font-size: var(--brand-h2-size);
    line-height: 1.1;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    color: #121212;
}

.dc-h2--outlined {
    color: transparent;
    -webkit-text-stroke: 2px #121212;
}

.dc-body {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    letter-spacing: 0.18px;
    color: #595959;
    max-width: 852px;
}

.dc-image-grid {
    display: flex;
    gap: 16px;
    width: 100%;
    align-items: stretch;
}

.dc-image-slot {
    flex: 1;
    height: 490px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.dc-image-slot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dc-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-top: 32px;
}

.dc-footer-h2 {
    font-family: var(--brand-font-primary);
    font-weight: 900;
    font-size: var(--brand-h3-size);
    line-height: 1.1;
    letter-spacing: -0.4px;
    text-transform: uppercase;
    color: #121212;
    margin: 0;
}

.dc-footer-text {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.45;
    color: #595959;
    margin: 0;
}

/* ── CTA SECTION: FIX YOUR SIT (12830:5183 / 12830:6857) ── */
.cta-section {
    width: 100%;
    background-color: var(--brand-color-black);
    padding: 120px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-inner {
    width: 100%;
    max-width: 1360px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.cta-title {
    font-family: var(--brand-font-primary);
    font-weight: 900;
    font-size: var(--brand-h2-size);
    line-height: 1.1;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-title--cyan {
    color: var(--brand-color-cyan);
}

.cta-title--white {
    color: var(--brand-color-white);
}

.cta-desc {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.45;
    letter-spacing: 0.18px;
    color: #e7e7e7;
    max-width: 800px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-color-white);
    color: var(--brand-color-black);
    padding: 11px 46px;
    border-radius: 100px;
    text-decoration: none;
    font-family: var(--brand-font-primary);
    font-weight: 500;
    font-size: var(--brand-body-l-size);
    line-height: 1.5;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    transition: transform 0.2s ease, background-color 0.2s ease;
    margin-top: 8px;
}

.cta-btn:hover {
    transform: scale(1.05);
    background-color: #f0f0f0;
}

/* ══════════════════════════════════════════
   BLOG PAGE COMPONENTS (Node: 12830:7096)
══════════════════════════════════════════ */

/* ── BLOG HEADER (12830:7097) ── */
.blog-header {
    width: 100%;
    background-color: var(--brand-color-white);
    padding: 170px 150px 90px;
    display: flex;
    justify-content: center;
}

.blog-header-inner {
    max-width: 1300px;
    width: 100%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.blog-header-img-col {
    flex: 1;
    height: 696px;
    border-radius: 4px;
    overflow: hidden;
}

.blog-header-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-header-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bh-meta-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    position: relative;
}

.bh-meta-text {
    display: flex;
    justify-content: space-between;
    font-family: var(--brand-font-primary);
    font-size: var(--brand-body-small-size);
    color: var(--brand-color-black);
    text-transform: uppercase;
    letter-spacing: 0.48px;
    font-weight: 500;
}

.bh-meta-line {
    width: 100%;
    height: 1px;
    background-color: #000000;
}

.bh-title {
    font-family: var(--brand-font-primary);
    font-weight: 800;
    font-size: clamp(1.875rem, 2vw + 1rem, 2.8125rem);
    /* Max 45px per Figma */
    line-height: 0.99;
    letter-spacing: -1.8px;
    text-transform: uppercase;
    color: var(--brand-color-black);
}

.bh-subtitle {
    font-family: var(--brand-font-primary);
    font-weight: 700;
    font-size: clamp(1.25rem, 1vw + 1rem, 1.5625rem);
    /* Max 25px per Figma */
    line-height: 1.1;
    color: var(--brand-color-black);
    text-transform: none;
}

.bh-body {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-l-size);
    line-height: 1.5;
    letter-spacing: 0.2px;
    color: var(--brand-color-black);
    margin: 0;
}

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

/* ── BLOG SECTION SPLIT MEDIA ── */
.blog-split-section {
    width: 100%;
    background-color: var(--brand-color-white);
    padding: 77px 150px;
    display: flex;
    justify-content: center;
}

.blog-split-inner {
    max-width: 1300px;
    width: 100%;
    display: flex;
    gap: 100px;
    align-items: center;
}

.blog-split-inner.reverse {
    flex-direction: row-reverse;
}

.blog-text-col {
    flex: 1;
    max-width: 630px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.blog-media-col {
    flex: 1;
    /* background-color: #f9f9f9; */
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-media-col img,
.blog-media-col video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blog-h2 {
    font-family: var(--brand-font-primary);
    font-weight: 800;
    font-size: clamp(1.875rem, 2vw + 1rem, 2.8125rem);
    /* Max 45px per Figma */
    line-height: 0.99;
    letter-spacing: -1.8px;
    text-transform: uppercase;
    color: var(--brand-color-black);
}

.blog-body {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-l-size);
    line-height: 1.5;
    letter-spacing: 0.2px;
    color: var(--brand-color-black);
    margin: 0;
}

/* ── BLOG FEATURE CONTAINER (LOCKED / UNLOCKED) ── */
.blog-feature-container {
    width: 100%;
    background-color: var(--brand-color-white);
    padding: 20px 150px 80px;
    display: flex;
    justify-content: center;
}

.blog-feature-box {
    width: 100%;
    max-width: 1300px;
    background-color: #f1f1f1;
    border-radius: 12px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bfc-title {
    font-family: var(--brand-font-primary);
    font-weight: 700;
    font-size: var(--brand-h4-size);
    line-height: 1.5;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--brand-color-black);
    text-align: center;
}

.bfc-grid {
    display: flex;
    gap: 15px;
    width: 100%;
}

.bfc-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px;
    background-color: transparent;
}

.bfc-img-wrapper {
    width: 100%;
    height: 254px;
    position: relative;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bfc-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.bfc-content {
    flex: 1;
    padding: 25px 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #CDF6FF;
}

.bfc-content--gray {
    background-color: #CDF6FF;
}

.bfc-num {
    font-family: var(--brand-font-primary);
    font-weight: 900;
    font-size: var(--brand-h4-size);
    /* Fluid scaling */
    line-height: 1.1;
    letter-spacing: 0.7px;
    color: var(--brand-color-black);
}

.bfc-card-title {
    font-family: var(--brand-font-primary);
    font-weight: 700;
    font-size: var(--brand-body-l-size);
    line-height: 1.1;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--brand-color-black);
}

.bfc-card-desc {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-l-size);
    line-height: 1.5;
    letter-spacing: 0.2px;
    color: #222222;
    margin: 0;
}

/* ── BLOG CTA (12830:7205) ── */
.blog-cta {
    width: 100%;
    height: 704px;
    background-color: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-cta-inner {
    max-width: 1300px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 0 150px;
    position: relative;
    z-index: 2;
}

.blog-cta-content {
    max-width: 670px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.blog-cta-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--brand-font-primary);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.84px;
    text-transform: uppercase;
    color: var(--brand-color-black);
}

.blog-cta-rating img {
    height: 12px;
}

.blog-cta-title {
    font-family: var(--brand-font-primary);
    font-weight: 900;
    font-size: var(--brand-h1-large-size);
    /* Fluid scaling */
    line-height: 0.8;
    letter-spacing: -2.25px;
    text-transform: uppercase;
    color: var(--brand-color-black);
    margin: 0;
}

.blog-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-color-black);
    color: var(--brand-color-white);
    padding: 10px 46px;
    border-radius: 100px;
    text-decoration: none;
    font-family: var(--brand-font-primary);
    font-weight: 700;
    font-size: var(--brand-body-l-size);
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.blog-cta-btn:hover {
    transform: scale(1.05);
    background-color: #333333;
}

.blog-cta-bg {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    height: 90%;
    z-index: 1;
}

.blog-cta-bg img {
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to right, transparent, black 15%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%);
}

@media (max-width: 1024px) {

    .hero-container {
        flex-direction: column;
        gap: 60px;
        align-items: center;
        text-align: center;
    }

    .hero-content-col {
        padding: 40px 24px;
        width: 100%;
        max-width: 600px;
    }

    .hero-chair-img {
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: auto;
        min-height: 400px;
        object-position: center;
        display: none;
        /* Hide desktop image */
    }

    .hero-video-wrap {
        width: 100%;
        max-width: 600px;
        height: 400px;
        margin-top: 20px;
    }

    .hero-video {
        border-radius: 8px;
    }

    .blog-header,
    .blog-split-section,
    .blog-feature-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .blog-header-inner,
    .blog-split-inner {
        flex-direction: column;
    }

    .bfc-grid {
        flex-direction: column;
    }

    .blog-cta-inner {
        padding: 0 40px;
    }
}

/* ══════════════════════════════════════════
   NEW BLOG EXTENSIONS (Rogan/Evidence DNA)
══════════════════════════════════════════ */

.aws-split-section {
    width: 100%;
    padding: 90px 150px;
    display: flex;
    justify-content: center;
    background-color: var(--brand-color-white);
}

.aws-split-section.bg-gray {
    background-color: #f1f1f1;
}

.aws-split-inner {
    max-width: 1300px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 95px;
}

.aws-split-inner.reverse {
    flex-direction: row-reverse;
}

.aws-split-img-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.aws-split-img-col img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.aws-split-img-col.stretch {
    align-self: stretch;
}

.aws-split-img-col.stretch img {
    height: 100%;
}

.aws-split-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aws-top-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 5px;
}

.aws-top-text span {
    font-family: var(--brand-font-primary);
    font-size: var(--brand-body-small-size);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--brand-color-black);
    letter-spacing: 0.48px;
}

.aws-h3 {
    font-family: var(--brand-font-primary);
    font-weight: 800;
    font-size: 35px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--brand-color-black);
    margin: 0;
}

.aws-body p {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.5;
    color: var(--brand-color-black);
    margin-bottom: 27px;
}

.aws-body p:last-child {
    margin-bottom: 0;
}

.aws-body ul.d-list {
    font-family: var(--brand-font-primary);
    font-weight: 400;
    font-size: var(--brand-body-std-size);
    line-height: 1.5;
    color: var(--brand-color-black);
    margin-bottom: 27px;
    list-style: disc;
    padding-left: 1.5em;
}

.aws-body ul.d-list li {
    margin-bottom: 10px;
}

.aws-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.aws-checklist li {
    background-color: #cdf6ff;
    padding: 15px 15px 15px 45px;
    font-family: var(--brand-font-primary);
    font-size: var(--brand-body-l-size);
    color: var(--brand-color-black);
    position: relative;
    border-radius: 4px;
}

.aws-checklist li::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23000' d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
}

.aws-no-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.aws-no {
    font-family: var(--brand-font-primary);
    font-size: var(--brand-h2-size);
    font-weight: 900;
    color: #BDBCBC;
    letter-spacing: -0.56px;
    text-transform: uppercase;
    line-height: 1;
}

@media (max-width: 1024px) {
    .aws-split-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .aws-split-inner {
        flex-direction: column !important;
        gap: 40px;
    }
}

/* ══════════════════════════════════════════
   BLOG SUBSCRIBE MODULE
══════════════════════════════════════════ */
.blog-subscribe-module {
    background-color: #f5f5f5;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.blog-subscribe-inner {
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 80px;
}

.bsm-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bsm-title {
    font-family: var(--brand-font-primary);
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-color-black);
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
}

.bsm-desc {
    font-family: var(--brand-font-primary);
    font-size: 14px;
    font-weight: 400;
    color: var(--brand-color-black);
    line-height: 1.6;
    margin: 0;
}

.bsm-form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bsm-input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bsm-input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    background-color: var(--brand-color-white);
    font-family: var(--brand-font-primary);
    font-size: 14px;
    color: #666;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.bsm-input:focus {
    outline: 2px solid var(--brand-color-black);
}

.bsm-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.bsm-radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--brand-font-primary);
    font-size: 13px;
    color: var(--brand-color-black);
    cursor: pointer;
}

.bsm-radio-input {
    appearance: none;
    width: 12px;
    height: 12px;
    border: 1px solid #999;
    border-radius: 50%;
    outline: none;
    position: relative;
    cursor: pointer;
    background-color: transparent;
}

.bsm-radio-input:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: #999;
    border-radius: 50%;
}

.bsm-submit-btn {
    background-color: var(--brand-color-black);
    color: var(--brand-color-white);
    font-family: var(--brand-font-primary);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    padding: 12px 24px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    width: fit-content;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

.bsm-submit-btn:hover {
    background-color: #333;
}

/* Frequency list using branded checklist */
.bsm-frequency-list {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 10px !important;
}

.bsm-frequency-list li {
    padding: 8px 12px 8px 35px !important;
    font-size: 14px !important;
    background-color: transparent !important;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bsm-frequency-list li::before {
    left: 8px !important;
    width: 16px !important;
    height: 16px !important;
    opacity: 0.3;
}

.bsm-frequency-list li.selected {
    background-color: #cdf6ff !important;
    border-color: var(--brand-color-cyan);
}

.bsm-frequency-list li.selected::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .blog-subscribe-inner {
        flex-direction: column;
        gap: 40px;
    }
}