.page-recruiter-congrats {

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

  :root {
    --gold-deep: #9E7E3F;
    --gold-mid: #D4BC7A;
    --gold-light: #E5D4A0;
    --gold-bright: #F5E08A;
    --bg-white: #FFFFFF;
    --bg-section: #FAFAFA;
    --border-subtle: rgba(158,126,63,0.12);
    --text-primary: #000000;
    --text-secondary: rgba(0,0,0,0.50);
    --text-muted: rgba(0,0,0,0.35);
  }

  html { font-size: 16px; }

  body {
    min-height: 100vh;
    background: var(--bg-white);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
  }

  /* ── Soft ambient light ── */
  .ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .ambient::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    top: -35%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(232,204,110,0.10) 0%, rgba(245,224,138,0.04) 40%, transparent 70%);
    animation: pulse-glow 8s ease-in-out infinite;
  }

  .ambient::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    bottom: -25%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(201,165,74,0.06) 0%, transparent 70%);
    animation: pulse-glow 10s ease-in-out 3s infinite;
  }

  @keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
  }

  /* ── Gold particles (lighter, more subtle) ── */
  .particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }

  .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold-mid);
    border-radius: 50%;
    opacity: 0;
    animation: drift-up linear infinite;
  }

  @keyframes drift-up {
    0% { opacity: 0; transform: translateY(100vh) scale(0.5); }
    10% { opacity: 0.45; }
    90% { opacity: 0.15; }
    100% { opacity: 0; transform: translateY(-20vh) scale(0); }
  }

  /* ── Fine horizontal gold lines ── */
  .line-accent {
    position: fixed;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,165,74,0.12), transparent);
    z-index: 1;
    pointer-events: none;
  }
  .line-accent.top { top: 12%; left: 15%; right: 15%; }
  .line-accent.bottom { bottom: 12%; left: 15%; right: 15%; }

  /* ── Main container ── */
  .page-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 720px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ── Logo ── */
  .logo-area {
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fade-in 1s ease 0.2s forwards;
  }

  .logo-area img {
    height: 100px;
    width: auto;
    object-fit: contain;
  }

  /* ── Checkmark icon ── */
  .check-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    position: relative;
    opacity: 0;
    animation: scale-in 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
  }

  .check-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-mid);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(232,204,110,0.10), transparent);
    box-shadow: 0 0 40px rgba(201,165,74,0.08);
  }

  .check-ring::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid rgba(201,165,74,0.06);
  }

  .check-ring svg {
    width: 28px;
    height: 28px;
  }

  .check-ring svg path {
    stroke: var(--gold-deep);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: draw-check 0.6s ease 1s forwards;
  }

  @keyframes draw-check {
    to { stroke-dashoffset: 0; }
  }

  @keyframes scale-in {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
  }

  /* ── Headline ── */
  .headline {
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fade-up 0.9s ease 0.8s forwards;
  }

  .headline h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #000;
  }

  .headline h1 .gold-italic {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold-mid), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 480px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fade-up 0.9s ease 1s forwards;
  }

  /* ── Stats grid ── */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: 100%;
    max-width: 560px;
    margin-bottom: 3rem;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    animation: fade-up 0.9s ease 1.2s forwards;
    box-shadow: 0 4px 30px rgba(158,126,63,0.04), 0 1px 3px rgba(0,0,0,0.03);
  }

  .stat-card {
    padding: 1.8rem 1rem;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }

  .stat-card:nth-child(2) {
    background: var(--bg-section);
  }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    background: linear-gradient(180deg, var(--gold-deep) 0%, var(--gold-mid) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
  }

  .stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-primary);
  }

  .stat-sublabel {
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: -0.2rem;
  }

  /* ── CTAs ── */
  .cta-group {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 480px;
    opacity: 0;
    animation: fade-up 0.9s ease 1.5s forwards;
  }

  .cta-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
  }

  /* Primary: Shiny gold with BLACK BOLD text */
  .cta-primary {
    background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-mid) 30%, var(--gold-light) 55%, var(--gold-bright) 70%, var(--gold-light) 85%, var(--gold-mid) 100%);
    background-size: 200% 200%;
    color: #000;
    border: none;
    box-shadow: 0 4px 16px rgba(158,126,63,0.20), 0 1px 3px rgba(158,126,63,0.12);
    animation: gold-shift 5s ease-in-out infinite;white-space:nowrap}

  .cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.40), transparent);
    transition: left 0.5s ease;
  }

  .cta-primary:hover::before {
    left: 120%;
  }

  .cta-primary:hover {
    background: #000;
    color: var(--gold-mid);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }

  @keyframes gold-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  /* Secondary: Clean outline on white */
  .cta-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(0,0,0,0.12);
  }

  .cta-secondary:hover {
    border-color: var(--gold-mid);
    color: var(--gold-deep);
    background: rgba(232,204,110,0.04);
    box-shadow: 0 2px 12px rgba(158,126,63,0.08);
  }

  .cta-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  /* ── Footer note ── */
  .footer-note {
    margin-top: 2.5rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    opacity: 0;
    animation: fade-in 1s ease 1.8s forwards;
    line-height: 1.6;
  }

  .footer-note a {
    color: var(--gold-deep);
    text-decoration: none;
    border-bottom: 1px solid rgba(158,126,63,0.25);
    transition: border-color 0.3s;
  }

  .footer-note a:hover {
    border-color: var(--gold-deep);
  }

  /* ── Keyframes ── */
  @keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── Responsive ── */
  @media (max-width: 600px) {
    .headline h1 { font-size: 2rem; }
    .stats-row { grid-template-columns: 1fr; }
    .cta-group { flex-direction: column; }
    .stat-number { font-size: 1.75rem; }
    .logo-area img { height: 80px; }
  }

.hub-link:hover{background:rgba(201,165,74,.25);border-color:rgba(201,165,74,.4);color:#E5D4A0;}
.hub-link-dot{width:6px;height:6px;border-radius:50%;background:#D4BC7A;}


      .st0, .st1 {
        fill: none;
      }

      .st2 {
        fill: url(#tt_g2);
      }

      .st3 {
        fill: #231f20;
      }

      .st4 {
        fill: #d9d9d9;
      }

      .st5 {
        fill: #9e7e3f;
      }

      .st6 {
        fill: #fff;
        stroke: url(#tt_g4);
        stroke-width: 1.62px;
      }

      .st7 {
        fill: url(#tt_g1);
      }

      .st8 {
        clip-path: url(#tt_cp);
      }

      .st1 {
        stroke: url(#tt_g3);
        stroke-width: 1.8px;
      }
    
}
