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

    :root {
      --bg: #c8c8c8;
      --surface: #244e46;
      --accent: #244e46;
      --accent-dim: rgba(36, 78, 70, 0.453);
      --text: #282928;
      --muted: #c1ccbc;
      --border: rgba(104, 218, 197, 0.35);
    }

    html { min-height: 100%; }

    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 20px 0;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    .container {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 520px;
      padding: 48px 32px 56px;
      display: flex;
      flex-direction: column;
      align-items: center;
      animation: fadeUp 1s ease both;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .logo-wrap { margin-bottom: 28px; }

    .logo-placeholder {
      width: 220px;
      height: 110px;
      
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      
      position: relative;
    }

    .logo-placeholder svg { width: 48px; height: 48px; opacity: 0.5; }

    .logo-placeholder::after {
      content: '';
      position: absolute;
      inset: -6px;
      
    }

    .claim {
      font-family: 'Inter', sans-serif;
      font-size: clamp(1.5rem, 4vw, 2rem);
      letter-spacing: 0.04em;
      text-align: center;
      color: var(--text);
      line-height: 1;
      margin-bottom: 20px;
    }

    .claim em { font-style: normal; color: var(--accent); }

    .subclaim {
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text);
      text-align: center;
      margin-bottom: 20px;
    }

    .divider {
      width: 20px;
      height: 1px;
      background: var(--border);
      margin-bottom: 44px;
    }

    .progress-wrap { width: 100%; margin-bottom: 40px; }

    .progress-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 10px;
    }

    .progress-label {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .progress-pct {
      font-family: 'Inter', sans-serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--accent);
    }

    .progress-track {
      width: 100%;
      height: 2px;
      background: rgba(0, 0, 0, 0.186);
      border-radius: 2px;
      overflow: visible;
      position: relative;
    }

    .progress-fill {
      height: 100%;
      width: 65%;
      border-radius: 2px;
      background: linear-gradient(90deg, rgba(76, 158, 143, 0.5), var(--accent));
      position: relative;
      animation: grow 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
    }

    @keyframes grow {
      from { width: 0; }
      to   { width: 65%; }
    }

    .progress-fill::after {
      content: '';
      position: absolute;
      right: -1px;
      top: 50%;
      transform: translateY(-50%);
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 10px var(--accent);
    }

    .progress-phases {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      margin-top: 14px;
    }

    .phase { display: flex; flex-direction: column; align-items: center; gap: 5px; }

    .phase-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--muted);
      opacity: 0.4;
    }

    .phase-dot.done { background: var(--accent); opacity: 1; }

    .phase-name {
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .contact-list {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 40px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      border: 1px solid var(--border);
      border-radius: 100px;
      background: var(--surface);
      text-decoration: none;
      color: var(--text);
      transition: border-color 0.25s, background 0.25s;
    }

    .contact-item:hover {
      border-color: rgba(36,78,70,0.7);
      background: var(--accent-dim);
    }

    .contact-icon {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-icon svg {
      width: 16px;
      height: 16px;
      stroke: var(--border);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .contact-text { display: flex; flex-direction: column; gap: 2px; }

    .contact-label {
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .contact-value { font-size: 0.88rem; font-weight: 300; color: var(--bg); }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 38px;
      background: var(--accent);
      color: #ffffff;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      border-radius: 100px;
      transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(36,78,70,0.35);
    }

    .cta-btn:hover {
      opacity: 0.88;
      transform: translateY(-1px);
      box-shadow: 0 8px 32px rgba(36,78,70,0.5);
    }

    .cta-btn:active { transform: translateY(0); }

    .cta-btn svg {
      width: 14px;
      height: 14px;
      stroke: #ffffff;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    @media (max-width: 480px) {
      .container { padding: 40px 20px 48px; }
      .contact-value { font-size: 0.82rem; }
    }