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

  :root {
    --ink: #022B3A;
    --ink-2: rgba(2, 43, 58, 0.6);
    --ink-3: rgba(2, 43, 58, 0.38);
    --surface: #FFFFFF;
    --surface-2: #E1E5F2;
    --accent: #1F7A8C;
    --accent-light: #BFDBF7;
    --border: rgba(2, 43, 58, 0.1);
    --serif: 'Montserrat', system-ui, sans-serif;
    --sans: 'Inter', system-ui, sans-serif;
  }

  html, body {
    height: 100%;
    font-family: var(--sans);
    background: var(--surface);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
  }

  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  /* NAV */
  nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 2rem;
    background: #022B3A;
    border-bottom: none;
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: #FFFFFF;
  }
  .nav-status {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(191, 219, 247, 0.7);
    letter-spacing: 0.06em;
  }
  .status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #BFDBF7;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
  }

  /* MAIN */
  main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
  }

  .container {
    width: 100%;
    max-width: 880px;
    display: grid;
    grid-template-columns: 1fr 376px;
    gap: 4rem;
    align-items: center;
  }

  /* LEFT */
  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.25rem;
  }

  h1 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
  }
  h1 em { font-style: italic; font-weight: 300; color: var(--accent); }
  .tw-cursor {
    display: inline-block;
    width: 2px;
    background: var(--accent);
    margin-left: 2px;
    animation: blink 0.9s step-end infinite;
    vertical-align: baseline;
    font-style: normal;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  .bio {
    font-size: 1rem;
    color: var(--ink-2);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 2rem;
  }
  .bio strong { color: var(--ink); font-weight: 500; }

  .links {
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-family: var(--sans);
    font-size: 0.875rem; font-weight: 500;
    padding: 0.6rem 1.3rem;
    border-radius: 100px;
    transition: opacity 0.15s;
    text-decoration: none;
  }
  .btn-primary {
    background: var(--ink);
    color: var(--surface);
  }
  .btn-primary::after {
    content: '→';
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    font-size: 0.95rem;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, max-width 0.3s ease, transform 0.3s ease, margin-left 0.3s ease;
    margin-left: 0;
  }
  .btn-primary:hover::after {
    opacity: 1;
    max-width: 2.5rem;
    transform: translateX(0);
    margin-left: 0.35rem;
  }
  .btn-primary:hover { opacity: 0.9; }
  .btn-ghost {
    border: 1px solid var(--border);
    color: var(--ink-2);
    background: transparent;
  }
  .btn-ghost::after {
    content: '→';
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    font-size: 0.95rem;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, max-width 0.3s ease, transform 0.3s ease, margin-left 0.3s ease;
    margin-left: 0;
  }
  .btn-ghost:hover::after {
    opacity: 1;
    max-width: 1.5rem;
    transform: translateX(0);
    margin-left: 0.35rem;
  }
  .btn-ghost:hover { color: var(--ink); border-color: var(--ink-3); }

  /* RIGHT — CARD */
  .card {
    background: #022B3A;
    border: none;
    border-radius: 16px;
    padding: 1.75rem;
  }
  .card-label {
    font-size: 0.7rem;
    color: rgba(191, 219, 247, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.1rem;
  }
  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }
  .stat-num {
    font-family: var(--serif);
    font-size: 1.9rem;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 0.2rem;
  }
  .stat-label {
    font-size: 0.72rem;
    color: rgba(191, 219, 247, 0.6);
    line-height: 1.4;
  }
  .divider { height: 1px; background: rgba(191, 219, 247, 0.15); margin: 1.25rem 0; }

  .sneak-label {
    font-size: 0.7rem;
    color: rgba(191, 219, 247, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.85rem;
  }
  .sneak-list { list-style: none; }
  .sneak-list li {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.8375rem;
    color: rgba(191, 219, 247, 0.6);
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(191, 219, 247, 0.12);
  }
  .sneak-list li:last-child { border-bottom: none; }
  .sneak-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #BFDBF7;
    flex-shrink: 0;
    opacity: 0.5;
  }
  .sneak-list li.ready .sneak-dot { opacity: 1; }
  .sneak-list li.ready { color: #FFFFFF; }

  /* INLINE LINKS */
  .bio a {
    color: var(--ink-2);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s, color 0.15s;
  }
  .bio a:hover {
    color: var(--ink);
    border-bottom-color: var(--accent);
  }

  footer a {
    color: rgba(191, 219, 247, 0.6);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s, color 0.15s;
  }
  footer a:hover {
    color: #FFFFFF;
    border-bottom-color: rgba(191, 219, 247, 0.6);
  }

  /* FOOTER */
  footer {
    padding: 1.25rem 2rem;
    background: #022B3A;
    border-top: none;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(191, 219, 247, 0.6);
  }

  @media (max-width: 680px) {
    .container { grid-template-columns: 1fr; gap: 2.5rem; }
    .card { width: 100%; }
    nav, footer { padding: 1rem 1.25rem; }
    main { padding: 2.5rem 1.25rem; align-items: flex-start; }
  }