:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-soft: #f9fafc;
  --border: #e6e8ef;
  --text: #121826;
  --text-muted: #556070;
  --accent: #b93a76;
  --accent-soft: #f6e8ef;
  --accent-strong: #8f2858;
  --shadow-soft: 0 8px 24px rgba(17, 24, 39, 0.07);
  --shadow-hover: 0 14px 32px rgba(17, 24, 39, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.65;
}

header {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

nav {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1.4rem;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: 0.2px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-strong);
}

.hero {
  min-height: 96vh;
  background-image: url('images/background.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem 1.2rem;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(132deg, rgba(9, 12, 22, 0.76), rgba(23, 28, 45, 0.62));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.2px;
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 1.6rem;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.btn {
  padding: 0.7rem 1.05rem;
  border-radius: 10px;
  font-weight: 650;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  font-size: 0.92rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: #cfd4de;
  background: #fafbfd;
}

.section-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 4.1rem 1.2rem;
}

.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

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

h2 {
  color: var(--text);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.7rem;
  letter-spacing: 0.1px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.2rem;
  align-items: center;
}

.profile-pic {
  width: 236px;
  height: 236px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}

.bio {
  text-align: left;
}

.bio p {
  font-size: 1.03rem;
  margin-bottom: 0.95rem;
  color: #1b2636;
}

.quirky-fact {
  background: var(--surface-soft);
  padding: 0.95rem;
  border-radius: 10px;
  margin: 1.1rem 0;
  border: 1px solid var(--border);
  color: #1f2d42;
}

.social-proof {
  background: #f3f5fb;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.proof-card {
  border-radius: 12px;
  padding: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.proof-number {
  font-size: 1.9rem;
  color: var(--accent-strong);
  font-weight: 800;
  display: inline-block;
  min-width: 70px;
}

.proof-label {
  margin-top: 0.35rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.85rem;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem;
  color: #2f3b4e;
}

.timeline-item,
.competency-card,
.project-card,
.writing-card,
.simulator,
.changelog,
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-style: preserve-3d;
}

.timeline-item:hover,
.competency-card:hover,
.project-card:hover,
.writing-card:hover {
  box-shadow: var(--shadow-hover);
}

.timeline-list,
.projects-list,
.writing-grid {
  display: grid;
  gap: 0.85rem;
}

.timeline-item h3,
.competency-card h3,
.project-card h3,
.writing-card h3 {
  color: var(--text);
  margin-bottom: 0.45rem;
}

.date,
.meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.timeline-item p {
  margin-bottom: 0.6rem;
}

.competency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
}

.competency-card ul {
  list-style: none;
  text-align: left;
}

.competency-card li {
  padding: 0.25rem 0;
  color: #344154;
  line-height: 1.55;
}

.competency-card li::before {
  content: '• ';
  color: var(--accent-strong);
  font-weight: 700;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.filter-btn {
  border: 1px solid var(--border);
  background: #fff;
  color: #2a3546;
  padding: 0.46rem 0.84rem;
  border-radius: 8px;
  font-weight: 650;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-color: #e4c6d5;
}

.project-card.hidden {
  display: none;
}

.project-highlight {
  border: 1px solid #e7cfdb;
  box-shadow: 0 12px 24px rgba(130, 50, 90, 0.1);
}

.badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-radius: 8px;
  padding: 0.23rem 0.58rem;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.skill-tag {
  background: #f3f5f9;
  color: #2d394a;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid #e4e8f0;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.architecture {
  margin-top: 0.9rem;
  border-top: 1px dashed #d9dde7;
  padding-top: 0.75rem;
}

.architecture summary {
  cursor: pointer;
  color: var(--accent-strong);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.architecture p,
.architecture li {
  font-size: 0.93rem;
  color: #314055;
  line-height: 1.55;
}

.now-building {
  background: #f3f5fb;
}

.changelog ul {
  list-style: none;
}

.changelog li {
  border-left: 3px solid #d7bfd0;
  padding: 0.35rem 0.75rem;
  margin: 0.65rem 0;
  color: #304056;
}

.simulator-wrap {
  display: grid;
  gap: 0.8rem;
}

.role-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.role-btn {
  padding: 0.42rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  color: #2d3748;
  font-weight: 650;
  cursor: pointer;
  transition: all 0.2s ease;
}

.role-btn.active,
.role-btn:hover {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-color: #e4c6d5;
}

.sim-output {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.95rem;
}

.sim-output h4 {
  margin-bottom: 0.45rem;
  color: var(--text);
}

.sim-output ul {
  padding-left: 1rem;
  color: #314056;
  line-height: 1.55;
}

.sim-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.sim-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  text-align: center;
  font-size: 0.88rem;
  color: #37465a;
}

.sim-stat strong {
  display: block;
  color: var(--accent-strong);
  font-size: 1.08rem;
}

.difficulty-buttons,
.sim-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.difficulty-btn,
.sim-action-btn {
  padding: 0.42rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  color: #2d3748;
  font-weight: 650;
  cursor: pointer;
  transition: all 0.2s ease;
}

.difficulty-btn.active,
.difficulty-btn:hover,
.sim-action-btn:hover {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-color: #e4c6d5;
}

.sim-feedback {
  margin-top: 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.75rem;
  font-size: 0.9rem;
  color: #33445a;
  min-height: 52px;
}

.xp-burst {
  animation: xpPop 450ms ease;
}

@keyframes xpPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.writing-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.writing-card p {
  color: #344256;
  margin-bottom: 0.7rem;
  line-height: 1.6;
}

.substack-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 0.8rem;
  color: #364457;
}

.substack-status {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.1rem 0 1rem;
}

.contact-panel {
  max-width: 700px;
  margin: 0 auto;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.95rem;
}

input,
textarea {
  width: 100%;
  margin-bottom: 0.9rem;
  padding: 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.96rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #d6b2c4;
  box-shadow: 0 0 0 3px rgba(185, 58, 118, 0.12);
}

footer {
  text-align: center;
  color: #7a8496;
  padding: 1.8rem 1rem;
  border-top: 1px solid var(--border);
  background: #fff;
  margin-top: 2.3rem;
}

@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  nav {
    position: relative;
    padding: 0.85rem 1rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 6px);
    right: 1rem;
    width: min(280px, calc(100vw - 2rem));
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    padding: 0.7rem;
    display: none;
    flex-direction: column;
    gap: 0.2rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 0.45rem 0.55rem;
    border-radius: 8px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--accent-soft);
  }

  .bio {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.35rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }
}

@media (max-width: 620px) {
  h2 {
    font-size: 1.8rem;
  }

  .section-wrap {
    padding: 3.5rem 1rem;
  }

  .hero {
    min-height: 90vh;
    background-attachment: scroll;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .simulator {
    padding: 1rem;
  }

  .sim-meta {
    grid-template-columns: 1fr 1fr;
  }

  .sim-stat {
    font-size: 0.84rem;
    padding: 0.5rem 0.55rem;
  }

  .sim-stat strong {
    font-size: 0.98rem;
  }

  .role-buttons,
  .difficulty-buttons,
  .sim-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .role-btn,
  .difficulty-btn,
  .sim-action-btn,
  #newQuestionBtn {
    width: 100%;
    text-align: center;
  }

  .sim-output {
    padding: 0.85rem;
  }

  #simQuestion {
    font-size: 0.95rem;
  }

  #simRubric li,
  .sim-feedback {
    font-size: 0.89rem;
  }
}

/* ===== Visual Refresh: pink editorial portfolio style ===== */
:root {
  --bg: #f7eef3;
  --surface: #fff8fb;
  --surface-soft: #ffe8f2;
  --border: #efc6d9;
  --text: #2f2130;
  --text-muted: #6e5b6f;
  --accent: #f13b92;
  --accent-soft: #ffd7e8;
  --accent-strong: #d31276;
  --shadow-soft: 0 10px 28px rgba(201, 68, 131, 0.12);
  --shadow-hover: 0 18px 34px rgba(201, 68, 131, 0.16);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Trebuchet MS', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
  position: absolute;
  width: 100%;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
}

nav {
  max-width: 1240px;
  padding: 1.25rem 1.4rem;
}

.logo {
  color: var(--accent-strong);
  font-size: 1.2rem;
  font-weight: 800;
}

.nav-links {
  position: fixed;
  right: 2rem;
  top: 5.5rem;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.nav-links a {
  background: linear-gradient(180deg, #f77ab5, #ef4b98);
  color: #fff;
  padding: 0.72rem 0.95rem;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: linear-gradient(180deg, #f982bb, #d31276);
}

.hero {
  min-height: 88vh;
  background: transparent;
  color: var(--text);
  justify-content: flex-start;
  text-align: left;
  padding: 8.2rem 1.2rem 2.8rem;
}

.hero::after {
  display: none;
}

.hero-content {
  max-width: 850px;
  margin-left: clamp(0rem, 3vw, 2rem);
}

.hero-content h1 {
  color: var(--accent-strong);
  font-size: clamp(2.4rem, 5.2vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.7px;
  margin-bottom: 1rem;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.7);
}

.hero-content p {
  max-width: 690px;
  font-size: clamp(1.03rem, 2vw, 1.24rem);
  color: #4f3a4f;
  margin-bottom: 1.2rem;
}

.hero-actions {
  justify-content: flex-start;
}

.btn {
  border-radius: 14px;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(180deg, #f94f9f, #d31276);
  border-color: #d31276;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ff63a9, #bf0f69);
  border-color: #bf0f69;
}

.btn-secondary {
  background: #fff;
  border-color: #e8bfd2;
}

.section-wrap {
  max-width: 1200px;
  padding: 4.5rem 1.2rem;
}

h2 {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: clamp(2rem, 4.1vw, 3.5rem);
  letter-spacing: 1px;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.85);
}

.about-content {
  gap: 2.6rem;
  grid-template-columns: 1.1fr 1.4fr;
  align-items: start;
}

.profile-pic {
  width: 100%;
  max-width: 430px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  border: 6px solid #fff;
}

.bio p {
  color: #412f43;
}

.quirky-fact {
  background: #ffe3ef;
  border-color: #efbdd3;
}

.social-proof,
.now-building {
  background: transparent;
}

.timeline-item,
.competency-card,
.project-card,
.writing-card,
.simulator,
.changelog,
.contact-panel,
.proof-card {
  background: var(--surface);
  border: 2px solid #efc6d9;
  border-radius: 22px;
}

.timeline-item:hover,
.competency-card:hover,
.project-card:hover,
.writing-card:hover {
  transform: translateY(-2px);
}

.proof-number,
.timeline-item h3,
.competency-card h3,
.project-card h3,
.writing-card h3 {
  color: var(--accent-strong);
}

.date,
.meta,
.proof-label,
.substack-status,
footer {
  color: var(--text-muted);
}

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

.competency-card:nth-child(1),
.competency-card:nth-child(3),
.competency-card:nth-child(5) {
  background: #ffeaf3;
}

.competency-card:nth-child(2),
.competency-card:nth-child(4) {
  background: #ffdce9;
}

.competency-card li::before {
  color: var(--accent-strong);
}

.filter-btn,
.role-btn,
.difficulty-btn,
.sim-action-btn,
input,
textarea,
.sim-output,
.sim-feedback,
.sim-stat,
.skill-tag {
  border-radius: 12px;
  border-color: #e8bfd2;
}

.filter-btn.active,
.filter-btn:hover,
.role-btn.active,
.role-btn:hover,
.difficulty-btn.active,
.difficulty-btn:hover,
.sim-action-btn:hover {
  background: #ffd9e9;
  color: var(--accent-strong);
  border-color: #e8bfd2;
}

.badge {
  background: #ffd9e9;
  color: var(--accent-strong);
  border-radius: 999px;
}

.skill-tag {
  background: #fff;
  color: #6a4b61;
}

.project-highlight {
  border-color: #eaa6c5;
  box-shadow: 0 14px 28px rgba(201, 68, 131, 0.16);
}

input:focus,
textarea:focus {
  border-color: #df8eb4;
  box-shadow: 0 0 0 3px rgba(241, 59, 146, 0.15);
}

footer {
  border-top: 1px solid #e8bfd2;
  background: #fdf6fa;
}

@media (max-width: 900px) {
  .hero {
    min-height: 82vh;
    padding-top: 6.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .profile-pic {
    max-width: 320px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 6px);
    right: 1rem;
    width: min(290px, calc(100vw - 2rem));
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    padding: 0.7rem;
    display: none;
    gap: 0.3rem;
  }

  .nav-links a {
    text-transform: none;
    font-size: 0.9rem;
    letter-spacing: 0;
    border-radius: 10px;
    padding: 0.58rem 0.7rem;
    background: #fff;
    color: #3d3140;
    box-shadow: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: #ffd9e9;
    color: var(--accent-strong);
  }
}

/* ===== Poster Layout Refinement (highlighted reference) ===== */
header {
  display: none;
}

.hero {
  min-height: 100vh;
  padding: 1.5rem 1rem 2rem;
  align-items: stretch;
}

.hero-poster {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  background: #f3e7ed;
  border: 1px solid #ecd3df;
  border-radius: 20px;
  padding: 2rem 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 1.5rem;
  align-items: stretch;
  box-shadow: 0 8px 28px rgba(201, 68, 131, 0.12);
}

.hero-main-art {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 540px;
  padding-left: 0.35rem;
}

.hero-creative-title {
  display: inline-flex;
  flex-direction: column;
  color: #e11077;
  line-height: 0.8;
  margin-bottom: 1.15rem;
}

.hero-creative-title span {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -2px;
  font-size: clamp(5rem, 14vw, 11rem);
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.8);
}

.hero-kicker {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #f5edf3;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 0.95rem;
  max-width: 640px;
  line-height: 1.35;
}

.hero-name {
  font-weight: 900;
  color: #fefbfe;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-shadow: 0 2px 0 rgba(94, 68, 91, 0.2);
}

.hero-summary,
.hero-summary-sub {
  max-width: 760px;
  color: #503d51;
  font-size: 1.04rem;
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.hero-summary {
  font-weight: 700;
}

.hero-summary-sub {
  font-weight: 500;
}

.hero-side-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  align-items: flex-end;
}

.hero-panel-btn,
.hero-mini-btn {
  text-decoration: none;
  border-radius: 18px;
  background: linear-gradient(180deg, #f880b8, #ef4f9a);
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: var(--shadow-soft);
  border: 1px solid #ef66a6;
}

.hero-panel-btn {
  display: block;
  text-align: center;
  padding: 1.2rem 0.75rem;
  font-size: 2rem;
  line-height: 1;
  width: 180px;
}

.hero-side-panel .hero-panel-btn:nth-child(1) {
  transform: translateX(-10px) rotate(-1.7deg);
}

.hero-side-panel .hero-panel-btn:nth-child(2) {
  transform: translateX(10px) rotate(1.4deg);
}

.hero-side-panel .hero-panel-btn:nth-child(3) {
  transform: translateX(-2px) rotate(-1deg);
}

.hero-panel-btn--soft {
  background: #f4c8dd;
  border-color: #efc6d9;
  color: #f9eef4;
}

.hero-panel-row {
  display: grid;
  grid-template-columns: 170px 90px 108px;
  gap: 0.55rem;
  width: auto;
  transform: translateX(9px) rotate(1deg);
}

.hero-mini-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.2px;
  padding: 0 0.35rem;
}

.hero-panel-row .hero-mini-btn:nth-child(2) {
  transform: rotate(-3deg);
}

.hero-panel-row .hero-mini-btn:nth-child(3) {
  transform: rotate(2.5deg);
}

#about.section-wrap {
  padding-top: 0.8rem;
}

.about-content {
  background: #f4f1f4;
  border-radius: 20px;
  padding: 1.6rem;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 1.5rem;
}

.about-content .bio h2 {
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.about-content .bio p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 680px;
}

.profile-pic {
  max-width: 100%;
  border-radius: 0;
  border-width: 0;
  box-shadow: none;
}

.experience-skills-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: start;
}

.experience-column,
.skills-column {
  background: #f4f1f4;
  border-radius: 20px;
  padding: 1.25rem;
}

.skills-column.section-wrap {
  max-width: none;
  margin: 0;
  padding: 1.25rem;
}

.experience-column h2,
.skills-column h2 {
  text-align: left;
  font-size: clamp(2.2rem, 3.4vw, 3.1rem);
  margin-bottom: 1rem;
}

.experience-column .timeline-item {
  border-radius: 16px;
}

.skills-column .competency-grid {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.skills-column .competency-card {
  border-radius: 12px;
  padding: 1rem;
}

.skills-column .competency-card h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero-panel-btn {
    font-size: 1.55rem;
    width: 156px;
  }

  .hero-poster {
    grid-template-columns: minmax(0, 1fr) 205px;
  }

  .hero-panel-row {
    width: auto;
    grid-template-columns: 150px 74px 88px;
  }
}

@media (max-width: 900px) {
  header {
    display: block;
    position: fixed;
    width: 100%;
    z-index: 1200;
  }

  .hero {
    padding-top: 5.5rem;
    min-height: auto;
  }

  .hero-poster {
    grid-template-columns: 1fr;
    padding: 1.2rem;
  }

  .hero-main-art {
    min-height: auto;
  }

  .hero-side-panel {
    display: none;
  }

  .hero-creative-title span {
    font-size: clamp(4rem, 18vw, 6.8rem);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-content .bio h2,
  .experience-column h2,
  .skills-column h2 {
    text-align: center;
  }

  .experience-skills-layout {
    grid-template-columns: 1fr;
  }
}
