@charset "UTF-8";
@use "normalize";
body.index {
  margin: 0;
  background-color: #0a192f;
  color: #8892b0;
  font-family: "Calibre", "Inter", "San Francisco", "SF Pro Text", -apple-system, system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.3;
  overflow-x: hidden;
  position: relative; }

body.index::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(600px at var(--x, 0px) var(--y, 0px), rgba(29, 78, 216, 0.15), transparent 80%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
  opacity: 0; }

body.index:hover::before {
  opacity: 1; }

.portfolio-app {
  display: flex;
  min-height: 100vh; }

.left-column {
  position: fixed;
  left: 0;
  top: 0;
  width: 50%;
  height: 100vh;
  padding: 100px 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center; }
  @media (max-width: 1024px) {
    .left-column {
      position: relative;
      width: 100%;
      height: auto;
      min-height: 100vh;
      padding: 100px 50px; } }
.right-column {
  margin-left: 50%;
  width: 50%;
  padding: 100px 50px; }
  @media (max-width: 1024px) {
    .right-column {
      margin-left: 0;
      width: 100%;
      padding: 50px; } }
.hero-content {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%; }
  .hero-content .intro {
    margin: 0 0 15px 0;
    color: #64ffda;
    font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    width: 100%;
    max-width: 540px; }
  .hero-content .name {
    margin: 0;
    font-size: clamp(32px, 6vw, 60px);
    font-weight: 600;
    color: #ccd6f6;
    line-height: 1.1;
    text-align: left;
    width: 100%;
    max-width: 540px; }
  .hero-content .tagline {
    margin: 20px 0 0;
    font-size: clamp(14px, 2.5vw, 22px);
    font-weight: 600;
    color: #a8b2d1;
    line-height: 1.1;
    text-align: left;
    width: 100%;
    max-width: 540px;
    white-space: nowrap; }
  .hero-content .description {
    margin: 30px 0 0;
    max-width: 540px;
    color: #8892b0;
    text-align: left;
    width: 100%;
    font-size: 16px; }

.main-nav {
  margin-bottom: 200px;
  width: 100%;
  max-width: 540px;
  display: flex;
  justify-content: flex-start; }
  .main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start; }
    .main-nav ul li {
      margin-bottom: 15px; }
      .main-nav ul li .nav-link {
        display: flex;
        align-items: center;
        width: 200px;
        padding: 12px 0px;
        color: #64ffda;
        background-color: #0a192f;
        text-decoration: none;
        font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
        font-size: 12px;
        text-transform: uppercase;
        transition: all 0.25s ease; }
        .main-nav ul li .nav-link:before {
          content: '';
          display: block;
          width: 19px;
          height: 1px;
          background-color: #64ffda;
          margin-right: 15px;
          transition: all 0.25s ease; }
        .main-nav ul li .nav-link:hover, .main-nav ul li .nav-link:focus {
          transform: translateY(-2px); }
          .main-nav ul li .nav-link:hover:before, .main-nav ul li .nav-link:focus:before {
            width: 35px; }

.left-column .social-links {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 540px; }
  .left-column .social-links .social-link {
    color: #a8b2d1;
    text-decoration: none;
    transition: all 0.25s ease; }
    .left-column .social-links .social-link:hover {
      color: #64ffda;
      transform: translateY(-3px); }
    .left-column .social-links .social-link svg {
      width: 20px;
      height: 20px; }

.version-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 25, 47, 0.9);
  backdrop-filter: blur(10px); }

.modal-content {
  position: relative;
  background-color: #112240;
  margin: 10% auto;
  padding: 0;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #233554; }
  .modal-header h3 {
    margin: 0;
    color: #ccd6f6;
    font-size: 1.5rem;
    font-weight: 600; }
  .modal-header .close-button {
    background: none;
    border: none;
    color: #a8b2d1;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.25s ease; }
    .modal-header .close-button:hover {
      color: #64ffda; }

.modal-body {
  padding: 1rem 2rem 2rem; }
  .modal-body p {
    color: #8892b0;
    margin-bottom: 1.5rem; }

.version-list .version-link {
  display: block;
  padding: 1.5rem;
  background-color: #0a192f;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid #233554; }
  .version-list .version-link:hover {
    background-color: #233554;
    transform: translateY(-2px); }
  .version-list .version-link .version-info h4 {
    margin: 0 0 0.5rem;
    color: #ccd6f6;
    font-size: 1.125rem;
    font-weight: 600; }
  .version-list .version-link .version-info p {
    margin: 0 0 0.5rem;
    color: #a8b2d1;
    font-size: 0.875rem; }
  .version-list .version-link .version-info .version-date {
    color: #64ffda;
    font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
    font-size: 0.75rem; }

.group\/list {
  list-style: none;
  padding: 0;
  margin: 0; }

.group {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  transition: all 0.25s ease;
  align-items: center; }
  .group:hover {
    background-color: rgba(148, 163, 184, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 0 -1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
  .group:last-child {
    border-bottom: none; }
  @media (max-width: 640px) {
    .group {
      display: block;
      padding: 1.5rem 0; } }
  .group header {
    grid-column: span 2;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8892b0;
    align-self: start;
    padding-top: 0.3125rem; }
    @media (max-width: 640px) {
      .group header {
        grid-column: span 8;
        margin-bottom: 0.5rem;
        padding-top: 0; } }
  .group > div {
    grid-column: span 6; }
    @media (max-width: 640px) {
      .group > div {
        grid-column: span 8; } }
    .group > div h3 {
      margin: 0;
      font-weight: 500;
      line-height: 1.375;
      color: #ccd6f6;
      font-size: 16px; }
      .group > div h3 div,
      .group > div h3 a {
        display: inline-flex;
        align-items: baseline;
        font-weight: 500;
        line-height: 1.25;
        color: #ccd6f6;
        text-decoration: none;
        cursor: pointer;
        transition: color 0.25s ease;
        font-size: 16px; }
        .group > div h3 div:hover,
        .group > div h3 a:hover {
          color: #64ffda; }
        .group > div h3 div span,
        .group > div h3 a span {
          position: relative; }
          .group > div h3 div span svg,
          .group > div h3 a span svg {
            display: inline-block;
            width: 1rem;
            height: 1rem;
            margin-left: 0.25rem;
            transform: translateY(1px);
            transition: transform 0.25s ease; }
        .group > div h3 div:hover svg,
        .group > div h3 a:hover svg {
          transform: translate(0.25rem, -0.25rem); }
    .group > div p {
      margin-top: 0.5rem;
      font-size: 0.875rem;
      line-height: 1.5;
      color: #8892b0; }
    .group > div ul {
      display: flex;
      flex-wrap: wrap;
      margin-top: 0.5rem;
      padding: 0;
      list-style: none; }
      .group > div ul li {
        margin-right: 0.375rem;
        margin-top: 0.5rem; }
        .group > div ul li div {
          display: flex;
          align-items: center;
          border-radius: 9999px;
          background-color: rgba(100, 255, 218, 0.1);
          padding: 0.25rem 0.75rem;
          font-size: 0.75rem;
          font-weight: 500;
          line-height: 1.25;
          color: #64ffda; }

.section {
  margin-bottom: 100px; }

.section-title {
  display: flex;
  align-items: center;
  margin: 10px 0 40px;
  font-size: 32px;
  font-weight: 600;
  color: #ccd6f6; }
  .section-title:after {
    content: '';
    display: block;
    width: 300px;
    height: 1px;
    margin-left: 20px;
    background-color: #233554; }

.section-content {
  color: #8892b0;
  font-size: 16px; }
  .section-content p {
    margin-bottom: 15px; }
  .section-content a {
    color: #64ffda;
    text-decoration: none; }
    .section-content a:hover {
      text-decoration: underline; }

.tech-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  margin: 20px 0 0 0;
  list-style: none; }
  .tech-list li {
    position: relative;
    padding-left: 20px;
    font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
    font-size: 13px; }
    .tech-list li:before {
      content: '▹';
      position: absolute;
      left: 0;
      color: #64ffda; }

.job {
  margin-bottom: 40px; }
  .job .job-title {
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 500;
    color: #ccd6f6; }
  .job .job-company {
    margin-bottom: 5px;
    color: #64ffda;
    font-size: 18px; }
  .job .job-date {
    margin-bottom: 20px;
    color: #a8b2d1;
    font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
    font-size: 13px; }
  .job .job-details {
    padding: 0;
    margin: 0;
    list-style: none; }
    .job .job-details li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 10px; }
      .job .job-details li:before {
        content: '▹';
        position: absolute;
        left: 0;
        color: #64ffda; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px; }

.project-card {
  background-color: #112240;
  border-radius: 4px;
  padding: 30px;
  transition: all 0.25s ease; }
  .project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 30px -15px rgba(2, 12, 27, 0.7); }

.project-content .project-overline {
  margin: 0 0 10px;
  color: #64ffda;
  font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
  font-size: 13px; }

.project-content .project-title {
  margin: 0 0 15px;
  color: #ccd6f6;
  font-size: 24px;
  font-weight: 600; }

.project-content .project-description {
  margin-bottom: 20px;
  color: #a8b2d1; }

.project-content .project-tech-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 20px;
  list-style: none; }
  .project-content .project-tech-list li {
    margin: 0 20px 5px 0;
    color: #a8b2d1;
    font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
    font-size: 13px; }

.project-content .project-links .project-link {
  display: inline-block;
  padding: 0.75rem 1rem;
  color: #64ffda;
  background-color: transparent;
  border: 1px solid #64ffda;
  border-radius: 4px;
  text-decoration: none;
  font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
  font-size: 13px;
  transition: all 0.25s ease; }
  .project-content .project-links .project-link:hover {
    background-color: rgba(100, 255, 218, 0.1); }

#contact {
  text-align: left;
  max-width: 90%; }
  #contact .contact-title {
    font-size: clamp(40px, 5vw, 60px);
    margin-bottom: 20px;
    color: #ccd6f6; }
  #contact .contact-button {
    display: inline-block;
    margin-top: 50px;
    padding: 1.25rem 1.75rem;
    color: #64ffda;
    background-color: transparent;
    border: 1px solid #64ffda;
    border-radius: 4px;
    text-decoration: none;
    font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
    font-size: 14px;
    transition: all 0.25s ease; }
    #contact .contact-button:hover {
      background-color: rgba(100, 255, 218, 0.1); }

.footer-caption {
  margin-top: 100px;
  padding-bottom: 50px; }
  .footer-caption p {
    color: #8892b0;
    font-size: 14px;
    font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
    margin: 0;
    text-align: left; }

.rewind-button-corner {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #112240;
  border: 2px solid #233554;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: #a8b2d1;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); }
  .rewind-button-corner:hover {
    color: #64ffda;
    border-color: #64ffda;
    background: #233554;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); }
  .rewind-button-corner svg {
    width: 32px;
    height: 32px; }

@media (max-width: 1024px) {
  .portfolio-app {
    flex-direction: column; }
  .left-column {
    position: relative;
    width: 100%;
    height: auto; }
  .right-column {
    margin-left: 0;
    width: 100%; } }
