/* ===========================================================================
 *  Experion Elements - landing page styles
 * ===========================================================================
 *  Everything here is specific to this landing page. The shared Experion
 *  theme lives in style.css / custom.css / responsive.css - do not edit those
 *  for page-level tweaks, override them here instead.
 *
 *  Contents
 *    0. Brand palette
 *    1. Hero banner
 *    2. Side call-to-action tabs
 *    3. Enquiry popup
 *    4. Form validation messages
 *    5. Thank-you page
 *    6. OTP modal
 *    7. Section navigation in the header
 *    8. Floor plan cards
 *    9. Location section
 *    10. Sticky enquiry bar
 *    11. Submit CTAs while their request is in flight
 * ======================================================================== */

/* ---------------------------------------------------------------------------
 * 0. Brand palette
 * ------------------------------------------------------------------------ */
/* Midnight navy + champagne gold, taken from the campaign banner. The popup,
   OTP modal, side tabs, sticky bar and thank-you page all read these. */
:root {
  --ty-gold: #c29b52;
  --ty-cream: #f8f5ef;
  --ty-ink: #0f1a2e;
  --ty-muted: #6b7385;
  --ty-gold-dark: #a47f3a;
  --ty-navy: #101d35;
  /* Validation errors only - the calls to action are gold. */
  --ty-red: #d81f26;
}

/* ---------------------------------------------------------------------------
 * 1. Hero banner
 *    custom.css stretches the banner to the full viewport height and crops the
 *    overflow. This creative carries the logo, the RERA block and the legal
 *    line right at its edges, so any crop cuts them off - it is shown whole at
 *    its own aspect ratio instead, on every screen size.
 * ------------------------------------------------------------------------ */
.header.element .banner {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

@media (max-width: 991px) {
  .header.element .banner {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center center;
  }
}

/* ---------------------------------------------------------------------------
 * 2. Side call-to-action tabs
 *    Brochure and Enquire Now, pinned upright against the right edge of the
 *    viewport. Both open the enquiry popup; Brochure tags the request so the
 *    team knows which file was asked for.
 * ------------------------------------------------------------------------ */
.side_cta {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 97;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  transform: translateY(-50%);
}

.side_cta_tab {
  display: block;
  padding: 14px 4px;
  /* vertical-rl runs the text downwards; the half turn stands it back up so
       it reads bottom-to-top, and swings the rounded corners to the left. */
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border-radius: 0 4px 4px 0;
  background: var(--ty-gold);
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.side_cta_tab:hover,
.side_cta_tab:focus {
  background: var(--ty-gold-dark);
  color: #fff;
}

@media (max-width: 575px) {
  .side_cta_tab {
    padding: 14px 4px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}

/* ---------------------------------------------------------------------------
 * 3. Enquiry popup
 *    Hidden by default; assets/js/main.js fades it in.
 * ------------------------------------------------------------------------ */
.popup_module {
  display: none;
}

/* custom.css centres the card in a full-height flex box, which pushes the top
   and bottom off screen once the card is taller than the viewport - and on a
   phone it always is. Aligning to the start and letting auto margins do the
   centring keeps it centred when there is room and scrollable when there is
   not. */
.popup_module .popup_module_in {
  align-items: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
}

.popup_module .popup_container {
  margin: auto;
}

/* Nothing should sit over the card while it is open, and the page behind it
   should stay put. */
body.is-popup-open {
  overflow-y: hidden;
}

body.is-popup-open .sticky_enquiry,
body.is-popup-open .side_cta,
body.is-popup-open .progress-wrap {
  display: none;
}

/* Honeypot - kept in the layout but invisible to people, so bots still fill it. */
.hp_field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ---------------------------------------------------------------------------
 * intl-tel-input country picker on the mobile field
 *   The library ships as an inline-block wrapper around the input, so it has
 *   to be widened to fill the form row. On narrow screens it switches to its
 *   own fullscreen popup, which only needs to clear the enquiry modal.
 * ------------------------------------------------------------------------ */
.enquire_form .iti {
  display: block;
  width: 100%;
}

.enquire_form .iti > input.form-control {
  width: 100%;
}

/* Brand the picker to match the rest of the form. */
.enquire_form .iti,
.iti--container {
  --iti-hover-color: var(--ty-cream);
  --iti-border-color: #ced4da;
  --iti-arrow-color: #777;
  --iti-dialcode-color: #777;
}

/* Desktop: the dropdown hangs off the field, so pin it to the field's width
   and keep the list short enough to stay inside the modal. */
.enquire_form .iti--inline-dropdown .iti__dropdown-content {
  width: 100%;
  min-width: 240px;
  z-index: 5;
}

.enquire_form .iti--inline-dropdown .iti__country-list {
  max-height: 190px;
}

.iti__search-input {
  padding: 10px 12px;
  border-bottom: 1px solid var(--iti-border-color);
  font-size: 14px;
}

.iti__search-input:focus {
  outline: none;
}

/* Mobile: the library moves the dropdown to a fullscreen popup on <body>, so
   it needs to sit above the enquiry modal (z-index 99). */
.iti--fullscreen-popup.iti--container {
  z-index: 1060;
}

.iti--fullscreen-popup .iti__country {
  padding: 12px 12px;
}

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

/* ---------------------------------------------------------------------------
 * 4. Form validation messages
 * ------------------------------------------------------------------------ */
.form_message {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}

.form_message--error,
.form_message.is-error {
  color: #d0021b;
}

.form_message--success {
  color: #1e7e34;
}

/* Field highlighted by the client-side validator. */
.form-control.is-invalid,
.check-box.is-invalid {
  border-color: #d0021b;
}

/* ---------------------------------------------------------------------------
 * 5. Thank-you page
 *    A standalone centred card - thank-you.php loads only fonts.css and this
 *    file, so none of the theme styles above apply to it.
 * ------------------------------------------------------------------------ */
.thankyou-page {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 100vh;
  margin: 0;
  padding: 24px;
  background: var(--ty-cream);
  color: var(--ty-ink);
  font-family: "Barlow", Arial, sans-serif;
}

.thankyou-page * {
  box-sizing: border-box;
}

.thankyou-wrapper {
  width: 100%;
  /* Flex items default to min-width:auto, which lets a long unwrapped line
       push the card wider than the viewport. min-width:0 lets it shrink. */
  min-width: 0;
  max-width: 560px;
  padding: 48px 40px;
  border-top: 4px solid var(--ty-gold);
  background: #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* Project logo, then the "BY EXPERION" endorsement line. */
.thankyou-logo img {
  display: block;
  width: 100%;
  max-width: 265px;
  height: auto;
  margin: 0 auto;
}

.thankyou-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 30px;
  color: var(--ty-muted);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* The corporate mark carries two tagline lines, so it needs the extra height
   to stay legible next to the "BY" label. */
.thankyou-byline img {
  width: auto;
  max-height: 46px;
}

.thankyou-wrapper h1 {
  margin: 0 0 14px;
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.thankyou-wrapper p {
  margin: 0 0 30px;
  color: var(--ty-muted);
  font-size: 16px;
  line-height: 1.8;
}

.thankyou-highlight {
  color: var(--ty-gold);
  font-weight: 600;
}

.thankyou-btn {
  display: inline-block;
  padding: 13px 34px;
  background: var(--ty-gold);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.thankyou-btn:hover,
.thankyou-btn:focus {
  background: var(--ty-gold-dark);
  color: #fff;
  text-decoration: none;
}

/* Two buttons side by side on the download version of the page - the file
   itself, and the way back to the landing page. */
.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.thankyou-btn-ghost {
  /* The border is taken out of the padding so both buttons stay the same
     height sitting next to each other. */
  padding: 12px 33px;
  background: transparent;
  border: 1px solid var(--ty-gold);
  color: var(--ty-gold);
}

.thankyou-btn-ghost:hover,
.thankyou-btn-ghost:focus {
  background: var(--ty-gold);
  color: #fff;
}

@media (max-width: 480px) {
  .thankyou-page {
    padding: 16px;
  }

  .thankyou-wrapper {
    padding: 34px 22px;
  }

  .thankyou-byline {
    font-size: 14px;
  }

  .thankyou-byline img {
    max-height: 38px;
  }

  .thankyou-wrapper h1 {
    font-size: 30px;
  }

  .thankyou-wrapper p {
    font-size: 15px;
  }

  /* Let the copy wrap to the card instead of holding the desktop line break. */
  .thankyou-wrapper p br {
    display: none;
  }
}

/* ---------------------------------------------------------------------------
 * 6. OTP modal
 *    Opened by main.js once send-otp.php answers. Aligned to the top of a
 *    scrollable flex box so a short screen scrolls the card instead of
 *    cutting it off.
 * ------------------------------------------------------------------------ */
.otp_modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1200;
}

.otp_modal.is-open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
}

.otp_modal_backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 12, 0.7);
}

.otp_modal_box {
  position: relative;
  z-index: 1;
  width: min(400px, calc(100% - 24px));
  margin: auto;
  padding: 34px 28px 26px;
  border-top: 4px solid var(--ty-gold);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  text-align: center;
}

/* 44px keeps the close control inside the usual minimum touch target. */
.otp_close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #9a9a9a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.otp_close:hover,
.otp_close:focus {
  color: var(--ty-ink);
}

.otp_head {
  margin-bottom: 22px;
}

.otp_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--ty-cream);
  color: var(--ty-gold);
  font-size: 24px;
}

.otp_modal_box h3 {
  margin: 0 0 8px;
  color: var(--ty-ink);
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.otp_sub {
  margin: 0;
  color: var(--ty-muted);
  font-size: 14px;
  line-height: 1.6;
}

.otp_sub strong {
  color: var(--ty-ink);
  font-weight: 600;
}

.otp_code_inputs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

/* The theme styles every input as a ruled line, hence the overrides. */
.otp_digit {
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 0;
  border: 1px solid #ddd6cc !important;
  border-radius: 10px;
  background: #fcfaf7 !important;
  box-shadow: none !important;
  color: var(--ty-ink);
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.otp_digit:focus {
  border-color: var(--ty-gold) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(194, 155, 82, 0.2) !important;
  outline: none;
}

.otp_message {
  margin: 0 0 14px;
  min-height: 20px;
  text-align: center;
}

.otp_message:empty {
  margin-bottom: 0;
}

.otp_primary {
  display: block;
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--ty-gold);
  color: #fff;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.otp_primary:hover {
  background: var(--ty-gold-dark);
}

.otp_resend {
  margin: 16px 0 0;
  color: var(--ty-muted);
  font-size: 13px;
}

/* Resend reads as a link, not a second competing button. */
.otp_secondary {
  padding: 0;
  border: 0;
  background: none;
  color: var(--ty-gold);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.otp_secondary:disabled,
.otp_secondary.is-disabled {
  color: var(--ty-muted);
  text-decoration: none;
  cursor: not-allowed;
}

body.is-otp-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .otp_modal_box {
    padding: 28px 18px 22px;
  }

  .otp_modal_box h3 {
    font-size: 26px;
  }

  .otp_badge {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .otp_code_inputs {
    gap: 8px;
  }

  .otp_digit {
    height: 54px;
    font-size: 23px;
  }
}

/* ---------------------------------------------------------------------------
 * 7. Section navigation in the header
 *    The in-page section bar (Overview / Walkthrough / ...) sits inside the
 *    header now, so custom.css's sticky-strip and pill styling is undone here
 *    and the links are rendered as plain nav text instead.
 * ------------------------------------------------------------------------ */
.header_wrap .menu {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.header_wrap .menu_click {
  margin-top: 0;
  position: static;
  padding: 0;
  background: none;
  box-shadow: none;
}

.header_wrap .menu_click ul {
  justify-content: flex-end;
}

.header_wrap .menu_click ul li a {
  display: inline-block;
  margin: 0;
  padding: 32px 14px;
  background: none;
  color: #555;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 3px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.header_wrap .menu_click ul li a:hover,
.header_wrap .menu_click ul li a.active {
  background: none;
  color: var(--ty-gold);
}

.header_wrap .element_button {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-shrink: 0;
}

.header_wrap .element_button a {
  white-space: nowrap;
}

@media (max-width: 1250px) {
  .header_wrap .menu_click ul li a {
    padding: 32px 9px;
    font-size: 14px;
    letter-spacing: 2px;
  }
}

/* Below 992px the menu becomes the off-canvas drawer - stack the links. */
@media (max-width: 992px) {
  .header_wrap .menu {
    display: block;
    margin-left: 0;
  }

  .header_wrap .menu_click ul {
    display: block;
  }

  .header_wrap .menu_click ul li a {
    display: block;
    padding: 12px 28px;
    color: #222;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
  }

  .header_wrap .menu_click ul li a.active {
    color: var(--ty-gold);
  }

  .header_wrap .element_button {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}

/* ---------------------------------------------------------------------------
 * 8. Floor plan cards
 *    A small outline button on each unit card, opening the enquiry popup with
 *    the unit tagged so the team knows which plan was asked for.
 * ------------------------------------------------------------------------ */
.floor_plan_cta {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 22px;
  border: 1px solid var(--ty-gold);
  border-radius: 3px;
  color: var(--ty-gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.floor_plan_cta:hover,
.floor_plan_cta:focus {
  background: var(--ty-gold);
  color: #fff;
}

/* ---------------------------------------------------------------------------
 * 9. Location section
 *    The route video and the map sit side by side on desktop and stack on
 *    phones. Both boxes are held to the video thumbnail's 16:9 so the pair
 *    lines up at any width.
 * ------------------------------------------------------------------------ */
.location_media {
  padding: 12px;
}

.location_media .img,
.location_media .img a,
.location_map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.location_media .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location_map iframe {
  border: 0;
}

/* Stacked on phones, so the two no longer need matching heights - give the map
   room enough to be usable instead. */
@media (max-width: 991px) {
  .location_media {
    padding: 8px 0;
  }

  .location_map iframe {
    aspect-ratio: auto;
    height: 300px;
  }
}

/* ---------------------------------------------------------------------------
 * 10. Sticky enquiry bar
 *    Pinned to the bottom of the viewport on every screen size, dark so it
 *    reads as a band of its own against the page above it.
 * ------------------------------------------------------------------------ */
.sticky_enquiry {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 98;
  padding: 14px 0;
  background: var(--ty-navy);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.35);
}

/* Reserve the bar's height at the foot of the document. main.js measures the
   bar and sets --sticky-h; the values below are the no-JS fallback, and being
   approximate is why they are not used on their own - too much padding leaves
   a strip of bare page showing between the footer and the bar. */
body.element_page {
  padding-bottom: var(--sticky-h, 90px);
}

/* The scroll-to-top ring would otherwise sit behind the bar. */
.progress-wrap {
  bottom: calc(var(--sticky-h, 90px) + 12px);
}

.sticky_enquiry_fields {
  display: grid;
  grid-template-columns:
    minmax(190px, 1.4fr) minmax(220px, 1.45fr) minmax(220px, 1.7fr)
    minmax(300px, 2.1fr) auto;
  align-items: center;
  gap: 14px;
}

.sticky_enquiry_fields > .form-control,
.sticky_enquiry_phone {
  width: 100%;
  min-width: 0;
}

.sticky_enquiry_phone {
  min-width: 0;
}

/* Dark fields with a hairline border, as in the reference. */
.sticky_enquiry_form .form-control {
  height: 46px;
  margin: 0;
  padding: 0 16px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
}

.sticky_enquiry_form .form-control::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.sticky_enquiry_form .form-control:focus {
  background-color: transparent;
  border-color: var(--ty-gold);
  box-shadow: none;
  color: #fff;
}

.sticky_enquiry_form .form-control.is-invalid {
  border-color: var(--ty-red);
}

/* The country picker has to follow the field onto the dark background. */
.sticky_enquiry_form .iti {
  --iti-hover-color: rgba(255, 255, 255, 0.08);
  --iti-arrow-color: #9a9a9a;
}

.sticky_enquiry_form .iti__selected-country {
  color: #fff;
}

.sticky_enquiry_form .iti__selected-dial-code {
  color: #9a9a9a;
}

/* Consent sits in the same row, so it is sized to take two short lines. */
.sticky_enquiry_terms {
  min-width: 0;
  margin: 0;
  padding-left: 26px;
}

.sticky_enquiry_terms .form-check-input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-left: -26px;
  background-color: transparent;
  border: 1px solid var(--ty-gold);
  border-radius: 2px;
}

.sticky_enquiry_terms .form-check-input:checked {
  background-color: var(--ty-gold);
  border-color: var(--ty-gold);
}

.sticky_enquiry_terms .form-check-input.is-invalid {
  border-color: var(--ty-red);
}

.sticky_enquiry_terms .form-check-label {
  color: #e6e6e6;
  font-size: 12px;
  line-height: 1.5;
}

.sticky_enquiry_terms .form-check-label a {
  color: var(--ty-gold);
  text-decoration: underline;
}

/* Submit, matching the side tabs. */
.sticky_enquiry_form .butn-dark2 {
  flex: 0 0 auto;
  width: auto;
  min-width: 150px;
  height: 46px;
  margin: 0;
  padding: 0 34px;
  border: 0;
  border-radius: 4px;
  background: var(--ty-gold);
  color: #fff;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  white-space: nowrap;
}

/* The theme animates a wipe across .butn-dark2; a plain hover suits the bar. */
.sticky_enquiry_form .butn-dark2:after {
  display: none;
}

.sticky_enquiry_form .butn-dark2:hover {
  background: var(--ty-gold-dark);
}

.sticky_enquiry_form .form_message {
  margin-top: 8px;
  color: #fff;
}

.sticky_enquiry_form .form_message.is-error {
  color: #ff8f94;
}

.sticky_enquiry_form .form_message:empty {
  display: none;
}

/* Below the desktop breakpoint the row wraps: the three fields share one line,
   then consent and the button share the next. */
@media (max-width: 1199px) {
  .sticky_enquiry_fields {
    flex-wrap: wrap;
    gap: 10px;
  }

  .sticky_enquiry_fields > .form-control,
  .sticky_enquiry_phone {
    flex: 1 1 180px;
  }

  .sticky_enquiry_terms {
    flex: 1 1 100%;
  }

  body.element_page {
    padding-bottom: var(--sticky-h, 160px);
  }

  .progress-wrap {
    bottom: calc(var(--sticky-h, 160px) + 12px);
  }
}

/* Phones get no bottom bar at all - the side tabs already carry Enquire Now
   and Brochure, and a four-field form eats most of a small screen. With the
   bar hidden its measured height is 0, so main.js reserves no space for it. */
@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  .sticky_enquiry {
    display: none;
  }

  body.element_page {
    padding-bottom: var(--sticky-h, 0px);
  }

  .progress-wrap {
    bottom: calc(var(--sticky-h, 0px) + 20px);
  }
}

/* The bar sits at the bottom of the screen, so the country list has to open
   upwards - intl-tel-input has no flip-up of its own for inline dropdowns.
   (On small screens it switches to its fullscreen popup, which is unaffected.) */
.sticky_enquiry_form .iti--inline-dropdown .iti__dropdown-content {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 3px;
}

/* ---------------------------------------------------------------------------
 * 11. Submit CTAs while their request is in flight
 *     main.js swaps the label ("Please wait...", "Verifying...") and adds
 *     .is-processing. The button is dimmed and stops taking clicks until the
 *     request comes back, so a second tap cannot send a second OTP or file a
 *     second lead. No spinner: these buttons are only as wide as their label,
 *     and one would sit on top of it.
 * ------------------------------------------------------------------------ */
.is-processing {
  opacity: 0.65;
  cursor: progress;
  pointer-events: none;
}

/* The theme wipes a dark panel across .butn-dark2 on hover - held back here so
   a parked button keeps reading as parked. */
.butn-dark2.is-processing:after {
  width: 0;
}
