/* ============================================================
  THE OXYGEN PLAN™ — WEBSITE CSS
  ============================================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: #3a4a5c;
    background-color: #FFFFFF;
    font-size: 16px;
    line-height: 1.6;
}

.hero-inner .copy p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.72) !important;
}

.copy p,
.copy li {
    color: #3a4a5c;
}

/* ==== KICKER LABELS ==== */
.kicker {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4A90A4;
}

/* ==== HERO SUBHEAD OPACITY EXACT ==== */
.hero .sub {
    font-size: 18px;
    line-height: 1.6;
    color: #667788;
}

/* ==== BODY TEXT ==== */
.copy p {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

/* ==== BULLETS ==== */
.copy li {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

/* ==== BOLD CLOSING LINES ==== */
.bl {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-weight: 600;
    color: #1a2744;
    margin-top: 30px;
}

/* ==== CTA BUTTONS ==== */
.btn-w,
.btn-o,
.btn-s {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
}

/* ==== FORM INPUTS ==== */
.cf input,
.cf textarea {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 15px;
}

/* ==== FOOTER ==== */
.site-footer {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 13px;
}

.f-links a {
    font-size: 12px;
}

.f-legal {
    font-size: 11px;
}

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

/* ---- NAVIGATION ---- */
.nav-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #1a2744;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* keep THIS one */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo img {
    width: 100%;
    max-width: 171px;
    /* margin-top: 8px; */
}

.nav-logo {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.nav-logo span {
    color: #c9a227;
}

.nav-links {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    font-size: 13px;
    color: #fff;
    opacity: 60%;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-links a:hover {
    /* color: #1a2744;
 background-color: #F5F7FA; */
    color: #ffffff;
    background: transparent;
}

/* ---- HERO BANNER ---- */
.hero {
    background-color: #1a2744;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.img_hero_sec{
    opacity: 0.7;
    mix-blend-mode: screen;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    /*grid-template-columns: 1.1fr 1fr;*/
    gap: 48px;
    align-items: center;
    width: 100%;
}

.hero-kicker {
    color: #c9a227;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.hero .sub {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 32px;
}

.hero .cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-w {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    /* background-color: #FFFFFF;
    color: #1a2744;
    font-weight: 700; */
    font-size: 15px;
    border-radius: 8px;
    background-color: #c9a227;
    color: #1a2744;
    font-weight: 700;
}

.btn-w:hover {
    background-color: #b8931f;
}

.btn-o {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.btn-o:hover {
    border-color: #FFFFFF;
}

/* ---- SECTIONS ---- */
.s {
    padding: 80px 0;
}

.s-w {
    background-color: #FFFFFF;
}

.s-g {
    background-color: #F5F7FA;
}

.s-n {
    background-color: #1a2744;
}

.s-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- GRID LAYOUTS ---- */
.grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

/* Text left, image right */
.g-tl {
    grid-template-columns: 1.1fr 1fr;
}

/* Text right, image left */
.g-tr {
    grid-template-columns: 1fr 1.1fr;
}

.g-tr .ct {
    order: 2;
}

.g-tr .ci {
    order: 1;
}

/* Full width (How It Works) */
.g-fw {
    grid-template-columns: 1fr;
    text-align: center;
}

.g-fw .copy-wrap {
    /* max-width: 800px; */
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* ---- TYPOGRAPHY ---- */

.s-n .kicker {
    color: #c9a227;
}

h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.1;
    color: #1a2744;
    margin-bottom: 25px;
    margin-top: 15px;
}

.s-n h2 {
    color: #FFFFFF;
}

.sub {
    font-size: 18px;
    color: #667788;
    line-height: 1.55;
    margin-bottom: 20px;
}

.s-n .sub {
    color: rgba(255, 255, 255, 0.7);
}

.copy p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.s-n .copy p,
.s-n .copy li {
    color: rgba(255, 255, 255, 0.85);
}

.copy ul {
    padding-left: 20px;
    margin: 12px 0 16px;
}

.copy li {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 8px;
}

/* .s-n ul li::marker {
    color: #c9a227;
} */

/* Bold closing lines */
/* .bl {
    font-weight: 700;
    color: #1a2744;
} */

.s-n .bl {
    color: #c9a227;
}

/* ---- IMAGES ---- */
.img-f {
    border-radius: 14px;
    overflow: hidden;
    /* border: 1px solid #e2e8f0; */
}

.s-n .img-f {
    border-color: rgba(255, 255, 255, 0.1);
}

.img-f img {
    display: block;
    width: 100%;
    height: auto;
}

/* #how-it-works .img-f img {
    max-height: 420px;
    object-fit: cover;
}
#how-it-works h2 {
    margin-top: 10px;
} */

/* ---- WARMTH BAND ---- */
.warmth {
    padding: 0;
}

.warmth img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 30%;
}

.warmth-cap {
    text-align: center;
    padding: 16px 0 0;
    font-size: 14px;
    font-style: italic;
    color: #667788;
}

/* ---- CONTACT FORM ---- */
.cf select {
    appearance: none;
}

.cf select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10'%3E%3Cpath fill='%23667788' d='M7 10L0 0h14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    cursor: pointer;
}

.cf input,
.cf textarea,
select {
    display: block;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 14px;
    border: 1px solid #d1d9e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background-color: #FFFFFF;
}

.cf textarea {
    height: 120px;
    resize: vertical;
}

.btn-s {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    /* background-color: #1a2744;
    color: #FFFFFF;
    font-weight: 700; */
    background-color: #c9a227;
    color: #1a2744;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn-s:hover {
    background-color: #b8931f;
}

/* ---- FOOTER ---- */
.site-footer {
    background-color: #1a2744;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    font-size: 13px;
}

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

.f-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.f-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.f-links a:hover {
    color: #FFFFFF;
}

.f-legal {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    width: 100%;
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---- MOBILE ---- */
@media (max-width: 980px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .g-tl,
    .g-tr {
        grid-template-columns: 1fr;
    }

    .g-tr .ct {
        order: 1;
    }

    .g-tr .ci {
        order: 2;
    }

    h2 {
        font-size: 32px !important;
    }

    .nav-links {
        display: none;
    }

    .warmth img {
        height: 280px;
    }
}




.listing_text {
    margin-left: 20px;

}

.listing_text li {
    font-size: 16px;
    line-height: 1.7;
    /* margin-bottom: 12px; */
    margin: 7px 0px;
}

/* =========================
   MOBILE NAV (SAFE / ISOLATED)
   ========================= */

.m-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.m-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
    transition: 0.3s;
}

/* Mobile menu panel */
.m-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #1a2744;
    display: none;
    flex-direction: column;
    padding: 24px;
    z-index: 99;
}

.m-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: #fff;
    opacity: 60%;
    font-weight: 500;
    padding: 16px 0px;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.m-nav a:last-child {
    border-bottom: none;
}

.m-nav a:hover {
    color: #ffffff;
}

/* ACTIVE STATE */
.m-nav.is-open {
    display: flex;
}

/* Responsive trigger */
@media (max-width: 980px) {
    .copyright {
        text-align: center;
    }

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

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

    .m-nav-toggle {
        display: block;
    }
}



/* =========================================================
   A1C PARALLEL TABLE — "How Measurement Standards Work"
   ========================================================= */

.standards-table-wrapper {
    width: 100%;
    max-width: 960px;
    margin: 2rem auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.standards-table-title {
    font-family: "Cambria", "Georgia", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.standards-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Cambria", "Georgia", serif;
    font-size: 0.925rem;
    line-height: 1.5;
    border: 1px solid #ccd5df;
}

.standards-table thead th {
    background-color: #1a2744;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    text-align: left;
    padding: 14px 16px;
    border: 1px solid #1a2744;
}

.standards-table tbody td {
    padding: 12px 16px;
    border: 1px solid #ccd5df;
    vertical-align: top;
    color: #333333;
}

.standards-table tbody td:first-child {
    font-weight: 700;
    color: #1a2744;
}

.standards-table tbody tr:nth-child(odd) {
    background-color: #ebf2f7;
}

.standards-table tbody td:last-child {
    color: #8a919a;
    font-style: italic;
}

.mark-yes {
    color: #1a2744;
    font-weight: 600;
}

.mark-no {
    color: red;
    font-weight: 600;
}



/* Institutional Access Section */
.institutional-access {
    background: #1a2744;
    /* padding: 96px 0; */
    padding-top: 0px;
    background: #1a2744;
    color: #ffffff;

}

.institutional-access .s-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.ia-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c9a227;
    margin-bottom: 12px;
}

.ia-heading {
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.ia-subtitle {
    font-size: 19px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Form box */
.ia-form-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
}

.ia-form-box input,
.ia-form-box select,
.ia-form-box textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 16px;
    font-size: 15px;
    font-family: inherit;
    color: rgb(117 117 108) !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-sizing: border-box;
}

.ia-form-box textarea {
    min-height: 100px;
    resize: vertical;
}

.ia-form-box select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a227' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    color: rgba(255, 255, 255, 0.7);
}

.ia-form-box button {
    width: 100%;
    padding: 16px 32px;
    background: #c9a227;
    color: #1a2744;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

/* Footnote */
.ia-footnote {
    margin-top: 48px;
    font-size: 18px;
    color: #c9a227;
    font-style: italic;
    text-align: center;
    max-width: 600px;
}

#institutional-access {
    background: #1a2744;
}



/* =========================================================
   NEW SECTIONS — RESPONSIVE OVERRIDES (Adjusted to your HTML)
   Paste at END of style.css
   ========================================================= */

/* =========================
   SECTION 1: FIVE THINGS TO KNOW
   ========================= */

/* Five Things — Responsive (<=1024px) */
@media (max-width: 1024px) {
    .hero-inner {
        padding: 0px 24px;
    }

    section {
        padding: 80px 0px !important;
    }

    #five-things .s-inner {
        padding: 0 24px !important;
    }

    #five-things h2 {
        font-size: 42px !important;
    }
}

/* Five Things — Responsive (<=768px) */
@media (max-width: 768px) {
    #five-things {
        padding: 64px 0 !important;
    }

    #five-things .s-inner {
        padding: 0 20px !important;
    }

    #five-things h2 {
        font-size: 32px !important;
        margin-bottom: 40px !important;
    }

    /* Stack grid to single column (targets your inline grid div) */
    #five-things .s-inner>div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* Item padding */
    #five-things .s-inner>div[style*="display: grid"]>div {
        padding: 24px !important;
    }

    /* Item title size (targets inline 26px title blocks) */
    #five-things div[style*="font-size: 26px"] {
        font-size: 22px !important;
    }
}


/* =========================
   SECTION 2: CATEGORY FIRSTS
   ========================= */

/* Category Firsts — Responsive (<=1024px) */
@media (max-width: 1024px) {
    #category-firsts>div {
        padding: 0 32px !important;
    }

    #category-firsts h2 {
        font-size: 38px !important;
    }
}

/* Category Firsts — Responsive (<=768px) */
@media (max-width: 768px) {
    #category-firsts {
        padding: 56px 0 !important;
    }

    #category-firsts>div {
        padding: 0 20px !important;
    }

    #category-firsts h2 {
        font-size: 28px !important;
        margin-bottom: 12px !important;
    }

    /* Subheadline (targets your inline 21px italic paragraph) */
    #category-firsts p[style*="font-size: 21px"] {
        font-size: 18px !important;
        margin-bottom: 40px !important;
    }

    /* Stack grid to single column (targets your inline grid div) */
    #category-firsts div[style*="display: grid"][style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Item padding */
    #category-firsts div[style*="display: grid"][style*="grid-template-columns"]>div {
        padding: 24px !important;
    }

    /* Item title size (targets inline 22px Georgia titles) */
    #category-firsts div[style*="font-size: 22px"][style*="Georgia"] {
        font-size: 20px !important;
    }

    /* Footer note spacing */
    #category-firsts p[style*="text-align: center"][style*="font-size: 14px"] {
        margin-top: 36px !important;
    }
}


/* =========================
   SECTION 3/4: CATEGORY CONTEXT TIMELINE (within Technology & IP)
   ========================= */

/* Timeline container selector (targets your inline navy box inside #technology) */
#technology .s-inner>div[style*="max-width: 950px"][style*="background: #1a2744"] {
    /* no base styles here; only responsive below */
}

/* Category Context Timeline — Responsive (<=1024px) */
@media (max-width: 1024px) {
    #technology .s-inner>div[style*="max-width: 950px"][style*="background: #1a2744"] {
        padding: 0px !important;
    }

    #technology .s-inner>div[style*="max-width: 950px"][style*="background: #1a2744"] h2 {
        font-size: 36px !important;
    }
}

/* Category Context Timeline — Responsive (<=768px) */
@media (max-width: 768px) {
    #technology .s-inner>div[style*="max-width: 950px"][style*="background: #1a2744"] {
        padding: 0px !important;
    }

    #technology .s-inner>div[style*="max-width: 950px"][style*="background: #1a2744"] h2 {
        font-size: 32px !important;
        margin-bottom: 25px !important;
    }

    /* Subheadline (targets inline 20px paragraph) */
    #technology .s-inner>div[style*="max-width: 950px"][style*="background: #1a2744"] p[style*="font-size: 20px"] {
        font-size: 17px !important;
        margin-bottom: 40px !important;
    }

    /* Stack timeline grid to single column (targets inline grid timeline div) */
    #technology .s-inner>div[style*="max-width: 950px"][style*="background: #1a2744"] div[style*="display: grid"][style*="grid-template-columns: 140px 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Hide the vertical timeline line (targets absolute line div) */
    #technology .s-inner>div[style*="max-width: 950px"][style*="background: #1a2744"] div[style*="position: absolute"][style*="width: 2px"] {
        display: none !important;
    }

    /* Timeline date blocks (targets inline right-aligned date divs) */
    #technology .s-inner>div[style*="max-width: 950px"][style*="background: #1a2744"] div[style*="text-align: right"][style*="font-size: 20px"] {
        text-align: left !important;
        padding: 0 0 8px 0 !important;
        font-size: 18px !important;
    }

    /* Hide the dot on mobile (span inside date div) */
    #technology .s-inner>div[style*="max-width: 950px"][style*="background: #1a2744"] div[style*="text-align: right"][style*="font-size: 20px"]>span {
        display: none !important;
    }

    /* Timeline content blocks (targets the content column wrapper) */
    #technology .s-inner>div[style*="max-width: 950px"][style*="background: #1a2744"] div[style*="padding: 16px 0 16px 32px"] {
        padding: 0 0 24px 0 !important;
        border-left: 3px solid #c9a227 !important;
        padding-left: 16px !important;
        margin-bottom: 16px !important;
    }

    /* Closing line paragraph (targets inline 22px closing text) */
    #technology .s-inner>div[style*="max-width: 950px"][style*="background: #1a2744"] p[style*="font-size: 22px"] {
        font-size: 18px !important;
    }

    /* Closing line wrapper spacing */
    #technology .s-inner>div[style*="max-width: 950px"][style*="background: #1a2744"] div[style*="border-top: 1px solid rgba(255,255,255,0.1)"] {
        padding-top: 32px !important;
        margin-top: 40px !important;
    }
}




/* =========================================================
   AI-ERA INFRASTRUCTURE (NEW)
   ========================================================= */

.ai-era {
    background: #1a2744;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.ai-era-inner {
    max-width: 1200px;
}

/* top mini nav line */
.ai-era-topline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 44px;
    position: relative;
    padding-bottom: 18px;
}

.ai-era-topline:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: rgba(201, 162, 39, 0.9);
    opacity: 0.9;
}

.ai-era-topline .active {
    color: #c9a227;
    font-weight: 700;
}

/* grid */
.ai-era-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

/* left content */
.ai-era-kicker {
    color: #c9a227;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ai-era-title {
    color: #ffffff;
}

.ai-era-lead {
    font-size: 20px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 18px;
}

.ai-era-content p {
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.75;
    max-width: 620px;
}

.ai-era-bold {
    margin-top: 22px;
    font-weight: 600;
    color: #c9a227 !important;
}

.ai-era-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
    color: #c9a227;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.ai-era-link span {
    transition: transform 0.2s ease;
}

.ai-era-link:hover span {
    transform: translateX(4px);
}

/* right card */
.ai-era-card-wrap {
    display: flex;
    justify-content: flex-end;
}

.ai-era-card {
    width: 100%;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px 26px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
}

.ai-era-card-title {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.ai-era-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 6px 8px 2px;
}

/* top input boxes */
.ai-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    padding: 12px 14px;
    text-align: center;
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    font-weight: 600;
}

/* spacing + dashed layer */
.ai-spacer {
    height: 6px;
}

.ai-dashed {
    border: 2px dashed rgba(255, 120, 120, 0.55);
    background: rgba(255, 120, 120, 0.08);
    border-radius: 10px;
    padding: 12px 14px;
    text-align: center;
    color: rgba(255, 170, 170, 0.95);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.12em;
}

/* highlight stress number */
.ai-highlight {
    border: 2px solid rgba(201, 162, 39, 0.55);
    background: rgba(201, 162, 39, 0.10);
    border-radius: 10px;
    padding: 12px 14px;
    text-align: center;
    color: #c9a227;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.ai-spacer-sm {
    height: 2px;
}

.ai-era-card-subtitle {
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.20em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    margin-top: 4px;
}

.ai-out {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 11px 14px;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 980px) {
    .ai-era {
        padding: 72px 0;
    }

    .ai-era-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ai-era-card-wrap {
        justify-content: center;
    }

    .ai-era-title {
        font-size: 38px;
    }

    .ai-era-topline {
        margin-bottom: 34px;
    }
}


/* Table scroll hint - HIDDEN on desktop */
.table-scroll-hint {
    display: none;
}

/* Table scroll hint - VISIBLE only on mobile */
@media (max-width: 768px) {
    .table-scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 16px;
        background: #f8f9fa;
        border: 1px solid #e5e7eb;
        border-top: none;
        border-radius: 0 0 6px 6px;
        color: #6b7280;
        font-size: 13px;
        margin-bottom: 16px;
    }
}


.padleftr {
    padding-left: 15px;
    padding-right: 15px;
}
.btn-line{
  display:block;
}
.mt10 {
    margin-top: 10px;
}
@media (max-width: 980px) {
  .img_hero_sec {
    max-width: 500px;
    margin: auto;
  }
}
@media (max-width: 768px) {
 .img_hero_sec { display: none; }
}
.watch-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/*.img_btn_hero {*/
/*    margin-top: 30px;*/
/*}*/
img.img_hero_sec {
    display: none;
}
.hero-inner-warp .hero-kicker {
    text-align: center;
}
.hero-inner-warp h1 {
    text-align: center;
}
.hero-inner-warp p {
    text-align: center;
}
.hero-inner-warp .copy {
    text-align: center;
}
/*.hero-inner-warp .copy .hero .cta-group {*/
/*    justify-content: center;*/
/*}*/
.img_btn_hero {
    height: 76px;
}
.hero-inner-warp .cta-group {
    justify-content: center;
}
 