:root {
  --bg: #07111f;
  --bg-soft: #0d1930;
  --bg-panel: rgba(12, 21, 39, 0.76);
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-line: rgba(122, 144, 184, 0.24);
  --text-main: #111a2f;
  --text-soft: #65708b;
  --text-white: #f5f8ff;
  --accent: #2f6bff;
  --accent-strong: #1e4fff;
  --accent-soft: #dfe9ff;
  --mint: #67f5c9;
  --peach: #ffc982;
  --shadow-lg: 0 28px 60px rgba(8, 19, 43, 0.18);
  --shadow-md: 0 18px 40px rgba(12, 25, 53, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  color: var(--text-main);
  background: 
  linear-gradient(180deg, #08111f 0 62rem, #edf3ff 60rem 100%),
  linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.04) 100%);

box-shadow: var(--shadow-md);
}

body.menu-open {
  overflow: hidden;
}

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

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

.bg-orb,
.bg-grid {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  border-radius: 50%;
  filter: blur(80px);
}

.orb-one {
  top: -120px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: rgba(47, 107, 255, 0.24);
}

.orb-two {
  top: 140px;
  right: -90px;
  width: 320px;
  height: 320px;
  background: rgba(103, 245, 201, 0.15);
}

.bg-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 58%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(2, 8, 23, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: white;
  background: linear-gradient(145deg, var(--accent), #5a8fff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.main-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(245, 248, 255, 0.82);
  font-size: 0.96rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent-strong), #5e84ff);
  box-shadow: 0 18px 30px rgba(47, 107, 255, 0.28);
}

.btn-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.dark-outline {
  background: transparent;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.arrow {
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 44px;
  align-items: center;
  padding: 116px 0 40px;
  scroll-margin-top: 120px;
}

.hero-copy {
  max-width: 680px;
}

.hero-kicker,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(0, 0, 0, 0.86);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-kicker::before,
.section-tag::before,
.light-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(103, 245, 201, 0.12);
}

.eyebrow {
  margin: 26px 0 12px;
  font-size: 1.2rem;
  color: rgba(245, 248, 255, 0.8);
}

.hero h1,
.hero h2,
.hero-text,
.site-footer,
.cta-banner {
  color: var(--text-white);
}

.hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(3.9rem, 8vw, 3.6rem);
  line-height: 0.95;
}

.hero h2 {
  max-width: 34ch;
  margin: 18px 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 4.2vw, 1.2rem);
  line-height: 1.3;
  font-weight: 100;
}

.hero-text {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(1rem, 1.7vw, 1.1rem);
  line-height: 1.5;
  color: rgba(245, 248, 255, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.meta-card {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.meta-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  color: white;
}

.meta-card span {
  color: rgba(245, 248, 255, 0.74);
  line-height: 1.65;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.visual-shell {
  position: relative;
  width: min(100%, 428px);
  padding-right: 20px;
}

.portrait-card {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 17, 31, 0.7);
  box-shadow: var(--shadow-lg);
}

.portrait-media {
  overflow: hidden;
  min-height: 550px;
  border-radius: 28px;
  position: relative;
}

.portrait-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(8, 17, 31, 0.72));
}

.portrait-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-card {
  position: absolute;
  left: -26px;
  top: 28px;
  width: min(260px, 56%);
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(10, 19, 37, 0.78);
  backdrop-filter: blur(14px);
}

.intro-card p,
.contact-row span:last-child {
  margin: 0;
  color: rgba(245, 248, 255, 0.88);
  line-height: 1.7;
}

.contact-card {
  position: absolute;
  right: -28px;
  bottom: 18px;
  width: min(350px, 74%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(31, 28, 38, 0.8);
  backdrop-filter: blur(14px);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-row + .contact-row {
  margin-top: 16px;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.visual-badge {
  position: absolute;
  z-index: 2;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(12px);
}

.badge-top {
  top: 11px;
  right: 237px;
  background: rgba(47, 107, 255, 0.24);
  border: 1px solid rgba(123, 163, 255, 0.34);
}



.badge-bottom {
  left: 20px;
  bottom: 118px;
  background: rgba(103, 245, 201, 0.12);
  border: 1px solid rgba(103, 245, 201, 0.22);
}

.social-rail {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.social-rail a,
.social-pills a {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: lowercase;
}

.tech-strip {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 20px 26px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 255, 0.92));
  box-shadow: var(--shadow-md);
}

.strip-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 170px;
  padding-right: 24px;
  border-right: 1px solid var(--surface-line);
  color: #64738e;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.strip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.strip-items span,
.pill-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 600;
}

.content-section {
  margin-top: 54px;
  scroll-margin-top: 120px;
}

.ai-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ai-tool-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(137, 158, 197, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.ai-tool-card h4 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  color: #10192f;
}

.ai-tool-card p {
  margin: 0;
  color: #000000;
  line-height: 1.8;
}

.ai-tool-logo {
  display: inline-grid;
  place-items: center;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
 }

.ai-tool-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.workflow-section {
  position: relative;
}

.workflow-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 52px;
  padding: 16px 0;
}

.workflow-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.18), rgba(47, 107, 255, 0.72), rgba(103, 245, 201, 0.42));
}

.workflow-timeline::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 40px;
  width: 14px;
  height: calc(100% - 80px);
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.08), rgba(103, 245, 201, 0.12));
  filter: blur(18px);
  pointer-events: none;
}

.workflow-card {
  position: relative;
  padding: 24px 24px 24px 28px;
  border: 1px solid rgba(137, 158, 197, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(47, 107, 255, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(22px);
  animation: workflow-rise 0.7s ease forwards;
}

.workflow-card:nth-child(odd) {
  margin-right: 34px;
}

.workflow-card:nth-child(even) {
  margin-left: 34px;
}

.workflow-card:nth-child(1) { animation-delay: 0.05s; }
.workflow-card:nth-child(2) { animation-delay: 0.14s; }
.workflow-card:nth-child(3) { animation-delay: 0.23s; }
.workflow-card:nth-child(4) { animation-delay: 0.32s; }
.workflow-card:nth-child(5) { animation-delay: 0.41s; }
.workflow-card:nth-child(6) { animation-delay: 0.5s; }

.workflow-card::before {
  content: "";
  position: absolute;
  top: 38px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 107, 255, 0.55), rgba(103, 245, 201, 0.55));
}

.workflow-card:nth-child(odd)::before {
  right: -40px;
}

.workflow-card:nth-child(even)::before {
  left: -40px;
}

.workflow-step-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}

.workflow-step-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--accent), #72a5ff);
  box-shadow: 0 0 0 6px rgba(47, 107, 255, 0.12);
}

.workflow-card:nth-child(odd) .workflow-step-wrap::after {
  right: -57px;
}

.workflow-card:nth-child(even) .workflow-step-wrap::after {
  left: -57px;
}

.workflow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eff4ff, #dbe7ff);
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.workflow-card h4 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  color: #10192f;
}

.workflow-card p {
  margin: 0;
  color: #000000;
  line-height: 1.8;
}

@keyframes workflow-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.claude-logo {
 }

.lovable-logo {
 }

.codex-logo {
   font-size: 1rem;
}

.section-intro {
  margin-bottom: 20px;
}

.section-intro-wide {
  margin-bottom: 24px;
}

.section-title h3 {
  margin: 10px 0 0;
  max-width: 18ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.16;
  color: #10192f;
}

.small-title h3 {
  max-width: none;
  font-size: 1.45rem;
}

.section-title span {
  display: inline-block;
  width: 44px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #72a5ff);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
}

.section-copy p,
.panel p,
.panel li,
.info-card li {
  margin: 0;
  color: #000000;
  font-size: 1.04rem;
  line-height: 1.9;
}

.section-copy p + p {
  margin-top: 14px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.mini-card,
.panel,
.info-card,
.project-card {
  border: 1px solid rgba(137, 158, 197, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.mini-card {
  padding: 24px;
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, #eff4ff, #dae6ff);
  color: var(--accent-strong);
  font-size: 1.25rem;
  font-weight: 700;
}

.mini-card h4,
.panel h4,
.project-card h4,
.cta-banner h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  color: #10192f;
}

.mini-card p {
  font-size: 0.98rem;
}

.panel,
.info-card {
  padding: 28px;
}

.highlight-card {
  background:
    radial-gradient(circle at top right, rgba(47, 107, 255, 0.1), transparent 38%),
    rgba(255, 255, 255, 0.84);
}

.tick-list,
.dot-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.tick-list li,
.dot-list li {
  position: relative;
  padding-left: 28px;
}

.tick-list li + li,
.dot-list li + li {
  margin-top: 14px;
}

.tick-list li::before,
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(47, 107, 255, 0.12);
}

.highlight-metrics {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(122, 144, 184, 0.18);
}

.highlight-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
  color: #10192f;
}

.skill-showcase {
  position: relative;
}

.triple-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: start;
}

.skill-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.skill-item {
  display: grid;
  grid-template-columns: minmax(86px, auto) 1fr;
  align-items: center;
  gap: 14px;
}

.skill-item span {
  font-weight: 500;
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: #dae3f4;
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #74a1ff);
}

.timeline {
  position: relative;
  margin-top: 20px;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, #84a9ff, #d9e4ff);
}

.timeline-item {
  position: relative;
  padding-bottom: 22px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(47, 107, 255, 0.12);
}

.timeline-date {
  display: inline-block;
  margin-bottom: 8px;
  color: #6f7d99;
  font-size: 0.95rem;
  font-weight: 500;
}

.timeline-item h4 {
  margin-bottom: 6px;
}

.side-stack {
  display: grid;
  gap: 22px;
}

.compact-panel h4 {
  line-height: 1.5;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.project-showcase-shell {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(103, 245, 201, 0.12), transparent 24%),
    radial-gradient(circle at top left, rgba(47, 107, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #0e172b, #09111f 58%, #101a31);
  box-shadow: 0 30px 80px rgba(8, 19, 43, 0.2);
  overflow: hidden;
}

.project-showcase-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 72%);
  pointer-events: none;
}

.project-heading-row,
.projects-slider {
  position: relative;
  z-index: 1;
}

.project-intro .section-tag {
  color: rgba(245, 248, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.project-intro .section-title h3 {
  max-width: 14ch;
  color: white;
}

.project-intro .section-title span {
  background: linear-gradient(90deg, var(--mint), #87b5ff);
}

.project-intro-text {
  max-width: 60ch;
  margin: 18px 0 0;
  color: rgba(245, 248, 255, 0.72);
  line-height: 1.8;
}

.projects-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
}

.slider-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.slider-arrow:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.view-link {
  align-self: center;
  padding: 12px 18px;
  border-radius: 999px;
  color: white;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.projects-slider {
  margin-top: 26px;
  overflow: hidden;
}

.project-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 360px);
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 12px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.project-grid.is-auto-scrolling {
  scroll-snap-type: none;
}

.project-grid::-webkit-scrollbar {
  display: none;
}

.project-grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.project-grid.is-dragging .project-card {
  pointer-events: none;
}

.project-card {
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(11, 18, 33, 0.78);
  box-shadow: 0 20px 40px rgba(2, 8, 23, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  opacity: 0;
  transform: translateY(26px);
  animation: project-card-rise 0.8s ease forwards;
}

.project-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(103, 245, 201, 0.22);
  box-shadow: 0 26px 56px rgba(2, 8, 23, 0.24);
}

.project-card:nth-child(1) { animation-delay: 0.04s; }
.project-card:nth-child(2) { animation-delay: 0.08s; }
.project-card:nth-child(3) { animation-delay: 0.12s; }
.project-card:nth-child(4) { animation-delay: 0.16s; }
.project-card:nth-child(5) { animation-delay: 0.20s; }
.project-card:nth-child(6) { animation-delay: 0.24s; }
.project-card:nth-child(7) { animation-delay: 0.28s; }
.project-card:nth-child(8) { animation-delay: 0.32s; }
.project-card:nth-child(9) { animation-delay: 0.36s; }
.project-card:nth-child(10) { animation-delay: 0.40s; }
.project-card:nth-child(11) { animation-delay: 0.44s; }
.project-card:nth-child(12) { animation-delay: 0.48s; }
.project-card:nth-child(13) { animation-delay: 0.52s; }
.project-card:nth-child(14) { animation-delay: 0.56s; }

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 14, 27, 0.82));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.project-card:hover::before {
  opacity: 1;
}

.project-thumb {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.45s ease;
}

.project-thumb-brand {
  padding: 22px;
}

.brand-preview {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  border-radius: 22px;
}

.brand-preview strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: white;
}

.brand-preview span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
}

.deby-thumb {
  background:
    radial-gradient(circle at top right, rgba(255, 201, 130, 0.28), transparent 22%),
    linear-gradient(145deg, #181226, #302055 60%, #4b2d81);
}

.project-card:hover .project-thumb img {
  transform: scale(1.07);
  filter: saturate(1.05);
}

.thumb-label {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(12, 21, 39, 0.72);
  color: white;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.project-link-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.project-card:hover .project-link-badge {
  transform: translate(2px, -2px) scale(1.04);
  background: rgba(103, 245, 201, 0.18);
}

.project-body {
  padding: 22px 22px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04));
}

.project-body h4 {
  margin: 0 0 10px;
  color: white;
  font-size: 1.2rem;
}

.project-body::after {
  content: "Open project";
  display: inline-block;
  margin-top: 16px;
  color: var(--mint);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.project-body p {
  margin: 0;
  color: rgba(245, 248, 255, 0.72);
  line-height: 1.75;
}

@keyframes project-card-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 34px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(103, 245, 201, 0.12), transparent 22%),
    linear-gradient(145deg, #0f1729, #0a1222);
  box-shadow: var(--shadow-lg);
}

.cta-copy {
  max-width: 760px;
}

.light-tag {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
}

.cta-banner h3 {
  margin-top: 14px;
  max-width: 20ch;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.14;
  color: white;
}

.cta-banner h3 span {
  color: var(--mint);
}

.cta-banner p {
  margin: 0;
  color: rgba(245, 248, 255, 0.76);
  line-height: 1.9;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 0.85fr;
  gap: 26px;
  margin-top: 0px;
  padding: 20px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  
}

.site-footer h4 {
  margin: 10px 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: rgb(3, 1, 12);
}

.site-footer p,
.site-footer small,
.site-footer a,
.site-footer span {
  display: block;
  color: rgba(1, 6, 19, 0.72);
  line-height: 1.9;
}

.footer-brand .brand-mark {
  width: 44px;
  height: 44px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 248, 255, 0.82);
  font-size: 0.9rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--accent-strong), #5a84ff);
  box-shadow: 0 16px 30px rgba(47, 107, 255, 0.28);
}

@media (max-width: 1180px) {
  .hero,
  .about-grid,
  .triple-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 30px;
  }

  .hero-copy {
    max-width: none;
    margin: 10px;
  }

  .hero h2,
  .section-title h3,
  .cta-banner h3 {
    max-width: none;
    font-size: 25px;
    font-weight: 100;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1fr 0.85fr;
    gap: 26px;
    margin-top: 0px;
    padding: 12px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

  .hero-visual {
    justify-content: center;
  }

  .visual-shell {
    padding-right: 0;
  }

  .social-rail {
    position: static;
    flex-direction: row;
    justify-content: center;
    transform: none;
    margin-top: 16px;
  }

  .project-grid {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .project-showcase-shell {
    padding: 28px;
  }

  .ai-tool-grid {
    grid-template-columns: 1fr;
  }

  .workflow-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .workflow-timeline::before,
  .workflow-timeline::after,
  .workflow-card::before,
  .workflow-step-wrap::after {
    display: none;
  }

  .workflow-card:nth-child(odd),
  .workflow-card:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 920px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
  }

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

  .main-nav a {
    text-align: center;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-meta,
  .service-cards,
  .cta-banner,
  .section-heading-row {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    display: grid;
  }

  .section-heading-row,
  .cta-banner {
    align-items: flex-start;
  }

  .section-heading-row,
  .projects-toolbar,
  .cta-banner {
    flex-direction: column;
  }

  .project-heading-row {
    align-items: flex-start;
  }

  .projects-toolbar {
    width: 100%;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  body {
    background: linear-gradient(180deg, #08111f 0 162rem, #edf3ff 60rem 100%);
}

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-meta,
  .service-cards {
    grid-template-columns: 1fr;
  }

  .portrait-media {
    min-height: 520px;
  }

  .intro-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .contact-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .visual-badge {
    display: none;
  }

  .tech-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-grid {
    grid-auto-columns: 88%;
  }

  .project-showcase-shell {
    padding: 24px;
    border-radius: 28px;
  }

  .project-thumb {
    min-height: 220px;
  }

  .strip-label {
    width: 100%;
    min-width: 0;
    padding-right: 0;
    padding-bottom: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--surface-line);
  }

  .skill-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1.35rem;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero h2 {
    font-size: 1.2rem;
     
    font-weight: 100;
}

  .meta-card,
  .panel,
  .info-card,
  .mini-card,
  .project-card,
  .cta-banner,
  .tech-strip {
    border-radius: 24px;
  }

  .panel,
  .info-card,
  .cta-banner,
  .tech-strip {
    padding: 22px;
  }

  .project-showcase-shell {
    padding: 20px;
  }

  .mini-card,
  .project-body {
    padding: 20px;
  }

  .portrait-card {
    border-radius: 26px;
    padding: 10px;
  }

  .portrait-media {
    min-height: 420px;
    border-radius: 22px;
  }

  .social-rail {
    width: 100%;
  }

  .social-rail a,
  .social-pills a {
    width: 42px;
    height: 42px;
  }

  .slider-controls,
  .footer-bottom {
    width: 100%;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .scroll-top {
    right: 14px;
    bottom: 14px;
  }
}


.contact-row a {
  color: #ffffff; /* white */
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-row a:hover {
  color: #4da6ff; /* light blue */
}
