    :root {
      --obsidian: #0e0e0f;
      --surface-lowest: #000000;
      --surface-low: #131314;
      --surface: #0e0e0f;
      --surface-high: #201f21;
      --surface-highest: #262627;
      --surface-variant: rgba(38, 38, 39, 0.72);
      --outline-ghost: rgba(72, 72, 73, 0.18);
      --text: #ffffff;
      --text-muted: #adaaab;
      --primary: #a1faff;
      --primary-strong: #00f4fe;
      --secondary: #d575ff;
      --tertiary: #a7ffb3;
      --font-display: "Space Grotesk", sans-serif;
      --font-body: "Inter", sans-serif;
    }
    * { box-sizing: border-box; }
    html { color-scheme: dark; }
    body {
      margin: 0;
      width: 100%;
      max-width: 100%;
      background:
        radial-gradient(circle at top, rgba(161, 250, 255, 0.08), transparent 24rem),
        linear-gradient(180deg, #090909 0%, var(--obsidian) 38%, #050505 100%);
      color: var(--text);
      font-family: var(--font-body);
      min-height: 100vh;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    button, input, select, textarea {
      font: inherit;
    }
    .site-header {
      position: relative;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(14, 14, 15, 0.82);
      box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
      overflow: visible;
    }
    .site-nav {
      position: relative;
      margin: 0 auto;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      overflow: visible;
    }
    .site-brand {
      display: flex;
      flex-direction: column;
      gap: 0.12rem;
      min-width: max-content;
    }
    .site-brand-mark {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: -0.04em;
      color: var(--primary);
    }
    .site-brand-subtitle {
      font-family: var(--font-display);
      font-size: 0.63rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.46);
    }
    .site-nav-links,
    .site-nav-actions {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      flex-wrap: wrap;
    }
    .site-nav-links {
      margin-left: 1rem;
    }
    .site-nav-actions {
      margin-left: auto;
    }
    .nav-link,
    .nav-pill,
    .nav-auth {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 2.5rem;
      padding: 0.72rem 0.95rem;
      border-radius: 999px;
      font-family: var(--font-display);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    }
    .nav-link {
      color: rgba(255, 255, 255, 0.62);
    }
    .nav-link:hover,
    .nav-link:focus-visible,
    .nav-auth:hover,
    .nav-auth:focus-visible {
      color: var(--primary);
      background: rgba(161, 250, 255, 0.08);
      outline: none;
    }
    .nav-pill {
      color: #041416;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
      box-shadow: 0 0 30px rgba(161, 250, 255, 0.18);
    }

    .nav-auth {
      color: rgba(255, 255, 255, 0.82);
      background: rgba(255, 255, 255, 0.04);
    }
    .account-menu {
      position: relative;
    }
    .account-menu[open] .account-trigger {
      color: var(--primary);
      background: rgba(161, 250, 255, 0.08);
      box-shadow: inset 0 0 0 1px rgba(161, 250, 255, 0.16);
    }
    .account-trigger {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      min-height: 2.5rem;
      padding: 0.42rem 0.52rem 0.42rem 0.42rem;
      border-radius: 999px;
      color: rgba(255, 255, 255, 0.72);
      cursor: pointer;
      list-style: none;
      transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
    }
    .account-trigger::-webkit-details-marker {
      display: none;
    }
    .account-trigger:hover,
    .account-trigger:focus-visible {
      color: var(--primary);
      background: rgba(161, 250, 255, 0.08);
      outline: none;
    }
    .account-avatar {
      display: grid;
      place-items: center;
      width: 2rem;
      height: 2rem;
      border-radius: 999px;
      background: rgba(161, 250, 255, 0.1);
      color: var(--primary);
      box-shadow: inset 0 0 0 1px rgba(161, 250, 255, 0.16);
    }
    .account-avatar svg {
      width: 1.08rem;
      height: 1.08rem;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.7;
      stroke-linecap: round;
    }
    .account-name {
      max-width: 12rem;
      overflow: hidden;
      font-family: var(--font-display);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-overflow: ellipsis;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .account-popover {
      position: absolute;
      top: calc(100% + 0.55rem);
      right: 0;
      z-index: 100;
      min-width: 12.5rem;
      padding: 0.45rem;
      border-radius: 16px;
      background: rgba(18, 18, 19, 0.96);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 20px 60px rgba(0, 0, 0, 0.34);
    }
    .account-menu-item {
      display: flex;
      align-items: center;
      width: 100%;
      min-height: 2.35rem;
      padding: 0.65rem 0.75rem;
      border: 0;
      border-radius: 12px;
      background: transparent;
      color: rgba(255, 255, 255, 0.7);
      font-family: var(--font-display);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.13em;
      text-align: left;
      text-transform: uppercase;
      cursor: pointer;
      transition: background-color 160ms ease, color 160ms ease;
    }
    .account-menu-item:hover,
    .account-menu-item:focus-visible {
      color: var(--primary);
      background: rgba(161, 250, 255, 0.08);
      outline: none;
    }
    .account-form {
      margin: 0.15rem 0 0;
    }
    .site-main {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: 2rem 1rem 4rem;
    }
    .site-footer {
      padding: 0 1rem 1.4rem;
    }
    .site-footer-inner {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1rem 2rem;
      margin: 0 auto;
      padding: 1.2rem 0 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.58);
      font-size: 0.92rem;
    }
    .site-footer strong {
      display: block;
      margin-bottom: 0.35rem;
      font-family: var(--font-display);
      letter-spacing: -0.03em;
      color: rgba(255, 255, 255, 0.92);
    }
    .site-footer-copy p,
    .site-footer-credit {
      margin: 0;
    }
    .site-footer-copy p {
      max-width: 32rem;
      color: rgba(255, 255, 255, 0.5);
    }
    .site-footer-credit {
      font-family: var(--font-display);
      font-size: 0.76rem;
      letter-spacing: 0.08em;
      color: rgba(255, 255, 255, 0.36);
    }
    .site-messages {
      display: grid;
      gap: 0.65rem;
      margin: 0 auto 1rem;
      max-width: 1440px;
    }
    .site-message {
      padding: 0.85rem 1rem;
      border-radius: 16px;
      background: rgba(161, 250, 255, 0.08);
      color: rgba(255, 255, 255, 0.86);
      box-shadow: inset 0 0 0 1px rgba(161, 250, 255, 0.14);
    }
    .site-message-error {
      background: rgba(255, 113, 108, 0.12);
      box-shadow: inset 0 0 0 1px rgba(255, 113, 108, 0.22);
    }
    .site-message-warning {
      background: rgba(255, 213, 138, 0.1);
      box-shadow: inset 0 0 0 1px rgba(255, 213, 138, 0.2);
    }
    .auth-errors {
      display: grid;
      gap: 0.32rem;
      margin: 0;
      padding: 0;
      list-style: none;
      color: #ffb3a8;
      font-size: 0.82rem;
      line-height: 1.35;
    }
    .card {
      background: linear-gradient(180deg, rgba(38, 38, 39, 0.78), rgba(19, 19, 20, 0.92));
      border-radius: 24px;
      padding: 1.4rem;
      margin-bottom: 1rem;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    }
    .profile-hero {
      padding: clamp(1.4rem, 3vw, 2rem);
    }
    .profile-hero h1 {
      margin: 0.6rem 0 1rem;
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1;
    }
    .profile-hero p:last-child {
      margin-bottom: 0;
      max-width: 42rem;
      color: rgba(255, 255, 255, 0.78);
      font-size: 1.02rem;
      line-height: 1.5;
    }
    .profile-actions,
    .profile-form-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.2rem;
    }
    .profile-action-link,
    .profile-danger-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 2.5rem;
      padding: 0.72rem 0.95rem;
      border-radius: 999px;
      background: rgba(161, 250, 255, 0.08);
      color: var(--primary);
      font-family: var(--font-display);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .profile-danger-link {
      background: rgba(255, 113, 108, 0.13);
      color: #ffb3a8;
    }
    .profile-eyebrow {
      margin: 0;
      color: rgba(255, 255, 255, 0.58);
      font-family: var(--font-display);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }
    .grid.profile-metrics {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .profile-metric {
      min-height: 9rem;
      display: grid;
      align-content: end;
      gap: 1rem;
    }
    .profile-metric h2,
    .profile-metric p {
      margin: 0;
    }
    .profile-metric h2 {
      font-family: var(--font-display);
      font-size: 2rem;
      line-height: 1;
    }
    .profile-metric p {
      color: rgba(255, 255, 255, 0.76);
      font-weight: 700;
    }
    .profile-drafts {
      display: grid;
      gap: 1.2rem;
    }
    .profile-account,
    .profile-danger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .profile-account h2,
    .profile-danger h2 {
      margin: 0.35rem 0 0.4rem;
      font-family: var(--font-display);
      font-size: 1.6rem;
      line-height: 1;
    }
    .profile-account p,
    .profile-danger p {
      margin: 0;
      color: rgba(255, 255, 255, 0.58);
    }
    .profile-verification {
      display: grid;
      justify-items: end;
      gap: 0.6rem;
    }
    .profile-status {
      display: inline-flex;
      align-items: center;
      min-height: 2.25rem;
      padding: 0.55rem 0.72rem;
      border-radius: 999px;
      font-family: var(--font-display);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .profile-status.is-verified {
      background: rgba(167, 255, 179, 0.1);
      color: var(--tertiary);
      box-shadow: inset 0 0 0 1px rgba(167, 255, 179, 0.16);
    }
    .profile-status.is-unverified {
      background: rgba(255, 213, 138, 0.1);
      color: #ffd58a;
      box-shadow: inset 0 0 0 1px rgba(255, 213, 138, 0.2);
    }
    .profile-small-button {
      width: auto;
      min-height: 2.3rem;
      padding: 0.6rem 0.8rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.055);
      color: rgba(255, 255, 255, 0.78);
      font-family: var(--font-display);
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .profile-section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 1rem;
    }
    .profile-section-head h2 {
      margin: 0.35rem 0 0;
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 2.2vw, 2rem);
      line-height: 1;
    }
    .profile-section-head > span {
      display: grid;
      place-items: center;
      min-width: 2.4rem;
      height: 2.4rem;
      border-radius: 999px;
      background: rgba(161, 250, 255, 0.08);
      color: var(--primary);
      font-family: var(--font-display);
      font-weight: 700;
      box-shadow: inset 0 0 0 1px rgba(161, 250, 255, 0.16);
    }
    .profile-draft-list {
      display: grid;
      gap: 0.75rem;
    }
    .profile-draft-item {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 1rem;
      min-height: 4.15rem;
      padding: 0.65rem 0.7rem 0.65rem 1rem;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.035);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
      transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
    }
    .profile-draft-item:hover,
    .profile-draft-item:focus-within {
      background: rgba(161, 250, 255, 0.075);
      box-shadow: inset 0 0 0 1px rgba(161, 250, 255, 0.16), 0 16px 36px rgba(0, 0, 0, 0.2);
      transform: translateY(-1px);
    }
    .profile-draft-link {
      display: grid;
      gap: 0.24rem;
      min-width: 0;
      outline: none;
    }
    .profile-draft-link:focus-visible {
      color: var(--primary);
    }
    .profile-draft-title,
    .profile-draft-meta {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .profile-draft-title {
      font-family: var(--font-display);
      font-size: 0.92rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .profile-draft-meta {
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.84rem;
    }
    .profile-draft-actions {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .profile-draft-resume {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 2.4rem;
      padding: 0.65rem 0.85rem;
      border-radius: 999px;
      background: rgba(161, 250, 255, 0.09);
      color: var(--primary);
      font-family: var(--font-display);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: background-color 160ms ease, transform 160ms ease;
    }
    .profile-draft-resume:hover,
    .profile-draft-resume:focus-visible {
      background: rgba(161, 250, 255, 0.15);
      outline: none;
      transform: translateY(-1px);
    }
    .profile-draft-delete-form {
      margin: 0;
    }
    .profile-draft-delete {
      display: grid;
      place-items: center;
      width: 2.4rem;
      height: 2.4rem;
      padding: 0;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.055);
      color: rgba(255, 255, 255, 0.62);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
      transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
    }
    .profile-draft-delete:hover,
    .profile-draft-delete:focus-visible {
      background: rgba(255, 113, 108, 0.16);
      color: #ffffff;
      outline: none;
      transform: translateY(-1px);
    }
    .profile-draft-delete svg {
      width: 1.04rem;
      height: 1.04rem;
      fill: none;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-width: 1.8;
    }
    .profile-empty {
      margin: 0;
      padding: 1rem;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.035);
      color: rgba(255, 255, 255, 0.58);
    }
    .profile-form-card,
    .legal-page {
      max-width: 760px;
    }
    .profile-form {
      display: grid;
      gap: 1rem;
    }
    .profile-field {
      display: grid;
      gap: 0.45rem;
    }
    .profile-field label {
      margin: 0;
      color: rgba(255, 255, 255, 0.68);
      font-family: var(--font-display);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .profile-submit,
    .profile-delete-submit {
      width: auto;
      min-height: 2.7rem;
      padding: 0.75rem 1rem;
      border-radius: 999px;
      font-family: var(--font-display);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .profile-delete-submit {
      background: rgba(255, 113, 108, 0.18);
      color: #ffddd8;
      box-shadow: inset 0 0 0 1px rgba(255, 113, 108, 0.24);
    }
    .legal-page h1 {
      margin: 0.55rem 0 1rem;
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1;
    }
    .legal-page p {
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.65;
    }
    .grid { display: grid; gap: 1rem; }
    .grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
    label { display: block; margin: .35rem 0; }
    input, select, textarea {
      width: 100%;
      padding: 0.75rem 0.9rem;
      border-radius: 14px;
      border: none;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
    }
    button {
      width: 100%;
      padding: 0.8rem 1rem;
      border-radius: 14px;
      border: none;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
      color: #041416;
      cursor: pointer;
    }
    .node-grid { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
    canvas {
      background: #0b0d12;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      width: 100%;
      height: 220px;
    }
    .inline-form { display: inline; }
    .inline-form button {
      width: auto;
      min-height: 2.5rem;
      padding: 0.72rem 1rem;
    }
    @media (max-width: 900px) {
      .site-nav {
        padding: 0.9rem 1rem;
      }
      .site-nav-links {
        order: 3;
        width: 100%;
        margin-left: 0;
      }
      .site-nav-actions {
        gap: 0.5rem;
      }
      .site-main {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem 0.625rem 4rem;
      }
      .site-footer {
        padding-right: 0.625rem;
        padding-left: 0.625rem;
      }
      .grid.profile-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .profile-draft-item {
        grid-template-columns: 1fr;
        align-items: stretch;
      }
      .profile-draft-actions {
        justify-content: space-between;
      }
      .profile-account,
      .profile-danger {
        display: grid;
      }
      .profile-verification {
        justify-items: start;
      }
    }
    @media (max-width: 520px) {
      .grid.profile-metrics {
        grid-template-columns: 1fr;
      }
      .site-footer-inner {
        align-items: start;
        flex-direction: column;
      }
      .profile-section-head {
        align-items: start;
      }
      .profile-draft-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
      }
    }
