*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --ink:       #2d2d2d;
      --cream:     #f9f7f5;
      --warm:      #fff0e6;
      --gold:      #f47c3c;
      --gold-lt:   #ff9a5e;
      --rust:      #e05a1a;
      --muted:     #888888;
      --border:    #e0d8d0;
      --white:     #ffffff;
      --shadow:    rgba(244,124,60,.10);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    /* ── HERO HEADER ── */
    header {
      position: relative;
      background: var(--ink);
      color: var(--cream);
      padding: 0;
      overflow: hidden;
      min-height: 420px;
      display: flex;
      flex-direction: column;
    }

    .header-bg {
      position: absolute; inset: 0;
      /*background:
        radial-gradient(ellipse 70% 80% at 80% 50%, rgba(244,124,60,.22) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(224,90,26,.18) 0%, transparent 55%),
        linear-gradient(160deg, #3a3a3a 0%, #2d2d2d 100%);*/
		background-image: url("../images/tdome.jpg");
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center left;
		
    }

    .header-lines {
      position: absolute; inset: 0; overflow: hidden;
    }
    .header-lines::before, .header-lines::after {
      content: '';
      position: absolute;
      border: 1px solid rgba(244,124,60,.2);
      border-radius: 50%;
    }
    .header-lines::before {
      width: 600px; height: 600px;
      top: -200px; right: -100px;
    }
    .header-lines::after {
      width: 400px; height: 400px;
      bottom: -150px; left: -80px;
    }

    nav {
      position: relative; z-index: 2;
      display: flex; align-items: center; justify-content: space-between;
      padding: 24px 48px;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: .02em;
      color: #ffffff;
    }
    .logo span { color: var(--gold-lt); }

    .nav-year {
      font-size: .78rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.45);
    }

    .hero-body {
      position: relative; z-index: 2;
      padding: 48px 48px 60px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .hero-label {
      font-size: .72rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold-lt);
      margin-bottom: 14px;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 6vw, 4.8rem);
      font-weight: 900;
      line-height: 1.05;
      color: #ffffff;
      max-width: 700px;
    }
    h1 em {
      font-style: italic;
      color: var(--gold-lt);
    }

    .hero-sub {
      margin-top: 18px;
      font-size: 1rem;
      color: rgba(255,255,255,.6);
      max-width: 420px;
      line-height: 1.65;
      font-weight: 300;
    }

    /* ── STATS STRIP ── */
    .stats-strip {
      position: relative; z-index: 1;
      background: var(--gold);
      color: var(--white);
      display: flex;
      overflow-x: auto;
    }
    .stat {
      flex: 1; min-width: 140px;
      padding: 18px 24px;
      border-right: 1px solid rgba(255,255,255,.25);
      text-align: center;
    }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 700;
      display: block;
    }
    .stat-lbl {
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      opacity: .75;
      display: block;
      margin-top: 2px;
    }

    /* ── MAIN CONTENT ── */
    main {
      position: relative; z-index: 1;
      max-width: 1180px;
      margin: 0 auto;
      padding: 64px 24px 80px;
    }

    .section-tag {
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    /* ── FORM PANELS ── */
    .forms-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 48px;
    }

    @media (max-width: 820px) {
      .forms-grid { grid-template-columns: 1fr; }
      nav { padding: 20px 24px; }
      .hero-body { padding: 32px 24px 48px; }
    }

    .panel {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 4px 32px var(--shadow);
      animation: fadeUp .6s ease both;
    }
    .panel:nth-child(2) { animation-delay: .1s; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .panel-head {
      padding: 28px 32px 22px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .panel-icon {
      width: 42px; height: 42px;
      background: var(--gold);
      border-radius: 3px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .panel-icon svg { fill: #ffffff; }

    .panel-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem;
      font-weight: 700;
    }
    .panel-desc {
      font-size: .83rem;
      color: var(--muted);
      margin-top: 4px;
      line-height: 1.5;
    }

    .panel-body { padding: 28px 32px 32px; }

    /* ── FORM ELEMENTS ── */
    .field { margin-bottom: 18px; }

    label {
      display: block;
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 7px;
    }

    input, select {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 3px;
      background: var(--cream);
      font-family: 'DM Sans', sans-serif;
      font-size: .95rem;
      color: var(--ink);
      transition: border-color .2s, box-shadow .2s, background .2s;
      outline: none;
      appearance: none;
    }
    input:focus, select:focus {
      border-color: var(--gold);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(184,134,11,.12);
    }
    input::placeholder { color: var(--border); }

    select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%237a7063' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 36px;
      cursor: pointer;
    }

    .field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .btn {
      display: block;
      width: 100%;
      padding: 13px 24px;
      border: none;
      border-radius: 3px;
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform .15s, box-shadow .15s, opacity .15s;
      margin-top: 8px;
    }
    .btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--shadow); }
    .btn:active { transform: translateY(0); }

    .btn-primary {
      background: #2d2d2d;
      color: #ffffff;
    }
    .btn-secondary {
      background: var(--gold);
      color: var(--white);
    }

    .divider {
      display: flex; align-items: center; gap: 12px;
      margin: 20px 0;
      font-size: .75rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--border);
    }
    .divider::before, .divider::after {
      content: ''; flex: 1;
      height: 1px; background: var(--border);
    }

    .link-row {
      text-align: center;
      font-size: .82rem;
      color: var(--muted);
      margin-top: 14px;
    }
    .link-row a {
      color: var(--rust);
      text-decoration: none;
      font-weight: 500;
    }
    .link-row a:hover { text-decoration: underline; }

    .checkbox-row {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: .82rem; color: var(--muted); margin-top: 4px;
    }
    .checkbox-row input[type="checkbox"] {
      width: 16px; height: 16px;
      flex-shrink: 0; margin-top: 2px;
      accent-color: var(--gold);
    }

    /* ── PASSWORD STRENGTH ── */
    .pw-bar {
      height: 3px;
      background: var(--border);
      border-radius: 2px;
      margin-top: 6px;
      overflow: hidden;
    }
    .pw-fill {
      height: 100%;
      width: 0%;
      background: var(--rust);
      border-radius: 2px;
      transition: width .3s, background .3s;
    }
    .pw-hint { font-size: .72rem; color: var(--muted); margin-top: 4px; }

    /* ── TOAST ── */
    #toast {
      position: fixed; bottom: 32px; right: 32px;
      background: var(--ink); color: var(--cream);
      padding: 14px 22px;
      border-left: 3px solid var(--gold-lt);
      border-radius: 3px;
      font-size: .88rem;
      box-shadow: 0 8px 30px rgba(0,0,0,.25);
      transform: translateY(80px);
      opacity: 0;
      transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .35s;
      pointer-events: none;
      z-index: 999;
      max-width: 320px;
    }
    #toast.show { transform: translateY(0); opacity: 1; }

    /* ── TOP ALUMNI SECTION ── */
    .alumni-section { margin-top: 72px; }

    .alumni-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.1rem;
      font-weight: 700;
    }

    .alumni-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 22px;
      margin-top: 32px;
    }

    .alumni-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      transition: transform .22s, box-shadow .22s;
      position: relative;
    }
    .alumni-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 40px var(--shadow);
    }

    .alumni-card-top {
      background: linear-gradient(135deg, #f47c3c 0%, #e05a1a 100%);
      padding: 28px 22px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      position: relative;
      overflow: hidden;
    }
    .alumni-card-top::after {
      content: '';
      position: absolute;
      right: -20px; top: -20px;
      width: 90px; height: 90px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.25);
    }

    .alumni-avatar {
      width: 54px; height: 54px;
      border-radius: 50%;
      background: #ffffff;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--rust);
      flex-shrink: 0;
      border: 2px solid rgba(255,255,255,.5);
    }

    .alumni-name-block { flex: 1; }
    .alumni-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: #ffffff;
      font-weight: 700;
    }
    .alumni-class {
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.75);
      margin-top: 3px;
    }

    .rank-badge {
      position: absolute;
      top: 12px; right: 12px;
      background: rgba(255,255,255,.2);
      color: #ffffff;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 2px;
    }

    .alumni-body {
      padding: 16px 20px 20px;
    }
    .alumni-role {
      font-size: .88rem;
      font-weight: 500;
      color: var(--ink);
    }
    .alumni-org {
      font-size: .8rem;
      color: var(--muted);
      margin-top: 2px;
    }
    .alumni-bio {
      font-size: .8rem;
      color: var(--muted);
      margin-top: 10px;
      line-height: 1.6;
      border-top: 1px solid var(--border);
      padding-top: 10px;
    }
    .alumni-tags {
      display: flex; flex-wrap: wrap; gap: 6px;
      margin-top: 12px;
    }
    .tag {
      font-size: .68rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      background: var(--warm);
      color: var(--muted);
      padding: 3px 8px;
      border-radius: 2px;
      border: 1px solid var(--border);
    }

    /* ── FOOTER ── */
    footer {
      background: #2d2d2d;
      color: rgba(255,255,255,.45);
      text-align: center;
      padding: 32px 24px;
      font-size: .8rem;
      letter-spacing: .06em;
    }
    footer strong { color: var(--gold-lt); font-weight: 500; }