:root {
  --bg: #f4f7fb;
  --bg-2: #eef2f8;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --surface-muted: #eef3fa;
  --surface-dark: #09182f;
  --surface-dark-2: #0f2342;
  --border: rgba(16, 24, 40, 0.08);
  --border-strong: rgba(16, 24, 40, 0.14);
  --text: #121a2c;
  --text-soft: #38455d;
  --text-muted: #68778f;
  --accent: #4d73f8;
  --accent-2: #6c63ff;
  --accent-soft: rgba(77, 115, 248, 0.1);
  --accent-line: rgba(77, 115, 248, 0.34);
  --dark-text: #f7faff;
  --dark-soft: rgba(236, 243, 255, 0.8);
  --shadow: 0 18px 42px rgba(19, 33, 68, 0.08);
  --shadow-lg: 0 26px 70px rgba(15, 30, 61, 0.12);
  --radius-xl: 26px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1350px;
  --header-height: 76px;
}

html[data-theme="dark"] {
  --bg: #07111f;
  --bg-2: #0b1628;
  --surface: rgba(13, 24, 43, 0.82);
  --surface-strong: #0f1d35;
  --surface-muted: #0d1930;
  --surface-dark: #051120;
  --surface-dark-2: #091b34;
  --border: rgba(172, 194, 233, 0.12);
  --border-strong: rgba(172, 194, 233, 0.18);
  --text: #f3f7ff;
  --text-soft: rgba(236, 243, 255, 0.86);
  --text-muted: rgba(188, 202, 227, 0.7);
  --accent: #7da0ff;
  --accent-2: #8f7cff;
  --accent-soft: rgba(125, 160, 255, 0.12);
  --accent-line: rgba(125, 160, 255, 0.34);
  --dark-text: #f7faff;
  --dark-soft: rgba(236, 243, 255, 0.82);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 26px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(96, 124, 255, 0.12), transparent 22%),
    radial-gradient(circle at 90% 6%, rgba(93, 132, 255, 0.12), transparent 20%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  line-height: 1.55;
  transition: background-color 180ms ease, color 180ms ease;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--surface-strong) 84%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
}

.brand {
  justify-self: start;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-nav {
  display: inline-flex;
  justify-self: center;
  gap: 2rem;
}

.site-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.75rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
  margin: 4px auto;
}

.theme-menu-wrap {
  position: relative;
  justify-self: end;
}

.theme-trigger {
  min-width: 120px;
  height: 46px;
  padding: 0 0.85rem 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-soft);
  box-shadow: var(--shadow);
}

.theme-trigger:hover,
.theme-trigger:focus-visible {
  color: var(--text);
}

.theme-trigger-icon,
.theme-trigger-caret,
.card-symbol,
.impact-icon,
.why-icon,
.request-badge,
.footer-social a,
.hero-social a {
  display: inline-grid;
  place-items: center;
}

.theme-trigger-icon svg,
.theme-trigger-caret svg,
.footer-social a svg,
.hero-social a svg {
  width: 18px;
  height: 18px;
}

.theme-trigger-label {
  font-weight: 600;
}

.theme-trigger-caret {
  width: 16px;
  height: 16px;
  margin-left: auto;
}

.theme-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  width: 150px;
  padding: 0.45rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  box-shadow: var(--shadow-lg);
}

.theme-option {
  width: 100%;
  text-align: left;
  padding: 0.7rem 0.85rem;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  border-radius: 12px;
}

.theme-option:hover,
.theme-option[aria-checked="true"] {
  background: var(--accent-soft);
  color: var(--text);
}

.hero {
  padding: 0.65rem 0 0;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 2.8rem;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.42)),
    linear-gradient(90deg, rgba(235, 240, 249, 0.95) 0%, rgba(242, 245, 251, 0.84) 46%, rgba(211, 227, 249, 0.56) 100%);
  border: 1px solid var(--border);
  border-radius: 0 0 28px 28px;
  padding: 3.4rem 3.4rem 1rem;
  overflow: hidden;
}

html[data-theme="dark"] .hero-panel {
  background:
    linear-gradient(180deg, rgba(10, 18, 32, 0.84), rgba(8, 16, 29, 0.78)),
    linear-gradient(90deg, rgba(15, 26, 46, 0.98) 0%, rgba(12, 21, 38, 0.95) 46%, rgba(15, 37, 72, 0.82) 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

html[data-theme="dark"] .eyebrow {
  background: rgba(255, 255, 255, 0.04);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-copy h1 {
  margin: 1.3rem 0 1rem;
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-copy h1 span {
  background: linear-gradient(90deg, var(--accent) 0%, #315aa7 34%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-summary {
  max-width: 560px;
  font-size: 1.2rem;
  color: var(--text-soft);
  margin: 0 0 1.65rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  min-height: 54px;
  padding: 0 1.3rem;
  border-radius: 14px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: #0d1526;
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .button-primary {
  background: linear-gradient(180deg, #f7faff, #d8e4ff);
  color: #081226;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--border);
}

html[data-theme="dark"] .button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.button-icon svg {
  width: 16px;
  height: 16px;
}

.button-block {
  width: 100%;
}

.hero-metrics {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.65rem;
}

.hero-metrics li {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-soft);
  padding-left: 1.15rem;
}

.hero-metrics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-media {
  position: relative;
  min-height: 100%;
}

.hero-social {
  position: absolute;
  top: 0.3rem;
  right: 0.7rem;
  z-index: 3;
  display: flex;
  gap: 0.7rem;
}

.hero-social a,
.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.9);
  color: #1b2437;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, background-color 180ms ease;
}

html[data-theme="dark"] .hero-social a,
html[data-theme="dark"] .footer-social a {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-strong);
  color: var(--text);
}

.hero-social a:hover,
.footer-social a:hover,
.hero-social a:focus-visible,
.footer-social a:focus-visible {
  transform: translateY(-2px);
}

.hero-visual-card {
  position: relative;
  min-height: 520px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 38%, rgba(116, 172, 255, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(235, 242, 251, 0.45), rgba(149, 188, 235, 0.34));
}

html[data-theme="dark"] .hero-visual-card {
  background:
    radial-gradient(circle at 65% 38%, rgba(116, 172, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(10, 20, 38, 0.18), rgba(52, 98, 173, 0.16));
}

.hero-visual-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual-glow {
  position: absolute;
  inset: 12% 12% auto auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42), transparent 64%);
  z-index: 1;
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  top: 1rem;
  right: -1rem;
  width: 240px;
  height: calc(100% - 2rem);
  background-image: radial-gradient(circle, rgba(116, 141, 193, 0.65) 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.42;
  z-index: 1;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 0.45rem;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-soft);
}

.hero-scroll svg {
  width: 22px;
  height: 22px;
}

.canvas-section {
  padding: 1.55rem 0 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: start;
}

.section-title h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-card,
.request-card,
.impact-list {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.info-card {
  min-height: 205px;
  padding: 1.4rem;
  border-radius: 20px;
}

.card-symbol {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
}

.card-symbol svg,
.impact-icon svg,
.request-badge svg,
.why-icon svg {
  width: 22px;
  height: 22px;
}

.info-card h3,
.impact-item h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  line-height: 1.2;
}

.info-card p,
.impact-item p,
.request-heading p,
.footer-note,
.footer-branding p,
.form-status {
  margin: 0;
  color: var(--text-soft);
}

.right-column {
  display: grid;
  gap: 1rem;
}

.impact-list {
  border-radius: 22px;
  padding: 1rem 1rem 0;
}

.impact-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0.95rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.impact-item:last-child {
  border-bottom: 0;
}

.impact-icon,
.request-badge {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}

.projects-section {
  padding: 2rem 0 0;
}

.projects-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1rem;
}

.project-kicker {
  background: var(--accent-soft);
  border-color: var(--accent-line);
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.projects-title h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.04;
}

.projects-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.projects-head-right {
  display: grid;
  gap: 1rem;
  align-content: end;
}

.projects-controls {
  display: inline-flex;
  justify-self: end;
  gap: 0.55rem;
  padding: 0.3rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-strong) 74%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.projects-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text-soft);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.projects-arrow:hover,
.projects-arrow:focus-visible {
  color: var(--text);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.projects-arrow svg {
  width: 19px;
  height: 19px;
}

.projects-carousel {
  display: block;
  margin: 0 -0.25rem;
  padding: 0.15rem 0.25rem 1rem;
}

swiper-slide {
  width: clamp(320px, 30vw, 430px);
  height: auto;
}

swiper-slide.project-slide-featured {
  width: clamp(340px, 32vw, 460px);
}

.project-card {
  position: relative;
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border-radius: 22px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface-strong) 76%, transparent), transparent),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-2px);
  border-color: var(--accent-line);
  box-shadow: var(--shadow-lg);
}

.project-card-featured {
  background:
    linear-gradient(135deg, rgba(77, 115, 248, 0.08), rgba(24, 166, 122, 0.06)),
    var(--surface);
}

html[data-theme="dark"] .project-card-featured {
  background:
    linear-gradient(135deg, rgba(125, 160, 255, 0.1), rgba(24, 166, 122, 0.08)),
    var(--surface);
}

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.project-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(77, 115, 248, 0.12);
  border: 1px solid rgba(77, 115, 248, 0.22);
  color: var(--accent);
  font-weight: 800;
}

.project-brand {
  width: 178px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.35rem 0.15rem;
}

.project-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.project-logo-dark {
  display: none;
}

html[data-theme="dark"] .project-logo-light {
  display: none;
}

html[data-theme="dark"] .project-logo-dark {
  display: block;
}

.project-mark-approve {
  background: rgba(208, 139, 42, 0.13);
  border-color: rgba(208, 139, 42, 0.26);
  color: #b56f18;
}

.project-mark-trace {
  background: rgba(24, 166, 122, 0.13);
  border-color: rgba(24, 166, 122, 0.26);
  color: #10815e;
}

.project-mark-context {
  background: rgba(77, 115, 248, 0.12);
  border-color: rgba(77, 115, 248, 0.24);
}

.project-mark-guard {
  background: rgba(192, 83, 83, 0.12);
  border-color: rgba(192, 83, 83, 0.24);
  color: #b44343;
}

html[data-theme="dark"] .project-mark-approve {
  color: #f0b35a;
}

html[data-theme="dark"] .project-mark-trace {
  color: #5fddb0;
}

html[data-theme="dark"] .project-mark-guard {
  color: #ff9b9b;
}

.project-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-active {
  background: rgba(24, 166, 122, 0.12);
  color: #137a5b;
}

.status-planned {
  background: rgba(208, 139, 42, 0.13);
  color: #9b6418;
}

html[data-theme="dark"] .status-active {
  color: #6ae0b6;
}

html[data-theme="dark"] .status-planned {
  color: #f0bd70;
}

.project-card h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.project-card p {
  margin: 0;
  color: var(--text-soft);
}

.project-points {
  display: grid;
  gap: 0.55rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.project-points li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-soft);
  font-weight: 600;
}

.project-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.15rem 0 1rem;
}

.project-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.44);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

html[data-theme="dark"] .project-tags span {
  background: rgba(255, 255, 255, 0.05);
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}

.project-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 0.78rem;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: color-mix(in srgb, var(--surface-strong) 66%, transparent);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.project-link:hover,
.project-link:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent-line);
  background: var(--accent-soft);
}

.project-link-disabled,
.project-link-disabled:hover,
.project-link-disabled:focus-visible {
  cursor: not-allowed;
  transform: none;
  border-color: var(--border);
  background: color-mix(in srgb, var(--surface-muted) 78%, transparent);
  color: var(--text-muted);
  opacity: 0.82;
}

.project-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.request-card {
  border-radius: 22px;
  padding: 1.3rem;
}

.request-heading {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.request-heading h2 {
  margin: 0 0 0.25rem;
  font-size: 1.9rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.resume-form {
  display: grid;
  gap: 0.8rem;
}

.form-row {
  display: grid;
  gap: 0.8rem;
}

.two-up {
  grid-template-columns: 1fr 1fr;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  padding: 0.88rem 0.95rem;
  transition: border-color 180ms ease, background-color 180ms ease;
}

html[data-theme="dark"] input,
html[data-theme="dark"] textarea {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-line);
}

.form-status {
  min-height: 1.25rem;
  font-size: 0.92rem;
}

.why-section {
  padding: 2rem 0 0;
}

.why-panel {
  background:
    radial-gradient(circle at 30% 30%, rgba(77, 115, 248, 0.16), transparent 30%),
    linear-gradient(90deg, var(--surface-dark), var(--surface-dark-2));
  color: var(--dark-text);
  border-radius: 28px;
  padding: 2rem 2rem 2.35rem;
  overflow: hidden;
}

.section-title-light h2 {
  color: var(--dark-text);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.why-item {
  padding-top: 0.8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 1rem;
}

.why-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(125, 160, 255, 0.12);
  color: #7aa0ff;
  margin-bottom: 0.9rem;
}

.why-item p {
  margin: 0;
  color: var(--dark-soft);
  font-weight: 500;
}

.site-footer {
  background: linear-gradient(180deg, #07111f, #081122);
  color: var(--dark-text);
  padding: 1.35rem 0 1.8rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(125, 160, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.footer-branding strong {
  display: block;
  margin-bottom: 0.2rem;
}

.footer-branding p,
.footer-note {
  color: rgba(236, 243, 255, 0.72);
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.delay-1 {
  transition-delay: 80ms;
}

.delay-2 {
  transition-delay: 150ms;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 1.25rem;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    padding: 2.2rem 2rem 1rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-media {
    order: -1;
  }

  .hero-social {
    top: 1rem;
    right: 1rem;
  }

  .hero-visual-card {
    min-height: 460px;
  }

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

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-head {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    align-items: start;
  }

  .projects-controls {
    justify-self: start;
  }

  .projects-carousel {
    padding-bottom: 1.1rem;
  }

  swiper-slide,
  swiper-slide.project-slide-featured {
    width: min(82vw, 430px);
  }

  .project-card {
    min-height: 0;
  }

  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.25rem;
    background: var(--surface-strong);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 0.45rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.85rem 0.9rem;
    border-radius: 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--accent-soft);
  }

  .theme-menu-wrap {
    justify-self: end;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }

  .hero-summary {
    font-size: 1.05rem;
  }

  .cards-grid,
  .why-grid,
  .two-up {
    grid-template-columns: 1fr;
  }

  .why-item {
    border-left: 0;
    padding-left: 0;
    padding-top: 0.25rem;
  }

  .why-panel {
    padding-inline: 1.2rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

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

  .theme-trigger {
    min-width: 96px;
    padding-inline: 0.7rem;
  }

  .theme-trigger-label {
    font-size: 0.92rem;
  }

  .hero-panel {
    border-radius: 0 0 22px 22px;
    padding: 1.1rem 1rem 0.9rem;
    gap: 1.2rem;
  }

  .hero-media {
    width: 100%;
  }

  .hero-social {
    position: static;
    margin-bottom: 0.8rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .hero-visual-card {
    min-height: 330px;
  }

  .hero-summary {
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    gap: 0.55rem 0.9rem;
  }

  .canvas-section {
    padding-top: 1rem;
  }

  .projects-section {
    padding-top: 1.2rem;
  }

  swiper-slide,
  swiper-slide.project-slide-featured {
    width: min(88vw, 360px);
  }

  .project-card {
    padding: 1.15rem;
    border-radius: 18px;
  }

  .project-card-top {
    align-items: flex-start;
  }

  .project-brand {
    width: 155px;
  }

  .info-card,
  .impact-list,
  .request-card {
    border-radius: 18px;
  }

  .request-heading {
    grid-template-columns: 1fr;
  }

  .request-badge {
    margin-bottom: 0.1rem;
  }

  .request-heading h2 {
    font-size: 1.55rem;
  }

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

  .site-footer {
    padding-bottom: 1.3rem;
  }
}

/* ─── Request Resume ─────────────────────────────────────── */
.request-resume-section {
  padding: 2rem 0;
}

.request-resume-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3.5rem;
  align-items: center;
  background:
    radial-gradient(circle at 90% 15%, rgba(77, 115, 248, 0.12), transparent 50%),
    radial-gradient(circle at 5% 85%, rgba(108, 99, 255, 0.08), transparent 40%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 3rem 3.5rem;
  overflow: hidden;
}

.request-copy .eyebrow {
  display: inline-flex;
  background: var(--accent-soft);
  border-color: var(--accent-line);
  color: var(--accent);
  font-size: 0.83rem;
  padding: 0.38rem 0.75rem;
  margin: 0 0 1.1rem;
}

.request-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.request-copy > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.resume-form {
  display: grid;
  gap: 0.72rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-row label {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-soft);
}

.form-row textarea {
  resize: vertical;
  min-height: 90px;
}

.form-status {
  font-size: 0.92rem;
  line-height: 1.5;
  min-height: 1.2rem;
}

.form-status.success {
  color: #22863a;
}

html[data-theme="dark"] .form-status.success {
  color: #56d364;
}

.form-status.error {
  color: #c0392b;
}

html[data-theme="dark"] .form-status.error {
  color: #ff8080;
}

@media (max-width: 860px) {
  .request-resume-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
}
