:root {
  /* SİTENİN ANA RENKLERİ — yalnızca renk kodlarını değiştirmeniz yeterli. */
  --font-geist-sans: Inter, Arial, Helvetica, sans-serif;
  --font-geist-mono: "Courier New", Courier, monospace;
  --ink: #090a0c;
  --surface: #101216;
  --surface-2: #16191e;
  --paper: #f2f0e9;
  --muted: #959aa3;
  --line: #292d34;
  --blue: #607efb;
  --lime: #c7ed72;
  --coral: #f47f6b;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow: hidden;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-deck {
  position: relative;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.kinetic-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  pointer-events: none;
}

.scene-track {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100svh;
  transform: translate3d(0, 0, 0);
  transition: transform 920ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1480px;
  height: 80px;
  padding: 0 4.5vw;
  border-bottom: 1px solid rgba(242, 240, 233, 0.1);
  background: rgba(9, 10, 12, 0.88);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.brand {
  position: relative;
  display: block;
  width: 38px;
  height: 34px;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-size: 12px;
}

.language-toggle {
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font: 600 10px/1 var(--font-geist-mono), monospace;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 180ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  color: var(--paper);
}

.desktop-nav a,
.header-contact,
.contact-footer a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.contact-footer a:hover,
.contact-footer a:focus-visible {
  color: var(--paper);
}

.header-contact {
  justify-self: end;
  font-size: 12px;
  font-weight: 600;
}

.header-contact span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 180ms ease;
}

.header-contact:hover span {
  transform: translate(3px, -3px);
}

.site-header > .mobile-menu {
  display: none !important;
}

.snap-page {
  position: relative;
  flex: 0 0 100svh;
  width: 100%;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 10, 12, 0.9);
}

.slide-shell {
  width: 100%;
  max-width: 1480px;
  height: 100%;
  margin: 0 auto;
  padding: 112px 4.5vw 42px;
}

.section-id {
  align-self: start;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-id span {
  margin-right: 14px;
  color: var(--blue);
}

.section-id b {
  font-weight: inherit;
}

.eyebrow,
.contact-kicker,
.statement-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.status-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(199, 237, 114, 0.09);
  animation: status-pulse 2.8s ease-in-out infinite;
}

.line-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  width: fit-content;
  padding: 11px 0;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 620;
}

.line-link span {
  display: inline-block;
  transition: transform 180ms ease;
}

.line-link:hover span {
  transform: translate(3px, -3px);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.5fr);
  grid-template-rows: 1fr auto;
  gap: 34px 5vw;
}

.hero-main {
  align-self: center;
}

.hero-main h1 {
  max-width: 950px;
  margin: 30px 0 40px;
  font-size: clamp(50px, 6.2vw, 90px);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.065em;
}

.hero-main h1 em {
  display: block;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-summary {
  display: flex;
  align-items: end;
  gap: clamp(38px, 6vw, 90px);
}

.hero-summary p {
  max-width: 510px;
  margin: 0;
  color: #b9bdc4;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.65;
}

.hero-signature {
  position: relative;
  align-self: stretch;
  display: grid;
  overflow: visible;
  place-items: center;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.signature-mark {
  position: relative;
  width: clamp(220px, 21vw, 330px);
  aspect-ratio: 1370 / 1148;
  transform: translateY(-3%);
  user-select: none;
}

.logo-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: top center;
}

.logo-image-core {
  z-index: 7;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.32));
}

.logo-image-echo {
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.64), transparent 88%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.64), transparent 88%);
}

.echo-1 { z-index: 6; opacity: 0.28; transform: translateY(18px) scaleY(1.05); }
.echo-2 { z-index: 5; opacity: 0.19; transform: translateY(38px) scaleY(1.1); }
.echo-3 { z-index: 4; opacity: 0.12; transform: translateY(60px) scaleY(1.16); }
.echo-4 { z-index: 3; opacity: 0.07; transform: translateY(84px) scaleY(1.22); }
.echo-5 { z-index: 2; opacity: 0.04; transform: translateY(110px) scaleY(1.28); }
.echo-6 { z-index: 1; opacity: 0.02; transform: translateY(138px) scaleY(1.34); }

.snap-page[data-active="true"] .logo-image-echo {
  animation: logo-trail 2.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.snap-page[data-active="true"] .echo-2 { animation-delay: 45ms; }
.snap-page[data-active="true"] .echo-3 { animation-delay: 90ms; }
.snap-page[data-active="true"] .echo-4 { animation-delay: 135ms; }
.snap-page[data-active="true"] .echo-5 { animation-delay: 180ms; }
.snap-page[data-active="true"] .echo-6 { animation-delay: 225ms; }

.hero-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  gap: clamp(34px, 6vw, 88px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-footer > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hero-footer strong {
  font-size: 23px;
  font-weight: 520;
  letter-spacing: -0.04em;
}

.hero-footer span {
  color: var(--muted);
  font-size: 10px;
}

.hero-footer .scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 4px auto;
  color: #717680;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scroll-cue > span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--blue);
  animation: cue-line 2.2s ease-in-out infinite;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(140px, 0.25fr) minmax(0, 1.1fr) minmax(250px, 0.45fr);
  grid-template-rows: 1fr auto;
  gap: 36px 5vw;
  align-items: center;
}

.profile-layout .section-id {
  align-self: center;
}

.profile-statement h2 {
  max-width: 840px;
  margin: 20px 0 0;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 470;
  line-height: 1.04;
  letter-spacing: -0.058em;
}

.profile-statement h2 em {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.profile-details {
  align-self: center;
  border-top: 1px solid var(--line);
}

.profile-details > p {
  margin: 0;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.profile-details .line-link {
  margin-top: 24px;
}

.profile-quote {
  grid-column: 2 / -1;
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #737882;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
}

.profile-quote span {
  color: var(--blue);
  font-size: 34px;
  line-height: 0.7;
}

.project-slide {
  --accent: var(--blue);
}

.project-slide.project-coral {
  --accent: var(--coral);
}

.project-slide.project-lime {
  --accent: var(--lime);
}

.projects-intro-slide {
  background:
    radial-gradient(circle at 76% 40%, rgba(96, 126, 251, 0.12), transparent 30%),
    rgba(9, 10, 12, 0.96);
}

.projects-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  grid-template-rows: auto 1fr auto;
  gap: 28px clamp(56px, 9vw, 150px);
}

.projects-intro-layout > .section-id,
.projects-back-link {
  grid-column: 1 / -1;
}

.projects-intro-copy,
.projects-index {
  align-self: center;
}

.projects-intro-copy h1 {
  margin: 20px 0 28px;
  font-size: clamp(66px, 8.5vw, 128px);
  font-weight: 520;
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.projects-intro-copy h1 em {
  display: block;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.projects-intro-copy > p:last-child {
  max-width: 650px;
  margin: 0;
  color: #a9aeb7;
  font-size: clamp(13px, 1.15vw, 17px);
  line-height: 1.7;
}

.projects-index {
  display: grid;
  border-top: 1px solid var(--line);
}

.projects-index a {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding 180ms ease;
}

.projects-index a:hover,
.projects-index a:focus-visible {
  padding-left: 8px;
  color: var(--blue);
}

.projects-index span,
.projects-index i {
  color: #686e78;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.projects-index strong {
  font-size: 15px;
  font-weight: 560;
}

.projects-back-link {
  align-self: end;
  width: fit-content;
  padding-bottom: 7px;
  border-bottom: 1px solid #555b65;
  color: #8d929b;
  font-size: 10px;
  transition: color 180ms ease, border-color 180ms ease;
}

.projects-back-link:hover {
  border-color: var(--paper);
  color: var(--paper);
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  grid-template-rows: auto 1fr;
  gap: 26px clamp(40px, 6vw, 88px);
}

.project-layout .section-id {
  grid-column: 1 / -1;
}

.project-cover {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: var(--ink);
}

.project-cover.has-photo {
  background: #576461;
  color: var(--paper);
}

.project-cover.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9, 10, 12, 0.5), transparent 32%),
    linear-gradient(0deg, rgba(9, 10, 12, 0.62), transparent 42%);
  pointer-events: none;
}

.project-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1), filter 1.4s ease;
}

.project-slide[data-active="true"] .project-photo {
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.065);
}

.project-cover.elan-cover {
  background: #b9d3d5;
}

.project-cover.elan-cover::after {
  background:
    linear-gradient(180deg, rgba(9, 10, 12, 0.42), transparent 26%),
    linear-gradient(0deg, rgba(9, 10, 12, 0.5), transparent 34%);
}

.elan-cover .project-photo {
  object-fit: contain;
  transform: scale(1);
}

.project-slide[data-active="true"] .elan-cover .project-photo {
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1.035);
}

.project-cover.woodworks-cover {
  background: #171817;
}

.project-cover.woodworks-cover::after {
  background:
    linear-gradient(180deg, rgba(9, 10, 12, 0.5), transparent 24%),
    linear-gradient(0deg, rgba(9, 10, 12, 0.58), transparent 36%);
}

.project-photo-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
  gap: 2px;
  overflow: hidden;
  background: #090a0c;
}

.project-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transform: scale(1.18);
  transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1), filter 1.4s ease;
}

.project-slide[data-active="true"] .project-photo-grid img:first-child,
.project-slide[data-active="true"] .project-photo-grid img:last-child {
  filter: saturate(0.8) contrast(1.07);
  transform: scale(1.22);
}

.project-cover.has-photo .cover-axis {
  inset: 22px;
  z-index: 2;
  border-color: rgba(242, 240, 233, 0.26);
}

.project-cover.has-photo .cover-axis span,
.project-cover.has-photo .cover-axis i {
  display: none;
}

.cover-year,
.project-cover > p {
  position: absolute;
  z-index: 2;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.cover-year {
  top: 26px;
  left: 28px;
}

.project-cover > p {
  right: 28px;
  bottom: 24px;
  margin: 0;
}

.cover-letter {
  position: absolute;
  top: 48%;
  left: 49%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(230px, 34vw, 490px);
  font-style: italic;
  line-height: 0.7;
  opacity: 0.78;
  transform: translate(-50%, -50%);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-slide[data-active="true"] .cover-letter {
  transform: translate(-47%, -50%) rotate(2deg);
}

.cover-axis {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(9, 10, 12, 0.32);
}

.cover-axis span,
.cover-axis i {
  position: absolute;
  display: block;
  background: rgba(9, 10, 12, 0.32);
}

.cover-axis span {
  top: 50%;
  left: -18%;
  width: 136%;
  height: 1px;
}

.cover-axis i {
  top: -18%;
  left: 50%;
  width: 1px;
  height: 136%;
}

.project-copy {
  align-self: center;
}

.project-category {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.project-description {
  max-width: 420px;
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.project-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin: 0 0 28px;
  padding: 17px 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.project-copy li {
  color: #9fa3aa;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.project-outcome {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin-bottom: 22px;
}

.project-outcome strong {
  color: var(--accent);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.project-outcome span {
  color: var(--muted);
  font-size: 10px;
}

.project-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  align-self: end;
}

.project-contact-link {
  color: #7f848d;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.project-contact-link:hover,
.project-contact-link:focus-visible {
  color: var(--paper);
}

.cv-intro-slide {
  background:
    radial-gradient(circle at 77% 38%, rgba(96, 126, 251, 0.13), transparent 29%),
    rgba(9, 10, 12, 0.96);
}

.cv-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.55fr);
  grid-template-rows: auto 1fr auto;
  gap: 30px clamp(64px, 10vw, 160px);
}

.cv-intro-layout > .section-id,
.cv-intro-actions {
  grid-column: 1 / -1;
}

.cv-intro-heading,
.cv-intro-meta {
  align-self: center;
}

.cv-intro-heading h1,
.cv-intro-heading h2 {
  margin: 0;
  line-height: 0.88;
  letter-spacing: -0.068em;
}

.cv-intro-heading h1 {
  margin-top: 23px;
  color: var(--paper);
  font-size: clamp(62px, 7.2vw, 108px);
  font-weight: 520;
}

.cv-intro-heading h2 {
  color: #747a84;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.8vw, 102px);
  font-weight: 400;
}

.cv-intro-heading h2 em {
  color: var(--blue);
  font-weight: 400;
}

.cv-intro-heading > p:last-child {
  max-width: 700px;
  margin: 32px 0 0;
  color: #a8adb6;
  font-size: clamp(13px, 1.15vw, 17px);
  line-height: 1.7;
}

.cv-intro-meta {
  border-top: 1px solid var(--line);
}

.cv-intro-meta > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cv-intro-meta span {
  color: #686e78;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cv-intro-meta strong {
  color: var(--paper);
  font-size: 12px;
  font-weight: 520;
}

.cv-intro-actions {
  display: flex;
  align-items: end;
  justify-content: flex-start;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.cv-intro-actions > a[href^="mailto:"] {
  margin-left: auto;
  color: #8d929b;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  transition: color 180ms ease;
}

.cv-intro-actions > a[href^="mailto:"]:hover {
  color: var(--blue);
}

.cv-download-link {
  color: var(--paper);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  transition: color 180ms ease;
}

.cv-download-link:hover {
  color: var(--lime);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(280px, 0.65fr) minmax(360px, 1fr);
  grid-template-rows: 1fr auto;
  gap: 30px 5vw;
  align-items: center;
}

.experience-layout .section-id {
  align-self: center;
}

.experience-heading h2 {
  max-width: 530px;
  margin: 18px 0 24px;
  font-size: clamp(40px, 4.3vw, 66px);
  font-weight: 480;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.experience-heading > p:last-child {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 116px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item time {
  color: #727781;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.timeline-item h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 560;
}

.timeline-item p {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
}

.timeline-item > span {
  color: #5e636c;
  font-size: 11px;
}

.cv-note {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: 0.6fr 1fr 1fr;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.cv-note span,
.cv-note p {
  margin: 0;
  color: #747983;
}

.cv-note strong {
  font-weight: 540;
}

.skills-layout {
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1.7fr);
  grid-template-rows: auto auto 1fr auto;
  gap: 28px 5vw;
  align-content: center;
}

.skills-layout .section-id {
  grid-row: 1 / -1;
  align-self: start;
}

.skills-heading h2 {
  margin: 16px 0 0;
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 480;
  letter-spacing: -0.055em;
}

.skill-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.skill-list article {
  display: grid;
  grid-template-columns: 32px 0.7fr 1fr;
  gap: 15px;
  align-items: baseline;
  padding: 20px 18px 20px 0;
  border-bottom: 1px solid var(--line);
}

.skill-list article:nth-child(odd) {
  margin-right: 28px;
  border-right: 1px solid var(--line);
}

.skill-list span {
  color: #696e78;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.skill-list h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 540;
}

.skill-list p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.tool-note {
  color: #70757e;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-slide {
  background:
    radial-gradient(circle at 72% 32%, rgba(96, 126, 251, 0.08), transparent 28%),
    rgba(6, 7, 9, 0.98);
}

.closing-layout {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0;
  padding-top: 90px;
  padding-bottom: 18px;
}

.closing-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, 8vw, 130px);
  width: min(72%, 920px);
  margin: 0 auto;
  padding: 2px 0 30px;
}

.closing-stats article {
  display: grid;
  gap: 5px;
}

.closing-stats strong {
  color: var(--paper);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 620;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.closing-stats sup {
  position: relative;
  top: -0.22em;
  margin-left: 2px;
  color: var(--blue);
  font-size: 0.47em;
}

.closing-stats span,
.closing-footer span {
  color: #707680;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  line-height: 1.35;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: clamp(50px, 9vw, 150px);
  width: min(72%, 920px);
  margin: 0 auto;
  padding: clamp(26px, 4vh, 48px) 0 clamp(28px, 4vh, 46px);
}

.closing-heading .section-id {
  margin: 0 0 18px;
}

.closing-heading h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 520;
  line-height: 0.94;
  letter-spacing: -0.062em;
  white-space: nowrap;
}

.closing-heading h2 em {
  color: #6f747d;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.closing-copy {
  color: #9ca1aa;
  font-size: 11px;
  line-height: 1.6;
}

.closing-copy p {
  max-width: 440px;
  margin: 0 0 14px;
}

.closing-copy > span {
  display: block;
  margin-bottom: 7px;
  color: #676d77;
  font-size: 8px;
}

.closing-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #6d727b;
  color: var(--paper);
  font-size: 11px;
  font-weight: 620;
  transition: color 180ms ease, border-color 180ms ease;
}

.closing-copy a:hover,
.closing-copy a:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.closing-copy i {
  font-style: normal;
  transition: transform 180ms ease;
}

.closing-copy a:hover i {
  transform: translate(3px, -3px);
}

.closing-copy .contact-form-link {
  margin-left: 18px;
}

.closing-footer {
  align-self: end;
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.9fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: #989da6;
  font-size: 9px;
  line-height: 1.55;
}

.closing-brand strong {
  display: block;
  margin-bottom: 9px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.closing-brand p {
  max-width: 250px;
  margin: 0;
  color: #737984;
}

.closing-links,
.closing-services,
.closing-contact {
  display: grid;
  align-content: start;
  gap: 5px;
  margin: 0;
  font-style: normal;
}

.closing-links > span,
.closing-services > span,
.closing-contact > span {
  margin-bottom: 4px;
  color: var(--blue);
}

.closing-services p,
.closing-contact p {
  margin: 0;
}

.closing-links a,
.closing-contact a,
.closing-bottom a {
  transition: color 180ms ease;
}

.closing-links a:hover,
.closing-contact a:hover,
.closing-bottom a:hover {
  color: var(--blue);
}

.closing-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 3px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: #5f6570;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.closing-bottom p {
  margin: 0;
}

.closing-bottom p:nth-child(2) {
  justify-self: center;
}

.closing-bottom a {
  justify-self: end;
  color: #8d929b;
}

.slide-navigation {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 18px;
  transform: translateY(-50%);
}

.slide-counter {
  color: var(--paper);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.05em;
}

.slide-counter i {
  margin: 0 4px;
  color: #575c65;
  font-style: normal;
}

.slide-dots {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.slide-dots button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  min-width: 16px;
  min-height: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #727781;
  cursor: pointer;
}

.slide-dots button::after {
  content: "";
  width: 12px;
  height: 1px;
  background: #555a63;
  transition: width 220ms ease, background 220ms ease;
}

.slide-dots button span {
  overflow: hidden;
  max-width: 0;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.05em;
  opacity: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transition: max-width 220ms ease, opacity 220ms ease;
}

.slide-dots button:hover span,
.slide-dots button:focus-visible span,
.slide-dots button.is-active span {
  max-width: 74px;
  opacity: 1;
}

.slide-dots button.is-active {
  color: var(--paper);
}

.slide-dots button.is-active::after {
  width: 28px;
  background: var(--blue);
}

.stage > * {
  opacity: 0.14;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.snap-page[data-active="true"] .stage > * {
  opacity: 1;
  transform: translateY(0);
}

.snap-page[data-active="true"] .stage > *:nth-child(2) {
  transition-delay: 90ms;
}

.snap-page[data-active="true"] .stage > *:nth-child(3) {
  transition-delay: 170ms;
}

.snap-page[data-active="true"] .stage > *:nth-child(4) {
  transition-delay: 240ms;
}

@keyframes status-pulse {
  50% { opacity: 0.42; }
}

@keyframes cue-line {
  50% { width: 42px; }
}

@keyframes logo-trail {
  from {
    margin-top: -22px;
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .slide-navigation {
    right: 12px;
  }

  .slide-dots button span {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.5fr);
  }

  .profile-layout {
    grid-template-columns: 120px 1fr 280px;
  }

  .experience-layout {
    grid-template-columns: 120px 0.7fr 1fr;
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .site-header {
    height: 74px;
    padding-inline: 34px;
  }

  .desktop-nav {
    gap: 22px;
    font-size: 11px;
  }

  .header-contact {
    font-size: 11px;
  }

  .slide-shell {
    padding: 98px 42px 34px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.5fr);
    gap: 30px 40px;
  }

  .hero-main h1 {
    margin: 25px 0 32px;
    font-size: clamp(54px, 7vw, 78px);
  }

  .hero-summary p {
    font-size: 15px;
  }

  .signature-mark {
    width: clamp(210px, 24vw, 280px);
  }

  .profile-layout {
    grid-template-columns: 96px minmax(0, 1fr) minmax(235px, 0.48fr);
    gap: 28px 34px;
  }

  .profile-statement h2 {
    font-size: clamp(44px, 5.6vw, 62px);
  }

  .profile-details > p {
    padding: 14px 0;
    font-size: 11px;
    line-height: 1.55;
  }

  .projects-intro-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 26px 56px;
  }

  .projects-intro-copy h1 {
    font-size: clamp(68px, 9vw, 96px);
  }

  .projects-intro-copy > p:last-child {
    font-size: 13px;
  }

  .project-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 22px 34px;
  }

  .project-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(45px, 5.3vw, 58px);
  }

  .project-description {
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1.6;
  }

  .project-copy ul {
    margin-bottom: 16px;
    padding: 12px 0;
  }

  .cv-intro-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
    gap: 26px 56px;
  }

  .cv-intro-heading h1,
  .cv-intro-heading h2 {
    font-size: clamp(58px, 7vw, 80px);
  }

  .cv-intro-heading > p:last-child {
    margin-top: 24px;
    font-size: 13px;
  }

  .experience-layout {
    grid-template-columns: 92px minmax(250px, 0.78fr) minmax(330px, 1fr);
    gap: 24px 34px;
  }

  .experience-heading h2 {
    font-size: clamp(38px, 4.6vw, 52px);
  }

  .timeline-item {
    grid-template-columns: 92px 1fr auto;
    padding: 20px 0;
  }

  .skills-layout {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 24px 34px;
  }

  .closing-stats,
  .closing-cta {
    width: min(86%, 900px);
  }

  .closing-heading h2 {
    font-size: clamp(46px, 5.8vw, 64px);
  }

  .closing-footer {
    gap: 30px;
  }
}

@media (max-width: 820px) {
  html {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 68px;
  }

  body {
    height: auto;
    min-height: 100%;
    overflow: visible;
    overscroll-behavior-y: auto;
  }

  .page-deck,
  .scene-track {
    height: auto;
    overflow: visible;
  }

  .scene-track {
    transform: none !important;
    transition: none;
    will-change: auto;
  }

  .kinetic-field {
    opacity: 0.42;
  }

  .site-header {
    grid-template-columns: 1fr 1fr;
    height: 68px;
    padding-inline: 22px;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .brand {
    width: 34px;
    height: 30px;
  }

  .site-header > .mobile-menu {
    position: relative;
    display: block !important;
    justify-self: end;
  }

  .mobile-menu summary {
    display: grid;
    grid-template-columns: 22px auto;
    grid-template-rows: repeat(2, 4px);
    align-items: center;
    gap: 0 9px;
    min-width: 72px;
    min-height: 40px;
    padding: 0;
    list-style: none;
    cursor: pointer;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary > span {
    grid-column: 1;
    width: 22px;
    height: 1px;
    background: var(--paper);
    transition: transform 180ms ease;
  }

  .mobile-menu summary b {
    grid-column: 2;
    grid-row: 1 / 3;
    font-family: var(--font-geist-mono), monospace;
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-menu[open] summary > span:first-child {
    transform: translateY(2px) rotate(45deg);
  }

  .mobile-menu[open] summary > span:nth-child(2) {
    transform: translateY(-2px) rotate(-45deg);
  }

  .mobile-menu nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    z-index: 70;
    display: grid;
    padding: 14px 22px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(9, 10, 12, 0.98);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 45px;
    border-bottom: 1px solid rgba(242, 240, 233, 0.08);
    color: #c1c5cc;
    font-size: 13px;
  }

  .mobile-menu nav .language-toggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 17px 0;
    border-bottom: 1px solid rgba(242, 240, 233, 0.08);
    color: var(--blue);
    font-size: 12px;
    text-align: left;
  }

  .mobile-menu nav .language-toggle::after {
    content: "TR / EN";
    color: var(--muted);
    font-size: 8px;
  }

  .mobile-menu nav a::after {
    content: "↗";
    color: var(--blue);
    font-size: 10px;
  }

  .slide-navigation {
    top: auto;
    right: 20px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid rgba(242, 240, 233, 0.09);
    border-radius: 999px;
    background: rgba(9, 10, 12, 0.82);
    backdrop-filter: blur(12px);
    transform: none;
  }

  .slide-dots {
    display: flex;
    gap: 6px;
  }

  .slide-dots button {
    min-width: 8px;
  }

  .slide-dots button::after {
    width: 7px;
  }

  .slide-dots button.is-active::after {
    width: 20px;
  }

  .snap-page {
    flex: none;
    height: auto;
    min-height: 100svh;
    overflow: visible;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .slide-shell {
    height: auto;
    min-height: 100svh;
    padding: 90px 22px 78px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    gap: 20px;
  }

  .hero-main {
    align-self: center;
  }

  .hero-main h1 {
    margin: 24px 0 28px;
    font-size: clamp(46px, 13vw, 68px);
  }

  .hero-summary {
    display: block;
  }

  .hero-summary p {
    max-width: 440px;
    margin-bottom: 18px;
    font-size: 14px;
  }

  .hero-signature {
    display: none;
  }

  .hero-footer {
    grid-column: 1;
    gap: 22px;
    padding-top: 16px;
  }

  .hero-footer > div:nth-child(3),
  .scroll-cue {
    display: none !important;
  }

  .hero-footer > div {
    display: block;
  }

  .hero-footer span {
    display: block;
    margin-top: 3px;
  }

  .profile-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 22px;
    align-content: center;
  }

  .profile-layout .section-id {
    align-self: start;
  }

  .profile-statement h2 {
    margin-top: 15px;
    font-size: clamp(38px, 10vw, 54px);
  }

  .profile-details > p {
    padding: 12px 0;
    font-size: 11px;
  }

  .profile-details .line-link {
    margin-top: 16px;
  }

  .profile-quote {
    display: none;
  }

  .projects-intro-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 18px;
    align-content: center;
  }

  .projects-intro-layout > .section-id,
  .projects-back-link {
    grid-column: 1;
  }

  .projects-intro-copy h1 {
    margin: 13px 0 17px;
    font-size: clamp(58px, 18vw, 82px);
  }

  .projects-intro-copy > p:last-child {
    font-size: 11px;
    line-height: 1.55;
  }

  .projects-index {
    align-self: start;
  }

  .projects-index a {
    grid-template-columns: 24px 1fr;
    padding: 15px 0;
  }

  .projects-index i {
    display: none;
  }

  .projects-back-link {
    display: none;
  }

  .project-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(250px, 42svh) auto;
    gap: 14px;
  }

  .project-layout .section-id {
    grid-column: 1;
  }

  .project-copy {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 20px;
    align-content: center;
  }

  .project-category,
  .project-copy h2,
  .project-description,
  .project-copy ul,
  .project-copy .line-link {
    grid-column: 1;
  }

  .project-copy h2 {
    margin-bottom: 10px;
    font-size: 42px;
  }

  .project-description {
    margin-bottom: 12px;
    font-size: 11px;
    line-height: 1.55;
  }

  .project-copy ul {
    gap: 8px 14px;
    margin-bottom: 12px;
    padding: 10px 0;
  }

  .project-outcome {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    display: block;
    margin: 0;
    text-align: right;
  }

  .project-outcome span {
    display: block;
    max-width: 70px;
    margin-top: 3px;
  }

  .project-copy .line-link {
    padding: 8px 0;
  }

  .project-actions {
    grid-column: 1;
    gap: 18px;
  }

  .cv-intro-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto;
    gap: 17px;
    align-content: center;
  }

  .cv-intro-layout > .section-id,
  .cv-intro-actions {
    grid-column: 1;
  }

  .cv-intro-heading h1 {
    margin-top: 13px;
    font-size: clamp(50px, 15vw, 72px);
  }

  .cv-intro-heading h2 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .cv-intro-heading > p:last-child {
    margin-top: 18px;
    font-size: 11px;
    line-height: 1.55;
  }

  .cv-intro-meta > div {
    grid-template-columns: 78px 1fr;
    gap: 14px;
    padding: 11px 0;
  }

  .cv-intro-actions {
    justify-content: space-between;
    gap: 14px;
    padding-top: 12px;
  }

  .cv-intro-actions > a[href^="mailto:"] {
    display: none;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 18px;
    align-content: center;
  }

  .experience-layout .section-id {
    align-self: start;
  }

  .experience-heading h2 {
    margin: 12px 0 14px;
    font-size: 39px;
  }

  .experience-heading > p:last-child {
    font-size: 11px;
  }

  .timeline-item {
    grid-template-columns: 90px 1fr auto;
    padding: 17px 0;
  }

  .timeline-item h3 {
    font-size: 14px;
  }

  .cv-note {
    display: none;
  }

  .skills-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto;
    gap: 18px;
  }

  .skills-layout .section-id {
    grid-row: auto;
  }

  .skills-heading h2 {
    margin-top: 10px;
    font-size: 39px;
  }

  .skill-list article {
    grid-template-columns: 25px 1fr;
    gap: 8px;
    padding: 14px 8px 14px 0;
  }

  .skill-list article:nth-child(odd) {
    margin-right: 10px;
  }

  .skill-list p {
    display: none;
  }

  .skill-list h3 {
    font-size: 13px;
  }

  .closing-layout {
    grid-template-rows: auto auto 1fr;
    padding: 82px 22px 50px;
  }

  .closing-stats {
    gap: 14px;
    width: 100%;
    padding-bottom: 16px;
  }

  .closing-stats strong {
    font-size: clamp(25px, 8vw, 34px);
  }

  .closing-stats span {
    max-width: 90px;
    font-size: 6px;
  }

  .closing-cta {
    grid-template-columns: 1fr;
    gap: 11px;
    width: 100%;
    padding: 16px 0 19px;
  }

  .closing-heading .section-id {
    margin-bottom: 9px;
  }

  .closing-heading h2 {
    font-size: clamp(39px, 11vw, 52px);
    white-space: normal;
  }

  .closing-copy {
    font-size: 9px;
    line-height: 1.45;
  }

  .closing-copy p {
    max-width: 520px;
    margin-bottom: 7px;
  }

  .closing-copy > span {
    display: none;
  }

  .closing-copy a {
    padding-bottom: 4px;
    font-size: 9px;
  }

  .closing-footer {
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    padding-top: 14px;
    font-size: 8px;
  }

  .closing-brand strong {
    margin-bottom: 4px;
    font-size: 21px;
  }

  .closing-brand p,
  .closing-services {
    display: none;
  }

  .closing-links,
  .closing-contact {
    gap: 3px;
  }

  .closing-links a:nth-of-type(2),
  .closing-links a:nth-of-type(3) {
    display: none;
  }

  .closing-bottom {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    margin-top: 0;
    padding-top: 9px;
    font-size: 6px;
  }

  .closing-bottom p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding-inline: 18px;
  }

  .slide-shell {
    padding: 86px 18px 76px;
  }

  .section-id,
  .eyebrow,
  .statement-kicker {
    font-size: 8px;
  }

  .hero-main h1 {
    margin: 19px 0 23px;
    font-size: clamp(42px, 13.5vw, 56px);
  }

  .hero-summary p {
    font-size: 12px;
    line-height: 1.55;
  }

  .hero-footer {
    gap: 24px;
  }

  .hero-footer strong {
    font-size: 19px;
  }

  .profile-layout {
    gap: 16px;
  }

  .profile-statement h2 {
    font-size: clamp(33px, 10.5vw, 45px);
  }

  .profile-details > p {
    padding: 10px 0;
    font-size: 10px;
    line-height: 1.55;
  }

  .projects-intro-copy h1 {
    font-size: clamp(52px, 17vw, 70px);
  }

  .projects-index a {
    padding: 13px 0;
  }

  .project-layout {
    grid-template-rows: auto minmax(240px, 39svh) auto;
  }

  .project-copy {
    display: block;
  }

  .project-copy h2 {
    font-size: 38px;
  }

  .project-description {
    font-size: 10px;
  }

  .project-outcome {
    display: flex;
    margin-bottom: 12px;
    text-align: left;
  }

  .project-outcome span {
    max-width: none;
  }

  .cv-intro-heading h1 {
    font-size: clamp(46px, 14vw, 60px);
  }

  .cv-intro-heading h2 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .cv-intro-meta > div {
    grid-template-columns: 68px 1fr;
    padding: 9px 0;
  }

  .experience-heading h2,
  .skills-heading h2 {
    font-size: 34px;
  }

  .timeline-item {
    grid-template-columns: 74px 1fr auto;
    gap: 12px;
    padding: 14px 0;
  }

  .timeline-item time {
    font-size: 8px;
  }

  .timeline-item h3 {
    font-size: 12px;
  }

  .timeline-item p {
    font-size: 9px;
  }

  .closing-layout {
    padding: 82px 18px 74px;
  }

  .closing-stats {
    gap: 8px;
  }

  .closing-stats strong {
    font-size: 25px;
  }

  .closing-heading h2 {
    font-size: 39px;
  }

  .closing-footer {
    gap: 12px 18px;
  }

  .slide-navigation {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-height: 700px) and (min-width: 821px) {
  .slide-shell {
    padding-top: 94px;
    padding-bottom: 25px;
  }

  .hero-main h1 {
    margin: 22px 0 28px;
    font-size: clamp(48px, 5.5vw, 72px);
  }

  .profile-statement h2,
  .experience-heading h2 {
    font-size: clamp(38px, 4vw, 54px);
  }

  .timeline-item {
    padding: 18px 0;
  }

  .skill-list article {
    padding-block: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene-track {
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .stage > * {
    opacity: 1;
    transform: none;
  }
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 5px;
}

/* AYRI PROFİL SAYFASI */
.profile-page {
  height: auto;
  min-height: 100%;
  overflow: auto;
}

.profile-page-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 42%, rgba(96, 126, 251, 0.11), transparent 30%),
    var(--ink);
}

.profile-page-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.13;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, #000 42%, #000);
}

.profile-page-orbit {
  position: absolute;
  top: 50%;
  right: -18vw;
  z-index: -1;
  width: min(62vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(96, 126, 251, 0.18);
  border-radius: 50%;
  transform: translateY(-50%);
}

.profile-page-orbit::before,
.profile-page-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(242, 240, 233, 0.07);
  border-radius: 50%;
}

.profile-page-orbit::before { inset: 14%; }
.profile-page-orbit::after { inset: 31%; }

.profile-card-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(430px, 1.14fr);
  align-items: center;
  width: 100%;
  max-width: 1480px;
  min-height: 100svh;
  margin: 0 auto;
  padding: 112px 4.5vw 84px;
}

.profile-identity {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: min(68vh, 640px);
  padding-right: 6vw;
  border-right: 1px solid var(--line);
  text-align: center;
}

.profile-page-index,
.profile-contact-code {
  margin: 0 0 22px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
}

.profile-portrait-frame {
  --portrait-size: clamp(210px, 21vw, 300px);
  position: relative;
  display: grid;
  place-items: center;
  width: var(--portrait-size);
  min-width: var(--portrait-size);
  height: var(--portrait-size);
  min-height: var(--portrait-size);
  aspect-ratio: 1 / 1;
  padding: 10px;
  border: 1px solid rgba(242, 240, 233, 0.22);
  border-radius: 50%;
  background: rgba(16, 18, 22, 0.7);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.profile-portrait-frame::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(96, 126, 251, 0.28);
  border-radius: 50%;
  clip-path: inset(0 0 48% 48%);
  pointer-events: none;
}

.profile-portrait-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 10%;
  image-rendering: auto;
}

.profile-identity h1 {
  margin: 34px 0 8px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.profile-role {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 22px;
}

.profile-social-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(242, 240, 233, 0.2);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(9, 10, 12, 0.52);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.profile-social-link:hover {
  color: #090a0c;
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-3px);
}

.social-mark {
  position: relative;
  display: grid;
  place-items: center;
  line-height: 1;
}

.social-mark-linkedin {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.social-mark-instagram {
  width: 17px;
  height: 17px;
  border: 1.7px solid currentColor;
  border-radius: 5px;
}

.social-mark-instagram::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.social-mark-instagram::after {
  content: "";
  position: absolute;
  top: 2.5px;
  right: 2.5px;
  width: 2.5px;
  height: 2.5px;
  border-radius: 50%;
  background: currentColor;
}

.social-mark-behance {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.profile-contact-panel {
  max-width: 680px;
  padding-left: 7vw;
}

.profile-contact-code {
  margin-top: 38px;
}

.profile-contact-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.5vw, 94px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.profile-contact-intro {
  max-width: 530px;
  margin: 28px 0 36px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.profile-contact-list {
  margin: 0 0 30px;
  border-top: 1px solid var(--line);
}

.profile-contact-list > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) minmax(0, 1fr);
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.profile-contact-list dt {
  color: #70757e;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.profile-contact-list dd {
  margin: 0;
  color: var(--paper);
  font-size: 13px;
  line-height: 1.55;
}

.profile-contact-list a {
  transition: color 180ms ease;
}

.profile-contact-list a:hover {
  color: var(--blue);
}

.profile-page-footer {
  position: absolute;
  right: 4.5vw;
  bottom: 28px;
  left: 4.5vw;
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #747983;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (min-width: 821px) and (max-width: 1180px) {
  .profile-card-layout {
    grid-template-columns: minmax(300px, 0.82fr) minmax(400px, 1.18fr);
    padding: 98px 40px 76px;
  }

  .profile-identity {
    min-height: min(66vh, 580px);
    padding-right: 44px;
  }

  .profile-portrait-frame {
    --portrait-size: clamp(220px, 24vw, 270px);
  }

  .profile-contact-panel {
    padding-left: 54px;
  }

  .profile-contact-panel h2 {
    font-size: clamp(58px, 7vw, 76px);
  }

  .profile-contact-intro {
    margin: 22px 0 28px;
    font-size: 13px;
  }
}

@media (max-width: 820px) {
  .profile-card-layout {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 94px 22px 46px;
  }

  .profile-identity {
    min-height: auto;
    padding: 18px 0 46px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .profile-portrait-frame {
    --portrait-size: clamp(190px, 58vw, 240px);
  }

  .profile-identity h1 {
    margin-top: 28px;
    font-size: clamp(36px, 11vw, 50px);
  }

  .profile-contact-panel {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    padding: 0 0 38px;
  }

  .profile-contact-panel h2 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .profile-contact-intro {
    margin: 20px 0 26px;
    font-size: 12px;
    line-height: 1.65;
  }

  .profile-contact-list > div {
    grid-template-columns: minmax(82px, 0.32fr) minmax(0, 1fr);
    gap: 18px;
    padding: 16px 0;
  }

  .profile-contact-list dd {
    overflow-wrap: anywhere;
    font-size: 11px;
  }

  .profile-page-orbit {
    right: -52vw;
    width: 125vw;
    opacity: 0.6;
  }

  .profile-page-footer {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 0 22px 24px;
  }

  .profile-page-footer span:last-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .profile-card-layout {
    padding-inline: 18px;
  }

  .profile-contact-list > div {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .profile-page-footer {
    margin-inline: 18px;
  }
}
