/*
Theme Name: EXRA Clean Room v1.6
Author: EXRA Integrations
Description: EXRA clean-room theme with HD-optimized supplied images and clearer carousel overlays.
Version: 1.6.0
Text Domain: exra-clean-room
*/

:root {

  /* EXRA BRAND */
  --exra-blue: #3f6fc4;
  --exra-blue-dark: #2f5faf;
  --exra-slate: #9eafe0;
  --exra-footer: #eeeeee;


  /* LIGHT APPEARANCE */
  --exra-bg: #ffffff;
  --exra-surface: #ffffff;
  --exra-surface-soft: #f5f5f5;
  --exra-support-bg: #eef2f6;

  --exra-text: #111111;
  --exra-text-secondary: #505050;
  --exra-text-muted: #666666;

  --exra-border: #dddddd;

  --exra-header-bg: #ffffff;

}

/* =========================================================
   EXRA — DARK APPEARANCE COLOUR FOUNDATION
   ========================================================= */

html[data-exra-theme="dark"] {

  --exra-bg: #111820;
  --exra-surface: #18212b;
  --exra-surface-soft: #202b36;

  --exra-text: #f3f5f7;
  --exra-text-secondary: #c4cbd3;
  --exra-text-muted: #98a3ae;

  --exra-border: #34414e;

  --exra-header-bg: #151e27;

  --exra-footer: #1a242e;

  color-scheme: dark;
  --exra-support-bg: #1b2530;

}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--exra-text);
background:var(--exra-bg);

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

/* HEADER */
.exra-header{
  position:sticky;
  top:0;
  z-index:9999;
  height:56px;
 background:var(--exra-header-bg);
border-bottom:1px solid var(--exra-border);
color:var(--exra-text);
}
.exra-header-inner{
  height:100%;
  display:grid;
  grid-template-columns:86px 1fr 86px;
  align-items:center;
  padding:0 10px;
}
.exra-header-left{display:flex;gap:10px;align-items:center}
.exra-icon-button{
  width:31px;height:31px;border:0;background:transparent;padding:0;
  display:flex;align-items:center;justify-content:center
}
.exra-hamburger{display:flex;flex-direction:column;gap:4px}
.exra-hamburger span{width:20px;height:2px;background:#111;display:block}
.exra-search-icon{
  width:17px;
  height:17px;
  border:2px solid var(--exra-text);
  border-radius:50%;
  position:relative;
}

.exra-search-icon:after{
  content:"";
  position:absolute;
  width:7px;
  height:2px;
  background:var(--exra-text);
  right:-6px;
  bottom:-3px;
  transform:rotate(45deg);
}
.exra-brand{justify-self:center;max-width:118px;display:flex;align-items:center}
.exra-brand img{
  display:block;width:100%;height:auto;max-height:31px;object-fit:contain
}
.exra-signin{
  justify-self:end;
  border:1px solid var(--exra-border);
  background:var(--exra-surface);
  color:var(--exra-text);
  padding:7px 10px;
  font-size:14px;
}

/* CAROUSEL */
.exra-carousel{
  position:relative;
  overflow:hidden;
  background:#ddd;
}
.exra-carousel-track{
  display:flex;
  transition:transform .45s ease;
}
.exra-slide{
  flex:0 0 100%;
  position:relative;
  height:275px;
  background:#ddd;
  overflow:hidden;
}
.exra-slide-media{
  width:100%;
  height:100%;
  margin:0;
  overflow:hidden;
  position:relative;
  z-index:1;
}
.exra-slide-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform:translateZ(0);
  backface-visibility:hidden;
}

/* light contrast veil behind overlays only, not across entire image */
.exra-overlay-zone{
  position:absolute;
  left:0;
  bottom:0;
  width:52%;
  height:44%;
  z-index:2;
  background:linear-gradient(90deg,rgba(255,255,255,.92) 0%,rgba(255,255,255,.74) 62%,rgba(255,255,255,0) 100%);
  pointer-events:none;
}

.exra-slide-title{
  position:absolute;
  top:12px;
  left:14px;
  z-index:4;
  display:inline-block;
  padding:7px 11px;
  background:rgba(255,255,255,.94);
  color:#111;
  font-size:19px;
  font-weight:700;
  line-height:1.15;
  box-shadow:0 2px 7px rgba(0,0,0,.14);
  border-radius:2px;
}

.exra-slide-button{
  position:absolute;
  left:14px;
  bottom:20px;
  z-index:4;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  max-width:165px;
  min-height:42px;
  padding:10px 14px;
  background:var(--exra-blue);
  color:#fff;
  font-size:15px;
  font-weight:600;
  line-height:1.2;
  box-shadow:0 3px 9px rgba(0,0,0,.3);
  border-radius:2px;
}
.exra-slide-button:hover,
.exra-slide-button:focus{
  background:var(--exra-blue-dark);
}

.exra-carousel-dots{
  position:absolute;
  bottom:7px;
  left:0;
  right:0;
  z-index:5;
  display:flex;
  justify-content:center;
  gap:6px;
}
.exra-carousel-dot{
  width:7px;height:7px;border:0;border-radius:50%;padding:0;
  background:rgba(0,0,0,.3)
}
.exra-carousel-dot.is-active{
  width:19px;border-radius:8px;background:var(--exra-blue)
}

/* EXPANSION */
.exra-expansion{
  padding:26px 22px 31px;
  background:var(--exra-slate);
  color:#000;
}
.exra-expansion h1{
  margin:0 0 18px;
  font-size:24px;
  line-height:1.15;
  font-weight:500;
  color:#000;
}
.exra-expansion p{
  margin:0;
  max-width:470px;
  font-size:16px;
  line-height:1.55;
  color:#000;
}
.exra-waiting-list-button{
  display:inline-block;
  margin-top:26px;
  padding:10px 15px;
  background:var(--exra-blue);
  color:#fff;
  font-size:15px;
}

/* ECOSYSTEM */
.exra-ecosystem{min-height:285px;background:#f4f4f4}
.exra-ecosystem-placeholder{
  min-height:285px;display:flex;align-items:center;justify-content:center;
  padding:24px;color:#666;text-align:center
}

/* FOOTER */
.exra-footer{
  background:var(--exra-footer);
 color:var(--exra-text);
  padding:30px 22px 24px;
}
.exra-footer-inner{max-width:1050px;margin:auto}
.exra-footer-title{margin:0 0 14px;font-size:16px;font-weight:700}
.exra-footer-copy{margin:0 0 20px;max-width:520px;font-size:14px;line-height:1.6}
.exra-social{display:flex;gap:15px;margin-bottom:24px}
.exra-social a{
  width:34px;height:34px;display:flex;align-items:center;justify-content:center;
  border-radius:8px;color:#fff;font-size:17px;font-weight:700
}
.facebook{background:#1877f2}
.instagram{background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045)}
.tiktok{background:#000}
.youtube{background:#f00}
.exra-footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px 28px
}
.exra-footer-column h3{margin:0 0 10px;font-size:14px}
.exra-footer-column a,
.exra-footer-column p{
  display:block;margin:0 0 8px;font-size:13px;line-height:1.45
}
.exra-footer-bottom{
  margin-top:25px;
  padding-top:16px;
  border-top:1px solid var(--exra-border);
  font-size:12px;
  color:var(--exra-text-secondary);
}
/* =========================================================
   EXRA FOOTER — APPEARANCE CONTROL
   ========================================================= */

.exra-footer-appearance {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;

    margin-top: 28px;
    padding-top: 18px;

    border-top: 1px solid var(--exra-border);
}

.exra-footer-appearance-label {
    margin: 0;

    color: var(--exra-text-secondary);

    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.exra-footer-appearance .exra-theme-control {
    position: relative;
    justify-self: end;
}

.exra-footer-appearance .exra-theme-button {
    min-width: 88px;

    padding: 7px 12px;

    background: var(--exra-surface);
    color: var(--exra-text);

    border: 1px solid var(--exra-border);
    border-radius: 2px;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;

    text-align: center;
    cursor: pointer;
}


/* Dropdown opens upward */

.exra-footer-appearance .exra-theme-menu {
    top: auto;
    bottom: calc(100% + 8px);
    right: 0;

    background: var(--exra-surface);
    border: 1px solid var(--exra-border);
}

.exra-footer-appearance .exra-theme-menu button {
    color: var(--exra-text);
}

.exra-footer-appearance .exra-theme-menu button:hover,
.exra-footer-appearance .exra-theme-menu button:focus-visible {
    background: var(--exra-surface-soft);
    color: var(--exra-blue);
}

 /* =========================================================
   CONTACT PAGE
   ========================================================= */

.exra-contact-page {
    background: var(--exra-bg);
    color: var(--exra-text);
}

.exra-contact-container {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
}


/* HERO */

.exra-contact-hero {
    padding: 72px 0 38px;
}

.exra-contact-kicker {
    display: block;
    margin-bottom: 12px;

    color: var(--exra-blue);

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.exra-contact-hero h1 {
    margin: 0 0 16px;

    color: var(--exra-text);

    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
}

.exra-contact-hero p {
    max-width: 620px;
    margin: 0;

    color: var(--exra-text-secondary);

    font-size: 16px;
    line-height: 1.7;
}


/* FORM AREA */

.exra-contact-form-section {
    padding: 0 0 90px;
}

.exra-contact-form {
    padding: 36px;

    background: var(--exra-surface);

    border: 1px solid var(--exra-border);
}

.exra-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 24px;
}

.exra-contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.exra-contact-field label {
    color: var(--exra-text);

    font-size: 13px;
    font-weight: 600;
}

.exra-contact-field input,
.exra-contact-field textarea {
    width: 100%;
    box-sizing: border-box;

    padding: 13px 14px;

    background: var(--exra-bg);
    color: var(--exra-text);

    border: 1px solid var(--exra-border);
    border-radius: 2px;

    font-family: inherit;
    font-size: 15px;

    outline: none;

    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.exra-contact-field input {
    min-height: 48px;
}

.exra-contact-field textarea {
    resize: vertical;
    min-height: 180px;
}

.exra-contact-field input:focus,
.exra-contact-field textarea:focus {
    border-color: var(--exra-blue);
    box-shadow: 0 0 0 2px rgba(63, 111, 196, .12);
}

.exra-contact-message-field {
    margin-top: 24px;
}

/* FORM STATUS MESSAGE */

.exra-contact-notice {
    margin-bottom: 22px;
    padding: 14px 16px;

    border: 1px solid var(--exra-border);
    border-radius: 2px;

    font-size: 14px;
    line-height: 1.5;
}

.exra-contact-notice-success {
    background: var(--exra-surface-soft);
    color: var(--exra-text);
    border-left: 3px solid #2e7d32;
}

.exra-contact-notice-error {
    background: var(--exra-surface-soft);
    color: var(--exra-text);
    border-left: 3px solid #b3261e;
}
/* SUBMIT */

.exra-contact-submit-wrap {
    margin-top: 26px;

    display: flex;
    justify-content: flex-end;
}

.exra-contact-submit {
    min-height: 48px;

    padding: 0 24px;

    background: var(--exra-blue);
    color: #ffffff;

    border: 0;
    border-radius: 2px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background .18s ease,
        transform .18s ease;
}

.exra-contact-submit:hover,
.exra-contact-submit:focus-visible {
    background: var(--exra-blue-dark);
}

.exra-contact-submit:active {
    transform: translateY(1px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 849px) {

    .exra-contact-container {
        width: min(100% - 28px, 620px);
    }

    .exra-contact-hero {
        padding: 44px 0 28px;
    }

    .exra-contact-hero h1 {
        font-size: 32px;
    }

    .exra-contact-hero p {
        font-size: 14px;
    }

    .exra-contact-form-section {
        padding-bottom: 60px;
    }

    .exra-contact-form {
        padding: 22px 18px;
    }

    .exra-contact-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .exra-contact-message-field {
        margin-top: 18px;
    }

    .exra-contact-submit-wrap {
        justify-content: stretch;
    }

    .exra-contact-submit {
        width: 100%;
    }

}
/* =========================================================
   FAQ PAGE
   ========================================================= */

.exra-faq-page {
    background: var(--exra-bg);
    color: var(--exra-text);
}

.exra-faq-container {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.exra-faq-hero {
    padding: 72px 0 28px;
}

.exra-faq-kicker {
    display: block;
    margin-bottom: 12px;

    color: var(--exra-blue);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.exra-faq-hero h1 {
    margin: 0 0 16px;

    color: var(--exra-text);

    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
}

.exra-faq-hero p {
    max-width: 650px;
    margin: 0;

    color: var(--exra-text-secondary);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   SEARCH
   ========================================================= */

.exra-faq-search-section {
    padding: 12px 0 38px;
}

.exra-faq-search {
    position: relative;
}

.exra-faq-search input {
    width: 100%;
    min-height: 52px;

    box-sizing: border-box;

    padding: 0 18px;

    background: var(--exra-surface);
    color: var(--exra-text);

    border: 1px solid var(--exra-border);
    border-radius: 2px;

    font-family: inherit;
    font-size: 15px;

    outline: none;

    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.exra-faq-search input::placeholder {
    color: var(--exra-text-muted);
}

.exra-faq-search input:focus {
    border-color: var(--exra-blue);
    box-shadow: 0 0 0 2px rgba(63, 111, 196, .12);
}

.exra-faq-no-results {
    margin: 16px 0 0;

    color: var(--exra-text-secondary);

    font-size: 14px;
}


/* =========================================================
   FAQ CONTENT
   ========================================================= */

.exra-faq-section {
    padding: 0 0 90px;
}

.exra-faq-group {
    margin-bottom: 48px;
}

.exra-faq-group h2 {
    margin: 0 0 18px;

    color: var(--exra-text);

    font-size: 20px;
    line-height: 1.3;
}


/* =========================================================
   FAQ ITEM
   ========================================================= */

.exra-faq-item {
    border-top: 1px solid var(--exra-border);
}

.exra-faq-item:last-child {
    border-bottom: 1px solid var(--exra-border);
}

.exra-faq-item summary {
    position: relative;

    padding: 19px 44px 19px 0;

    color: var(--exra-text);

    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;

    cursor: pointer;
    list-style: none;
}

.exra-faq-item summary::-webkit-details-marker {
    display: none;
}


/* PLUS */

.exra-faq-item summary::after {
    content: "+";

    position: absolute;
    top: 50%;
    right: 4px;

    color: var(--exra-blue);

    font-size: 22px;
    font-weight: 400;

    transform: translateY(-50%);
}

.exra-faq-item[open] summary::after {
    content: "−";
}


/* ANSWER */

.exra-faq-answer {
    max-width: 760px;

    padding: 0 44px 20px 0;
}

.exra-faq-answer p {
    margin: 0;

    color: var(--exra-text-secondary);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   RELATED / LEARN MORE LINKS
   ========================================================= */

.exra-faq-related-link {
    display: inline-block;

    margin-top: 14px;

    color: var(--exra-blue);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.exra-faq-related-link:hover,
.exra-faq-related-link:focus-visible {
    text-decoration: underline;
}


/* =========================================================
   CONTACT CTA
   ========================================================= */

.exra-faq-contact-cta {
    margin-top: 66px;

    padding: 34px 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: var(--exra-surface-soft);

    border: 1px solid var(--exra-border);
}

.exra-faq-contact-cta-copy h2 {
    margin: 0 0 8px;

    color: var(--exra-text);

    font-size: 22px;
    line-height: 1.3;
}

.exra-faq-contact-cta-copy p {
    margin: 0;

    color: var(--exra-text-secondary);

    font-size: 14px;
    line-height: 1.6;
}

.exra-faq-contact-button {
    flex: 0 0 auto;

    min-height: 46px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--exra-blue);
    color: #ffffff;

    border-radius: 2px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: background .18s ease;
}

.exra-faq-contact-button:hover,
.exra-faq-contact-button:focus-visible {
    background: var(--exra-blue-dark);
    color: #ffffff;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 849px) {

    .exra-faq-container {
        width: min(100% - 28px, 620px);
    }

    .exra-faq-hero {
        padding: 44px 0 22px;
    }

    .exra-faq-hero h1 {
        font-size: 32px;
    }

    .exra-faq-hero p {
        font-size: 14px;
    }

    .exra-faq-search-section {
        padding-bottom: 32px;
    }

    .exra-faq-search input {
        min-height: 48px;
        font-size: 14px;
    }

    .exra-faq-section {
        padding-bottom: 60px;
    }

    .exra-faq-group {
        margin-bottom: 38px;
    }

    .exra-faq-group h2 {
        font-size: 18px;
    }

    .exra-faq-item summary {
        padding: 17px 38px 17px 0;
        font-size: 14px;
    }

    .exra-faq-answer {
        padding: 0 34px 18px 0;
    }

    .exra-faq-answer p {
        font-size: 13px;
    }

    .exra-faq-contact-cta {
        margin-top: 48px;
        padding: 26px 22px;

        display: block;
    }

    .exra-faq-contact-cta-copy h2 {
        font-size: 20px;
    }

    .exra-faq-contact-button {
        width: 100%;
        box-sizing: border-box;

        margin-top: 22px;
    }


}

 /* =========================================================
   HOME — PLATFORM INTRODUCTION
   MOBILE
   ========================================================= */

@media (max-width: 849px) {

   .exra-home-platform-intro {
    display: block;

    padding: 34px 0 48px;

    background: var(--exra-bg);
    color: var(--exra-text);

    border-top: 1px solid var(--exra-border);
    border-bottom: 1px solid var(--exra-border);
}


    .exra-home-platform-shell {
        width: 100%;
        margin: 0;
    }


    /* No desktop controls on mobile */

    .exra-home-platform-nav {
        display: none;
    }


    /* Mobile always shows Overview only */

    .exra-home-platform-panel {
        display: none !important;
    }

    .exra-home-platform-panel-overview {
        display: block !important;
    }


    /* INTRODUCTION LABEL */

    .exra-home-platform-topic {
        position: relative;

        width: fit-content;

        margin: 0 auto 24px;
        padding: 0 8px 5px;

        color: var(--exra-text);

        font-size: 15px;
        font-weight: 500;
    }


    .exra-home-platform-topic::before {
        content: "";

        position: absolute;

        right: 100%;
        bottom: 0;

        width: 52px;
        height: 1px;

        background: var(--exra-text-secondary);
    }


    .exra-home-platform-topic::after {
        content: "";

        position: absolute;

        right: calc(100% + 47px);
        bottom: -6px;

        width: 0;
        height: 0;

        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 6px solid var(--exra-text-secondary);
    }


    /* OVERVIEW STACK */

    .exra-home-platform-overview-layout {
        display: block;
    }


    .exra-home-platform-content {
        width: 100%;
        min-height: 0;
box-sizing: border-box;

        padding: 28px 30px 32px;

        display: block;
    }


    .exra-home-platform-content-light {
        background: transparent;
        color: var(--exra-text);
    }


    .exra-home-platform-content-light h2 {
        margin: 0 0 18px;

        color: var(--exra-text);

        font-size: 25px;
        line-height: 1.2;
    }


    .exra-home-platform-content p {
        margin: 0 0 18px;

        color: var(--exra-text-secondary);

        font-size: 14px;
        line-height: 1.65;
    }


    .exra-home-platform-content p:last-of-type {
        margin-bottom: 0;
    }


    .exra-home-platform-link {
        display: inline-block;

        margin-top: 20px;

        color: var(--exra-blue);

        font-size: 13px;
        font-weight: 600;

        text-decoration: underline;
        text-underline-offset: 3px;
    }


    /* VIDEO BELOW CONTENT */

    .exra-home-platform-video-wrap {
    display: none;
}

}

/* =========================================================
   HOME — PLATFORM INTRODUCTION
   DESKTOP
   ========================================================= */




@media (min-width: 850px) {
    
   

    .exra-home-platform-intro {
        display: block;

        padding: 28px 0 76px;

        background: var(--exra-bg);
        color: var(--exra-text);
    }


    .exra-home-platform-shell {
        width: min(1130px, calc(100% - 64px));
        margin: 0 auto;

        display: grid;
        grid-template-columns: 215px minmax(0, 1fr);

        gap: 46px;
        align-items: start;
    }


    /* =====================================================
       LEFT TOPIC CONTROL
       ===================================================== */

    .exra-home-platform-nav {
        position: relative;

        padding: 72px 0 0;

        border-right: 1px solid var(--exra-border);
    }


    .exra-home-platform-nav-item {
        width: 100%;

        padding: 17px 18px;

        border: 0;
        border-bottom: 1px solid var(--exra-border);

        background: transparent;
        color: var(--exra-text-muted);

        font-family: inherit;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.2;

        text-align: center;

        cursor: pointer;

        transition:
            color .18s ease,
            font-weight .18s ease;
    }


    .exra-home-platform-nav-item:hover,
    .exra-home-platform-nav-item:focus-visible {
        color: var(--exra-text);
    }


    .exra-home-platform-nav-item.is-active {
        color: var(--exra-text);
        font-weight: 700;
    }


    /* =====================================================
       CONTENT STAGE
       ===================================================== */

    .exra-home-platform-stage {
        min-width: 0;
    }


    .exra-home-platform-panel {
        width: 100%;
    }


    /* INTRODUCTION / PLATFORM / NETWORK LABEL */

    .exra-home-platform-topic {
        position: relative;

        width: fit-content;

        margin: 0 auto 30px;
        padding: 0 8px 5px;

        color: var(--exra-text);

        font-size: 18px;
        font-weight: 500;
        line-height: 1;
    }


    .exra-home-platform-topic::before {
        content: "";

        position: absolute;

        right: 100%;
        bottom: 0;

        width: 72px;
        height: 1px;

        background: var(--exra-text-secondary);
    }


    .exra-home-platform-topic::after {
        content: "";

        position: absolute;

        right: calc(100% + 67px);
        bottom: -7px;

        width: 0;
        height: 0;

        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 7px solid var(--exra-text-secondary);
    }


    /* =====================================================
       OVERVIEW
       Grey content + video
       ===================================================== */

    .exra-home-platform-overview-layout {
        display: grid;

        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(320px, .85fr);

        gap: 12px;
        align-items: stretch;
    }


    .exra-home-platform-content {
        box-sizing: border-box;

        min-height: 445px;

        padding: 34px 46px;

        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    .exra-home-platform-content-light {
        background: #e9e9e9;
        color: #111111;
    }
.exra-home-platform-content-light h2 {
    color: #111111;
}

    .exra-home-platform-content h2 {
        margin: 0 0 24px;

        font-size: 32px;
        line-height: 1.15;
        font-weight: 700;
    }


    .exra-home-platform-content p {
        max-width: 650px;

        margin: 0 0 22px;

        font-size: 16px;
        line-height: 1.62;
    }


    .exra-home-platform-content p:last-of-type {
        margin-bottom: 0;
    }


    /* =====================================================
       VIDEO
       Overview only — no visible frame
       ===================================================== */

    .exra-home-platform-video-wrap {
        position: relative;

        min-height: 445px;

        overflow: hidden;

        background: #ececec;
    }


    .exra-home-platform-video {
        display: block;

        width: 100%;
        height: 100%;

        min-height: 445px;

        object-fit: cover;
    }


    /* =====================================================
       LINK
       ===================================================== */

    .exra-home-platform-link {
        align-self: center;

        margin-top: 22px;

        color: var(--exra-blue);

        font-size: 14px;
        font-weight: 600;

        text-decoration: underline;
        text-underline-offset: 3px;
    }


    .exra-home-platform-link span {
        display: inline-block;

        margin-left: 8px;

        text-decoration: none;
    }


    /* =====================================================
       FULL-WIDTH PANELS
       Case Studies / Projects / Networks
       ===================================================== */

    .exra-home-platform-content-full {
        width: 100%;
        min-height: 445px;

        padding-left: 64px;
        padding-right: 64px;
    }


    /* DARK NETWORK PANELS */

    .exra-home-platform-content-dark {
        background: #414141;
        color: #ffffff;
    }


    .exra-home-platform-content-dark h2 {
        color: #ffffff;
    }


    .exra-home-platform-content-dark p {
        color: #eeeeee;
    }


    .exra-home-platform-link-dark {
        color: #ffffff;
    }

}

/* =========================================================
   MOBILE — PRIMARY BOTTOM NAVIGATION
   Desktop hidden by default
   ========================================================= */

/* =========================================================
   MOBILE — PRIMARY BOTTOM NAVIGATION
   ========================================================= */

.exra-mobile-bottom-nav {
    display: none;
}


/* MOBILE ONLY */

@media (max-width: 849px) {

    .exra-mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;

        z-index: 10020;

        display: grid;
        grid-template-columns: repeat(4, 1fr);

        width: 100%;
        min-height: 66px;

        padding:
            7px
            8px
            calc(7px + env(safe-area-inset-bottom));

        background: #2f3338;

        border-top: 1px solid rgba(255, 255, 255, .10);

        box-shadow:
            0 -6px 18px rgba(0, 0, 0, .14);
    }


    .exra-mobile-bottom-nav-item {
        min-width: 0;

        padding: 4px 3px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;

        border: 0;
        background: transparent;

        color: #ffffff;

        font-family: inherit;
        font-size: 11px;
        font-weight: 500;
        line-height: 1.1;

        text-align: center;
        text-decoration: none;

        cursor: pointer;

        transition:
            color .18s ease,
            opacity .18s ease;
    }


    .exra-mobile-bottom-nav-icon {
        width: 21px;
        height: 21px;

        display: block;

        color: inherit;
    }


    .exra-mobile-bottom-nav-item:hover,
    .exra-mobile-bottom-nav-item:focus-visible {
        color: #ffffff;
        opacity: .82;
    }


    /* Active page / action */

    .exra-mobile-bottom-nav-item.is-active {
        color: var(--exra-blue);
        opacity: 1;
    }


    /* Prevent page content hiding behind fixed nav */

    body {
        padding-bottom:
            calc(72px + env(safe-area-inset-bottom));
    }

}

/* =========================================================
   EXRA PRIVACY POLICY
   Permanent policy workspace
   ========================================================= */

.exra-privacy-page {
    width: 100%;
    background: var(--exra-bg);
    color: var(--exra-text);
}

.exra-policy-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 72px 0 96px;
}


/* =========================================================
   POLICY HEADER
   ========================================================= */

.exra-policy-header {
    max-width: 820px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--exra-border);
}

.exra-policy-eyebrow {
    margin: 0 0 12px;
    color: var(--exra-blue);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.exra-policy-header h1 {
    margin: 0;
    color: var(--exra-text);
    font-size: clamp(36px, 4.3vw, 58px);
    font-weight: 650;
    line-height: 1.05;
    letter-spacing: -.035em;
}

.exra-policy-intro {
    max-width: 700px;
    margin: 20px 0 0;
    color: var(--exra-text-secondary);
    font-size: 17px;
    line-height: 1.7;
}

.exra-policy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin-top: 24px;
    color: var(--exra-text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.exra-policy-meta strong {
    color: var(--exra-text);
    font-weight: 600;
}


/* =========================================================
   POLICY WORKSPACE
   ========================================================= */

.exra-policy-workspace {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 64px;
    align-items: start;
    padding-top: 48px;
}


/* =========================================================
   DESKTOP POLICY NAVIGATION
   ========================================================= */

.exra-policy-navigation {
    min-width: 0;
    position: sticky;
    top: 110px;
    align-self: start;

    /*
     * When the Privacy Policy eventually contains many
     * sections, keep the navigation usable without allowing
     * it to extend beyond the visible browser window.
     */
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    padding-right: 6px;
}

.exra-policy-navigation-inner {
    position: static;
}

.exra-policy-navigation-label {
    display: block;
    margin-bottom: 18px;
    color: var(--exra-text-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.exra-policy-navigation-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.exra-policy-navigation-links a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--exra-text-secondary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    transition:
        background-color .18s ease,
        color .18s ease;
}

.exra-policy-navigation-links a:hover,
.exra-policy-navigation-links a:focus-visible {
    background: var(--exra-surface-soft);
    color: var(--exra-text);
}

.exra-policy-navigation-links a.is-active {
    background: var(--exra-surface-soft);
    color: var(--exra-text);
    font-weight: 650;
}


/* =========================================================
   POLICY CONTENT
   ========================================================= */

.exra-policy-content {
    min-width: 0;
}

.exra-policy-sections {
    width: 100%;
    max-width: 790px;
}

.exra-policy-section {
    padding: 0 0 54px;
    margin: 0 0 54px;
    border-bottom: 1px solid var(--exra-border);
}

.exra-policy-section:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.exra-policy-section-number {
    display: block;
    margin-bottom: 10px;
    color: var(--exra-blue);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .06em;
}

.exra-policy-section h2 {
    margin: 0 0 22px;
    color: var(--exra-text);
    font-size: clamp(25px, 2.5vw, 34px);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.exra-policy-section h3 {
    margin: 32px 0 12px;
    color: var(--exra-text);
    font-size: 18px;
    font-weight: 650;
    line-height: 1.35;
}

.exra-policy-section p {
    margin: 0 0 18px;
    color: var(--exra-text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.exra-policy-section ul,
.exra-policy-section ol {
    margin: 16px 0 22px;
    padding-left: 22px;
    color: var(--exra-text-secondary);
}

.exra-policy-section li {
    margin-bottom: 9px;
    font-size: 15px;
    line-height: 1.7;
}

.exra-policy-section strong {
    color: var(--exra-text);
}


/* =========================================================
   MOBILE POLICY SELECTOR
   Hidden on desktop
   ========================================================= */

.exra-policy-mobile-navigation {
    display: none;
}


/* =========================================================
   PRIVACY POLICY — MOBILE
   ========================================================= */

@media (max-width: 849px) {

    .exra-policy-shell {
        width: 100%;
        padding: 42px 0 64px;
    }

    .exra-policy-header {
        max-width: none;
        margin: 0 22px;
        padding-bottom: 32px;
    }

    .exra-policy-header h1 {
        font-size: 36px;
    }

    .exra-policy-intro {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.65;
    }

    .exra-policy-meta {
        flex-direction: column;
        gap: 6px;
        margin-top: 20px;
    }

    .exra-policy-workspace {
        display: block;
        padding-top: 28px;
    }

    .exra-policy-navigation {
        display: none;
    }

    .exra-policy-mobile-navigation {
    display: block;
    position: sticky;
    top: 68px;
    z-index: 100;
    margin: 0 0 32px;
    padding: 12px 22px;
    background: var(--exra-bg);
    border-bottom: 1px solid var(--exra-border);
}

    .exra-policy-mobile-label {
        display: block;
        margin-bottom: 8px;
        color: var(--exra-text-muted);
        font-size: 11px;
        font-weight: 700;
        line-height: 1.4;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .exra-policy-mobile-select {
        width: 100%;
        min-height: 46px;
        padding: 0 40px 0 14px;
        border: 1px solid var(--exra-border);
        border-radius: 6px;
        background: var(--exra-surface);
        color: var(--exra-text);
        font: inherit;
        font-size: 14px;
        cursor: pointer;
    }

    .exra-policy-content {
        width: 100%;
    }

    .exra-policy-sections {
        max-width: none;
    }

    .exra-policy-section {
        margin: 0;
        padding: 38px 22px;
        border-bottom: 1px solid var(--exra-border);
    }

    .exra-policy-section h2 {
        font-size: 27px;
    }

    .exra-policy-section h3 {
        margin-top: 28px;
        font-size: 17px;
    }

    .exra-policy-section p,
    .exra-policy-section li {
        font-size: 15px;
    }
}

/* =========================================================
   PROJECT REQUEST PAGE
   ========================================================= */

.exra-project-request-page {
    background: var(--exra-bg);
    color: var(--exra-text);
}

.exra-project-request-container {
    width: min(100% - 40px, 900px);
    margin: 0 auto;
}


/* HERO */

.exra-project-request-hero {
    padding: 72px 0 46px;
    background: var(--exra-surface-soft);
    border-bottom: 1px solid var(--exra-border);
}

.exra-project-request-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--exra-text-muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.exra-project-request-hero h1 {
    margin: 0 0 16px;
    color: var(--exra-text);
    font-size: 42px;
    line-height: 1.1;
}

.exra-project-request-hero p {
    max-width: 700px;
    margin: 0;
    color: var(--exra-text-secondary);
    font-size: 17px;
    line-height: 1.65;
}


/* FORM AREA */

.exra-project-request-form-section {
    padding: 56px 0 80px;
}

.exra-project-request-form {
    padding: 32px;
    background: var(--exra-surface);
    border: 1px solid var(--exra-border);
}


/* FIELDS */

.exra-project-request-field {
    margin-bottom: 24px;
}

.exra-project-request-field label {
    display: block;
    margin-bottom: 9px;
    color: var(--exra-text);
    font-size: 15px;
    font-weight: 600;
}

.exra-project-request-field input,
.exra-project-request-field select,
.exra-project-request-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;

    background: var(--exra-surface);
    color: var(--exra-text);

    border: 1px solid var(--exra-border);
    border-radius: 2px;

    font: inherit;
}

.exra-project-request-field select {
    cursor: pointer;
}

.exra-project-request-field input:focus,
.exra-project-request-field select:focus,
.exra-project-request-field textarea:focus {
    outline: 2px solid var(--exra-blue);
    outline-offset: 1px;
}

.exra-project-request-field input::placeholder,
.exra-project-request-field textarea::placeholder {
    color: var(--exra-text-muted);
}

/* PHONE FIELDS */

.exra-project-phone-row {
    display: grid;
    grid-template-columns:
        minmax(190px, 0.75fr)
        minmax(0, 1.25fr);
    gap: 10px;
    align-items: stretch;
}

.exra-project-phone-row .exra-project-phone-code,
.exra-project-phone-row .exra-project-phone-number {
    width: 100%;
    min-width: 0;
}

.exra-project-optional-label {
    color: var(--exra-text-muted);
    font-size: 13px;
    font-weight: 400;
}

.exra-project-phone-help {
    margin: -2px 0 12px;
    color: var(--exra-text-secondary);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 560px) {

    .exra-project-phone-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

}

/* LOCATION */

.exra-project-location-help {
    margin: 0 0 14px;
    color: var(--exra-text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.exra-project-address-search-wrap {
    position: relative;
}

.exra-project-address-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;

    background: var(--exra-surface);
    border: 1px solid var(--exra-border);

    max-height: 260px;
    overflow-y: auto;

    z-index: 50;
}

.exra-project-address-suggestions[hidden] {
    display: none;
}

.exra-project-location-divider {
    display: flex;
    align-items: center;
    gap: 14px;

    margin: 22px 0;
    color: var(--exra-text-muted);

    font-size: 13px;
}

.exra-project-location-divider::before,
.exra-project-location-divider::after {
    content: "";
    flex: 1;

    height: 1px;
    background: var(--exra-border);
}

.exra-project-current-location-button {
    width: 100%;
    min-height: 70px;
    padding: 14px 16px;

    display: flex;
    align-items: center;
    gap: 14px;

    background: var(--exra-surface-soft);
    color: var(--exra-text);

    border: 1px solid var(--exra-border);
    border-radius: 3px;

    font: inherit;
    text-align: left;

    cursor: pointer;

    transition:
        border-color .18s ease,
        transform .18s ease;
}

.exra-project-current-location-button:hover,
.exra-project-current-location-button:focus {
    border-color: var(--exra-blue);
    transform: translateY(-1px);
}

.exra-project-current-location-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--exra-blue);
    border-radius: 50%;

    color: var(--exra-blue);

    font-size: 22px;
    line-height: 1;
}

.exra-project-current-location-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.exra-project-current-location-copy strong {
    color: var(--exra-text);
    font-size: 15px;
    font-weight: 700;
}

.exra-project-current-location-copy span {
    color: var(--exra-text-secondary);
    font-size: 13px;
    line-height: 1.4;
}


.exra-project-current-location-note {
    margin: 10px 0 0;
    color: var(--exra-text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.exra-project-map-location-wrap {
    margin-top: 14px;
}

.exra-project-map-location-button {
    width: 100%;
    min-height: 70px;
    padding: 14px 16px;

    display: flex;
    align-items: center;
    gap: 14px;

    background: var(--exra-surface);
    color: var(--exra-text);

    border: 1px solid var(--exra-border);
    border-radius: 3px;

    font: inherit;
    text-align: left;

    cursor: pointer;

    transition:
        border-color .18s ease,
        transform .18s ease;
}

.exra-project-map-location-button:hover,
.exra-project-map-location-button:focus {
    border-color: var(--exra-blue);
    transform: translateY(-1px);
}

.exra-project-map-location-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--exra-blue);
    border-radius: 50%;

    color: var(--exra-blue);

    font-size: 24px;
    line-height: 1;
    font-weight: 500;
}

.exra-project-map-location-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.exra-project-map-location-copy strong {
    color: var(--exra-text);
    font-size: 15px;
    font-weight: 700;
}

.exra-project-map-location-copy span {
    color: var(--exra-text-secondary);
    font-size: 13px;
    line-height: 1.4;
}

/* PROJECT LOCATION MAP PANEL */

.exra-project-map-panel {
    margin-top: 18px;
    padding: 18px;

    background: var(--exra-surface);
    border: 1px solid var(--exra-border);
    border-radius: 3px;
}

.exra-project-map-panel[hidden] {
    display: none;
}

.exra-project-map-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;

    margin-bottom: 16px;
}

.exra-project-map-panel-header > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.exra-project-map-panel-header strong {
    color: var(--exra-text);
    font-size: 16px;
    font-weight: 700;
}

.exra-project-map-panel-header span {
    color: var(--exra-text-secondary);
    font-size: 13px;
    line-height: 1.5;
}

.exra-project-map-close {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--exra-surface-soft);
    color: var(--exra-text);

    border: 1px solid var(--exra-border);
    border-radius: 50%;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;
}

.exra-project-map-close:hover,
.exra-project-map-close:focus {
    border-color: var(--exra-blue);
}

.exra-project-map-search {
    margin-bottom: 14px;
}

.exra-project-map-search label {
    display: block;
    margin-bottom: 8px;

    color: var(--exra-text);

    font-size: 14px;
    font-weight: 600;
}

.exra-project-map-search-row {
    display: flex;
    gap: 10px;
}

.exra-project-map-search-row input {
    flex: 1;
    min-width: 0;
}

.exra-project-map-search-button {
    min-height: 46px;
    padding: 11px 18px;

    background: var(--exra-blue);
    color: #ffffff;

    border: 1px solid var(--exra-blue);
    border-radius: 2px;

    font: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}

.exra-project-map-search-message {
    min-height: 20px;
    margin-top: 8px;

    color: var(--exra-text-secondary);

    font-size: 13px;
    line-height: 1.4;
}

.exra-project-map-canvas-wrap {
    position: relative;
}

.exra-project-map-locate {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 500;

    min-height: 42px;
    padding: 10px 14px;

    background: #ffffff;
    color: #1a1a1a;

    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 4px;

    font: inherit;
    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);

    cursor: pointer;
}

.exra-project-map-locate:hover {
    background: #f5f5f5;
}

/* Leaflet requires an explicit map height */

.exra-project-map-canvas {
    width: 100%;
    height: 72vh;
    min-height: 620px;
    max-height: 820px;

    background: var(--exra-surface-soft);
    border: 1px solid var(--exra-border);

    overflow: hidden;
}

.exra-project-map-actions {
    margin-top: 16px;
}

.exra-project-map-confirm {
    min-height: 46px;
    padding: 11px 18px;

    background: var(--exra-blue);
    color: #ffffff;

    border: 1px solid var(--exra-blue);
    border-radius: 2px;

    font: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}

.exra-project-map-confirm:disabled {
    opacity: .45;
    cursor: not-allowed;
}

/* LEAFLET MAP LAYER CONTROL */

.exra-project-map-canvas .leaflet-control-layers {
    background: #ffffff;
    color: #1a1a1a;
}

.exra-project-map-canvas .leaflet-control-layers label,
.exra-project-map-canvas .leaflet-control-layers span {
    color: #1a1a1a;
}

.exra-project-map-canvas .leaflet-control-layers-selector {
    accent-color: var(--exra-blue);
}

@media (max-width: 849px) {
    
    .exra-project-map-search-row {
    flex-direction: column;
}

.exra-project-map-search-button {
    width: 100%;
}

    .exra-project-map-panel {
        padding: 14px;
    }

    .exra-project-map-canvas {
    height: 68vh;
    min-height: 460px;
    max-height: 720px;
    }

}

/* LOCATION STATUS */

.exra-project-location-status {
    margin-top: 18px;
    padding: 14px 16px;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    background: var(--exra-surface-soft);
    color: var(--exra-text);

    border: 1px solid var(--exra-border);

    font-size: 14px;
    line-height: 1.5;
}

.exra-project-location-status-icon {
    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 800;
}

.exra-project-location-status-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.exra-project-location-status-copy strong {
    color: var(--exra-text);
    font-size: 14px;
    font-weight: 700;
}

.exra-project-location-status-copy span {
    color: var(--exra-text-secondary);
    font-size: 13px;
}


/* UNVERIFIED STATE */

.exra-project-location-status.is-unverified {
    border-left: 3px solid #a15c00;
}

.exra-project-location-status.is-unverified
.exra-project-location-status-icon {
    background: #a15c00;
    color: #ffffff;
}


/* VERIFIED STATE */

.exra-project-location-status.is-verified {
    border-left: 3px solid #18794e;
}

.exra-project-location-status.is-verified
.exra-project-location-status-icon {
    background: #18794e;
    color: #ffffff;
}
/* SUBMIT */

.exra-project-request-submit-wrap {
    margin-top: 32px;
}

.exra-project-request-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 12px 22px;

    background: var(--exra-blue);
    color: #ffffff;

    border: 1px solid var(--exra-blue);
    border-radius: 2px;

    font: inherit;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform .18s ease,
        opacity .18s ease;
}

.exra-project-request-submit:hover,
.exra-project-request-submit:focus {
    transform: translateY(-1px);
    opacity: .9;
}

/* CONDITIONAL FIELDS */

.exra-project-request-field[hidden] {
    display: none;
}


/* MOBILE */

@media (max-width: 849px) {

    .exra-project-request-container {
        width: min(100% - 28px, 720px);
    }

    .exra-project-request-hero {
        padding: 52px 0 36px;
    }

    .exra-project-request-hero h1 {
        font-size: 34px;
    }

    .exra-project-request-form-section {
        padding: 36px 0 60px;
    }

    .exra-project-request-form {
        padding: 22px 18px;
    }

}

/* DESKTOP */
@media(min-width:850px){
  .exra-header{height:68px}
  .exra-header-inner{
    max-width:1280px;margin:auto;grid-template-columns:130px 1fr 130px;padding:0 24px
  }
  .exra-brand{max-width:165px}
  .exra-brand img{max-height:42px}
  .exra-slide{height:430px}
  .exra-carousel{max-width:920px;margin:auto}
  .exra-slide-title{
    top:18px;left:28px;font-size:23px;padding:9px 13px
  }
  .exra-slide-button{
    left:28px;bottom:28px;font-size:17px;max-width:205px;min-height:48px
  }
  .exra-overlay-zone{
    width:43%;
    height:38%;
  }
  .exra-expansion{padding:38px 7%}
  .exra-expansion h1{font-size:32px}
  .exra-expansion p{font-size:18px;max-width:680px}
  .exra-ecosystem,.exra-ecosystem-placeholder{min-height:410px}
  .exra-footer{padding:42px 7% 28px}
  .exra-footer-grid{
    grid-template-columns:1.6fr 1fr 1fr 1fr;
    gap:34px
  }
}


/* ==========================================================
   v1.4 — ORIGINAL-RATIO MOBILE CAROUSEL
   No forced 16:9 ratio. Each slide uses its source image ratio.
   Foreground title/CTA overlays restored as separate HTML layers.
   ========================================================== */

.exra-carousel{
  position:relative;
  width:100%;
  max-width:none;
  margin:0;
  overflow:hidden;
  background:#f4f4f4;
}

.exra-carousel-track{
  display:flex;
  align-items:flex-start;
  transition:transform .45s ease;
}

.exra-slide{
  flex:0 0 100%;
  position:relative;
  width:100%;
  height:auto !important;
  min-height:0 !important;
  aspect-ratio:auto !important;
  overflow:hidden;
  background:#f4f4f4;
}

.exra-slide-media{
  display:block;
  width:100%;
  height:auto !important;
  margin:0;
  overflow:visible;
  line-height:0;
  background:#f4f4f4;
}

.exra-slide-media img{
  display:block;
  width:100%;
  height:auto !important;
  max-width:100%;
  object-fit:initial !important;
  object-position:initial !important;
  transform:none !important;
}

/* Foreground title: independent of slide artwork */
.exra-slide-title{
  display:block !important;
  position:absolute;
  top:10px;
  left:50%;
  transform:translateX(-50%);
  z-index:10;
  width:max-content;
  max-width:88%;
  padding:6px 11px;
  background:rgba(255,255,255,.93);
  color:#111;
  font-size:18px;
  font-weight:600;
  line-height:1.15;
  text-align:center;
  border-radius:2px;
  box-shadow:0 2px 6px rgba(0,0,0,.16);
}

/* Old CTA concept restored as a true foreground element */
.exra-slide-button{
  display:inline-flex !important;
  position:absolute;
  left:12px;
  bottom:20px;
  z-index:10;
  align-items:center;
  justify-content:center;
  max-width:158px;
  min-height:40px;
  padding:9px 12px;
  background:var(--exra-blue);
  color:#fff;
  font-size:14px;
  font-weight:500;
  line-height:1.22;
  text-align:left;
  border-radius:1px;
  box-shadow:0 3px 8px rgba(0,0,0,.28);
}

.exra-slide-button:hover,
.exra-slide-button:focus{
  background:var(--exra-blue-dark);
  color:#fff;
}

/* Old veil is not needed with the clean no-text HD artwork */
.exra-overlay-zone{
  display:none !important;
}

.exra-carousel-dots{
  z-index:12;
  bottom:5px;
}

@media(max-width:849px){
  .exra-carousel{
    width:100%;
  }

  .exra-slide,
  .exra-slide-media{
    height:auto !important;
    aspect-ratio:auto !important;
  }

  .exra-slide-media img{
    width:100%;
    height:auto !important;
  }
}

@media(min-width:850px){
  .exra-carousel{
    width:100%;
    max-width:920px;
    margin:0 auto;
  }

  .exra-slide,
  .exra-slide-media{
    height:auto !important;
    min-height:0 !important;
    aspect-ratio:auto !important;
  }

  .exra-slide-title{
    top:16px;
    font-size:22px;
    padding:8px 13px;
  }

  .exra-slide-button{
    left:24px;
    bottom:26px;
    max-width:190px;
    min-height:46px;
    padding:10px 14px;
    font-size:16px;
  }
}

/* ==========================================================
   v1.5 — STRUCTURED COORDINATION + APPROACH + ACTIVE AREAS
   ========================================================== */
.exra-section-shell{width:min(100%,1100px);margin:0 auto}
.exra-coordination{
  background:var(--exra-surface-soft);
  padding:38px 22px 34px;
  color:var(--exra-text);
}
.exra-section-kicker{margin:0 0 9px;font-size:13px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#3f6fc4}
.exra-coordination-intro h2,
.exra-active-copy h2{
  margin:0;
  max-width:720px;
  font-size:26px;
  line-height:1.18;
  font-weight:600;
  color:var(--exra-text);
}
.exra-text-link{display:inline-flex;align-items:center;gap:7px;margin-top:17px;color:#3f6fc4;font-size:15px;font-weight:600}
 .exra-approach{
  margin-top:38px;
  padding-top:30px;
  border-top:1px solid var(--exra-border);
}
.exra-approach-copy{margin:0;max-width:720px;font-size:16px;line-height:1.55}
.exra-lifecycle{display:flex;align-items:center;gap:10px;width:100%;margin-top:28px;padding:8px 0 10px;overflow-x:auto;scrollbar-width:none}
.exra-lifecycle::-webkit-scrollbar{display:none}
.exra-lifecycle-step{flex:0 0 78px;display:flex;flex-direction:column;align-items:center;gap:8px;color:var(--exra-text);text-align:center}
.exra-lifecycle-icon{width:48px;height:48px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:var(--exra-surface);color:#3f6fc4;box-shadow:0 3px 10px rgba(0,0,0,.07)}
.exra-lifecycle-icon svg{width:30px;height:30px}
.exra-lifecycle-step span{font-size:12px;font-weight:600}
.exra-lifecycle-arrow{flex:0 0 auto;color:#3f6fc4;font-size:19px;transform:translateY(-10px)}

.exra-active-areas{
  background:var(--exra-bg);
  padding:38px 22px 44px;
  color:var(--exra-text);
}
.exra-active-copy p:last-child{margin:13px 0 0;max-width:620px;font-size:15px;line-height:1.55;color:var(--exra-text-secondary);}
.exra-map-card{margin-top:28px;padding:12px 8px 14px;background:var(--exra-surface-soft);
border:1px solid var(--exra-border);border-radius:14px;overflow:hidden}
.exra-network-map{display:block;width:100%;height:auto}
.exra-route{fill:none;stroke:#c7cbd2;stroke-width:5;stroke-linecap:round;stroke-dasharray:10 10}
.exra-area-node circle{fill:#e54a4a;stroke:#fff;stroke-width:4;transition:fill .5s ease}
.exra-area-node.is-active circle{fill:#f4c542}
.exra-area-node.is-active{filter:drop-shadow(0 4px 8px rgba(244,197,66,.35))}
.exra-home-icon{fill:none;stroke:#fff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.exra-moving-dot{fill:#3f6fc4;stroke:#fff;stroke-width:3;filter:url(#pulseGlow)}
.exra-map-legend{display:flex;align-items:center;justify-content:center;gap:20px;padding:8px 6px 0;font-size:12px;color:var(--exra-text-secondary);}
.exra-map-legend span{display:inline-flex;align-items:center;gap:7px}
.exra-legend-dot{display:inline-block;width:10px;height:10px;border-radius:50%}
.exra-legend-dot.is-yellow{background:#f4c542}.exra-legend-dot.is-red{background:#e54a4a}
.exra-active-areas-button{display:inline-flex;align-items:center;gap:8px;margin-top:22px;padding:11px 16px;background:var(--exra-blue);color:#fff;font-size:15px;font-weight:600;border-radius:2px}

@media(min-width:850px){
  .exra-coordination{padding:58px 7% 50px}
  .exra-coordination-intro h2,.exra-active-copy h2{font-size:38px}
  .exra-approach{margin-top:48px;padding-top:38px}
  .exra-lifecycle{overflow:visible;justify-content:space-between;gap:18px;margin-top:34px}
  .exra-lifecycle-step{flex:0 1 150px}.exra-lifecycle-icon{width:60px;height:60px}.exra-lifecycle-icon svg{width:36px;height:36px}.exra-lifecycle-step span{font-size:14px}.exra-lifecycle-arrow{font-size:24px;transform:translateY(-11px)}
  .exra-active-areas{padding:58px 7% 64px}.exra-map-card{margin-top:34px;padding:20px 22px 16px}.exra-active-copy p:last-child{font-size:17px}
}


/* ==========================================================
   v1.6 — DESKTOP RESPONSIVE LAYER ONLY
   Mobile styling remains untouched.
   ========================================================== */

/* Desktop-only elements hidden on mobile */
.exra-desktop-search,
.exra-desktop-nav,
.exra-desktop-intro,
.exra-verified-network-label{
  display:none;
}

.screen-reader-text{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

@media (min-width:850px){

  /* -------------------------
     DESKTOP STICKY HEADER
     ------------------------- */
  .exra-header{
    height:62px;
  }

  .exra-header-inner{
    max-width:1310px;
    margin:0 auto;
    padding:0 48px;
    display:grid;
    grid-template-columns:190px minmax(260px,1fr) auto;
    gap:34px;
    align-items:center;
  }

  /* Hide mobile controls/sign-in only on desktop */
  .exra-header-left,
  .exra-mobile-signin{
    display:none;
  }

  .exra-brand{
    position:static;
    transform:none;
    justify-self:start;
    max-width:138px;
    width:138px;
  }

  .exra-brand img{
    width:100%;
    height:auto;
    max-height:42px;
    object-fit:contain;
  }

  /* Desktop search BAR */
  .exra-desktop-search{
    display:flex;
    align-items:center;
    width:100%;
    max-width:430px;
    height:38px;
    justify-self:center;
    border:1px solid var(--exra-border);
 background:var(--exra-surface);
    padding:0 12px;
  }

  .exra-desktop-search-icon{
    flex:0 0 auto;
    width:15px;
    height:15px;
    border:1.8px solid #111;
    border-radius:50%;
    position:relative;
    margin-right:10px;
  }

  .exra-desktop-search-icon::after{
    content:"";
    position:absolute;
    width:6px;
    height:1.8px;
    background:#111;
    right:-5px;
    bottom:-3px;
    transform:rotate(45deg);
  }

  .exra-desktop-search input{
    width:100%;
    height:100%;
    border:0;
    outline:0;
    background:transparent;
    color:var(--exra-text);
    font-size:14px;
  }

  .exra-desktop-search input::placeholder{
    color:var(--exra-text-muted);
  }

  /* Desktop nav */
  .exra-desktop-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:36px;
    white-space:nowrap;
  }

  .exra-desktop-nav > a,
.exra-network-menu-button,
.exra-get-started-menu-button{

    font-size:16px;
    line-height:1;
    color:#111111;
    text-decoration:underline;
    text-underline-offset:3px;
}

  .exra-network-menu,
.exra-get-started-menu{
    position:relative;
}

 .exra-network-menu-button,
.exra-get-started-menu-button{
    border:0;
    background:transparent;
    padding:8px 2px;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:8px;
  }

  .exra-dropdown-arrow{
    width:0;
    height:0;
    border-left:7px solid transparent;
    border-right:7px solid transparent;
    border-top:8px solid #111;
    transition:transform .18s ease;
  }

  .exra-network-menu.is-open .exra-dropdown-arrow{
    transform:rotate(180deg);
  }

  .exra-network-dropdown{
    position:absolute;
    top:calc(100% + 8px);
    right:0;
    min-width:210px;
    padding:8px;
    background:#fff;
    border:1px solid #d0d0d0;
    box-shadow:0 10px 24px rgba(0,0,0,.12);
    display:none;
    z-index:10001;
  }

  .exra-network-menu.is-open .exra-network-dropdown{
    display:block;
  }

  .exra-network-dropdown a{
    display:block;
    padding:11px 12px;
    color:#111;
    font-size:14px;
    text-decoration:none;
  }

  .exra-network-dropdown a:hover,
  .exra-network-dropdown a:focus{
    background:#f1f1f1;
  }
  

}
/* GET STARTED DROPDOWN */

.exra-get-started-dropdown{
    position:absolute;
    top:calc(100% + 8px);
    right:0;

    min-width:230px;
    padding:8px;

    background:#ffffff;
    border:1px solid #d0d0d0;
    box-shadow:0 10px 24px rgba(0,0,0,.12);

    display:none;
    z-index:10001;
}

.exra-get-started-menu.is-open .exra-get-started-dropdown{
    display:block;
}

.exra-get-started-menu.is-open .exra-dropdown-arrow{
    transform:rotate(180deg);
}

.exra-get-started-dropdown a{
    display:block;
    padding:11px 12px;

    color:#111111;
    font-size:14px;
    text-decoration:none;
}

.exra-get-started-dropdown a:hover,
.exra-get-started-dropdown a:focus{
    background:#f1f1f1;
}

  .exra-desktop-signin{
    padding:10px 14px;
    background:#050505;
    color:#fff !important;
    text-decoration:none !important;
  }

  /* -------------------------
     DESKTOP INTRO
     ------------------------- */
  .exra-desktop-intro{
    display:block;
    background:#dedede;
    padding:18px 0 84px;
  }

  .exra-desktop-intro-shell{
    max-width:1160px;
    margin:0 auto;
    padding:0 22px;
  }

  .exra-global-label{
    display:inline-block;
    padding:8px 12px;
    background:#aaa;
    color:#fff;
    font-size:12px;
    letter-spacing:.02em;
    box-shadow:0 2px 5px rgba(0,0,0,.25);
  }

  .exra-desktop-intro h1{
    margin:20px 0 28px;
    max-width:900px;
    color:#111;
    font-size:29px;
    line-height:1.18;
    font-weight:700;
  }

  .exra-desktop-intro p{
    margin:0;
    max-width:650px;
    color:#111;
    font-size:19px;
    line-height:1.45;
  }

  /* -------------------------
     DESKTOP PRIMARY 50/50
     ------------------------- */
  .exra-desktop-primary{
    margin-top:-188px;
    position:relative;
    z-index:2;
    padding:0 0 58px;
  }

  .exra-desktop-primary-shell{
    width:min(1140px,90vw);
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:end;
  }

  .exra-desktop-expansion-wrap,
  .exra-desktop-carousel-wrap{
    min-width:0;
  }

  .exra-desktop-expansion-wrap{
    padding-top:104px;
  }

  /* Reflow the SAME existing C-to-C block on desktop only */
  .exra-desktop-expansion-wrap .exra-expansion{
    min-height:330px;
    padding:38px 40px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
  }

  .exra-desktop-expansion-wrap .exra-expansion h1{
    margin:0 0 34px;
    font-size:28px;
    font-weight:400;
  }

  .exra-desktop-expansion-wrap .exra-expansion p{
    max-width:480px;
    font-size:18px;
    line-height:1.5;
  }

  .exra-desktop-expansion-wrap .exra-waiting-list-button{
    margin-top:50px;
    align-self:flex-start;
  }

  .exra-desktop-carousel-wrap{
    position:relative;
  }

  .exra-verified-network-label{
    display:block;
    width:max-content;
    max-width:94%;
    margin:0 auto 10px;
    padding:7px 12px;
    background:#aaa;
    color:#fff;
    font-size:18px;
    line-height:1.2;
    box-shadow:0 2px 5px rgba(0,0,0,.25);
  }

  /* Carousel remains the SAME carousel; desktop changes placement/size only */
  .exra-desktop-carousel-wrap .exra-carousel{
    width:100%;
    max-width:none;
    margin:0;
  }

  .exra-desktop-carousel-wrap .exra-slide,
  .exra-desktop-carousel-wrap .exra-slide-media{
    height:auto !important;
    min-height:0 !important;
    aspect-ratio:auto !important;
  }

  .exra-desktop-carousel-wrap .exra-slide-media img{
    width:100%;
    height:auto !important;
    display:block;
  }

  .exra-desktop-carousel-wrap .exra-slide-title{
    top:5px;
    left:50%;
    transform:translateX(-50%);
    font-size:18px;
    padding:5px 10px;
  }

  .exra-desktop-carousel-wrap .exra-slide-button{
    left:18px;
    bottom:18px;
    max-width:185px;
    font-size:15px;
  }

  /* -------------------------
     EXISTING LOWER SECTIONS:
     only desktop spacing
     ------------------------- */
  .exra-coordination{
    padding-left:7%;
    padding-right:7%;
  }

  .exra-active-areas{
    padding-left:7%;
    padding-right:7%;
  }

  .exra-footer{
    padding-left:7%;
    padding-right:7%;
  }
}
/* =========================================
   FINAL RESPONSIVE CORRECTION
   ========================================= */

/* BOTH DESKTOP + MOBILE:
   only this sentence becomes solid black */
.exra-coordination-intro h2 {
    color: var(--exra-text) !important;
    opacity: 1 !important;
    -webkit-text-fill-color: var(--exra-text) !important;
} 

/* MOBILE ONLY:
   restore the original homepage order */
@media (max-width: 849px) {

    .exra-desktop-primary-shell {
        display: flex !important;
        flex-direction: column !important;
    }

    /* 1st: carousel */
    .exra-desktop-carousel-wrap {
        order: 1 !important;
        width: 100% !important;
    }

    /* 2nd: C-to-C */
    .exra-desktop-expansion-wrap {
        order: 2 !important;
        width: 100% !important;
    }

    /* keep desktop-only label hidden on mobile */
    .exra-verified-network-label {
        display: none !important;
    }
}
/* ==========================================
   EXRA OFFICIAL SOCIAL LINKS
   ========================================== */

.exra-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 18px 0 24px;
}

.exra-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    text-decoration: none;
    background: transparent !important;
    border: none !important;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.exra-social img {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
    background: transparent;
}

.exra-social a:hover {
    transform: translateY(-3px);
    opacity: 0.82;
}

/* Mobile */
@media (max-width: 849px) {
    .exra-social {
        gap: 14px;
    }

    .exra-social a {
        width: 32px;
        height: 32px;
    }

    .exra-social img {
        width: 28px;
        height: 28px;
    }
}

/* Desktop */
@media (min-width: 850px) {
    .exra-social {
        gap: 18px;
    }

    .exra-social a {
        width: 36px;
        height: 36px;
    }

    .exra-social img {
        width: 32px;
        height: 32px;
    }
}
/* =========================================================
   EXRA ABOUT PAGE
   ========================================================= */

.exra-about-page {
   background: var(--exra-bg);
color: var(--exra-text);
    min-height: 70vh;
}

.exra-about-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 54px 0 80px;
}


/* ABOUT PAGE HEADING */

.exra-about-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.exra-about-kicker {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: var(--exra-text-muted);
}

.exra-about-heading h1 {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
   color: var(--exra-text);
}

.exra-about-heading p {
    margin: 0;
    max-width: 650px;
    font-size: 16px;
    line-height: 1.7;
   color: var(--exra-text-secondary);
}


/* DESKTOP WORKSPACE */

.exra-about-workspace {
    display: grid;
    grid-template-columns: 240px minmax(0, 100%);
    gap: 56px;
    align-items: start;
}


/* LEFT NAVIGATION */

.exra-about-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.exra-about-nav-label {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    color: var(--exra-text-muted);
}

.exra-about-topic {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-left: 2px solid transparent;
    background: transparent;
    color: var(--exra-blue);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    transition:
        background .18s ease,
        border-color .18s ease,
        padding-left .18s ease;
}

.exra-about-topic:hover {
   background: var(--exra-surface-soft);
    border-left-color: var(--exra-blue);
    padding-left: 16px;
}

.exra-about-topic.is-active {
   background: var(--exra-surface-soft);
    border-left-color: var(--exra-blue);
    font-weight: 700;
}


/* MAIN CONTENT */

.exra-about-content {
    min-width: 0;
    max-width: 780px;
}

.exra-about-panel[hidden] {
    display: none !important;
}

.exra-about-panel {
    animation: exraAboutFade .2s ease;
}

@keyframes exraAboutFade {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.exra-about-section-number {
    display: block;
    margin-bottom: 10px;
    color: var(--exra-blue);
    font-size: 13px;
    font-weight: 700;
}

.exra-about-panel h2 {
    margin: 0 0 10px;
   color: var(--exra-text);
    font-size: 30px;
    line-height: 1.2;
}

.exra-about-panel h3 {
    margin: 0 0 24px;
   color: var(--exra-text-secondary);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}

.exra-about-panel p {
    margin: 0 0 20px;
    color: var(--exra-text-secondary);
    font-size: 16px;
    line-height: 1.75;
}


/* OVERVIEW FLOW */

.exra-about-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.exra-about-flow span {
    padding: 10px 13px;
   background: var(--exra-surface-soft);
border: 1px solid var(--exra-border);
    font-size: 13px;
    font-weight: 600;
}


/* CONTENT POINTS */

.exra-about-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 100%));
    gap: 14px;
    margin: 28px 0;
}

.exra-about-points > div {
    padding: 18px;
   border: 1px solid var(--exra-border);
background: var(--exra-surface-soft);
}

.exra-about-points strong,
.exra-about-points span {
    display: block;
}

.exra-about-points strong {
    margin-bottom: 7px;
   color: var(--exra-text);
    font-size: 15px;
}

.exra-about-points span {
   color: var(--exra-text-secondary);
    font-size: 14px;
    line-height: 1.55;
}


/* ROLES */

.exra-about-roles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 100%));
    gap: 14px;
    margin-top: 28px;
}

.exra-about-roles > div {
    padding: 20px;
   border-top: 2px solid var(--exra-text);
background: var(--exra-surface-soft);
}

.exra-about-roles strong {
    display: block;
    margin-bottom: 10px;
   color: var(--exra-text);
}

.exra-about-roles p {
    margin: 0;
    font-size: 14px;
}


/* LIFECYCLE */

.exra-about-lifecycle {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0;
}

.exra-about-lifecycle span {
    padding: 9px 12px;
    border: 1px solid var(--exra-border);
background: var(--exra-surface);
    font-size: 13px;
    font-weight: 600;
}


/* MOBILE CONTROLS HIDDEN ON DESKTOP */

.exra-about-mobile-nav,
.exra-about-mobile-controls {
    display: none;
}


/* =========================================================
   MOBILE ABOUT PAGE
   ========================================================= */

@media (max-width: 849px) {

    .exra-about-shell {
        width: min(100% - 28px, 720px);
        padding: 34px 0 55px;
    }

    .exra-about-heading {
        margin-bottom: 28px;
    }

    .exra-about-heading h1 {
        font-size: 28px;
    }

    .exra-about-heading p {
        font-size: 15px;
    }

    .exra-about-workspace {
        display: block;
    }

    .exra-about-sidebar {
        display: none;
    }

    .exra-about-mobile-nav {
        display: block;
        margin-bottom: 30px;
    }

    .exra-about-mobile-nav label {
        display: block;
        margin-bottom: 8px;
       color: var(--exra-text-secondary);
        font-size: 13px;
        font-weight: 600;
    }

    .exra-about-mobile-nav select {
        width: 100%;
        min-height: 46px;
        padding: 10px 40px 10px 12px;
        border: 1px solid #d8d8d8;
       border: 1px solid var(--exra-border);
background: var(--exra-surface);
color: var(--exra-text);
        font-family: inherit;
        font-size: 15px;
    }

    .exra-about-panel h2 {
        font-size: 26px;
    }

    .exra-about-panel h3 {
        font-size: 17px;
    }

    .exra-about-panel p {
        font-size: 15px;
    }

    .exra-about-points,
    .exra-about-roles {
        grid-template-columns: 100%;
    }

    .exra-about-mobile-controls {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin-top: 42px;
        padding-top: 20px;
       border-top: 1px solid var(--exra-border);
    }

    .exra-about-mobile-controls button {
        border: 0;
        background: transparent;
        color: var(--exra-blue);
        font-family: inherit;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
    }
}

/* =========================================================
   EXRA MOBILE NAVIGATION PANEL
   ========================================================= */

.exra-mobile-menu {
    display: none;
}

@media (max-width: 849px) {

    .exra-mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--exra-surface);
border-top: 1px solid var(--exra-border);
border-bottom: 1px solid var(--exra-border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        z-index: 999;
    }

    .exra-mobile-menu[hidden] {
        display: none !important;
    }

    .exra-mobile-menu:not([hidden]) {
        display: block;
    }

    .exra-mobile-menu-inner {
        display: flex;
        flex-direction: column;
        padding: 10px 14px 16px;
    }

    .exra-mobile-menu-link {
        display: block;
        padding: 14px 10px;
        border-bottom: 1px solid var(--exra-border);
color: var(--exra-text);
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
    }

    .exra-mobile-menu-link:last-child {
        border-bottom: 0;
    }

    .exra-mobile-menu-link:active {
        background: #f4f7fb;
        color: var(--exra-blue);
    }
}

/* =========================================================
   HOW IT WORKS — SECTION 01
   FROM REQUIREMENT TO DELIVERY
   ========================================================= */

.exra-how-it-works-page {
   background: var(--exra-bg);
color: var(--exra-text);
}

.exra-hiw-hero {
    width: 100%;
}

.exra-hiw-hero-media {
    position: relative;
    width: 100%;
    min-height: 620px;
    overflow: hidden;
    background: #111111;
}

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

.exra-hiw-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.52) 42%,
        rgba(0, 0, 0, 0.12) 100%
    );
    z-index: 1;
}

.exra-hiw-hero-overlay {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    min-height: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 70px 0;
}

.exra-hiw-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.exra-hiw-hero-overlay h1 {
    margin: 0 0 20px;
    max-width: 680px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 700;
}

.exra-hiw-hero-overlay p {
    max-width: 650px;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    line-height: 1.7;
}

.exra-hiw-hero-cta {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    padding: 11px 16px;
    background: var(--exra-blue);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition:
        transform .18s ease,
        opacity .18s ease;
}

.exra-hiw-hero-cta:hover {
    transform: translateY(-2px);
    opacity: .9;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 849px) {

    .exra-hiw-hero-media {
        min-height: auto;
       background: var(--exra-bg);
    }

    .exra-hiw-hero-video {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        min-height: 0;
        object-fit: contain;
    }

    .exra-hiw-hero-media::after {
        display: none;
    }

    .exra-hiw-hero-overlay {
        width: min(100% - 28px, 720px);
        min-height: 0;
        padding: 30px 0 42px;
       color: var(--exra-text);
    }

    .exra-hiw-eyebrow {
        margin-bottom: 10px;
       color: var(--exra-text-muted);
    }

    .exra-hiw-hero-overlay h1 {
        max-width: none;
        margin-bottom: 16px;
       color: var(--exra-text);
        font-size: 34px;
        line-height: 1.1;
    }

    .exra-hiw-hero-overlay p {
        max-width: none;
      color: var(--exra-text-secondary);
        font-size: 15px;
        line-height: 1.7;
    }

    .exra-hiw-hero-cta {
        margin-top: 14px;
    }
}

/* =========================================================
   HOW IT WORKS — SECTION 02
   EVERY PROJECT STARTS WITH A REQUIREMENT
   ========================================================= */

.exra-hiw-intake {
   background: var(--exra-surface-soft);
    padding: 84px 0;
}

.exra-hiw-intake-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 70px;
}

.exra-hiw-intake-copy {
    flex: 1;
    max-width: 560px;
}

.exra-hiw-section-label {
    display: block;
    margin-bottom: 12px;
    color: var(--exra-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.exra-hiw-intake-copy h2 {
    margin: 0 0 24px;
   color: var(--exra-text);
    font-size: 42px;
    line-height: 1.12;
    font-weight: 700;
}

.exra-hiw-intake-copy p {
    margin: 0 0 18px;
    color: var(--exra-text-secondary);
    font-size: 16px;
    line-height: 1.75;
}


/* PROJECT INTAKE VISUAL */

.exra-hiw-intake-panel {
    position: relative;
    flex: 1;
    max-width: 500px;
    padding: 24px 26px;
   background: var(--exra-surface);
border: 1px solid var(--exra-border);
    overflow: hidden;
}

.exra-hiw-intake-panel-title {
    display: block;
    margin-bottom: 22px;
    color: var(--exra-text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.exra-hiw-intake-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
   border-top: 1px solid var(--exra-border);
    transition:
        transform .18s ease,
        background .18s ease;
}

.exra-hiw-intake-step:hover {
    transform: translateX(5px);
}

.exra-hiw-intake-number {
    flex: 0 0 auto;
    min-width: 32px;
    color: var(--exra-blue);
    font-size: 13px;
    font-weight: 700;
}

.exra-hiw-intake-step strong {
    display: block;
    margin-bottom: 5px;
    color: var(--exra-text);
    font-size: 15px;
}

.exra-hiw-intake-step p {
    margin: 0;
   color: var(--exra-text-secondary);
    font-size: 14px;
    line-height: 1.55;
}


/* SUBTLE MOVING SYSTEM INDICATOR */

.exra-hiw-intake-panel::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 58px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--exra-blue);
    animation: exraIntakeMove 4.5s ease-in-out infinite alternate;
}

@keyframes exraIntakeMove {

    from {
        top: 58px;
        opacity: .35;
    }

    to {
        top: calc(100% - 28px);
        opacity: 1;
    }
}


/* NEXT STEP / CTA */

.exra-hiw-intake-next {
    width: min(1180px, calc(100% - 40px));
    margin: 50px auto 0;
    padding-top: 28px;
    border-top: 1px solid var(--exra-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.exra-hiw-intake-next p {
    max-width: 760px;
    margin: 0;
    color: var(--exra-text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.exra-hiw-intake-cta {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    padding: 11px 16px;
    background: var(--exra-blue);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition:
        transform .18s ease,
        opacity .18s ease;
}

.exra-hiw-intake-cta:hover {
    transform: translateY(-2px);
    opacity: .9;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 849px) {

    .exra-hiw-intake {
        padding: 54px 0;
    }

    .exra-hiw-intake-inner {
        width: min(100% - 28px, 720px);
        display: block;
    }

    .exra-hiw-intake-copy {
        max-width: none;
        margin-bottom: 36px;
    }

    .exra-hiw-intake-copy h2 {
        font-size: 31px;
        line-height: 1.15;
    }

    .exra-hiw-intake-copy p {
        font-size: 15px;
    }

    .exra-hiw-intake-panel {
        max-width: none;
        padding: 20px;
    }

    .exra-hiw-intake-step:hover {
        transform: none;
    }

    .exra-hiw-intake-panel::after {
        display: none;
    }

    .exra-hiw-intake-next {
        width: min(100% - 28px, 720px);
        margin-top: 36px;
        display: block;
    }

    .exra-hiw-intake-next p {
        margin-bottom: 22px;
    }

    .exra-hiw-intake-cta {
        width: auto;
    }
}

/* =========================================================
   HOW IT WORKS — SECTION 03
   UNDERSTAND BEFORE COMMITTING / SITE ASSESSMENT
   ========================================================= */

.exra-hiw-assessment {
   background: var(--exra-bg);
    padding: 86px 0;
}

.exra-hiw-assessment-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 76px;
    align-items: center;
}


/* PORTRAIT IMAGE CONTROL */

.exra-hiw-assessment-media {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    overflow: hidden;
   background: var(--exra-surface-soft);
}

.exra-hiw-assessment-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: cover;
    object-position: center;
}


/* CONTENT */

.exra-hiw-assessment-copy {
    max-width: 690px;
}

.exra-hiw-assessment-copy h2 {
    margin: 0 0 22px;
   color: var(--exra-text);
    font-size: 42px;
    line-height: 1.12;
    font-weight: 700;
}

.exra-hiw-assessment-copy > p {
    margin: 0 0 18px;
   color: var(--exra-text-secondary);
    font-size: 16px;
    line-height: 1.75;
}


/* ASSESSMENT PATH */

.exra-hiw-assessment-path {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 32px 0 28px;
    padding: 18px 0;
   border-top: 1px solid var(--exra-border);
border-bottom: 1px solid var(--exra-border);
}

.exra-hiw-assessment-path span {
   color: var(--exra-text);
    font-size: 14px;
    font-weight: 600;
}

.exra-hiw-assessment-path .exra-hiw-assessment-arrow {
    color: var(--exra-blue);
    font-weight: 700;
}


/* CTA */

.exra-hiw-assessment-cta {
    display: inline-flex;
    align-items: center;
    padding: 11px 16px;
    background: var(--exra-blue);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition:
        transform .18s ease,
        opacity .18s ease;
}

.exra-hiw-assessment-cta:hover {
    transform: translateY(-2px);
    opacity: .9;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 849px) {

    .exra-hiw-assessment {
        padding: 56px 0;
    }

    .exra-hiw-assessment-inner {
        width: min(100% - 28px, 720px);
        display: block;
    }

    .exra-hiw-assessment-media {
        max-width: 420px;
        margin: 0 auto 34px;
    }

    .exra-hiw-assessment-image {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .exra-hiw-assessment-copy {
        max-width: none;
    }

    .exra-hiw-assessment-copy h2 {
        font-size: 31px;
        line-height: 1.15;
    }

    .exra-hiw-assessment-copy > p {
        font-size: 15px;
    }

    .exra-hiw-assessment-path {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 28px 0 24px;
    }

    .exra-hiw-assessment-path .exra-hiw-assessment-arrow {
        transform: rotate(90deg);
        width: fit-content;
    }
}

/* =========================================================
   HOW IT WORKS — SECTION 04
   THE MOVING PARTS COME TOGETHER
   ========================================================= */

.exra-hiw-coordination {
    background: #1f2f46;
    color: #ffffff;
    padding: 90px 0;
}

.exra-hiw-coordination-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
    gap: 78px;
    align-items: center;
}


/* COPY */

.exra-hiw-coordination-copy {
    max-width: 650px;
}

.exra-hiw-coordination-copy .exra-hiw-section-label {
    color: #9fc1ff;
}

.exra-hiw-coordination-copy h2 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 700;
}

.exra-hiw-coordination-copy p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.75;
}


/* READINESS VISUAL */

.exra-hiw-coordination-visual {
    position: relative;
    padding: 28px 28px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.exra-hiw-coordination-title {
    display: block;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
}


/* VERTICAL CONNECTOR LINE */

.exra-hiw-coordination-visual::before {
    content: "";
    position: absolute;
    left: 37px;
    top: 76px;
    width: 2px;
    height: calc(100% - 142px);
    background: rgba(255, 255, 255, 0.12);
}


/* INDIVIDUAL STEP */

.exra-hiw-readiness-step {
    position: relative;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 16px;
    padding: 0 0 34px;
    opacity: .42;
    transition:
        opacity .35s ease,
        transform .35s ease;
}

.exra-hiw-readiness-marker {
    position: relative;
    z-index: 2;
    display: block;
    width: 12px;
    height: 12px;
    margin-top: 5px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: #1f2f46;
    transition:
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.exra-hiw-readiness-step strong {
    display: block;
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 16px;
}

.exra-hiw-readiness-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.55;
}


/* ACTIVE STATE — JAVASCRIPT WILL ADD THIS */

.exra-hiw-readiness-step.is-active {
    opacity: 1;
    transform: translateX(5px);
}

.exra-hiw-readiness-step.is-active .exra-hiw-readiness-marker {
    background: var(--exra-blue);
    border-color: var(--exra-blue);
    box-shadow: 0 0 0 5px rgba(63, 111, 196, 0.18);
}


/* FINAL READY STATE */

.exra-hiw-readiness-final {
    margin-left: 36px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease;
}

.exra-hiw-readiness-final.is-ready {
    background: var(--exra-blue);
    border-color: var(--exra-blue);
    color: #ffffff;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 849px) {

    .exra-hiw-coordination {
        padding: 58px 0;
    }

    .exra-hiw-coordination-inner {
        width: min(100% - 28px, 720px);
        display: block;
    }

    .exra-hiw-coordination-copy {
        max-width: none;
        margin-bottom: 38px;
    }

    .exra-hiw-coordination-copy h2 {
        font-size: 31px;
        line-height: 1.15;
    }

    .exra-hiw-coordination-copy p {
        font-size: 15px;
    }

    .exra-hiw-coordination-visual {
        padding: 24px 20px 22px;
    }

    .exra-hiw-coordination-visual::before {
        left: 29px;
        top: 72px;
        height: calc(100% - 136px);
    }

    .exra-hiw-readiness-step {
        grid-template-columns: 18px minmax(0, 1fr);
        gap: 14px;
        padding-bottom: 30px;
    }

    .exra-hiw-readiness-step.is-active {
        transform: none;
    }

    .exra-hiw-readiness-final {
        margin-left: 32px;
    }
}

/* SECTION 04 — ANIMATED READINESS PROGRESS LINE */

.exra-hiw-readiness-progress {
    position: absolute;
    left: 37px;
    top: 76px;
    width: 2px;
    height: 0;
    background: var(--exra-blue);
    z-index: 1;
    transition: height .55s ease;
    pointer-events: none;
}

@media (max-width: 849px) {

    .exra-hiw-readiness-progress {
        left: 29px;
        top: 72px;
    }
}

/* =========================================================
   HOW IT WORKS — SECTION 05
   EXECUTION WITH VISIBILITY
   ========================================================= */

.exra-hiw-execution {
   background: var(--exra-bg);
    padding: 88px 0;
}

.exra-hiw-execution-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.exra-hiw-execution-copy {
    max-width: 760px;
}

.exra-hiw-execution-copy h2 {
    margin: 0 0 22px;
   color: var(--exra-text);
    font-size: 42px;
    line-height: 1.12;
    font-weight: 700;
}


/* =========================================================
   COLLAPSED EXPLANATION
   ========================================================= */

.exra-hiw-execution-text {
    position: relative;
    max-width: 720px;
    max-height: 150px;
    overflow: hidden;
    transition: max-height .45s ease;
}

.exra-hiw-execution-text-inner p {
    margin: 0 0 17px;
   color: var(--exra-text-secondary);
    font-size: 16px;
    line-height: 1.75;
}

.exra-hiw-execution-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 72px;
    pointer-events: none;

    background: linear-gradient(
    to bottom,
    transparent,
    var(--exra-bg) 86%
    );

    transition: opacity .25s ease;
}


/* expanded state will be activated later by JavaScript */

.exra-hiw-execution-text.is-expanded {
    max-height: 600px;
}

.exra-hiw-execution-text.is-expanded .exra-hiw-execution-fade {
    opacity: 0;
}


/* READ MORE */

.exra-hiw-execution-readmore {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--exra-blue);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}


/* =========================================================
   OPERATIONAL LINKS
   ========================================================= */

.exra-hiw-operation-links {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 52px 0 42px;
    padding-bottom: 10px;
}

.exra-hiw-operation-links a {
    position: relative;
    flex: 0 0 auto;
    padding: 6px 0 10px;
    color: var(--exra-blue);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}


/* animated underline */

.exra-hiw-operation-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background: var(--exra-blue);

    transform: scaleX(0);
    transform-origin: left center;

    transition: transform .24s ease;
}


/* desktop hover + keyboard focus + mobile tap */

.exra-hiw-operation-links a:hover::after,
.exra-hiw-operation-links a:focus-visible::after,
.exra-hiw-operation-links a:active::after {
    transform: scaleX(1);
}


/* =========================================================
   PROJECT EXECUTION VIEW
   ========================================================= */

.exra-hiw-execution-view {
    max-width: 900px;
    border: 1px solid var(--exra-border);
    background: var(--exra-surface-soft);
}

.exra-hiw-execution-view-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
   border-bottom: 1px solid var(--exra-border);
}

.exra-hiw-execution-view-header > span:first-child {
  color: var(--exra-text-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.exra-hiw-execution-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--exra-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.exra-hiw-execution-live::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--exra-blue);
}


/* STATUS ROWS */

.exra-hiw-execution-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 17px 20px;
   border-bottom: 1px solid var(--exra-border);
    transition:
        background .3s ease,
        transform .3s ease;
}

.exra-hiw-execution-status span {
   color: var(--exra-text-secondary);
    font-size: 14px;
}

.exra-hiw-execution-status strong {
   color: var(--exra-text-muted);
    font-size: 13px;
    font-weight: 600;
}


/* JavaScript will activate this later */

.exra-hiw-execution-status.is-current {
   background: var(--exra-surface);
    transform: translateX(5px);
}

.exra-hiw-execution-status.is-current strong {
    color: var(--exra-blue);
}


/* CURRENT STAGE */

.exra-hiw-execution-current {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    background: #111111;
}

.exra-hiw-execution-current span {
    color: rgba(255,255,255,.60);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.exra-hiw-execution-current strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 849px) {

    .exra-hiw-execution {
        padding: 58px 0;
    }

    .exra-hiw-execution-inner {
        width: min(100% - 28px, 720px);
    }

    .exra-hiw-execution-copy h2 {
        font-size: 31px;
        line-height: 1.15;
    }

    .exra-hiw-execution-text {
        max-height: 138px;
    }

    .exra-hiw-execution-text-inner p {
        font-size: 15px;
    }


    /* HORIZONTAL SWIPE NAVIGATION */

    .exra-hiw-operation-links {
        width: calc(100vw - 14px);
        margin: 42px 0 34px;
        padding: 0 26px 14px 0;

        overflow-x: auto;
        overflow-y: hidden;

        gap: 28px;

        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .exra-hiw-operation-links::-webkit-scrollbar {
        display: none;
    }

    .exra-hiw-operation-links a {
        scroll-snap-align: start;
        font-size: 15px;
    }


    /* TAP STATE */

    .exra-hiw-operation-links a:active::after,
    .exra-hiw-operation-links a:focus::after {
        transform: scaleX(1);
    }


    /* EXECUTION VIEW */

    .exra-hiw-execution-view {
        width: 100%;
    }

    .exra-hiw-execution-status {
        padding: 15px 16px;
    }

    .exra-hiw-execution-status.is-current {
        transform: none;
    }

    .exra-hiw-execution-current {
        padding: 16px;
    }
}

/* =========================================================
   HOW IT WORKS — SECTION 06
   COMPLETION IS A STAGE, NOT AN EXIT
   ========================================================= */

.exra-hiw-completion {
   background: var(--exra-surface-soft);
    padding: 88px 0;
}

.exra-hiw-completion-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
    gap: 72px;
    align-items: center;
}


/* CONTENT */

.exra-hiw-completion-copy {
    max-width: 680px;
}

.exra-hiw-completion-copy h2 {
    margin: 0 0 22px;
   color: var(--exra-text);
    font-size: 42px;
    line-height: 1.12;
    font-weight: 700;
}

.exra-hiw-completion-copy > p {
    margin: 0 0 18px;
   color: var(--exra-text-secondary);
    font-size: 16px;
    line-height: 1.75;
}


/* LEARN MORE CONTROL */

.exra-hiw-completion-toggle {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--exra-blue);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.exra-hiw-completion-toggle:hover {
    text-decoration: underline;
}


/* COMPLETION REVIEW */

.exra-hiw-completion-review {
    margin-top: 28px;
    padding: 22px 24px;
   border: 1px solid var(--exra-border);
background: var(--exra-surface);
}

.exra-hiw-completion-review[hidden] {
    display: none !important;
}

.exra-hiw-completion-review-title {
    display: block;
    margin-bottom: 16px;
   color: var(--exra-text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.exra-hiw-completion-review-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
   border-bottom: 1px solid var(--exra-border);
}

.exra-hiw-completion-review-item span {
    color: var(--exra-blue);
    font-size: 14px;
    font-weight: 700;
}

.exra-hiw-completion-review-item p {
    margin: 0;
    color: var(--exra-text-secondary);
    font-size: 14px;
    line-height: 1.5;
}


/* FINAL HANDOVER RESULT */

.exra-hiw-completion-result {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
}

.exra-hiw-completion-result span {
    color: #555555;
    font-size: 13px;
    font-weight: 600;
}

.exra-hiw-completion-result strong {
    color: #111111;
    font-size: 14px;
    font-weight: 700;
}


/* COMPLETION IMAGE */

.exra-hiw-completion-media {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.exra-hiw-completion-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: contain;
    object-position: center;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 849px) {

    .exra-hiw-completion {
        padding: 58px 0;
    }

    .exra-hiw-completion-inner {
        width: min(100% - 28px, 720px);
        display: flex;
        flex-direction: column;
        gap: 34px;
    }

    /* image appears first on mobile */
    .exra-hiw-completion-media {
        order: -1;
        max-width: 440px;
    }

    .exra-hiw-completion-image {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .exra-hiw-completion-copy {
        max-width: none;
    }

    .exra-hiw-completion-copy h2 {
        font-size: 31px;
        line-height: 1.15;
    }

    .exra-hiw-completion-copy > p {
        font-size: 15px;
    }

    .exra-hiw-completion-review {
        padding: 18px;
    }

    .exra-hiw-completion-result {
        align-items: flex-start;
    }
}

/* =========================================================
   HOW IT WORKS — SECTION 07
   WHEN EXRA ISN'T AVAILABLE
   ========================================================= */

.exra-hiw-unavailable {
background: var(--exra-surface-soft);
    padding: 88px 0;
}

.exra-hiw-unavailable-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* INTRODUCTION */

.exra-hiw-unavailable-intro {
    max-width: 820px;
    margin-bottom: 48px;
}

.exra-hiw-unavailable-intro h2 {
    margin: 0 0 12px;
    color: var(--exra-text);
    font-size: 42px;
    line-height: 1.12;
    font-weight: 700;
}

.exra-hiw-unavailable-intro h3 {
    margin: 0 0 24px;
    color: var(--exra-text-secondary);
    font-size: 19px;
    line-height: 1.5;
    font-weight: 500;
}

.exra-hiw-unavailable-intro p {
    margin: 0 0 17px;
   color: var(--exra-text-secondary);
    font-size: 16px;
    line-height: 1.75;
}


/* TWO-COLUMN AREA */

.exra-hiw-unavailable-grid {
    display: grid;
    grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
}


/* =========================================================
   PROJECT AVAILABILITY PANEL
   ========================================================= */

.exra-hiw-availability-panel {
    background: var(--exra-surface);
border: 1px solid var(--exra-border);
}

.exra-hiw-availability-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
   border-bottom: 1px solid var(--exra-border);
}

.exra-hiw-availability-header > span:first-child {
    color: var(--exra-text-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.exra-hiw-availability-example {
    color: var(--exra-text-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.exra-hiw-availability-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 17px 20px;
   border-bottom: 1px solid var(--exra-border);
}

.exra-hiw-availability-row > span {
   color: var(--exra-text-muted);
    font-size: 13px;
}

.exra-hiw-availability-row > strong {
   color: var(--exra-text);
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}


/* EXPANDING STATUS */

.exra-hiw-expanding-status {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.exra-hiw-expanding-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d69c18;
    animation: exraAvailabilityPulse 2s ease-in-out infinite;
}

@keyframes exraAvailabilityPulse {

    0%,
    100% {
        opacity: .45;
        transform: scale(.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}


/* UNAVAILABLE MESSAGE */

.exra-hiw-availability-message {
    padding: 20px;
    background: var(--exra-surface-soft);
}

.exra-hiw-availability-message p {
    margin: 0;
   color: var(--exra-text-secondary);
    font-size: 14px;
    line-height: 1.6;
}


/* WAITING LIST CTA */

.exra-hiw-waiting-list-cta {
    display: inline-flex;
    align-items: center;
    margin: 0 20px 22px;
    padding: 11px 16px;
    background: var(--exra-blue);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition:
        transform .18s ease,
        opacity .18s ease;
}

.exra-hiw-waiting-list-cta:hover {
    transform: translateY(-2px);
    opacity: .9;
}


/* =========================================================
   WHY WAIT FOR STRUCTURED COORDINATION
   ========================================================= */

.exra-hiw-waiting-value h3 {
    margin: 0 0 26px;
   color: var(--exra-text);
    font-size: 27px;
    line-height: 1.25;
}

.exra-hiw-waiting-point {
    padding: 20px 0;
    border-top: 1px solid var(--exra-border);
}

.exra-hiw-waiting-point strong {
    display: block;
    margin-bottom: 8px;
   color: var(--exra-text);
    font-size: 15px;
}

.exra-hiw-waiting-point p {
    margin: 0;
   color: var(--exra-text-secondary);
    font-size: 15px;
    line-height: 1.7;
}


/* CLOSING STATEMENT */

.exra-hiw-waiting-statement {
    margin: 28px 0 22px;
    max-width: 620px;
    color: var(--exra-text);
    font-size: 20px;
    line-height: 1.45;
    font-weight: 600;
}


/* ACTIVE AREAS LINK */

.exra-hiw-active-areas-cta {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    color: var(--exra-blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.exra-hiw-active-areas-cta::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--exra-blue);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .22s ease;
}

.exra-hiw-active-areas-cta:hover::after,
.exra-hiw-active-areas-cta:focus-visible::after {
    transform: scaleX(1);
}


/* MOBILE READ-MORE BUTTON IS HIDDEN ON DESKTOP */

.exra-hiw-waiting-toggle {
    display: none;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 849px) {

    .exra-hiw-unavailable {
        padding: 58px 0;
    }

    .exra-hiw-unavailable-inner {
        width: min(100% - 28px, 720px);
    }

    .exra-hiw-unavailable-intro {
        margin-bottom: 34px;
    }

    .exra-hiw-unavailable-intro h2 {
        font-size: 31px;
        line-height: 1.15;
    }

    .exra-hiw-unavailable-intro h3 {
        font-size: 17px;
    }

    .exra-hiw-unavailable-intro p {
        font-size: 15px;
    }


    /* STACK PANEL + WHY WAIT */

    .exra-hiw-unavailable-grid {
        display: block;
    }

    .exra-hiw-availability-panel {
        margin-bottom: 38px;
    }

    .exra-hiw-availability-row {
        padding: 15px 16px;
    }

    .exra-hiw-availability-message {
        padding: 18px 16px;
    }

    .exra-hiw-waiting-list-cta {
        margin: 0 16px 20px;
    }


    /* COMPACT WHY-WAIT CONTENT */

    .exra-hiw-waiting-value h3 {
        font-size: 23px;
        margin-bottom: 18px;
    }

    .exra-hiw-waiting-point {
        padding: 17px 0;
    }

    .exra-hiw-waiting-point p {
        font-size: 14px;
    }


    /* HIDE ADDITIONAL CONTENT UNTIL READ MORE */

    .exra-hiw-waiting-more {
        display: none;
    }

    .exra-hiw-waiting-more.is-expanded {
        display: block;
    }


    /* MOBILE READ MORE / SHOW LESS */

    .exra-hiw-waiting-toggle {
        display: inline-flex;
        align-items: center;
        margin-top: 8px;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--exra-blue);
        font-family: inherit;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
    }

    .exra-hiw-waiting-statement {
        margin-top: 24px;
        font-size: 18px;
    }


    /* MOBILE TAP FEEDBACK */

    .exra-hiw-active-areas-cta:active::after,
    .exra-hiw-active-areas-cta:focus::after {
        transform: scaleX(1);
    }
}

/* =========================================================
   HOW IT WORKS — SECTION 08
   SUPPORT BEYOND HANDOVER
   ========================================================= */

.exra-hiw-support {
   background: var(--exra-support-bg);
    padding: 88px 0;
}

.exra-hiw-support-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 72px;
    align-items: start;
}


/* =========================================================
   SUPPORT COPY
   ========================================================= */

.exra-hiw-support-copy {
    max-width: 700px;
}

.exra-hiw-support-copy h2 {
    margin: 0 0 14px;
   color: var(--exra-text);
    font-size: 42px;
    line-height: 1.12;
    font-weight: 700;
}

.exra-hiw-support-copy h3 {
    margin: 0 0 24px;
    max-width: 650px;
   color: var(--exra-text-secondary);
    font-size: 19px;
    line-height: 1.5;
    font-weight: 500;
}

.exra-hiw-support-copy p {
    margin: 0 0 17px;
   color: var(--exra-text-secondary);
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   VIEW WARRANTY & SUPPORT CTA
   ========================================================= */

.exra-hiw-support-cta {
    position: relative;
    display: inline-block;
    margin-top: 12px;
    padding-bottom: 5px;
    color: var(--exra-blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.exra-hiw-support-cta::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--exra-blue);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .22s ease;
}

.exra-hiw-support-cta:hover::after,
.exra-hiw-support-cta:focus-visible::after {
    transform: scaleX(1);
}


/* =========================================================
   POST-PROJECT SUPPORT PANEL
   ========================================================= */

.exra-hiw-support-panel {
   background: var(--exra-surface);
border: 1px solid var(--exra-border);
    box-shadow: 0 14px 34px rgba(25, 43, 66, .06);
}

.exra-hiw-support-panel-header {
    padding: 17px 20px;
    border-bottom: 1px solid var(--exra-border);
color: var(--exra-text-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.exra-hiw-support-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px;
   border-bottom: 1px solid var(--exra-border);
}

.exra-hiw-support-row > span {
   color: var(--exra-text-muted);
    font-size: 13px;
}

.exra-hiw-support-row > strong {
   color: var(--exra-text);
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}


/* COMPLETED / ACTIVE STATUS DETAILS */

.exra-hiw-support-row:nth-of-type(2) > strong,
.exra-hiw-support-row:nth-of-type(3) > strong {
    color: #1f6f46;
}


/* SUPPORT NOTE */

.exra-hiw-support-note {
    padding: 20px;
   background: var(--exra-surface-soft);
}

.exra-hiw-support-note p {
    margin: 0;
   color: var(--exra-text-secondary);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 849px) {

    .exra-hiw-support {
        padding: 58px 0;
    }

    .exra-hiw-support-inner {
        width: min(100% - 28px, 720px);
        display: flex;
        flex-direction: column;
        gap: 38px;
    }

    .exra-hiw-support-copy {
        max-width: none;
    }

    .exra-hiw-support-copy h2 {
        font-size: 31px;
        line-height: 1.15;
    }

    .exra-hiw-support-copy h3 {
        font-size: 17px;
    }

    .exra-hiw-support-copy p {
        font-size: 15px;
    }


    /* SUPPORT PANEL */

    .exra-hiw-support-panel {
        width: 100%;
    }

    .exra-hiw-support-row {
        padding: 16px;
    }

    .exra-hiw-support-panel-header {
        padding: 16px;
    }

    .exra-hiw-support-note {
        padding: 18px 16px;
    }


    /* MOBILE CTA TAP FEEDBACK */

    .exra-hiw-support-cta:active::after,
    .exra-hiw-support-cta:focus::after {
        transform: scaleX(1);
    }
}

/* =========================================================
   HOW IT WORKS — DEDICATED FOOTER
   ========================================================= */

.exra-hiw-footer {
    background: var(--exra-footer);
    color: var(--exra-text);
}


/* =========================================================
   CLOSING ACTION AREA
   ========================================================= */

.exra-hiw-footer-action {
   border-bottom: 1px solid var(--exra-border);
}

.exra-hiw-footer-action-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 58px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.exra-hiw-footer-action-copy {
    max-width: 650px;
}

.exra-hiw-footer-label {
    display: block;
    margin-bottom: 12px;
    color: var(--exra-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.exra-hiw-footer-action-copy h2 {
    margin: 0 0 14px;
    color: var(--exra-text);
    font-size: 32px;
    line-height: 1.2;
}

.exra-hiw-footer-action-copy p {
    margin: 0;
    max-width: 610px;
    color: var(--exra-text-secondary);
    font-size: 15px;
    line-height: 1.7;
}


/* FOOTER CTA BUTTONS */

.exra-hiw-footer-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.exra-hiw-footer-primary-cta,
.exra-hiw-footer-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform .18s ease,
        background .18s ease,
        color .18s ease,
        border-color .18s ease;
}

.exra-hiw-footer-primary-cta {
    background: var(--exra-blue);
    border: 1px solid var(--exra-blue);
    color: #ffffff;
}

.exra-hiw-footer-secondary-cta {
    background: transparent;
   border: 1px solid var(--exra-border);
color: var(--exra-text);
}

.exra-hiw-footer-primary-cta:hover,
.exra-hiw-footer-secondary-cta:hover {
    transform: translateY(-2px);
}

.exra-hiw-footer-secondary-cta:hover {
    border-color: var(--exra-blue);
    color: var(--exra-blue);
}


/* =========================================================
   FOOTER NAVIGATION
   ========================================================= */

.exra-hiw-footer-navigation {
   border-bottom: 1px solid var(--exra-border);
}

.exra-hiw-footer-navigation-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 48px;
}

.exra-hiw-footer-column h3 {
    margin: 0 0 17px;
    color: var(--exra-text);
    font-size: 13px;
    font-weight: 700;
}

.exra-hiw-footer-column a {
    position: relative;
    display: table;
    margin-bottom: 11px;
    padding-bottom: 2px;
   color: var(--exra-text-secondary);
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
    transition: color .18s ease;
}

.exra-hiw-footer-column a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--exra-blue);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .2s ease;
}

.exra-hiw-footer-column a:hover,
.exra-hiw-footer-column a:focus-visible {
    color: var(--exra-blue);
}

.exra-hiw-footer-column a:hover::after,
.exra-hiw-footer-column a:focus-visible::after {
    transform: scaleX(1);
}


/* =========================================================
   BOTTOM STRIP
   ========================================================= */

.exra-hiw-footer-bottom-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.exra-hiw-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.exra-hiw-footer-brand strong {
   color: var(--exra-text);
    font-size: 14px;
}

.exra-hiw-footer-brand span {
   color: var(--exra-text-muted);
    font-size: 12px;
}

.exra-hiw-footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--exra-text-muted);
    font-size: 12px;
}

.exra-hiw-footer-legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.exra-hiw-footer-legal-links a {
    color: var(--exra-text-secondary);
    text-decoration: none;
}

.exra-hiw-footer-legal-links a:hover,
.exra-hiw-footer-legal-links a:focus-visible {
    color: var(--exra-blue);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 849px) {

    .exra-hiw-footer-action-inner,
    .exra-hiw-footer-navigation-inner,
    .exra-hiw-footer-bottom-inner {
        width: min(100% - 28px, 720px);
    }


    /* CLOSING ACTION */

    .exra-hiw-footer-action-inner {
        padding: 42px 0;
        display: block;
    }

    .exra-hiw-footer-action-copy h2 {
        font-size: 27px;
    }

    .exra-hiw-footer-action-copy p {
        font-size: 14px;
    }

    .exra-hiw-footer-actions {
        margin-top: 26px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .exra-hiw-footer-primary-cta,
    .exra-hiw-footer-secondary-cta {
        width: 100%;
    }


    /* NAVIGATION */

    .exra-hiw-footer-navigation-inner {
        padding: 38px 0;
        grid-template-columns: 1fr 1fr;
        gap: 34px 24px;
    }


    /* MOBILE LINK FEEDBACK */

    .exra-hiw-footer-column a:active,
    .exra-hiw-footer-column a:focus {
        color: var(--exra-blue);
    }

    .exra-hiw-footer-column a:active::after,
    .exra-hiw-footer-column a:focus::after {
        transform: scaleX(1);
    }


    /* BOTTOM STRIP */

    .exra-hiw-footer-bottom-inner {
        padding: 24px 0;
        display: block;
    }

    .exra-hiw-footer-legal {
        margin-top: 18px;
        display: block;
    }

    .exra-hiw-footer-legal-links {
        margin-top: 10px;
    }
}


/* VERY SMALL MOBILE */

@media (max-width: 480px) {

    .exra-hiw-footer-navigation-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* =========================================================
   EXRA — DESKTOP APPEARANCE CONTROL
   ========================================================= */

.exra-theme-control {
    position: relative;
}

.exra-theme-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--exra-text);
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
}

.exra-theme-button:hover,
.exra-theme-button:focus-visible {
    color: var(--exra-blue);
}


/* APPEARANCE DROPDOWN */

.exra-theme-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 150px;
    padding: 6px;
    background: var(--exra-surface);
    border: 1px solid var(--exra-border);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
    z-index: 10000;
}

.exra-theme-menu[hidden] {
    display: none !important;
}

.exra-theme-menu button {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    background: transparent;
    color: var(--exra-text);
    font-family: inherit;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
}

.exra-theme-menu button:hover,
.exra-theme-menu button:focus-visible {
    background: var(--exra-surface-soft);
    color: var(--exra-blue);
}

/* =========================================================
   EXRA — HEADER ALWAYS LIGHT
   Header is intentionally excluded from Dark Mode
   ========================================================= */

.exra-header {
    background: #ffffff;
    color: #111111;
    border-bottom: 1px solid #d8d8d8;
}


/* DESKTOP NAVIGATION */

.exra-desktop-nav > a,
.exra-network-menu-button,
.exra-theme-button {
    color: #111111;
}


/* DESKTOP SEARCH */

.exra-desktop-search {
    background: #ffffff;
    border-color: #bdbdbd;
}

.exra-desktop-search input {
    color: #111111;
}

.exra-desktop-search input::placeholder {
    color: #777777;
}

.exra-search-icon {
    border-color: #111111;
}

.exra-search-icon:after {
    background: #111111;
}


/* SIGN IN */

.exra-signin {
    background: #ffffff;
    color: #111111;
    border-color: #111111;
}


/* APPEARANCE DROPDOWN */

.exra-theme-menu {
    background: #ffffff;
    border-color: #dddddd;
}

 .exra-theme-menu button {
    color: #111111;
}

.exra-theme-menu button:hover,
.exra-theme-menu button:focus-visible {
    background: #f5f5f5;
    color: var(--exra-blue);
}


/* MOBILE HEADER PANEL */

@media (max-width: 849px) {

    .exra-mobile-menu {
        background: #ffffff;
        border-top-color: #e8e8e8;
        border-bottom-color: #e8e8e8;
    }

    .exra-mobile-menu-link {
        color: #111111;
        border-bottom-color: #eeeeee;
    }

}

/* =========================================================
   EXRA DESKTOP HERO V2
   Desktop redesign only — mobile remains untouched
   ========================================================= */

/* Hide the new desktop hero from mobile */
.exra-desktop-hero-v2,
.exra-desktop-hero-v2-overlap-space {
    display: none;
}


@media (min-width: 850px) {

    .exra-desktop-hero-v2 {
        display: block;
        position: relative;
        overflow: visible;
        background: #1f3043;
        color: #ffffff;
    }

    .exra-desktop-hero-v2-shell {
        width: min(1440px, calc(100% - 64px));
        min-height: 610px;
        margin: 0 auto;

        display: grid;
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(360px, .75fr);

        gap: 72px;
        align-items: start;

        padding: 64px 0 0;
    }


    /* Pure white reserved area below hero */
    .exra-desktop-hero-v2-overlap-space {
        display: block;
        height: 110px;
        background: #ffffff;
    }

}

/* =========================================================
   DESKTOP HERO V2 — LEFT SIDE
   ========================================================= */

@media (min-width: 850px) {

    .exra-desktop-hero-v2-left {
        position: relative;
        width: 100%;
        padding-top: 16px;
    }


    /* Thin steel-blue outline frame */

    .exra-desktop-hero-v2-content-frame {
        width: 100%;
        min-height: 440px;

        padding: 44px 42px 32px;

        border: 1px solid #4d708d;

        background: transparent;
    }


    /* Main headline */

    .exra-desktop-hero-v2-content-frame h1 {
        max-width: 720px;
        margin: 0 0 30px;

        color: #ffffff;

        font-size: clamp(34px, 3vw, 50px);
        line-height: 1.12;
        font-weight: 700;
        letter-spacing: -0.6px;
    }


    /* Supporting sentence underneath diagram */

    .exra-desktop-hero-v2-subtitle {
        max-width: 690px;

        margin: 22px 0 0;

        color: rgba(255, 255, 255, .86);

        font-size: 18px;
        line-height: 1.55;
        font-weight: 400;
    }


    /* Get Started sits outside the outline frame */
.exra-quick-start-desktop {
    position: relative;
    width: fit-content;
    margin: 18px 0 0 245px;
}
    .exra-desktop-hero-v2-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        min-width: 164px;
        min-height: 48px;

       
        padding: 0 26px;

        background: #176fc1;
        color: #ffffff;

        border: 1px solid #2c82cf;
        border-radius: 2px;

        font-size: 16px;
        font-weight: 600;
        text-decoration: none;

        box-shadow: 0 5px 14px rgba(0, 0, 0, .22);

        transition:
            transform .18s ease,
            filter .18s ease,
            box-shadow .18s ease;
    }

    .exra-desktop-hero-v2-cta:hover,
    .exra-desktop-hero-v2-cta:focus-visible {
        transform: translateY(-2px);
        filter: brightness(1.08);
        box-shadow: 0 8px 18px rgba(0, 0, 0, .26);
    }

}
/* DESKTOP HERO — GET STARTED OPTIONS */

.exra-quick-start-desktop .exra-quick-start-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 10002;

    width: 230px;
    padding: 8px;

    background: #ffffff;
    border: 1px solid #d0d0d0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.exra-quick-start-desktop .exra-quick-start-dropdown a {
    display: block;
    padding: 11px 12px;

    color: #111111;
    font-size: 14px;
    text-decoration: none;
}

.exra-quick-start-desktop .exra-quick-start-dropdown a:hover,
.exra-quick-start-desktop .exra-quick-start-dropdown a:focus {
    background: #f1f1f1;
}

/* =========================================================
   DESKTOP HERO V2 — WORKFLOW DIAGRAM
   Client → EXRA → Technician + Supplier
   ========================================================= */

@media (min-width: 850px) {

    .exra-hero-workflow {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    padding: 18px 20px;
    background: #adb9ca;
}

    .exra-hero-workflow-svg {
        display: block;
        width: 100%;
        height: auto;
        overflow: visible;
    }


    /* Connector paths */

    .exra-hero-workflow-line {
        fill: none;
        stroke: rgba(255, 255, 255, .72);
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }


    /* Node boxes */

    .exra-hero-workflow-node rect {
        fill: rgba(255, 255, 255, .04);
        stroke: rgba(255, 255, 255, .72);
        stroke-width: 2;
    }

    .exra-hero-workflow-node text {
        fill: #ffffff;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        font-weight: 500;
    }


    /* EXRA node is stronger than vendor/client nodes */

    .exra-hero-workflow-node-exra rect {
        fill: #f4f4f0;
        stroke: #f4f4f0;
    }

    .exra-hero-workflow-node-exra text {
        fill: #111111;
        font-size: 21px;
        font-weight: 800;
        letter-spacing: .4px;
    }


    /* Moving system dots */

    .exra-hero-workflow-dot {
        fill: #78b7ff;
        stroke: #d8ebff;
        stroke-width: 2;

        filter:
            drop-shadow(0 0 4px rgba(120, 183, 255, .85))
            drop-shadow(0 0 8px rgba(120, 183, 255, .45));
    }

}

/* =========================================================
   DESKTOP HERO V2 — RIGHT IMAGE + OVERLAP
   ========================================================= */

@media (min-width: 850px) {

    .exra-desktop-hero-v2-right {
        position: relative;
        z-index: 3;
        display: flex;
        justify-content: center;
        width: 100%;
        padding-top: 86px;
    }


    /* Thin steel-blue outer frame */

    .exra-desktop-hero-v2-image-frame {
        width: min(100%, 470px);

        padding: 18px;

        border: 1px solid #4d708d;

        background: transparent;

        /* Pushes part of the component below the navy hero */
        transform: translateY(38px);
    }


    .exra-desktop-hero-v2-image-wrap {
        position: relative;
        width: 100%;
        overflow: hidden;
        background: #e8e1d6;
    }


    .exra-desktop-hero-v2-image {
        display: block;

        width: 100%;
        height: 560px;

        object-fit: cover;
        object-position: center;

        margin: 0;
    }

}

/* =========================================================
   DESKTOP HERO V2 — IMAGE COPY
   ========================================================= */

@media (min-width: 850px) {

    .exra-desktop-hero-v2-image-copy {
        position: absolute;
        top: 28px;
        left: 26px;
        z-index: 2;

        max-width: 260px;

        color: #ffffff;

        font-size: 22px;
        line-height: 1.35;
        font-weight: 600;

        text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
    }

}

/* =========================================================
   DESKTOP HERO V2 — LIVE PROJECT NOTIFICATION
   ========================================================= */

@media (min-width: 850px) {

    .exra-project-live-notification {
        position: absolute;
        top: 238px;
        right: 22px;
        z-index: 4;

        width: 205px;
        height: 48px;

        overflow: hidden;

        background: rgba(255, 255, 255, .96);
        border: 1px solid rgba(255, 255, 255, .75);
        border-radius: 7px;

        box-shadow:
            0 8px 22px rgba(0, 0, 0, .20);

        backdrop-filter: blur(6px);
    }


    .exra-project-notification-item {
        position: absolute;
        inset: 0;

        display: flex;
        align-items: center;
        gap: 9px;

        padding: 0 14px;

        color: #1c2733;

        font-size: 13px;
        font-weight: 600;

        opacity: 0;

        transform:
            translateY(12px)
            scale(.96);

        animation:
            exraProjectNotification 9s
            ease-in-out
            infinite;
    }


    /* Small blue confirmation tick */

    .exra-project-notification-tick {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        flex: 0 0 18px;

        width: 18px;
        height: 18px;

        border-radius: 50%;

        background: #2678c8;
        color: #ffffff;

        font-size: 11px;
        font-weight: 800;
        line-height: 1;
    }


    /* Each message takes its own 3-second window */

    .exra-project-notification-1 {
        animation-delay: 0s;
    }

    .exra-project-notification-2 {
        animation-delay: 3s;
    }

    .exra-project-notification-3 {
        animation-delay: 6s;
    }


    /* Live-notification pop / hold / exit */

    @keyframes exraProjectNotification {

        0% {
            opacity: 0;
            transform:
                translateY(12px)
                scale(.96);
        }

        8% {
            opacity: 1;
            transform:
                translateY(0)
                scale(1);
        }

        26% {
            opacity: 1;
            transform:
                translateY(0)
                scale(1);
        }

        33% {
            opacity: 0;
            transform:
                translateY(-10px)
                scale(.98);
        }

        100% {
            opacity: 0;
            transform:
                translateY(-10px)
                scale(.98);
        }

    }

}

/* =========================================================
   EXRA MOBILE HOME ACTION STRIP
   Home page only
   ========================================================= */

.exra-mobile-home-action {
    display: none;
}


/* MOBILE ONLY */

@media (max-width: 849px) {

    .exra-mobile-home-action {
    display: flex;

    position: sticky;
    top: 56px;
    z-index: 9998;

    align-items: center;
    justify-content: space-between;
    gap: 18px;

    width: 100%;

    min-height: 68px;
    max-height: 74px;

    padding: 10px 16px;

    background: #f3f1eb;
    border-bottom: 1px solid #ddd9d1;

    overflow: hidden;

    will-change:
        max-height,
        min-height,
        padding,
        opacity;

    transition:
    transform .5s cubic-bezier(.22, 1, .36, 1),
    opacity .4s ease;
}
.exra-mobile-home-action.is-collapsed {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}


    .exra-mobile-home-action-text {
        color: #111111;
        font-size: 16px;
        font-weight: 500;
        white-space: nowrap;
    }


    .exra-mobile-home-action-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 0 20px;

    background: var(--exra-blue);
    color: #ffffff;

    border: 1px solid var(--exra-blue);
    border-radius: 2px;

    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 3px 8px rgba(0, 0, 0, .12);
}


    .exra-mobile-home-action-cta:active {
        transform: scale(.98);
    }

}
/* MOBILE — GET STARTED OPTIONS */

.exra-mobile-home-action.is-quick-start-open {
    overflow: visible;
}

.exra-mobile-quick-start-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    z-index: 10002;

    width: min(280px, calc(100vw - 32px));
    padding: 8px;

    background: #ffffff;
    border: 1px solid #d0d0d0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.exra-mobile-quick-start-menu a {
    display: block;
    padding: 12px 14px;

    color: #111111;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;

    border-bottom: 1px solid #eeeeee;
}

.exra-mobile-quick-start-menu a:last-child {
    border-bottom: 0;
}

.exra-mobile-quick-start-menu a:active,
.exra-mobile-quick-start-menu a:focus {
    background: #f3f3f3;
}
.exra-mobile-quick-start-dropdown {
    position: sticky;
    top: 124px;
    z-index: 9997;

    width: 100%;
    box-sizing: border-box;

    padding: 8px 14px 12px;

    background: #f3f1eb;
    border-bottom: 1px solid #ddd9d1;

    box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
}

.exra-mobile-quick-start-dropdown a {
    display: block;

    padding: 12px 14px;

    background: #ffffff;
    color: #111111;

    border-bottom: 1px solid #eeeeee;

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.exra-mobile-quick-start-dropdown a:last-child {
    border-bottom: 0;
}

.exra-mobile-quick-start-dropdown a:active {
    background: #f5f5f5;
}

/* =========================================================
   EXRA MOBILE HERO V2
   Mobile only — desktop remains untouched
   ========================================================= */

.exra-mobile-hero-v2,
.exra-mobile-hero-v2-overlap-space {
    display: none;
}

@media (max-width: 849px) {

    .exra-mobile-hero-v2 {
        display: block;
        position: relative;

        background: #2f3d4f;
        color: #ffffff;

        overflow: visible;
        transition:
    margin-top .9s cubic-bezier(.22, 1, .36, 1);
    }
    
    .exra-mobile-home-action.is-collapsed + .exra-mobile-hero-v2 {
    margin-top: -68px;
}

    .exra-mobile-hero-v2-inner {
        width: min(100% - 28px, 520px);
        margin: 0 auto;

       padding: 8px 0 18px;
    }


    /* MOBILE HEADLINE */

    .exra-mobile-hero-v2 h1 {
        margin: 0 0 14px;

        color: #ffffff;

        font-size: 24px;
        line-height: 1.35;
        font-weight: 700;
    }


    /* WORKFLOW PANEL */

    .exra-mobile-hero-workflow {
        width: 100%;

        margin: 0 0 12px;
        padding: 8px 10px;

        background: #adb9ca;
    }

    .exra-mobile-hero-workflow-svg {
        display: block;

        width: 100%;
        height: auto;

        overflow: visible;
    }


    /* CONNECTOR LINES */

    .exra-mobile-workflow-line {
        fill: none;

        stroke: rgba(255, 255, 255, .88);
        stroke-width: 2;

        stroke-linecap: round;
        stroke-linejoin: round;
    }


    /* NODE BOXES */

    .exra-mobile-workflow-node rect {
        fill: rgba(255, 255, 255, .03);

        stroke: rgba(255, 255, 255, .92);
        stroke-width: 2;
    }

    .exra-mobile-workflow-node text {
        fill: #ffffff;

        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        font-weight: 500;
    }


    /* EXRA NODE */

    .exra-mobile-workflow-node-exra rect {
        fill: #f4f4f0;
        stroke: #f4f4f0;
    }

    .exra-mobile-workflow-node-exra text {
        fill: #111111;

        font-size: 21px;
        font-weight: 800;
    }


    /* MOVING DOTS */

    .exra-mobile-workflow-dot {
        fill: #78b7ff;

        stroke: #d8ebff;
        stroke-width: 2;

        filter:
            drop-shadow(0 0 4px rgba(120, 183, 255, .85))
            drop-shadow(0 0 7px rgba(120, 183, 255, .45));
    }


    /* SUPPORTING COPY */

    .exra-mobile-hero-v2-subtitle {
        margin: 0;

        max-width: 420px;

        color: rgba(255, 255, 255, .92);

        font-size: 14px;
        line-height: 1.55;
    }


    /* IMAGE POSITION */

    .exra-mobile-hero-v2-image-wrap {
        position: relative;

        width: min(76%, 360px);

        margin: 22px 0 -122px auto;

        overflow: hidden;

        background: #e8e1d6;

        z-index: 3;
    }

    .exra-mobile-hero-v2-image {
        display: block;

        width: 100%;
        height: auto;

        margin: 0;
    }


    /* IMAGE COPY */

    .exra-mobile-hero-v2-image-copy {
        position: absolute;

        top: 14px;
        left: 14px;

        z-index: 2;

        max-width: 220px;

        color: #ffffff;

        font-size: 16px;
        line-height: 1.42;
        font-weight: 600;

        text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
    }


    /* CLEAN WHITE SPACE BELOW */

    .exra-mobile-hero-v2-overlap-space {
        display: block;

        height: 122px;

        background: #ffffff;
    }

}

/* =========================================================
   EXRA MOBILE HERO V2 — LIVE PROJECT NOTIFICATION
   ========================================================= */

@media (max-width: 849px) {

    .exra-mobile-project-notification {
        position: absolute;
        top: 50%;
        right: 10px;
        z-index: 4;

        width: 176px;
        height: 42px;

        overflow: hidden;

        background: rgba(255, 255, 255, .96);
        border: 1px solid rgba(255, 255, 255, .75);
        border-radius: 7px;

        box-shadow: 0 7px 18px rgba(0, 0, 0, .20);

        backdrop-filter: blur(5px);

        transform: translateY(-50%);
    }


    .exra-mobile-project-notification-item {
        position: absolute;
        inset: 0;

        display: flex;
        align-items: center;
        gap: 8px;

        padding: 0 12px;

        color: #1c2733;

        font-size: 12px;
        font-weight: 600;

        opacity: 0;

        transform:
            translateY(10px)
            scale(.97);

        animation:
            exraMobileProjectNotification 9s
            ease-in-out
            infinite;
    }


    .exra-mobile-project-notification-tick {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        flex: 0 0 17px;

        width: 17px;
        height: 17px;

        border-radius: 50%;

        background: #2678c8;
        color: #ffffff;

        font-size: 10px;
        font-weight: 800;
    }


    .exra-mobile-project-notification-1 {
        animation-delay: 0s;
    }

    .exra-mobile-project-notification-2 {
        animation-delay: 3s;
    }

    .exra-mobile-project-notification-3 {
        animation-delay: 6s;
    }


    @keyframes exraMobileProjectNotification {

        0% {
            opacity: 0;
            transform:
                translateY(10px)
                scale(.97);
        }

        8% {
            opacity: 1;
            transform:
                translateY(0)
                scale(1);
        }

        26% {
            opacity: 1;
            transform:
                translateY(0)
                scale(1);
        }

        33% {
            opacity: 0;
            transform:
                translateY(-8px)
                scale(.98);
        }

        100% {
            opacity: 0;
            transform:
                translateY(-8px)
                scale(.98);
        }

    }
    
   
    
   

  