@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --accent: #718EC8;
  --accent-dim: rgba(113, 142, 200, 0.15);
  --accent-glow: rgba(113, 142, 200, 0.25);
  --bg: #121212;
  --card: #1a1a1a;
  --para: #848EA2;
  --title: #718EC8;
  --white: #f0f0f0;
  --border: rgba(113, 142, 200, 0.18);
  --nav-height: 96px;
}

.typing-cursor {
  display: inline-block;
  color: var(--accent);
  animation: blink 1s step-end infinite;
  font-weight: 400;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  background: #1c1c1c;
  color: var(--para);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  position: relative;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 2px solid #718EC8;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}

h1, h2, h3, h4, h5 {
  font-family: "Jost", sans-serif;
  color: var(--title);
  line-height: 1.15;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(2rem, 6vw, 8rem);
  z-index: 1000;
  border-bottom: 1px solid rgba(113, 142, 200, 0.12);
  transition: all 0.1s ease;
}

.navbar.scrolled {
  border-bottom-color: rgba(113, 142, 200, 0.25);
}

.logo {
  height: 98px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--para);
  position: relative;
  padding: 6px 0;
  display: block;
  transition: color 0.1s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.nav-links a.active::after {
  width: 100%;
  animation: pulseLine 2s ease infinite;
}

@keyframes pulseLine {
  0%, 100% {
    box-shadow: 0 0 6px var(--accent);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 20px var(--accent);
    opacity: 0.5;
  }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--card);
  border-left: 1px solid var(--border);
  z-index: 1300;
  padding: 100px 40px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-link {
  font-family: "Jost", sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.2s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-height) + 100px) 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.name-container {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  padding-top: 20px;
}

.hero-name {
  font-size: clamp(2.4rem, 10vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--para);
  line-height: 1;
  margin: 0;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.status-badge {
  position: absolute;
  top: -27px;
  left: -10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4ade80;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  background: rgba(74, 222, 128, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(74, 222, 128, 0.2);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  animation: fadeIn 0.7s ease 0.6s forwards;
}

.hero-eyebrow {
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
  font-family: "Jost", sans-serif;
  font-size: clamp(14px, 4vw, 27px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  position: relative;
  bottom: 1rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  background-color: #4ade80;
  border-radius: 50%;
  position: relative;
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background-color: #4ade80;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(3.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.hero-sub {
  font-size: clamp(15px, 3.5vw, 18px);
  color: var(--para);
  max-width: 500px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.6s forwards;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.card-image {
  width: calc(100% + 80px);
  margin: -40px -40px 0 -40px;
  height: 340px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: var(--border);
  flex-shrink: 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .card-image img {
  transform: scale(1.03);
}

.projects-section {
  padding: 80px 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.section-label {
  font-family: "Jost", sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-label::before, .section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
}

.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.project-card::after {
  content: attr(data-index);
  position: absolute;
  bottom: -20px;
  right: 16px;
  font-size: 120px;
  font-weight: 800;
  font-family: "Jost", sans-serif;
  color: var(--accent);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.3s;
}

.project-card:hover::after {
  opacity: 0.08;
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(113, 142, 200, 0.12);
}

.card-inner {
  position: relative;
  z-index: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.card-tags {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--para);
  opacity: 0.7;
}

.card-title {
  margin-top: 2rem;
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 16px;
}

.card-desc {
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--para);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 10px 20px;
  border: 1px solid rgba(113, 142, 200, 0.3);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s, border-color 0.3s, gap 0.25s;
}

.card-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  opacity: 0.08;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-link:hover::before {
  left: 0;
}

.card-link:hover {
  border-color: var(--accent);
  gap: 14px;
}

.card-link svg {
  transition: transform 0.25s ease;
}

.card-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 80px) 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.about-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  max-height: 640px;
  width: 100%;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}

.about-img-wrap:hover img {
  filter: grayscale(0%);
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.about-name {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1.1;
}

.about-text {
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
}

.about-text p {
  font-size: 16px;
  color: var(--para);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-tools {
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-tag {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}

.about-stats {
  display: flex;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat-num {
  font-family: "Jost", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.about-stat-label {
  font-size: 13px;
  color: var(--para);
  letter-spacing: 0.05em;
}

.about-right .btn-prototype {
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  padding: calc(var(--nav-height) + 40px) 48px 20px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.contact-eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.contact-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.contact-sub {
  font-size: clamp(15px, 3vw, 17px);
  color: var(--para);
  max-width: 500px;
  margin: 0 auto;
}

.contact-section {
  padding: 20px 48px 120px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  text-align: left;
  width: 100%;
}

.contact-form label {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.contact-form input, .contact-form textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
  min-height: 48px;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: rgba(132, 142, 162, 0.5);
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.contact-form textarea {
  min-height: 280px;
  resize: vertical;
}

.send-btn {
  align-self: center;
  margin-top: 8px;
}

/* ============================================
   PROJECT HERO
   ============================================ */
.project-hero {
  padding-top: var(--nav-height);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.header-project-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  background-color: var(--bg);
  margin: 0 auto 5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.project-hero-content {
  max-width: 900px;
  width: 100%;
  padding: 0 clamp(24px, 4vw, 48px);
  margin: 0 auto 48px;
}

.project-hero-content h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.15s forwards;
}

.prototype-buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.prototype-buttons-1 {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.project-hero-desc {
  font-size: 16px;
  color: var(--para);
  margin: 0 auto 28px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.3s forwards;
  text-align: center;
}

.project-tags-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.project-tag {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}

.project-meta-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px clamp(24px, 4vw, 80px);
  gap: 24px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  min-width: 0;
  overflow-wrap: break-word;
}

.meta-label {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.meta-value {
  font-size: 16px;
  color: var(--para);
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ============================================
   CASE STUDY WRAPPER SYSTEM
   ============================================ */
.cs-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.persona-column .logo-showcase img {
  max-width: 550px;
  width: 100%;
}

.cs-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cs-bleed-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 48px 48px;
  margin: 0 auto;
  max-width: 1000px;
}

.cs-bleed-img img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
}

.cs-bleed-img--small {
  max-width: 700px;
}

.cs-bleed-img--small img {
  max-width: 700px;
}

/* ============================================
   FINAL WEBSITE IMAGE
   ============================================ */
.final-website {
  width: 100%;
  height: 1600px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .final-website {
    height: 800px;
  }
}
@media (max-width: 600px) {
  .final-website {
    height: 500px;
  }
}
/* ============================================
   CASE STUDY
   ============================================ */
.cs-content-col h3::before, .cs-block h3::before {
  content: "— ";
  color: var(--accent);
  opacity: 0.6;
}

.overview-boxes {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: calc(100% + 160px);
  margin-left: -80px;
}

.overview-boxes .box {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
}

.overview-boxes .box h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.overview-boxes .box h2 .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(113, 142, 200, 0.15);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .overview-boxes {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
  }
}
.case-study {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 48px 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.cs-section-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--para);
  position: static;
  text-align: left;
}

.cs-section {
  padding: 72px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.cs-section--overview {
  padding: 32px 0;
}

.cs-section-no-bottom {
  padding: 72px 0 0 0;
}

.case-study-no-bottom {
  padding-bottom: 0 !important;
}

.cs-label-col {
  min-width: 0;
}

.cs-content-col {
  grid-column: 2;
  min-width: 0;
  max-width: 800px;
  width: 100%;
}

.cs-content-col h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 20px;
}

.cs-content-col h3 {
  font-size: clamp(18px, 3.5vw, 25px);
  font-weight: 400;
  color: var(--accent);
  margin: 40px 0 14px;
}

.cs-content-col h4 {
  font-size: clamp(15px, 2.5vw, 20px);
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 8px;
}

.cs-content-col p {
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--para);
  line-height: 1.8;
  margin-bottom: 16px;
}

.cs-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 48px;
  width: 100%;
}

.highlight-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 30px 24px;
  margin: 20px 0;
}

.highlight-box p {
  margin: 0;
  font-size: clamp(14px, 2.5vw, 16px);
}

.highlight-box strong {
  color: var(--accent);
}

.pain-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px 20px;
}

.pain-num {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 2px;
}

.pain-item p {
  margin: 0;
  font-size: clamp(14px, 2.5vw, 16px);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0 28px;
}

.feature-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
  min-width: 0;
}

.feature-item p {
  margin: 0;
  font-size: clamp(13px, 2vw, 15px);
}

.reflection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0 24px;
}

.reflection-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
  min-width: 0;
}

.reflection-item p {
  margin: 0;
  font-size: clamp(13px, 2vw, 15px);
}

/* ============================================
   COMPETITIVE TABLE
   ============================================ */
.competitive-table {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
}

.competitive-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.competitive-table th {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.competitive-table th:first-child {
  text-align: left;
}

.competitive-table td {
  padding: 12px 16px;
  text-align: center;
  color: var(--para);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.competitive-table td:first-child {
  text-align: left;
  color: var(--white);
}

.competitive-table tr:last-child td {
  border-bottom: none;
}

.competitive-table tr:hover td {
  background: rgba(113, 142, 200, 0.05);
}

.competitive-table th:last-child, .competitive-table td:last-child {
  color: var(--accent);
  font-weight: 500;
}

.competitive-table .yes {
  color: #4ade80;
}

.competitive-table .no {
  color: #f87171;
  opacity: 0.6;
}

.competitive-table .partial {
  color: #facc15;
}

/* ============================================
   IMAGE BLOCKS
   ============================================ */
.cs-full-img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 0;
  padding: 0 48px;
  display: block;
}

.cs-full-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

.cs-full-img.cs-mockup-grid {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100vw;
  padding: 0;
}

.cs-mockup-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  line-height: 0;
}

.mockup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.mockup-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.wireframe-geek {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 48px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  line-height: 0;
}

.wireframe-geek img {
  flex: 1;
  width: 0;
  min-width: 0;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

.persona-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 0 48px;
  margin: 2rem auto;
}

.persona-column img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
}

.persona-column img[alt="Desktop Wireframes"], .persona-column img[alt="Mobile Wireframes"] {
  max-width: 600px;
}

.persona-column--side-by-side {
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  margin: 3rem;
}

.persona-column--side-by-side img {
  width: 60%;
  max-width: none;
}

@media (max-width: 947px) {
  .persona-column--side-by-side {
    flex-direction: column;
  }
  .persona-column--side-by-side img {
    width: 100%;
  }
}
.logo-showcase {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.mindshapeai-logo {
  width: 240px;
  max-width: 60vw;
  height: auto;
}

.cs-img-row {
  display: flex;
  width: 100%;
}

.cs-img-row img {
  flex: 1;
  min-width: 0;
  height: auto;
  object-fit: cover;
}

.placeholder-img {
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: 12px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
  color: var(--para);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  opacity: 0.5;
}

.placeholder-img.tall {
  height: 440px;
}

/* ============================================
   PROTOTYPE BUTTON
   ============================================ */
button.btn-prototype {
  background: transparent;
  color: var(--accent);
  align-self: center;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.btn-prototype {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 14px 28px;
  border: 1px solid rgba(113, 142, 200, 0.3);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 25px;
  min-height: 48px;
  transition: border-color 0.3s, box-shadow 0.3s, gap 0.25s;
}

.btn-prototype::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  opacity: 0.08;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-prototype:hover::before {
  left: 0;
}

.btn-prototype:hover {
  border-color: var(--accent);
  gap: 14px;
}

.btn-prototype svg {
  transition: transform 0.25s ease;
}

.btn-prototype:hover svg {
  transform: translate(2px, -2px);
}

/* ============================================
   NEXT PROJECT
   ============================================ */
.next-project {
  border-top: 1px solid var(--border);
  padding: 80px 48px;
  text-align: center;
}

.next-label {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--para);
  margin-bottom: 20px;
}

.next-project-link {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  font-family: "Jost", sans-serif;
  font-size: clamp(24px, 5vw, 52px);
  font-weight: 400;
  color: var(--accent);
  transition: gap 0.25s;
}

.next-project-link:hover {
  gap: 5rem;
  color: var(--para);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-line {
  height: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
  width: calc(100% - 96px);
}

footer {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 32px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  flex-wrap: wrap;
}

footer p {
  font-size: 13px;
  color: var(--para);
  opacity: 0.5;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   ULTRAWIDE (>= 1600px)
   ============================================ */
@media (min-width: 1600px) {
  :root {
    --nav-height: 110px;
  }
  .projects-section {
    max-width: 1400px;
    padding: 100px 80px 140px;
  }
  .projects-grid {
    gap: 3.5rem;
  }
  .case-study {
    max-width: 1400px;
    padding: 0 80px 140px;
  }
  .cs-inner {
    max-width: 1400px;
    padding: 0 80px;
  }
  .cs-content-col {
    max-width: 960px;
  }
  .cs-full-img {
    max-width: 1400px;
    padding: 0 80px;
  }
  .cs-bleed-img {
    max-width: 1400px;
    padding: 48px 80px;
  }
  .wireframe-geek {
    max-width: 1400px;
    padding: 0 80px;
  }
  .persona-column {
    padding: 0 80px;
  }
  .persona-column img {
    max-width: 1400px;
  }
  .project-meta-bar {
    max-width: 1400px;
  }
  .overview-boxes {
    width: calc(100% + 200px);
    margin-left: -100px;
  }
  .cs-divider {
    margin: 0 80px;
  }
  .footer-line {
    max-width: 1400px;
    width: calc(100% - 160px);
  }
  footer {
    max-width: 1400px;
    padding: 40px 80px;
  }
  .about-section {
    max-width: 1400px;
    padding: calc(var(--nav-height) + 80px) 80px 140px;
  }
  .meta-label {
    font-size: 17px;
  }
  .meta-value {
    font-size: 17px;
  }
  .cs-content-col h2 {
    font-size: 36px;
  }
  .cs-content-col h3 {
    font-size: 28px;
  }
  .cs-content-col p {
    font-size: 16px;
  }
}
/* ============================================
   SUPER ULTRAWIDE (>= 2560px)
   ============================================ */
@media (min-width: 2560px) {
  :root {
    --nav-height: 120px;
  }
  .projects-section {
    max-width: 1800px;
    padding: 120px 120px 160px;
  }
  .projects-grid {
    gap: 4rem;
  }
  .card-image {
    height: 420px;
  }
  .case-study {
    max-width: 1800px;
    padding: 0 120px 160px;
  }
  .cs-inner {
    max-width: 1800px;
    padding: 0 120px;
  }
  .cs-content-col {
    max-width: 1100px;
  }
  .cs-full-img {
    max-width: 1800px;
    padding: 0 120px;
  }
  .cs-bleed-img {
    max-width: 1800px;
    padding: 48px 120px;
  }
  .wireframe-geek {
    max-width: 1800px;
    padding: 0 120px;
  }
  .persona-column {
    padding: 0 120px;
  }
  .persona-column img {
    max-width: 1800px;
  }
  .project-meta-bar {
    max-width: 1800px;
    padding: 40px 120px;
  }
  .overview-boxes {
    width: calc(100% + 240px);
    margin-left: -120px;
  }
  .cs-divider {
    margin: 0 120px;
  }
  .footer-line {
    max-width: 1800px;
    width: calc(100% - 240px);
  }
  footer {
    max-width: 1800px;
    padding: 48px 120px;
  }
  .about-section {
    max-width: 1800px;
    padding: calc(var(--nav-height) + 80px) 120px 160px;
  }
  .meta-label {
    font-size: 19px;
  }
  .meta-value {
    font-size: 18px;
  }
  .cs-content-col h2 {
    font-size: 40px;
  }
  .cs-content-col h3 {
    font-size: 30px;
  }
  .cs-content-col p {
    font-size: 18px;
  }
  .hero-sub {
    max-width: 700px;
    font-size: 20px;
  }
}
/* ============================================
   TABLET (<= 900px)
   ============================================ */
@media (max-width: 900px) {
  :root {
    --nav-height: 72px;
  }
  .navbar {
    padding: 0 28px;
    height: 72px;
  }
  .logo {
    height: 48px;
  }
  .custom-cursor {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    padding: calc(var(--nav-height) + 48px) 28px 60px;
    min-height: 0vh;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .projects-section {
    padding: 60px 28px 100px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .about-section {
    padding: calc(var(--nav-height) + 60px) 28px 80px;
    min-height: unset;
    align-items: flex-start;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-wrap {
    aspect-ratio: 4/3;
    max-width: 480px;
    margin: 0 auto;
  }
  .about-stats {
    gap: 24px;
  }
  .about-name {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
  .about-text p {
    font-size: 15px;
  }
  .contact-hero {
    padding: calc(var(--nav-height) + 60px) 28px 40px;
  }
  .contact-section {
    padding: 20px 28px 80px;
    max-width: 100%;
  }
  .project-meta-bar {
    grid-template-columns: 1fr 1fr;
    padding: 24px 28px;
    gap: 20px;
  }
  .case-study {
    padding: 0 28px 80px;
    position: static;
    left: 0;
  }
  .cs-inner {
    padding: 0 28px;
  }
  .cs-bleed-img {
    padding: 32px 28px;
  }
  .cs-divider {
    margin: 0 28px;
  }
  .cs-section-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cs-label {
    position: static;
    text-align: left;
  }
  .cs-content-col {
    grid-column: 1;
    max-width: 100%;
  }
  .features-grid, .reflection-grid {
    grid-template-columns: 1fr;
  }
  .cs-img-row {
    flex-direction: column;
  }
  .cs-img-row img {
    width: 100%;
    flex: none;
  }
  .mockup-row {
    grid-template-columns: 1fr;
  }
  .cs-full-img {
    padding: 0 28px;
  }
  .cs-full-img.cs-mockup-grid {
    padding: 0;
    left: 0;
    transform: none;
    width: 100%;
  }
  .wireframe-geek {
    padding: 0 28px;
    flex-direction: column;
  }
  .wireframe-geek img {
    width: 100%;
    flex: none;
  }
  .persona-column {
    padding: 0 28px;
  }
  .footer-line {
    margin: 0 28px;
    width: calc(100% - 56px);
  }
  footer {
    padding: 28px;
  }
  .next-project {
    padding: 60px 28px;
  }
  .competitive-table th, .competitive-table td {
    padding: 12px 10px;
    font-size: 13px;
  }
  .overview-boxes {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
  }
}
/* ============================================
   MOBILE (<= 600px)
   ============================================ */
@media (max-width: 600px) {
  :root {
    --nav-height: 64px;
  }
  .status-dot {
    width: 6px;
    height: 6px;
    background-color: #4ade80;
    border-radius: 50%;
    position: relative;
  }
  .project-hero-desc {
    font-size: 14px;
    text-align: start;
  }
  .meta-value {
    font-size: 13px;
  }
  .prototype-buttons {
    flex-direction: column;
    gap: 0;
  }
  .prototype-buttons-1 {
    flex-direction: column;
    gap: 0;
  }
  .project-meta-bar {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }
  .meta-label {
    font-size: 13px;
  }
  .meta-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 25px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    text-align: left;
  }
  .meta-item:last-child {
    border-bottom: none;
  }
  .overview-boxes {
    width: 100%;
    margin-left: 0;
  }
  .cs-section {
    padding: 50px 1.9px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }
  .cs-section-inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .cs-content-col {
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .navbar {
    padding: 0 20px;
    height: 64px;
  }
  .logo {
    height: 40px;
  }
  .hero {
    padding: calc(var(--nav-height) + 40px) 20px 56px;
  }
  .name-container {
    margin-top: 24px;
    margin-bottom: 16px;
  }
  .status-badge {
    top: -1rem;
    left: 0;
    font-size: 8px;
    padding: 3px 10px;
  }
  .hero-eyebrow {
    font-size: 20px;
    letter-spacing: 0.1em;
    position: absolute;
    bottom: 2.1rem;
  }
  .hero-sub {
    font-size: 15px;
    padding: 0 8px;
  }
  .header-project-img {
    max-height: 55vw;
    min-height: 180px;
    object-fit: cover;
    margin-bottom: 2rem;
  }
  .project-hero-content {
    padding: 0 20px;
    margin-bottom: 32px;
  }
  .projects-section {
    padding: 40px 20px 72px;
  }
  .section-label {
    margin-bottom: 28px;
    font-size: 13px;
  }
  .projects-grid {
    gap: 4rem;
  }
  .project-card {
    padding: 22px 18px;
    border-radius: 10px;
  }
  .project-card::after {
    font-size: 70px;
  }
  .card-meta {
    margin-bottom: 14px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .card-tags {
    font-size: 11px;
  }
  .card-desc {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .card-link {
    width: 100%;
    justify-content: center;
    font-size: 11px;
    padding: 12px 16px;
  }
  .about-section {
    padding: calc(var(--nav-height) + 40px) 20px 60px;
  }
  .about-img-wrap {
    aspect-ratio: 1/1;
  }
  .about-right {
    gap: 20px;
  }
  .about-name {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .about-text p {
    font-size: 14px;
  }
  .about-tag {
    font-size: 11px;
    padding: 5px 12px;
  }
  .about-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
  .about-stat-num {
    font-size: 28px;
  }
  .about-stat-label {
    font-size: 12px;
  }
  .contact-hero {
    padding: calc(var(--nav-height) + 48px) 20px 16px;
  }
  .contact-section {
    padding: 16px 20px 60px;
    max-width: 100%;
  }
  .contact-form label {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .contact-form textarea {
    min-height: 200px;
  }
  .contact-form input, .contact-form textarea {
    font-size: 14px;
  }
  .case-study {
    padding: 0 20px 60px;
    position: static;
    left: 0;
  }
  .cs-inner {
    padding: 0 20px;
  }
  .cs-bleed-img {
    padding: 24px 20px;
  }
  .cs-divider {
    margin: 0 20px;
  }
  .highlight-box {
    padding: 16px 18px;
    margin: 14px 0;
  }
  .pain-item {
    padding: 14px 16px;
    gap: 12px;
  }
  .features-grid, .reflection-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .feature-item, .reflection-item {
    padding: 16px;
  }
  .cs-full-img {
    padding: 0 20px;
  }
  .cs-full-img.cs-mockup-grid {
    padding: 0;
    left: 0;
    transform: none;
    width: 100%;
  }
  .wireframe-geek {
    padding: 0 20px;
    flex-direction: column;
    gap: 12px;
  }
  .wireframe-geek img {
    width: 100%;
  }
  .mockup-row {
    grid-template-columns: 1fr;
  }
  .persona-column {
    padding: 0 20px;
    gap: 16px;
    margin: 1.5rem 0;
  }
  .persona-column img {
    border-radius: 8px;
  }
  .persona-column img[alt=Colors], .persona-column img[alt=Typography] {
    max-width: 100% !important;
    width: 100% !important;
  }
  .btn-primary, .btn-prototype {
    width: 100%;
    justify-content: center;
    font-size: 11px;
    padding: 16px 20px;
    margin-top: 20px;
    text-align: center;
  }
  .competitive-table th, .competitive-table td {
    padding: 10px 8px;
    font-size: 12px;
  }
  .competitive-table th {
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .sidebar {
    width: 60%;
    padding: 80px 28px 32px;
  }
  .sidebar ul {
    gap: 28px;
  }
  .sidebar-link {
    font-size: 20px;
  }
  .next-project {
    padding: 48px 20px;
  }
  .next-project-link {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-line {
    margin: 0 20px;
    width: calc(100% - 40px);
  }
  footer {
    padding: 24px 20px;
    flex-direction: column;
    gap: 4px;
  }
  footer p {
    font-size: 12px;
  }
}
/* ============================================
   VERY SMALL (<= 380px)
   ============================================ */
@media (max-width: 380px) {
  .meta-value {
    font-size: 13px;
  }
  .project-card {
    padding: 18px 14px;
  }
  .persona-column {
    padding: 0 16px;
  }
  .case-study {
    padding: 0 16px 48px;
  }
  .cs-inner {
    padding: 0 16px;
  }
  .cs-bleed-img {
    padding: 16px;
  }
  .cs-divider {
    margin: 0 16px;
  }
  .cs-full-img {
    padding: 0 16px;
  }
  .wireframe-geek {
    padding: 0 16px;
  }
  .persona-column img[alt=Colors], .persona-column img[alt=Typography] {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 1270px) {
  .persona-column {
    padding: 0 60px;
  }
}
@media (max-width: 900px) {
  .persona-column {
    padding: 0 28px;
  }
}/*# sourceMappingURL=style.css.map */