/* NUDOT 复刻 — contact 页面样式
   来源：nudot.com.tw 线上产物内联样式表
   整理：合并 3 个 <style> 块，规范为外部文件；未改动任何声明
*/

:root {
      --font-family-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
      --font-family-display: "Zalando Sans SemiExpanded", "DM Sans", "Helvetica Neue", Arial, sans-serif;
      --text-2xs: clamp(0.6875rem, 0.66rem + 0.14vw, 0.75rem);
      --text-xs: clamp(0.75rem, 0.72rem + 0.22vw, 0.85rem);
      --text-sm: clamp(0.8125rem, 0.77rem + 0.28vw, 0.95rem);
      --leading-body: 1.7;
      --tracking-meta: 0.12em;
      --tracking-caps: 0.18em;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html.lenis {
      height: auto;
      scroll-behavior: auto !important;
    }

    html,
    body {
      background: #000;
      color: #fff;
      font-family: var(--font-family-body);
    }

    body {
      overflow: clip;
    }
    
    
    .grecaptcha-badge { 
    visibility: hidden !important;
}

    /* ── Contact Banner ── */
    .contact-banner {
      position: relative;
      overflow: visible;

    }

    .cb-headline-wrap {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
    }

    .cb-headline {
      display: flex;
      flex-direction: column;
      gap: 0;
      pointer-events: none;
      user-select: none;
    }

    .cb-line {
      display: block;
      font-family: var(--font-family-display);
      font-size: clamp(3rem, 10vw, 10rem);
      font-weight: 700;
      line-height: 0.92;
      letter-spacing: -0.03em;
      text-transform: uppercase;
      color: #fff;
    }

    .cb-float {
      position: absolute;
      overflow: hidden;
      pointer-events: none;
      z-index: 2;
    }

    .cb-float img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .cb-float--1 {
      width: clamp(75px, 9vw, 155px);
      height: clamp(52px, 6vw, 110px);
      top: 4%;
      left: 49%;
    }

    .cb-float--2 {
      width: clamp(60px, 7vw, 125px);
      height: clamp(80px, 10vw, 175px);
      top: 38%;
      left: 29%;
    }

    .cb-float--3 {
      width: clamp(75px, 8.5vw, 148px);
      height: clamp(75px, 8.5vw, 148px);
      top: 22%;
      right: 5%;
    }

    @media (max-width: 768px) {



      .cb-float {
        display: none;
      }

      .cb-line {
        font-size: clamp(2.6rem, 10vw, 4.5rem);
      }
    }

    /* ── Page layout ── */
    .page {
      padding: 0 var(--work-side-pad) 0 var(--work-side-pad);
      /*max-width: 1400px;*/
      margin: 0 auto;
    }

    .top-desc {
      display: flex;
      justify-content: space-between;
      font-size: var(--text-xs);
      letter-spacing: var(--tracking-caps);
      text-transform: uppercase;
      color: #959595;
      margin-bottom: 24px;
    }

    .line {
      border-top: 1px solid #222;
      margin: 40px 0;
    }

    /* ── Info Grid ── */
    .info-grid {
      display: grid;
      /*grid-template-columns: 240px 1fr 1fr;*/
      gap: 40px;
      margin-bottom: 60px;
    }

    .info-label {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #959595;
      padding-top: 4px;
    }

    .info-title {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #959595;
      margin-bottom: 16px;
      font-weight: 400;
    }

    .info-text {
      font-size: 14px;
      line-height: 1.7;
      color: #959595;
      margin-bottom: 24px;
    }

    .huge-link {
      display: block;
      font-size: clamp(18px, 3vw, 36px);
      color: #fff;
      text-decoration: none;
      font-weight: 300;
      letter-spacing: -0.01em;
      margin-bottom: 8px;
      border-bottom: 1px solid #222;
      padding-bottom: 16px;
      transition: color 0.2s;
    }

    .huge-link:hover {
      color: #959595;
    }

    /* ── Form Area ── */
    .form-area {
      display: block;
      margin-bottom: 80px;
    }

    .form-msg {
      font-size: 13px;
      line-height: 1.7;
      color: #666;
      margin-bottom: 40px;
      padding-bottom: 24px;
      border-bottom: 1px solid #222;
    }

    .form-fields {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .field-group {
      display: grid;
      grid-template-columns: 220px 1fr;
      align-items: start;
      gap: 0 28px;
      padding: 22px 0;
      border-bottom: 1px solid #222;
    }

    .field-group:focus-within {
      border-bottom-color: #555;
    }

    .field-group label {
      font-size: 14px;
      letter-spacing: 0.01em;
      text-transform: none;
      color: #d5d5d5;
      font-weight: 400;
      padding-top: 4px;
      align-self: start;
    }

    .field-group label .req {
      color: #fff;
      margin-left: 1px;
    }

    .field-group input:-webkit-autofill,
    .field-group input:-webkit-autofill:hover,
    .field-group input:-webkit-autofill:focus {
      -webkit-box-shadow: 0 0 0 1000px #0d0d0d00 inset !important;
      -webkit-text-fill-color: #fff !important;
      caret-color: #fff;
      transition: background-color 9999s ease-in-out 0s;
    }

    .field-group input,
    .field-group textarea {
      background: transparent;
      border: none;
      color: #fff;
      font-size: clamp(1.3rem, 2.8vw, 2rem);
      font-weight: 300;
      font-family: var(--font-family-body);
      padding: 0 0 4px;
      outline: none;
      width: 100%;
      letter-spacing: -0.01em;
    }

    .field-group input::placeholder,
    .field-group textarea::placeholder {
      color: #363636;
      font-weight: 300;
      font-style: italic;
    }

    .field-group textarea {
      resize: none;
      min-height: 70px;
    }

    .field-group input.invalid,
    .field-group textarea.invalid {
      color: #fff;
    }

    .field-group input.valid,
    .field-group textarea.valid {
      color: #fff;
    }

    .field-error {
      font-size: 11px;
      color: #fff;
      display: none;
      letter-spacing: 0.05em;
      grid-column: 2;
      padding-top: 4px;
    }

    .field-error.visible {
      display: block;
    }

    /* server error banner */
    .server-error {
      font-size: 12px;
      letter-spacing: 0.1em;
      color: #e55;
      border: 1px solid #e55;
      padding: 12px 16px;
      margin-bottom: 24px;
    }

    /* budget rows */
    .budget-section {
      display: grid;
      grid-template-columns: 220px 1fr;
      align-items: start;
      gap: 0 28px;
      padding: 22px 0;
      border-bottom: 1px solid #222;
    }

    .budget-section-label {
      font-size: 13px;
      letter-spacing: 0.01em;
      text-transform: none;
      color: #666;
      font-weight: 400;
      padding-top: 4px;
    }

    .budget-offers {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .budget-offer-btn {
      appearance: none;
      background: transparent;
      border: none;
      border-bottom: 2px solid transparent;
      border-radius: 0;
      padding: 9px 20px 11px;
      cursor: pointer;
      color: #999999;
      font-size: 14px;
      font-family: var(--font-family-body);
      letter-spacing: 0.03em;
      transition: color 0.2s, border-color 0.2s;
      white-space: nowrap;
      outline: none;
      line-height: 1.4;
    }

    .budget-offer-btn:hover {
      color: #aaa;
      border-bottom-color: rgba(255, 255, 255, 0.25);
    }

    .budget-offer-btn.is-active {
      color: #fff;
      border-bottom-color: #fff;
    }

    /* budget selected row */
    .budget-selected-row {
      display: grid;
      grid-template-columns: 220px 1fr;
      align-items: center;
      gap: 0 28px;
      padding: 0;
      border-bottom: 1px solid transparent;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.28s ease,
        padding 0.32s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease;
    }

    .budget-selected-row.is-visible {
      max-height: 100px;
      opacity: 1;
      padding: 14px 0;
      pointer-events: auto;
      border-color: #1c1c1c;
    }

    .budget-selected-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .budget-selected-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 14px;
      color: #000000;
      letter-spacing: 0.04em;
      padding: 5px 12px 5px 9px;
      /* border: 1px solid #333; */
      border-radius: 1px;
      background-color: #fff;
    }

    .budget-selected-tag::before {
      content: '✓';
      font-size: 9px;
      color: #aaa;
    }

    .budget-tag-remove {
      appearance: none;
      background: transparent;
      border: none;
      color: #555;
      font-size: 15px;
      line-height: 1;
      padding: 0 0 0 6px;
      cursor: pointer;
      font-family: inherit;
      transition: color 0.15s;
      vertical-align: middle;
    }

    .budget-tag-remove:hover {
      color: #fff;
    }

    .budget-selected-price {
      border-color: #444;
      color: #fff;
    }

    .budget-selected-price::before {
      content: '▸';
      color: #888;
    }

    /* budget price row */
    .budget-price-section {
      display: grid;
      grid-template-columns: 220px 1fr;
      align-items: start;
      gap: 0 28px;
      padding: 0;
      border-bottom: 1px solid transparent;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      transition: max-height 0.38s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.28s ease,
        padding 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease;
    }

    .budget-price-section.is-visible {
      max-height: 160px;
      opacity: 1;
      padding: 22px 0;
      pointer-events: auto;
      border-color: #222;
    }

    .budget-price-offers {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .budget-price-btn {
      appearance: none;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 3px;
      padding: 9px 22px;
      cursor: pointer;
      color: #777;
      font-size: 14px;
      font-family: var(--font-family-body);
      letter-spacing: 0.03em;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
      white-space: nowrap;
      outline: none;
      line-height: 1.4;
    }

    .budget-price-btn:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.28);
      color: #bbb;
    }

    .budget-price-btn.is-active {
      background: #fff;
      border-color: #fff;
      color: #000;
    }

    /* captcha */
    .captcha-block {
      border-bottom: 1px solid #222;
    }

    .captcha-eq-row {
      display: grid;
      grid-template-columns: 220px 1fr;
      align-items: center;
      gap: 0 28px;
      padding: 22px 0;
    }

    .captcha-meta-label {
      font-size: 13px;
      letter-spacing: 0.01em;
      text-transform: none;
      color: #666;
      font-weight: 400;
    }

    .captcha-right {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .captcha-eq-display {
      display: flex;
      align-items: baseline;
      gap: 8px;
      line-height: 1;
    }

    .cap-digit,
    .cap-op,
    .cap-q {
      font-family: "Bitcount Prop Single", "Bitcount Grid Single", monospace;
      line-height: 1;
    }

    .cap-digit {
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 400;
      color: #fff;
    }

    .cap-op {
      font-size: clamp(1.2rem, 2.8vw, 2rem);
      color: #666;
    }

    .cap-q {
      font-size: clamp(1.8rem, 4vw, 3rem);
      color: #666;
    }

    .captcha-input-wrap {
      display: flex;
      align-items: center;
    }

    .captcha-input-wrap input {
      background: transparent;
      border: none;
      border-bottom: 1px solid #333;
      color: #fff;
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 300;
      font-family: "Bitcount Prop Single", "Bitcount Grid Single", monospace;
      padding: 4px 0;
      outline: none;
      width: 70px;
      text-align: center;
      transition: border-color 0.2s;
      -moz-appearance: textfield;
    }

    .captcha-input-wrap input::-webkit-outer-spin-button,
    .captcha-input-wrap input::-webkit-inner-spin-button {
      -webkit-appearance: none;
    }

    .captcha-input-wrap input:focus {
      border-bottom-color: #fff;
    }

    .captcha-block .field-error {
      grid-column: unset;
      padding: 0 0 12px 248px;
    }

    /* submit */
    .submit-wrap {
      margin-top: 32px;
    }

    .btn-submit {
      background: transparent;
      border: 1px solid #959595;
      color: #fff;
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 15px 100px;
      cursor: pointer;
      font-family: var(--font-family-body);
      transition: background 0.2s, border-color 0.2s;
    }

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

    .btn-submit:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    /* ── Footer ── */
    .site-footer {
      position: relative;
      overflow: visible;
      background: #000;
      color: #fff;
      padding: 0;
      font-family: var(--font-family-body);
    }

    .footer-parallax-section {
      height: 50vh;
      width: 100%;
      overflow: hidden;
      position: relative;
      z-index: 1;
    }

    .footer-parallax-copy {
      position: absolute;
      top: 30px;
      left: 40px;
      z-index: 3;
      color: rgba(255, 255, 255, 0.65);
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      letter-spacing: 0.06em;
      line-height: 1.7;
      pointer-events: none;
    }

    @media (max-width: 1440px) {
      .footer-parallax-section {
        height: 300px;

      }
    }


    .footer-parallax-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: var(--footer-bg-image, none);
      background-attachment: fixed;
      background-size: contain;
      background-position: bottom;
      opacity: 1;
      mix-blend-mode: luminosity;
    }

    /* ── Footer Top ── */
    .footer-top {
      padding: 3vw 2.5vw;
      position: relative;
      z-index: 5;
      background-color: #000;
    }

    .contact-hero.work-hero {
      position: relative;
      top: auto;
      z-index: 5;
      background: #000;
    }

    /* Mobile-only title — hidden on desktop */
    .contact-hero .mobile_work-hero__title {
      display: none;
      font-size: 65px;
    }

    .footer-brand-title {
      font-family: 'Zalando Sans SemiExpanded', 'DM Sans', sans-serif;
      font-size: clamp(64px, 9.5vw, 130px);
      font-weight: 600;
      text-transform: uppercase;
      line-height: 0.88;
      letter-spacing: -0.02em;
      margin-bottom: 40px;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: baseline;
    }

    .footer-brand-title sup {
      font-size: 0.13em;
      vertical-align: top;
      letter-spacing: 0;
    }

    .footer-info-bar {
      display: flex;
      justify-content: space-between;
      border-top: 1px solid #222;
      padding-top: 18px;
      margin-bottom: 40px;
      font-size: 14px;
      text-transform: uppercase;
      color: #fff;
      letter-spacing: 0.06em;
    }

    .footer-main-content {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      /*gap: 40px;*/
    }

    .footer-description {
      font-size: 14px;
      line-height: 1.65;
      color: #666;
      max-width: 450px;
      margin-bottom: 32px;
    }

    .footer-contact-info a {
      display: block;
      color: #fff;
      text-decoration: none;
      font-size: clamp(20px, 3.5vw, 50px);
      font-weight: 400;
      margin-bottom: 4px;
      transition: opacity 0.2s;
    }

    .footer-contact-info a:hover {
      opacity: 0.6;
    }

    .footer-contact-info span {
      color: #ccc;
      font-size: clamp(18px, 2.5vw, 30px);
    }

    .footer-nav-links {
      display: flex;
      gap: 28px;
      margin-top: 38px;
    }

    .footer-nav-links a {
      color: #fff;
      text-decoration: none;
      font-size: var(--text-xs);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      transition: opacity 0.2s;
    }

    .footer-nav-links a:hover {
      opacity: 0.5;
    }

    .footer-right-panel {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: flex-start;
    }

    .footer-video-thumb {
      width: 100%;
      max-width: 340px;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      position: relative;
    }

    @media (max-width: 768px) {
      .footer-video-thumb {
        max-width: 100%;
      }
    }

    .footer-video-thumb img,
    .footer-video-thumb video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .footer-copyright-bridge {
      position: absolute;
      bottom: 0;
      right: 6%;
      width: clamp(90px, 10vw, 148px);
      height: clamp(90px, 10vw, 148px);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateY(50%);
      z-index: 20;
    }

    .footer-copyright-bridge span {
      font-family: 'Zalando Sans SemiExpanded', 'DM Sans', sans-serif;
      font-size: 180px;
      font-weight: 600;
      color: #fff;
      line-height: 1;
    }


    @media (max-width: 768px) {
      .footer-top {
        padding: 1.5rem;
        line-height: normal;
      }

      .footer-nav-links {
        gap: 16px;
        margin-top: 24px;
        flex-wrap: wrap;

      }
    }

    /* ── Sending Overlay ── */
    #sending-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      display: none;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 28px;
      z-index: 999999;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    #sending-overlay.active {
      display: flex;
      opacity: 1;
    }

    #sending-overlay.fade-in {
      opacity: 1;
    }

    #sending-hourglass {
      width: 52px;
      height: auto;
      animation: hg-spin 1.4s linear infinite;
      transform-origin: center center;
    }

    @keyframes hg-spin {
      0%   { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    #sending-label {
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #aaa;
      font-family: var(--font-family-body);
    }

    /* ── Lightbox ── */
    #lb-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.2);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 99999;
      backdrop-filter: blur(10px);
    }

    #lb-overlay.active {
      display: flex;
    }

    #lb-box {
      padding: 60px 40px;
      text-align: center;
      max-width: 420px;

    }



    #lb-mark {
      font-size: 48px;
      color: #fff;
      /*margin-bottom: 20px;*/
      line-height: 1;
      mix-blend-mode: exclusion;
    }

    #lb-mark img {
      width: 50px;
    }

    #lb-title {
      font-size: 18px;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 16px;
      font-family: 'Bitcount Grid Single';
      text-transform: uppercase;
    }



    #lb-title div {
      font-size: 60px;

    }

    #lb-sub {
      font-size: 14px;
      line-height: 1.7;
      color: #959595;
      margin-bottom: 32px;
    }

    #lb-close {
      background: transparent;
      border: 1px solid #959595;
      color: #fff;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 10px 28px;
      cursor: pointer;
      font-family: var(--font-family-body);
      transition: background 0.2s;
    }

    #lb-close:hover {
      background: #fff;
      color: #000;
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .footer-copyright-bridge {
        display: none !important;
      }
    }

    @media (max-width: 768px) {

      /* Hero: show CONTACT div, hide LET'S / center / TALK */
      .contact-hero .mobile_work-hero__title {
        display: block;
      }

      .contact-hero h1.work-hero__title {
        display: none;
      }

      .contact-hero .work-hero__center {
        display: block;
      }

      .contact-hero .work-hero__code {
        display: none;
      }

      .info-grid {
        grid-template-columns: 1fr;
      }

      .field-group {
        grid-template-columns: 1fr;
        gap: 6px 0;
      }

      .field-group label {
        padding-top: 0;
      }

      .field-group .field-error {
        grid-column: 1;
      }

      .budget-section {
        grid-template-columns: 1fr;
        gap: 12px 0;
      }

      .budget-price-section {
        grid-template-columns: 1fr;
        gap: 10px 0;
      }

      .budget-price-section.is-visible {
        max-height: 260px;
      }

      .budget-selected-row {
        grid-template-columns: 1fr;
        gap: 10px 0;
      }

      .budget-selected-row.is-visible {
        max-height: 200px;
      }

      .captcha-eq-row {
        grid-template-columns: 1fr;
        gap: 12px 0;
      }

      .captcha-block .field-error {
        padding-left: 0;
      }

      .submit-wrap {
        padding-left: 0;
      }

      .footer-parallax-section {
        display: none !important;
      }

      .footer-main-content {
        grid-template-columns: 1fr;
      }

      .footer-right-panel {
        align-items: flex-start;
        margin-top: 40px;
      }

      .footer-info-bar {
        flex-direction: column;
        gap: 8px;
      }
    }

    @media (max-width: 1024px) {

      .footer-copyright-bridge,
      .footer-parallax-section {
        display: none !important;
      }

      .work-hero__title {
        display: none;
      }

      .contact-hero .mobile_work-hero__title {
        display: block;
      }
    }

    /* ── Contact Entry Animation ── */
    .contact-content {
      will-change: transform, opacity;
      opacity: 0;
      transform: translateY(40px) translateZ(0);
      transition:
        opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.08s,
        transform 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
    }

    .top-desc {
      opacity: 0;
      transition: opacity 0.6s ease 0.38s;
    }

    .line {
      transform-origin: center center;
      transform: scaleX(0);
      will-change: transform;
      transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
    }

    .info-grid>*:nth-child(1) {
      opacity: 0;
      transform: translateY(20px) translateZ(0);
      transition: opacity 0.6s ease 0.68s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.68s;
    }

    .info-grid>*:nth-child(2) {
      opacity: 0;
      transform: translateY(20px) translateZ(0);
      transition: opacity 0.6s ease 0.78s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.78s;
    }

    .info-grid>*:nth-child(3) {
      opacity: 0;
      transform: translateY(20px) translateZ(0);
      transition: opacity 0.6s ease 0.88s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.88s;
    }

    .form-area {
      opacity: 0;
      transition: opacity 0.6s ease 0.95s;
    }

    /*.contact-entered{min-height:2300px;}*/
    .contact-entered .contact-content {
      opacity: 1;
      transform: translateY(0) translateZ(0);
    }

    .contact-entered .top-desc {
      opacity: 1;
    }

    .contact-entered .line {
      transform: scaleX(1);
    }

    .contact-entered .info-grid>* {
      opacity: 1;
      transform: translateY(0) translateZ(0);
    }

    .contact-entered .form-area {
      opacity: 1;
    }

    /* ── Contact Marquee (matches lab.html style) ── */
    .contact-marquee {

      width: 100%;
      overflow: hidden;
      background: #000;
      border-top: 1px solid #313131;
      border-bottom: 1px solid #313131;
      clip-path: inset(100% 0 0 0);
      padding: 10px;
    }

    .contact-marquee__track {
      display: flex;
      align-items: center;
      gap: 0;
      white-space: nowrap;
      will-change: transform;
    }

    .contact-marquee__item {
      font-family: 'Bitcount Prop Single', 'Bitcount Grid Single', monospace;
      font-size: clamp(1.4rem, 4vw, 4.5rem);
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #fff;
      padding: 0 clamp(20px, 3vw, 60px);
    }

    .contact-marquee__sep {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
      width: clamp(20px, 2.8vw, 40px);
    }

    .contact-marquee__sep img {
      width: 100%;
      height: auto;
      display: block;
      animation: contact-sep-spin 3s ease-in-out infinite;
      /*filter: invert(1);*/
    }

    @keyframes contact-sep-spin {
      0% {
        transform: rotate(0deg);
      }

      40% {
        transform: rotate(180deg);
      }

      60% {
        transform: rotate(180deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .contact-marquee__track {
        transform: none !important;
      }
    }

/* ===== style block ===== */
.ns-showcase-row__index::before,.ns-showcase-row__title-layer::before{content:attr(data-text);}

/* ===== style block ===== */
.frev-wrap {
      overflow: hidden;
      display: inline-block;
      vertical-align: bottom;
    }

    .footer-video-cover {
      position: absolute;
      inset: 0;
      background: #0a0a0a;
      z-index: 2;
      pointer-events: none;
      transform-origin: right center;
      will-change: transform;
    }