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

    :root {
      --orange: #f5a31a;
      --black: #111;
      --wire: #9bb5c8;
      --wire-light: rgba(155,181,200,0.22);
      --blue-tape: #3a8fd0;
      --grid: rgba(100,160,210,0.3);
    }

    body {
      font-family: 'Source Sans 3', sans-serif;
      background: #d8d8d6;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 0;
    }

    .site-wrapper {
      width: 100%;
      max-width: 1060px;
      background: #fff;
      box-shadow: 0 4px 40px rgba(0,0,0,0.18);
    }

    /* ── DEV BARS ── */
    .dev-bar {
      display: flex;
      justify-content: space-between;
      padding: 3px 18px;
      font-size: 10px;
      color: #999;
      background: #efefed;
      border-bottom: 1px solid #ddd;
      letter-spacing: 0.3px;
    }

    /* ── NAV ── */
    nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 24px;
      padding: 9px 24px;
      background: #fff;
      border-bottom: 1px solid #e0e0de;
    }
    nav a {
      text-decoration: none;
      font-size: 13px;
      color: #333;
    }
    nav a:hover { color: var(--blue-tape); }
    .nav-search {
      border: 1px solid #ccc;
      border-radius: 3px;
      padding: 3px 10px;
      font-size: 12px;
      color: #aaa;
      background: #fafafa;
      width: 100px;
    }
    .nav-demo {
      background: #555;
      color: #fff !important;
      padding: 3px 10px;
      border-radius: 3px;
      font-size: 12px;
    }

    /* ── MAIN CONTENT AREA ── */
    .main-area {
      position: relative;
      overflow: hidden;
    }

    /* Blueprint grid lines */
    .grid-line {
      position: absolute;
      background: var(--grid);
      pointer-events: none;
      z-index: 5;
    }
    .grid-h { left: 0; right: 0; height: 1px; }
    .grid-v { top: 0; bottom: 0; width: 1px; }

    /* ── WIREFRAME LEFT PANEL ── */
    .wire-sidebar {
      position: absolute;
      left: 0; top: 0;
      width: 155px;
      height: 100%;
      z-index: 6;
      padding: 18px 14px 14px 14px;
      border-right: 1.5px solid var(--wire);
    }
    .wire-label {
      font-size: 9.5px;
      color: #666;
      font-family: 'Source Sans 3', sans-serif;
      margin-bottom: 5px;
    }
    .wire-box {
      border: 1.5px solid var(--wire);
      margin-bottom: 8px;
    }
    .wire-box.hero-img {
      height: 80px;
      background: var(--wire-light);
      background-image:
        linear-gradient(to bottom right, transparent calc(50% - 0.7px), var(--wire) calc(50% - 0.7px), var(--wire) calc(50% + 0.7px), transparent calc(50% + 0.7px)),
        linear-gradient(to top right, transparent calc(50% - 0.7px), var(--wire) calc(50% - 0.7px), var(--wire) calc(50% + 0.7px), transparent calc(50% + 0.7px));
    }
    .wire-text { padding: 8px 9px; }
    .wire-line {
      height: 4px;
      background: var(--wire);
      border-radius: 1px;
      margin-bottom: 5px;
      opacity: 0.7;
    }
    .wire-line.w60 { width: 60%; }
    .wire-line.w80 { width: 80%; }
    .wire-line.w45 { width: 45%; }
    .wire-lorem {
      font-size: 7.5px;
      color: #bbb;
      line-height: 1.45;
      margin-bottom: 6px;
    }
    .wire-btn {
      display: inline-block;
      border: 1.5px solid var(--wire);
      padding: 3px 9px;
      font-size: 8.5px;
      color: var(--wire);
      border-radius: 2px;
      cursor: default;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      padding: 0;
      min-height: 460px;
    }

    /* Construction workers photo */
    .workers-photo {
      position: absolute;
      left: 0; top: 0; right: 0; bottom: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      z-index: 1;
    }

    /* Overlay UI elements on top of photo */
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 7;
      pointer-events: none;
    }

    /* Blue tape stripe */
    .blue-tape {
      position: absolute;
      top: 136px;
      right: 0;
      left: 490px;
      height: 7px;
      background: var(--blue-tape);
      z-index: 8;
    }

    /* Giant headline */
    .hero-title {
      position: absolute;
      top: 38px;
      left: 155px;
      right: 20px;
      font-family: 'Black Han Sans', sans-serif;
      font-size: clamp(72px, 10.5vw, 112px);
      line-height: 0.92;
      letter-spacing: -3px;
      color: #111;
      text-transform: uppercase;
      z-index: 8;
      mix-blend-mode: multiply;
      white-space: nowrap;
    }

    /* Under construction banner */
    .construction-banner {
      position: absolute;
      top: 205px;
      left: 338px;
      z-index: 9;
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--orange);
      padding: 7px 18px;
      font-family: 'Oswald', sans-serif;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #1a1a1a;
    }
    .hazard {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      background: repeating-linear-gradient(
        45deg,
        #1a1a1a 0, #1a1a1a 4px,
        var(--orange) 4px, var(--orange) 8px
      );
    }

    /* Coming soon text block */
    .coming-block {
      position: absolute;
      top: 258px;
      left: 338px;
      z-index: 9;
      text-align: center;
      max-width: 320px;
    }
    .coming-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 21px;
      color: #111;
      margin-bottom: 2px;
    }
    .coming-sub {
      font-size: 14px;
      color: #333;
      margin-bottom: 10px;
    }
    .coming-lorem {
      font-size: 10.5px;
      color: #777;
      line-height: 1.5;
      text-align: center;
    }

    /* Caution badge */
    .caution-badge {
      position: absolute;
      right: 22px;
      top: 205px;
      z-index: 10;
      border: 2.5px solid #222;
      background: #ffe600;
      padding: 6px 10px;
      text-align: center;
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      color: #222;
      line-height: 1.2;
    }
    .caution-badge .cw { font-size: 15px; letter-spacing: 1px; }
    .caution-badge .cs { font-size: 11px; letter-spacing: 0.5px; }

    /* Second caution badge bottom right */
    .caution-badge-2 {
      position: absolute;
      right: 22px;
      bottom: 55px;
      z-index: 10;
      border: 2.5px solid #222;
      background: #ffe600;
      padding: 5px 9px;
      text-align: center;
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      color: #222;
      font-size: 10px;
      line-height: 1.3;
      letter-spacing: 0.5px;
    }

    /* ── BOTTOM EXTENSION SECTION ── */
    .extension {
      background: #111;
      padding: 60px 40px 70px 40px;
      position: relative;
      overflow: hidden;
    }

    /* Subtle construction tape top border */
    .extension::before {
      content: '';
      display: block;
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 10px;
      background: repeating-linear-gradient(
        90deg,
        #f5a31a 0, #f5a31a 28px,
        #111 28px, #111 56px
      );
    }

    .ext-inner {
      max-width: 760px;
      margin: 0 auto;
    }

    /* Section label */
    .ext-eyebrow {
      font-family: 'Oswald', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 10px;
    }

    .ext-heading {
      font-family: 'Black Han Sans', sans-serif;
      font-size: 38px;
      color: #fff;
      letter-spacing: -0.5px;
      line-height: 1.05;
      margin-bottom: 6px;
    }
    .ext-heading span { color: var(--orange); }

    .ext-subtext {
      font-size: 13.5px;
      color: #888;
      margin-bottom: 48px;
      line-height: 1.5;
    }

    /* ── PROGRESS SECTION ── */
    .progress-section {
      margin-bottom: 54px;
    }
    .progress-section-title {
      font-family: 'Oswald', sans-serif;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #aaa;
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .progress-section-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #333;
    }

    .progress-item {
      margin-bottom: 20px;
    }
    .progress-meta {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 8px;
    }
    .progress-name {
      font-family: 'Oswald', sans-serif;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: #ddd;
      text-transform: uppercase;
    }
    .progress-pct {
      font-family: 'Black Han Sans', sans-serif;
      font-size: 18px;
      color: var(--orange);
    }

    .progress-track {
      height: 6px;
      background: #2a2a2a;
      border-radius: 3px;
      overflow: hidden;
      position: relative;
    }
    .progress-fill {
      height: 100%;
      border-radius: 3px;
      background: linear-gradient(90deg, var(--orange) 0%, #ffe600 100%);
      position: relative;
      transition: width 1.6s cubic-bezier(.16,1,.3,1);
      width: 0; /* starts at 0, animated via JS */
    }
    .progress-fill::after {
      content: '';
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 30px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25));
      animation: shimmer 2s ease-in-out infinite;
    }
    @keyframes shimmer {
      0%, 100% { opacity: 0.3; }
      50%       { opacity: 1; }
    }

    /* ── DIVIDER ── */
    .ext-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, #333, transparent);
      margin: 8px 0 48px 0;
    }

    /* ── CONTACT / EMAIL SECTION ── */
    .contact-section {}
    .contact-section-title {
      font-family: 'Oswald', sans-serif;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #aaa;
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .contact-section-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #333;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .contact-left h3 {
      font-family: 'Black Han Sans', sans-serif;
      font-size: 24px;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.1;
    }
    .contact-left h3 span { color: var(--orange); }
    .contact-left p {
      font-size: 13px;
      color: #777;
      line-height: 1.6;
      margin-bottom: 18px;
    }
    .contact-perks {
      list-style: none;
      padding: 0;
    }
    .contact-perks li {
      font-size: 12px;
      color: #666;
      padding: 4px 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .contact-perks li::before {
      content: '▸';
      color: var(--orange);
      font-size: 10px;
    }

    /* Email form */
    .email-form {
      background: #1a1a1a;
      border: 1px solid #2a2a2a;
      border-radius: 6px;
      padding: 28px;
      position: relative;
    }
    .email-form::before {
      content: 'NOTIFY ME';
      position: absolute;
      top: -10px;
      left: 20px;
      background: var(--orange);
      color: #111;
      font-family: 'Oswald', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      padding: 2px 10px;
    }

    .form-field {
      margin-bottom: 14px;
    }
    .form-field label {
      display: block;
      font-size: 10px;
      font-family: 'Oswald', sans-serif;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #666;
      margin-bottom: 5px;
    }
    .form-field input {
      width: 100%;
      background: #111;
      border: 1px solid #333;
      color: #eee;
      padding: 10px 14px;
      font-size: 13px;
      font-family: 'Source Sans 3', sans-serif;
      border-radius: 3px;
      outline: none;
      transition: border-color 0.2s;
    }
    .form-field input:focus {
      border-color: var(--orange);
    }
    .form-field input::placeholder {
      color: #444;
    }

    .form-check {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 18px;
    }
    .form-check input[type=checkbox] {
      width: 14px;
      height: 14px;
      margin-top: 2px;
      accent-color: var(--orange);
      flex-shrink: 0;
    }
    .form-check label {
      font-size: 10.5px;
      color: #555;
      line-height: 1.4;
    }

    .submit-btn {
      width: 100%;
      background: var(--orange);
      border: none;
      padding: 12px;
      font-family: 'Oswald', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #111;
      cursor: pointer;
      border-radius: 3px;
      position: relative;
      overflow: hidden;
      transition: background 0.2s;
    }
    .submit-btn:hover { background: #ffe600; }
    .submit-btn:active { transform: scale(0.99); }

    /* Success state */
    .success-msg {
      display: none;
      text-align: center;
      padding: 16px 0 4px 0;
    }
    .success-msg .check {
      font-size: 30px;
      margin-bottom: 8px;
    }
    .success-msg p {
      font-family: 'Oswald', sans-serif;
      font-size: 14px;
      color: var(--orange);
      letter-spacing: 1px;
    }
    .success-msg small {
      font-size: 11px;
      color: #555;
    }

    /* Footer bar */
    .ext-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 40px;
      background: #0a0a0a;
      border-top: 1px solid #1e1e1e;
    }
    .ext-footer-logo {
      font-family: 'Black Han Sans', sans-serif;
      font-size: 14px;
      color: #333;
      letter-spacing: 1px;
    }
    .ext-footer-logo span { color: var(--orange); }
    .ext-footer-copy {
      font-size: 10px;
      color: #333;
      letter-spacing: 0.5px;
    }

    /* Bottom wireframe row */
    .wire-bottom {
      position: absolute;
      bottom: 0;
      left: 155px;
      right: 0;
      display: flex;
      border-top: 1.5px solid var(--wire);
      z-index: 8;
      background: rgba(255,255,255,0.82);
    }
    .wire-bottom-col {
      flex: 1;
      padding: 12px 14px;
      border-right: 1.5px solid var(--wire);
    }
    .wire-bottom-col:last-child { border-right: none; }
    .wire-img-box {
      width: 100%;
      height: 60px;
      border: 1.5px solid var(--wire);
      background: var(--wire-light);
      background-image:
        linear-gradient(to bottom right, transparent calc(50% - 0.7px), var(--wire) calc(50% - 0.7px), var(--wire) calc(50% + 0.7px), transparent calc(50% + 0.7px)),
        linear-gradient(to top right, transparent calc(50% - 0.7px), var(--wire) calc(50% - 0.7px), var(--wire) calc(50% + 0.7px), transparent calc(50% + 0.7px));
      margin-bottom: 5px;
    }
    .wire-cap {
      font-size: 8.5px;
      color: #aaa;
      text-align: left;
    }