
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg:      #f7f5f1;
      --bg-alt:  #f0ede8;
      --card-bg: #ffffff;
      --border:  rgba(0,0,0,0.07);
      --text:    #0d0d0d;
      --muted:   rgba(13,13,13,0.44);
      --green:   #7ed321;
      --dark:    #07090b;
      --big-heading: clamp(3rem, 6.5vw, 8rem);
      --sec-heading: clamp(2.2rem, 4.2vw, 5.2rem);
      --ease:    cubic-bezier(0.16, 1, 0.3, 1);
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--dark);
      color: var(--text);
      overflow-x: hidden;
    }
    section[id] { scroll-margin-top: 80px; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 50;
      height: 80px;
      display: flex; align-items: center;
      padding: 0 clamp(2rem,7vw,7rem) 0 clamp(2rem,5vw,5rem);
      justify-content: space-between;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      transition: background 0.45s ease, border-color 0.45s ease;
      border-bottom: 1px solid;
    }
    nav.dark-nav {
      background: rgba(7,9,11,0.25);
      border-color: rgba(255,255,255,0.07);
    }
    nav.light-nav {
      background: rgba(247,245,241,0.96);
      border-color: rgba(0,0,0,0.08);
    }
    .nav-logo { height: 36px; width: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: clamp(1.5rem,3vw,2.5rem); }
    .nav-links a {
      font-size: 0.85rem; font-weight: 600;
      text-decoration: none; letter-spacing: 0.01em;
      transition: color 0.2s ease;
    }
    nav.dark-nav .nav-links a { color: rgba(247,245,241,0.70); }
    nav.dark-nav .nav-links a:hover { color: #f7f5f1; }
    nav.light-nav .nav-links a { color: rgba(7,9,11,0.65); }
    nav.light-nav .nav-links a:hover { color: #07090b; }
    @media (max-width: 767px) { .nav-links { display: none; } }

    /* DCX BUTTON */
    .dcx-btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.625rem 1.25rem;
      border-radius: 9999px; border: none; cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem; font-weight: 600;
      background: var(--green); color: #07090b;
      transition: box-shadow 0.25s ease;
      text-decoration: none;
    }
    .dcx-btn:hover {
      background: linear-gradient(135deg,#2563eb 0%,#7ed321 40%,#eab308 80%,#2563eb 100%) !important;
      background-size: 250% 250% !important;
      animation: gradient-shift 2.2s ease infinite;
    }
    @keyframes gradient-shift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    @keyframes ping {
      75%, 100% { transform: scale(2.2); opacity: 0; }
    }

    /* HERO */
    #hero-sticky {
      position: sticky; top: 0; height: 100vh; z-index: 1;
    }
    #hero-inner {
      height: 100vh; position: relative; overflow: hidden; background: var(--dark);
    }
    #hero-video {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: center 40%;
    }
    #hero-storm-video {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      opacity: 0; transition: opacity 0.55s ease;
    }
    #hero-occ-image {
      position: absolute; inset: 0;
      background-size: cover; background-position: center; background-repeat: no-repeat;
      opacity: 0; transition: opacity 0.55s ease;
    }
    .hero-overlay-1 {
      position: absolute; inset: 0; pointer-events: none;
      background: linear-gradient(105deg, rgba(7,9,11,0.82) 0%, rgba(7,9,11,0.60) 50%, rgba(7,9,11,0.25) 80%, transparent 100%);
    }
    .hero-overlay-2 {
      position: absolute; inset: 0; pointer-events: none;
      background: linear-gradient(to top, rgba(7,9,11,0.45) 0%, transparent 35%);
    }
    #hero-text-container {
      position: absolute;
      left: clamp(2rem,7vw,7rem);
      right: clamp(2rem,7vw,7rem);
      transition: top 0.65s var(--ease);
    }
    .hero-headline {
      font-size: clamp(1.56rem, 3.36vw, 4.32rem);
      font-weight: 900; line-height: 1.08;
      letter-spacing: -0.025em; color: #f7f5f1;
      margin-bottom: 0.08em;
      white-space: normal;
      transition: opacity 0.35s linear;
    }
    @media (min-width: 768px) { .hero-headline { white-space: nowrap; } }
    .hero-h1 {
      font-size: clamp(1.56rem, 3.36vw, 4.32rem);
      font-weight: 900; line-height: 1.08;
      letter-spacing: -0.025em; font-style: italic;
      color: var(--green); margin: 0;
      white-space: normal;
    }
    @media (min-width: 768px) { .hero-h1 { white-space: nowrap; } }
    .hero-notif-wrap { margin-top: clamp(1.4rem,3vh,2.2rem); }
    .hero-notif-pill {
      display: inline-flex; align-items: center; gap: 0.75rem;
      background: rgba(126,211,33,0.18);
      border: 1.5px solid rgba(126,211,33,0.55);
      border-radius: 100px; padding: 0.75rem 1.6rem 0.75rem 1rem;
      backdrop-filter: blur(12px);
      box-shadow: 0 0 28px rgba(126,211,33,0.18), 0 2px 12px rgba(0,0,0,0.3);
      margin-bottom: clamp(1.2rem,3vh,2rem);
    }
    .ping-dot { position: relative; display: inline-flex; width: 0.6rem; height: 0.6rem; flex-shrink: 0; }
    .ping-dot::before {
      content: ''; position: absolute; inset: 0; border-radius: 50%;
      background: var(--green); animation: ping 1.6s cubic-bezier(0,0,0.2,1) infinite; opacity: 0.6;
    }
    .ping-dot::after {
      content: ''; position: relative; display: inline-flex;
      width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--green);
    }
    .notif-text {
      font-size: clamp(1rem,1.4vw,1.25rem); color: #f7f5f1;
      font-weight: 700; white-space: nowrap; letter-spacing: 0.01em;
    }

    /* Hero scene boxes */
    #hero-scene1 {
      position: absolute; inset: 0; pointer-events: none;
      display: flex; align-items: center; justify-content: center;
      padding: 0 clamp(2rem,7vw,7rem);
      padding-top: clamp(8rem,20vh,14rem);
      opacity: 0; transition: opacity 0.08s linear;
    }
    .hero-cards {
      display: flex; flex-direction: row;
      gap: clamp(0.9rem,1.8vw,1.5rem);
      width: 100%; max-width: 1100px;
    }
    @media (max-width: 767px) { .hero-cards { flex-direction: column; } #hero-scene1 { padding-top: 10rem; }}
    .hero-card {
      flex: 1;
      border: 1px solid rgba(247,245,241,0.22); border-radius: 12px;
      padding: clamp(1.2rem,2.5vh,1.8rem) clamp(1rem,2vw,1.5rem);
      background: rgba(7,9,11,0.45); backdrop-filter: blur(14px);
    }
    .hero-card p {
      font-size: clamp(0.88rem,1.15vw,1.08rem); font-weight: 500;
      color: rgba(247,245,241,0.82); line-height: 1.72;
    }
    #hero-scene-center {
      position: absolute; inset: 0; pointer-events: none;
      display: none; align-items: center;
      padding: 0 clamp(2rem,7vw,7rem);
    }
    .scene-inner { width: 100%; }

    /* HERO SCROLL BUFFER */
    #hero-buffer { height: 700vh; background: var(--dark); flex-shrink: 0; }

    /* CONTENT WRAPPER */
    #content {
      position: relative; z-index: 10;
      border-radius: 20px 20px 0 0;
      overflow: hidden;
      box-shadow: 0 -12px 50px rgba(0,0,0,0.18);
    }

    /* SECTION PADDING */
    .sp {
      padding: clamp(6rem,14vh,12rem) clamp(2rem,7vw,7rem);
    }
    .sp-v { padding: clamp(3.5rem,8vh,6rem) clamp(2rem,7vw,7rem); }

    /* GREEN SECTION */
    #green-section { background: var(--green); }
    .green-grid { display: grid; gap: clamp(2.5rem,5vw,5rem); align-items: center; }
    @media (min-width: 768px) { .green-grid { grid-template-columns: 1fr 1fr; } }
    .green-big-heading {
      font-size: var(--big-heading); font-weight: 800;
      line-height: 1.04; letter-spacing: -0.02em;
      color: var(--dark); margin-bottom: 2.5rem;
    }
    .green-desc {
      color: var(--dark); opacity: 0.72;
      font-size: clamp(1rem,1.6vw,1.2rem); line-height: 1.7; font-weight: 500;
    }
    .green-img {
      width: 100%; border-radius: 16px; object-fit: cover;
      box-shadow: 0 24px 80px rgba(0,0,0,0.35);
    }
    .green-divider {
      margin-top: clamp(4rem,10vh,7rem);
      border-top: 1.5px solid rgba(7,9,11,0.15);
      padding-top: clamp(3rem,7vh,5rem);
    }
    .three-col { display: grid; }
    @media (min-width: 768px) { .three-col { grid-template-columns: repeat(3, 1fr); } }
    .three-col-item {
      padding: 0 clamp(1.5rem,3vw,3rem) 1rem 0;
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
    }
    .three-col-item:not(:first-child) { border-left: 1.5px solid rgba(7,9,11,0.12); padding-left: clamp(1.5rem,3vw,3rem); }
    @media (max-width: 767px) { .three-col-item:not(:first-child) { border-left: none; padding-left: 0; border-top: 1.5px solid rgba(7,9,11,0.12); padding-top: 1.5rem; } }
    .three-col-num {
      font-size: clamp(3rem,5vw,5.5rem); font-weight: 900; color: #07090b;
      line-height: 1; letter-spacing: -0.04em; display: block;
      margin-bottom: 0.8rem; user-select: none;
    }
    .three-col-title {
      font-size: clamp(1rem,1.5vw,1.25rem); font-weight: 800; color: var(--dark);
      line-height: 1.25; margin-bottom: 0.6rem; letter-spacing: -0.01em;
    }
    .three-col-body {
      font-size: clamp(0.88rem,1.15vw,1rem); color: rgba(7,9,11,0.60);
      line-height: 1.65; font-weight: 500;
    }

    /* BUILT TO ACT ZOOM */
    #built-ref { height: 115vh; position: relative; background: var(--green); overflow: clip; }
    #built-sticky {
      position: sticky; top: 0; height: 100vh; background: var(--green);
      overflow: visible; display: flex; align-items: center; justify-content: center;
    }
    #built-text {
      font-weight: 800; color: var(--dark);
      font-size: clamp(2.5rem,5vw,5rem); letter-spacing: -0.025em;
      white-space: nowrap; user-select: none;
      transform-origin: 50% 50%;
      transition: transform 0.05s linear, opacity 0.05s linear;
    }

    /* DARK SECTION (Design Partner) */
    #design-partner { background: var(--dark); }
    .two-col-grid { display: grid; }
    @media (min-width: 768px) { .two-col-grid { grid-template-columns: 1fr 1fr; } }
    .sec-eyebrow {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.24em;
      text-transform: uppercase; color: var(--green); margin-bottom: 1.5rem;
    }
    .sec-heading {
      font-size: var(--sec-heading); font-weight: 800;
      line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 2rem;
    }
    .sec-desc {
      font-size: clamp(1.1rem,1.8vw,1.35rem); color: rgba(247,245,241,0.52);
      line-height: 1.7; max-width: 46ch; font-weight: 500;
    }
    .dp-list-item {
      padding: 1.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
      font-size: clamp(1rem,1.35vw,1.15rem); color: rgba(247,245,241,0.72);
      line-height: 1.65; font-weight: 500;
      opacity: 0; transform: translateY(14px);
      transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
    }
    .dp-list-title { color: var(--green); font-weight: 700; }

    /* LIGHT PROOF SECTION */
    #proof { background: var(--bg); }
    .proof-eyebrow {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.24em;
      text-transform: uppercase; color: var(--green);
    }
    .live-badge {
      display: inline-block; width: 0.42rem; height: 0.42rem;
      border-radius: 50%; background: var(--green); flex-shrink: 0;
      box-shadow: 0 0 8px var(--green);
    }
    .proof-cards { display: grid; gap: 1rem; margin-bottom: clamp(3rem,7vh,5rem); }
    @media (min-width: 768px) { .proof-cards { grid-template-columns: 1fr 1fr; } }
    .proof-card {
      background: var(--dark); border-radius: 16px;
      padding: clamp(2rem,4vw,3rem);
      display: flex; flex-direction: column; gap: 1.2rem;
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
    }
    .proof-card-label {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    }
    .proof-card-num {
      font-size: clamp(4rem,8vw,9rem); font-weight: 900;
      letter-spacing: -0.05em; line-height: 0.88;
    }
    .proof-card-num span { font-size: 0.28em; font-weight: 700; letter-spacing: 0.01em; vertical-align: 0.12em; margin-left: 0.3em; }
    .proof-card-desc { font-size: clamp(0.88rem,1.1vw,1rem); color: rgba(247,245,241,0.45); line-height: 1.65; font-weight: 500; }
    .quote-cards { display: grid; gap: 1rem; }
    @media (min-width: 768px) { .quote-cards { grid-template-columns: 1fr 1fr; } }
    .quote-card {
      background: var(--card-bg); border-radius: 16px;
      padding: clamp(1.8rem,3.5vw,2.5rem); border: 1px solid var(--border);
      display: flex; flex-direction: column; justify-content: space-between;
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
    }
    .quote-text {
      font-size: clamp(1.05rem,1.6vw,1.35rem); font-weight: 700; color: var(--text);
      line-height: 1.38; letter-spacing: -0.01em; margin-bottom: 1.1rem;
    }
    .quote-who {
      font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--muted);
    }

    /* WHERE ELSE */
    .where-else-grid { display: grid; border-top: 1px solid var(--border); }
    @media (min-width: 768px) { .where-else-grid { grid-template-columns: repeat(3, 1fr); } }
    .where-else-item {
      padding: clamp(1.6rem,3.5vh,2.5rem) clamp(1.2rem,2vw,2rem);
      border-bottom: 1px solid var(--border);
      cursor: pointer; transition: background 0.25s ease;
      opacity: 0; transform: translateY(12px);
      transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), background 0.25s ease;
    }
    @media (min-width: 768px) {
      .where-else-item:not(:last-child) { border-right: 1px solid var(--border); }
    }
    .where-else-item.open { background: var(--green); }
    .where-else-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; }
    .where-else-title { font-size: clamp(0.95rem,1.25vw,1.1rem); font-weight: 700; line-height: 1.35; transition: color 0.25s ease; color: rgba(13,13,13,0.50); }
    .where-else-item.open .where-else-title { color: var(--dark); }
    .where-else-plus {
      display: inline-flex; align-items: center; justify-content: center;
      width: 1.3rem; height: 1.3rem; flex-shrink: 0; margin-top: 0.1rem;
      border-radius: 50%; border: 1px solid rgba(13,13,13,0.18);
      color: rgba(13,13,13,0.35); font-size: 0.75rem; font-weight: 700;
    }
    .where-else-body {
      font-size: clamp(0.85rem,1.1vw,0.95rem); color: rgba(7,9,11,0.72);
      line-height: 1.7; font-weight: 600; margin-top: 1rem;
      display: none; overflow: hidden;
    }
    .where-else-item.open .where-else-body { display: block; }

    /* HOW IT WORKS */
    #platform { background: var(--dark); }
    .platform-screen {
      margin-top: clamp(2.5rem,5vh,4rem); border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.10); overflow: hidden;
    }
    .platform-screen img { width: 100%; display: block; }
    .features-grid {
      display: grid; column-gap: clamp(2rem,4vw,4rem); row-gap: clamp(2rem,5vh,3.5rem);
      grid-template-columns: 1fr 1fr;
    }
    @media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
    .feature-item {
      display: flex; flex-direction: column; gap: 0.55rem;
      opacity: 0; transform: translateY(16px);
      transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
    }
    .feature-bar { width: 1.75rem; height: 2px; background: var(--green); margin-bottom: 0.5rem; border-radius: 2px; }
    .feature-title { font-size: clamp(0.92rem,1.2vw,1.05rem); font-weight: 700; color: #f7f5f1; line-height: 1.4; }
    .feature-body { font-size: clamp(0.82rem,1.05vw,0.92rem); color: rgba(247,245,241,0.45); line-height: 1.75; font-weight: 450; }

    /* TRUST BAND */
    #trust-band {
      margin-top: clamp(5rem,12vh,9rem);
      background: #0d1008;
      padding: clamp(4rem,9vh,7rem) clamp(2rem,7vw,7rem) clamp(5rem,12vh,9rem);
    }
    .trust-grid {
      display: grid; gap: clamp(1.5rem,3vw,2.5rem);
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: clamp(2rem,5vh,3rem);
      margin-top: clamp(2.5rem,6vh,4rem);
      grid-template-columns: 1fr 1fr;
    }
    @media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(5, 1fr); } }
    .trust-item {
      display: flex; flex-direction: column; gap: 0.45rem;
      opacity: 0; transform: translateY(12px);
      transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
    }
    .trust-bar { width: 1.5rem; height: 2px; background: var(--green); border-radius: 2px; margin-bottom: 0.4rem; }
    .trust-title { font-size: clamp(0.85rem,1.1vw,0.98rem); font-weight: 700; color: #f7f5f1; line-height: 1.4; }
    .trust-body { font-size: clamp(0.78rem,1vw,0.88rem); color: rgba(247,245,241,0.42); line-height: 1.7; font-weight: 450; }

    /* TEAM */
    #team { background: var(--bg-alt); border-top: 1px solid var(--border); }
    .founders-grid { display: grid; gap: clamp(0.75rem,1.5vw,1.25rem); margin-bottom: clamp(3rem,7vh,5rem); }
    @media (min-width: 768px) { .founders-grid { grid-template-columns: repeat(2, 1fr); } }
    .founder-photo { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
    .founder-photo img { width: 100%; height: 100%; display: block; object-fit: cover; aspect-ratio: 4/3; }
    .logo-strip { display: flex; flex-wrap: wrap; gap: clamp(1.6rem,4vw,3.5rem); align-items: center; }
    .logo-strip img {
      height: 1.6rem; width: auto; max-width: 7rem; object-fit: contain;
      filter: grayscale(100%) opacity(0.40);
      transition: filter 0.22s ease; display: block;
    }
    .logo-strip img:hover { filter: grayscale(0%) opacity(0.9); }

    /* CAREERS */
    #careers { background: var(--dark); }
    .careers-inner { display: flex; flex-wrap: wrap; align-items: flex-start; gap: clamp(3rem,8vw,6rem); }

    /* FOOTER */
    footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.08); }
    .footer-inner { display: flex; flex-direction: column; gap: 3rem; }
    @media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
    .footer-links { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
    .footer-links a, .footer-links button {
      color: rgba(247,245,241,0.52); transition: color 0.2s; text-decoration: none;
      background: none; border: none; cursor: pointer; font-size: inherit;
      font-family: inherit; text-align: left; padding: 0;
    }
    .footer-links a:hover, .footer-links button:hover { color: #f7f5f1; }
    .footer-bottom {
      margin-top: 3rem; padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.07);
      display: flex; flex-direction: column; gap: 1.5rem;
    }
    @media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
    .footer-icons { display: flex; align-items: center; gap: 1.25rem; }
    .footer-icon { color: rgba(247,245,241,0.38); transition: color 0.2s; }
    .footer-icon:hover { color: #f7f5f1; }
    .footer-icon svg { width: 1rem; height: 1rem; }

    /* NOTIFICATION BAR */
    #notif-bar {
      position: fixed; top: 80px; left: 0; right: 0; z-index: 49;
      height: 52px; background: var(--dark);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      display: flex; align-items: center; user-select: none;
      transform: translateY(-60px); opacity: 0;
      transition: transform 0.48s var(--ease), opacity 0.48s var(--ease);
    }
    #notif-bar.visible { transform: translateY(0); opacity: 1; }
    #notif-bar.dismissed { display: none; }
    .notif-left { display: flex; align-items: center; gap: 0.5rem; padding-left: clamp(1rem,4vw,4rem); flex-shrink: 0; }
    .notif-dot { width: 0.38rem; height: 0.38rem; border-radius: 50%; background: var(--green); box-shadow: 0 0 7px var(--green); }
    .notif-signals-label { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,245,241,0.30); }
    .notif-divider { width: 1px; height: 1.4rem; background: rgba(255,255,255,0.07); margin: 0 0.8rem; flex-shrink: 0; }
    .notif-center { flex: 1; min-width: 0; overflow: hidden; position: relative; }
    .notif-signal { display: flex; align-items: center; gap: 0.6rem; }
    .notif-type-pill {
      display: inline-flex; align-items: center; gap: 0.28rem;
      padding: 0.18rem 0.55rem; border-radius: 100px;
      font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      flex-shrink: 0;
    }
    .notif-title { font-size: 0.82rem; font-weight: 600; color: rgba(247,245,241,0.72); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .notif-cta { display: inline-flex; align-items: center; gap: 0.22rem; font-size: 0.72rem; font-weight: 700; color: var(--green); text-decoration: none; flex-shrink: 0; white-space: nowrap; }
    .notif-right { display: flex; align-items: center; gap: 0.2rem; padding-right: clamp(0.75rem,4vw,4rem); flex-shrink: 0; }
    .nav-btn {
      display: flex; align-items: center; justify-content: center;
      width: 1.5rem; height: 1.5rem; border-radius: 50%;
      background: transparent; border: 1px solid rgba(255,255,255,0.09);
      cursor: pointer; color: rgba(247,245,241,0.42); transition: all 0.15s;
    }
    .nav-btn:hover { background: rgba(255,255,255,0.07); color: #f7f5f1; }
    .nav-btn svg { width: 0.78rem; height: 0.78rem; }
    .notif-progress-dots { display: flex; align-items: center; gap: 0.28rem; padding: 0 0.35rem; }
    .ndot {
      height: 0.32rem; border-radius: 100px; background: rgba(255,255,255,0.18);
      border: none; cursor: pointer; transition: all 0.35s ease; flex-shrink: 0;
    }
    .ndot.active { background: var(--green); }
    .dismiss-btn {
      display: flex; align-items: center; justify-content: center;
      width: 1.5rem; height: 1.5rem; border-radius: 50%;
      background: transparent; border: none; cursor: pointer;
      color: rgba(247,245,241,0.28); transition: color 0.15s;
    }
    .dismiss-btn:hover { color: rgba(247,245,241,0.75); }
    .dismiss-btn svg { width: 0.75rem; height: 0.75rem; }
    @media (max-width: 639px) { .notif-nav { display: none !important; } }

    /* CONTACT MODAL */
    #contact-overlay {
      position: fixed; inset: 0; z-index: 100;
      background: rgba(7,9,11,0.75); backdrop-filter: blur(6px);
      display: none; align-items: center; justify-content: center; padding: 1rem;
    }
    #contact-overlay.open { display: flex; }
    .modal-box {
      position: relative;
      background: #1a1a1a; border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px; width: 100%; max-width: 500px; max-height: 90vh;
      overflow-y: auto; padding: 2rem;
    }
    @media (min-width: 640px) {
      .modal-box { max-width: 720px; }
      #contact-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 1.25rem;
      }
      #contact-form .form-full-width { grid-column: 1 / -1; }
    }
    .modal-title { font-size: 1.5rem; font-weight: 700; color: #f7f5f1; margin-bottom: 0.5rem; }
    .modal-desc { font-size: 0.875rem; color: rgba(247,245,241,0.50); margin-bottom: 1.5rem; }
    .form-group { margin-bottom: 1.25rem; }
    .form-label { display: block; font-size: 0.875rem; font-weight: 500; color: rgba(247,245,241,0.72); margin-bottom: 0.4rem; }
    .required-asterisk { color: #f87171; margin-left: 0.15em; }
    .form-input, .form-textarea {
      width: 100%; padding: 0.625rem 0.875rem;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px; color: #f7f5f1; font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
      outline: none; transition: border-color 0.2s;
    }
    .form-input:focus, .form-textarea:focus { border-color: var(--green); }
    .form-input::placeholder, .form-textarea::placeholder { color: rgba(247,245,241,0.30); }
    .form-textarea { min-height: 100px; resize: none; }
    .form-input.invalid, .form-textarea.invalid { border-color: #f87171; }
    #form-group-captcha.invalid .g-recaptcha { outline: 2px solid rgba(248, 113, 113, 0.45); outline-offset: 2px; border-radius: 4px; }
    .field-error { font-size: 0.75rem; color: #f87171; margin-top: 0.35rem; }
    .form-feedback {
      padding: 0.75rem 1rem;
      border-radius: 8px;
      font-size: 0.875rem;
      margin-bottom: 1.25rem;
    }
    .form-feedback.error {
      background: rgba(248, 113, 113, 0.12);
      border: 1px solid rgba(248, 113, 113, 0.35);
      color: #fca5a5;
    }
    .form-feedback.success {
      background: rgba(126, 211, 33, 0.12);
      border: 1px solid rgba(126, 211, 33, 0.35);
      color: #bef264;
    }
    .modal-submit {
      width: 100%; padding: 0.75rem; border-radius: 8px; border: none;
      cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 600;
      background: var(--green); color: #07090b; margin-top: 1rem;
    }
    .modal-submit:hover { opacity: 0.9; }
    .modal-close {
      position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2;
      background: none; border: none; cursor: pointer;
      color: rgba(247,245,241,0.50); font-size: 1.25rem; line-height: 1;
      padding: 0.25rem;
    }
    .modal-close:hover { color: #f7f5f1; }
    .modal-inner { position: relative; }
    .modal-success { text-align: center; padding: 2rem 0; }
    .modal-success-message {
      font-size: 1rem;
      color: rgba(247,245,241,0.72);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    /* FADE UP utility */
    .fade-up {
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
    }
    .fade-up.visible { opacity: 1; transform: none; }

    /* REVEAL WORDS */
    .reveal-words { display: flex; flex-wrap: wrap; column-gap: 0.28em; row-gap: 0.08em; }
    .reveal-words .word { overflow: hidden; display: inline-block; line-height: inherit; }
    .reveal-words .word span {
      display: inline-block;
      transform: translateY(110%); opacity: 0;
      transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
    }
    .reveal-words.visible .word span { transform: translateY(0); opacity: 1; }

    /* chevron icon */
    .chevron { display: inline-block; width: 1rem; height: 1rem; flex-shrink: 0; }
    .group:hover .chevron { transform: translateX(2px); }
    .chevron { transition: transform 0.15s; }

    .careers-btn-wrap{
    display:flex;
    justify-content:flex-end;
}

@media (max-width:767px){
    .careers-btn-wrap{
        justify-content:flex-start;
    }
}