@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

body {
  font-family: 'Inter', sans-serif;
  color: #222;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

.navbar {
  background-color: #ffffff !important;
  border-bottom: 0.5px solid #e5e5e5 !important;
}

.navbar-brand {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #111 !important;
}

.nav-link {
  font-size: 13px !important;
  color: #555 !important;
}

.nav-link:hover {
  color: #111 !important;
}

.hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 92vh;
  padding: 4rem 0 2rem;
  border-bottom: 0.5px solid #e5e5e5;
  margin-bottom: 2rem;
  background-image: radial-gradient(circle, #e8e8e8 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 100%;
  position: relative;
  z-index: 10;
  flex: 1;
  margin: auto 0;
  max-width: 700px;
}

.hero-left {
  flex: 1;
  position: relative;
  z-index: 10;
}

.hero-left h3 {
  font-size: 28px;
  font-weight: 500;
  color: #111;
  margin: 0 0 6px;
}

.hero-left strong {
  font-size: 13px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 16px;
}

.hero-left p {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 0 20px;
}

.hero-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-link {
  font-size: 12px;
  color: #555;
  border: 0.5px solid #ccc;
  border-radius: 8px;
  padding: 5px 12px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.hero-link:hover {
  border-color: #888;
  color: #111;
}

.hero-right {
  flex-shrink: 0;
  position: relative;
  z-index: 20;
}

.profile-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 0.5px solid #e5e5e5;
  display: block;
}

.dot {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: #ccc;
  z-index: 10;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes f1 {
  0%,100% { transform: translate(0,0); }
  25% { transform: translate(6px,-12px); }
  50% { transform: translate(-4px,-18px); }
  75% { transform: translate(8px,-8px); }
}
@keyframes f2 {
  0%,100% { transform: translate(0,0); }
  25% { transform: translate(-8px,10px); }
  50% { transform: translate(6px,16px); }
  75% { transform: translate(-4px,6px); }
}
@keyframes f3 {
  0%,100% { transform: translate(0,0); }
  33% { transform: translate(10px,-6px); }
  66% { transform: translate(-6px,10px); }
}
@keyframes f4 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-14px,-10px); }
}
@keyframes f5 {
  0%,100% { transform: translate(0,0); }
  30% { transform: translate(8px,12px); }
  60% { transform: translate(-10px,4px); }
  80% { transform: translate(4px,-8px); }
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #aaa;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid #e5e5e5;
}

.stats-row {
  display: flex;
  gap: 12px;
  margin: 1.5rem 0;
}

.stat-card {
  background: #f8f8f6;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  flex: 1;
}

.stat-card strong {
  font-size: 24px;
  font-weight: 500;
  color: #111;
  display: block;
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 12px;
  color: #888;
  margin: 0;
}

.tools-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 1.25rem 0;
  border-top: 0.5px solid #e5e5e5;
  border-bottom: 0.5px solid #e5e5e5;
  margin-bottom: 1.5rem;
  align-items: center;
}

.tool-pill {
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 20px;
  font-weight: 400;
}

.t-gray {
  background: #f1efe8;
  color: #444441;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 2rem;
}

.hub-card {
  background: #ffffff;
  border: 0.5px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.25rem;
  transition: border-color 0.15s;
}

.hub-card:hover {
  border-color: #bbb;
}

.hub-card p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin: 0 0 12px;
}

.hub-card strong {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  display: block;
  margin: 0 0 4px;
}

.hub-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.icon-green  { background: #EAF3DE; }
.icon-blue   { background: #E6F1FB; }
.icon-purple { background: #EEEDFE; }
.icon-amber  { background: #FAEEDA; }
.icon-pink   { background: #FBEAF0; }

.hub-link {
  font-size: 11px;
  color: #888;
  text-decoration: none;
  transition: color 0.15s;
  display: block;
  width: fit-content;
}

.hub-link:hover {
  color: #111;
}

.coming-soon {
  font-size: 11px;
  color: #bbb;
}

hr {
  border: none;
  border-top: 0.5px solid #e5e5e5;
  margin: 0;
}

.work-intro {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 0 2rem;
}

.work-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.work-card {
  padding: 1.25rem 0;
}

.work-card section.level3 {
  margin: 0;
  padding: 0;
}

.work-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  margin: 0 0 12px;
  padding: 0;
}

.work-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 0 16px;
}

.work-meta {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
  margin-bottom: 10px;
}

.work-link {
  display: block;
  font-size: 12px;
  color: #555;
  text-decoration: none;
  border-bottom: 0.5px solid #ccc;
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
  width: fit-content;
}

.work-link:hover {
  color: #111;
  border-color: #888;
}

.work-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.client-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.client-pill {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  background: #f1efe8;
  color: #444441;
  font-weight: 400;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.tag {
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 20px;
  font-weight: 400;
}

.tag-tools  { background: #EAF3DE; color: #27500A; }
.tag-tech   { background: #E6F1FB; color: #0C447C; }
.tag-domain { background: #EEEDFE; color: #3C3489; }

.listing-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.listing-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 0.5px solid #e5e5e5;
  align-items: flex-start;
}

.listing-card:last-child {
  border-bottom: none;
}

.listing-thumb {
  flex-shrink: 0;
  width: 200px;
  height: 130px;
  overflow: hidden;
  border-radius: 8px;
}

.listing-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

.listing-content {
  flex: 1;
}

.listing-content h3 {
  font-size: 16px;
  font-weight: 500;
  color: #111;
  margin: 0 0 6px;
}

.listing-content p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 10px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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