      :root {
        --blush: #f7d6d0;
        --blush-deep: #edb5ac;
        --lavender: #d4c8f0;
        --lavender-deep: #b8a9e0;
        --mint: #c8e8df;
        --mint-deep: #a3d4c8;
        --cream: #fdf8f4;
        --rose-mist: #f0e0e8;
        --text-dark: #2d2030;
        --text-mid: #6b5470;
        --text-light: #a08caa;
        --glow-pink: rgba(237, 181, 172, 0.6);
        --glow-lavender: rgba(180, 160, 220, 0.6);
        --glow-mint: rgba(163, 212, 200, 0.5);
      }

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

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "DM Sans", sans-serif;
        background: var(--cream);
        color: var(--text-dark);
        overflow-x: hidden;
        cursor: url("star.png"), auto;
      }

      /* Canvas */
      #three-canvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
      }

      /* Nav */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 28px 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        backdrop-filter: blur(12px);
        background: rgba(253, 248, 244, 0.7);
        border-bottom: 1px solid rgba(212, 200, 240, 0.3);
      }

      .nav-logo {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.4rem;
        font-weight: 300;
        letter-spacing: 0.08em;
        color: var(--text-dark);
        text-decoration: none;
      }

      .nav-links {
        display: flex;
        gap: 40px;
        list-style: none;
      }

      .nav-links a {
        font-size: 0.78rem;
        font-weight: 400;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--text-mid);
        text-decoration: none;
        transition: color 0.3s;
        position: relative;
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--blush-deep);
        transition: width 0.3s ease;
      }

      .nav-links a:hover {
        color: var(--text-dark);
      }

      .nav-links a:hover::after {
        width: 100%;
      }

      /* Sections */
      section {
        position: relative;
        z-index: 10;
      }

      /* Hero */
      #hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 120px 60px 60px;
        text-align: center;
      }

      .hero-inner {
        max-width: 760px;
      }

      .hero-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--text-light);
        margin-bottom: 28px;
        opacity: 0;
        animation: fadeUp 1s 0.3s forwards;
      }

      .hero-name {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(4rem, 10vw, 7.5rem);
        font-weight: 300;
        line-height: 1;
        letter-spacing: -0.02em;
        color: var(--text-dark);
        margin-bottom: 12px;
        opacity: 0;
        animation: fadeUp 1s 0.5s forwards;
      }

      .hero-name em {
        font-style: italic;
        color: var(--lavender-deep);
      }

      .hero-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        font-weight: 300;
        font-style: italic;
        color: var(--text-mid);
        margin-bottom: 40px;
        opacity: 0;
        animation: fadeUp 1s 0.7s forwards;
      }

      .hero-desc {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.8;
        color: var(--text-mid);
        max-width: 540px;
        margin: 0 auto 48px;
        opacity: 0;
        animation: fadeUp 1s 0.9s forwards;
      }

      .hero-links {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        opacity: 0;
        animation: fadeUp 1s 1.1s forwards;
      }

      .btn {
        padding: 12px 32px;
        border-radius: 40px;
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .btn-primary {
        background: linear-gradient(135deg,
            var(--blush-deep),
            var(--lavender-deep));
        color: white;
        border: none;
        box-shadow: 0 8px 32px rgba(180, 160, 220, 0.35);
      }

      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(180, 160, 220, 0.5);
      }

      .btn-ghost {
        background: transparent;
        color: var(--text-mid);
        border: 1px solid var(--lavender);
      }

      .btn-ghost:hover {
        background: var(--lavender);
        color: var(--text-dark);
        transform: translateY(-2px);
      }

      /* Scroll indicator */
      .scroll-hint {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        opacity: 0;
        animation: fadeUp 1s 1.5s forwards;
      }

      .scroll-hint span {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--text-light);
      }

      .scroll-line {
        width: 1px;
        height: 48px;
        background: linear-gradient(to bottom,
            var(--lavender-deep),
            transparent);
        animation: scrollPulse 2s infinite;
      }

      /* Content wrapper */
      .content-section {
        padding: 120px 60px;
        max-width: 1100px;
        margin: 0 auto;
      }

      .section-label {
        font-size: 0.68rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--blush-deep);
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 16px;
      }

      .section-label::after {
        content: "";
        flex: 1;
        max-width: 60px;
        height: 1px;
        background: var(--blush);
      }

      .section-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        font-weight: 300;
        line-height: 1.15;
        color: var(--text-dark);
        margin-bottom: 60px;
      }

      .section-title em {
        font-style: italic;
        color: var(--lavender-deep);
      }

      /* About */
      #about .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
      }

      .about-text p {
        font-size: 1.05rem;
        line-height: 1.9;
        color: var(--text-mid);
        font-weight: 300;
        margin-bottom: 24px;
      }

      .about-text p strong {
        color: var(--text-dark);
        font-weight: 500;
      }

      .about-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .about-card {
        background: white;
        border: 1px solid rgba(212, 200, 240, 0.4);
        border-radius: 16px;
        padding: 28px 32px;
        box-shadow: 0 4px 24px rgba(180, 160, 220, 0.08);
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
      }

      .about-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(180, 160, 220, 0.15);
      }

      .about-card-icon {
        font-size: 1.4rem;
        margin-bottom: 10px;
      }

      .about-card h4 {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 6px;
      }

      .about-card p {
        font-size: 0.85rem;
        color: var(--text-light);
        line-height: 1.6;
      }

      /* Experience */
      #experience {
        background: linear-gradient(180deg,
            transparent,
            rgba(212, 200, 240, 0.08),
            transparent);
      }

      .timeline {
        position: relative;
        padding-left: 40px;
      }

      .timeline::before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        bottom: 8px;
        width: 1px;
        background: linear-gradient(to bottom,
            var(--lavender),
            var(--blush),
            transparent);
      }

      .timeline-item {
        position: relative;
        margin-bottom: 56px;
        opacity: 0;
        transform: translateX(-20px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }

      .timeline-item.visible {
        opacity: 1;
        transform: translateX(0);
      }

      .timeline-dot {
        position: absolute;
        left: -44px;
        top: 6px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: white;
        border: 2px solid var(--lavender-deep);
        box-shadow: 0 0 12px var(--glow-lavender);
      }

      .timeline-meta {
        font-size: 0.72rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--text-light);
        margin-bottom: 8px;
      }

      .timeline-role {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 4px;
      }

      .timeline-company {
        font-size: 0.9rem;
        color: var(--lavender-deep);
        font-weight: 500;
        margin-bottom: 16px;
      }

      .timeline-bullets {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      .timeline-bullets li {
        font-size: 0.9rem;
        line-height: 1.7;
        color: var(--text-mid);
        padding-left: 18px;
        position: relative;
        font-weight: 300;
      }

      .timeline-bullets li::before {
        content: "·";
        position: absolute;
        left: 4px;
        color: var(--blush-deep);
        font-size: 1.2rem;
        line-height: 1.4;
      }

      /* Projects */
      .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
      }

      .project-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(212, 200, 240, 0.3);
        box-shadow: 0 4px 32px rgba(180, 160, 220, 0.08);
        transition:
          transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
          box-shadow 0.4s ease;
        opacity: 0;
        transform: translateY(30px);
      }

      .project-card.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(180, 160, 220, 0.2);
      }

      .project-card-header {
        padding: 32px 32px 0;
        height: 120px;
        display: flex;
        align-items: flex-end;
        background: linear-gradient(135deg, var(--rose-mist), var(--lavender));
        position: relative;
        overflow: hidden;
      }

      .project-card-header::before {
        content: "";
        position: absolute;
        top: -20px;
        right: -20px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: radial-gradient(circle,
            rgba(255, 255, 255, 0.4),
            transparent);
      }

      .project-card-header h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-dark);
        position: relative;
        z-index: 1;
        padding-bottom: 20px;
      }

      .project-card-body {
        padding: 28px 32px 32px;
      }

      .project-card-body p {
        font-size: 0.88rem;
        line-height: 1.75;
        color: var(--text-mid);
        font-weight: 300;
        margin-bottom: 20px;
      }

      .project-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }

      .tag {
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        padding: 4px 12px;
        border-radius: 20px;
        background: rgba(212, 200, 240, 0.25);
        color: var(--lavender-deep);
        border: 1px solid rgba(212, 200, 240, 0.5);
      }

      .tag.mint {
        background: rgba(200, 232, 223, 0.3);
        color: #5a9e90;
        border-color: rgba(163, 212, 200, 0.4);
      }

      .tag.blush {
        background: rgba(247, 214, 208, 0.3);
        color: #b07068;
        border-color: rgba(237, 181, 172, 0.4);
      }

      /* Skills */
      #skills {
        background: linear-gradient(180deg,
            transparent,
            rgba(247, 214, 208, 0.06),
            transparent);
      }

      .skills-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 28px;
      }

      .skill-group {
        background: white;
        border-radius: 16px;
        padding: 32px;
        border: 1px solid rgba(247, 214, 208, 0.4);
        box-shadow: 0 4px 20px rgba(237, 181, 172, 0.06);
        transition: transform 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
      }

      .skill-group.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .skill-group:hover {
        transform: translateY(-4px);
      }

      .skill-group-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        margin-bottom: 16px;
      }

      .icon-lavender {
        background: rgba(212, 200, 240, 0.3);
      }

      .icon-blush {
        background: rgba(247, 214, 208, 0.4);
      }

      .icon-mint {
        background: rgba(200, 232, 223, 0.4);
      }

      .icon-rose {
        background: rgba(240, 224, 232, 0.5);
      }

      .skill-group h4 {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 16px;
      }

      .skill-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
      }

      .skill-pill {
        font-size: 0.75rem;
        padding: 5px 13px;
        border-radius: 20px;
        background: var(--cream);
        color: var(--text-mid);
        border: 1px solid rgba(212, 200, 240, 0.35);
        font-weight: 400;
      }

      /* Contact */
      #contact {
        text-align: center;
      }

      #contact .content-section {
        max-width: 680px;
      }

      .contact-intro {
        font-size: 1.05rem;
        line-height: 1.85;
        color: var(--text-mid);
        font-weight: 300;
        margin-bottom: 52px;
      }

      .contact-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 80px;
      }

      /* Footer */
      footer {
        border-top: 1px solid rgba(212, 200, 240, 0.25);
        padding: 40px 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 10;
      }

      footer p {
        font-size: 0.78rem;
        color: var(--text-light);
        letter-spacing: 0.05em;
      }

      .footer-flourish {
        font-family: "Cormorant Garamond", serif;
        font-size: 1rem;
        font-style: italic;
        color: var(--lavender-deep);
      }

      /* Animations */
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(24px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes scrollPulse {

        0%,
        100% {
          opacity: 0.4;
          transform: scaleY(1);
        }

        50% {
          opacity: 1;
          transform: scaleY(1.1);
        }
      }

      /* Divider */
      .section-divider {
        width: 80px;
        height: 1px;
        background: linear-gradient(to right,
            var(--blush-deep),
            var(--lavender-deep));
        margin: 0 auto 80px;
        opacity: 0.5;
      }

      /* Responsive */
      @media (max-width: 768px) {
        nav {
          padding: 20px 28px;
        }

        .nav-links {
          display: none;
        }

        .hero-name {
          font-size: 3.5rem;
        }

        .content-section {
          padding: 80px 28px;
        }

        #about .about-grid {
          grid-template-columns: 1fr;
          gap: 48px;
        }

        footer {
          flex-direction: column;
          gap: 12px;
          text-align: center;
        }
      }