/* ============================================================
   Ebru Akyürekli — Portfolio
   Design language inspired by modern award-winning portfolios.
   ============================================================ */

:root {
  --dark: #1c1d20;
  --darker: #141517;
  --darkest: #0b0c0e;
  --grey: #999d9e;
  --light: #ffffff;
  --blue: #455ce9;
  --blue-dark: #334bd3;
  --stripe-dark: rgba(28, 29, 32, 0.224);
  --stripe-light: rgba(255, 255, 255, 0.224);
  --text-muted: rgba(255, 255, 255, 0.65);
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --font: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main { background: var(--light); }

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

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s var(--ease);
}
.preloader.is-done { transform: translateY(-110%); }
.preloader__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.preloader__word, .preloader__boot, .preloader__brand, .preloader__count { position: relative; z-index: 1; }
.preloader__boot {
  position: absolute;
  top: 34px;
  left: 40px;
  font-family: Menlo, monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.preloader__word {
  color: #fff;
  font-family: var(--font);
  font-size: clamp(64px, 13vw, 200px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.preloader__word .c-b { color: var(--blue); }
.preloader__word .c-g { color: #7be08f; }
.preloader__word .pl-dot { color: var(--blue); }
.preloader__brand {
  position: absolute;
  bottom: 34px;
  left: 40px;
  font-family: Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
}
.preloader__count {
  position: absolute;
  bottom: 34px;
  right: 40px;
  font-family: Menlo, monospace;
  font-size: 14px;
  color: #7be08f;
}
.preloader__curve {
  position: absolute;
  bottom: -79px;
  left: 0;
  width: 100%;
  height: 80px;
}

[data-home] { cursor: pointer; }

/* ============ MAGNETIC ============ */
.magnetic { display: inline-block; }

/* ============ HEADER ============ */
.header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 40px;
  color: #fff;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  cursor: pointer;
  overflow: hidden;
}
.header__swap {
  height: 22px;
  overflow: hidden;
}
.header__swap-in {
  display: flex;
  flex-direction: column;
  animation: logoswap 6s var(--ease) infinite;
}
.header__swap-item {
  height: 22px;
  line-height: 22px;
  white-space: nowrap;
}
.header__swap-item b { font-weight: 600; }
.ea-apps { color: var(--blue); }
.ea-web { color: #7be08f; }
@keyframes logoswap {
  0%, 42% { transform: translateY(0); }
  50%, 92% { transform: translateY(-22px); }
  100% { transform: translateY(0); }
}

.header__status {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 99px;
  padding: 9px 20px;
}
.header__status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #7be08f;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123, 224, 143, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(123, 224, 143, 0); }
}

.langsw {
  display: flex;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 99px;
  padding: 4px;
}
.langsw button {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: none;
  background: transparent;
  color: inherit;
  opacity: 0.6;
  padding: 6px 12px;
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s, color 0.3s;
}
.langsw button.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  opacity: 1;
}
body.is-case .langsw, body.is-work .langsw, body.is-about .langsw, body.is-contact .langsw { border-color: rgba(28, 29, 32, 0.3); }
body.is-case .header, body.is-work .header, body.is-about .header, body.is-contact .header { padding-right: 116px; }
body.is-case .header .langsw button.is-active, body.is-work .header .langsw button.is-active,
body.is-about .header .langsw button.is-active, body.is-contact .header .langsw button.is-active {
  background: var(--dark);
  color: #fff;
}
.langsw--menu { width: fit-content; margin-bottom: 26px; border-color: var(--stripe-light); }
.langsw--menu button.is-active { background: #fff; color: var(--dark); }
@media (max-width: 900px) {
  .header .langsw { display: none; }
}

.header__nav { display: flex; gap: 40px; }
.header__link {
  position: relative;
  font-size: 15px;
  padding: 8px 0;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s var(--ease);
}
.header__link:hover::after { transform: translateX(-50%) scale(1); }

/* ============ BURGER ============ */
.burger {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 40;
  width: 68px; height: 68px;
  border-radius: 50%;
  border: none;
  background: var(--dark);
  cursor: pointer;
  transform: scale(0);
  transition: transform 0.4s var(--ease), background 0.3s;
}
.burger.is-visible { transform: scale(1); }
.burger:hover { background: var(--blue); }
.burger__lines {
  position: relative;
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  transition: background 0.2s;
}
.burger__lines::before,
.burger__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%; height: 2px;
  background: #fff;
  transition: transform 0.4s var(--ease);
}
.burger__lines::before { top: -8px; }
.burger__lines::after { top: 8px; }
.burger.is-open .burger__lines { background: transparent; }
.burger.is-open .burger__lines::before { transform: translateY(8px) rotate(45deg); }
.burger.is-open .burger__lines::after { transform: translateY(-8px) rotate(-45deg); }

/* ============ MENU ============ */
.menu {
  position: fixed;
  top: 0; right: 0;
  z-index: 30;
  width: min(480px, 100vw);
  height: 100vh;
  background: var(--dark);
  color: #fff;
  transform: translateX(105%);
  transition: transform 0.8s var(--ease);
}
.menu.is-open { transform: translateX(0); }
.menu__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 90px 60px 50px;
}
.menu__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--stripe-light);
  padding-bottom: 12px;
  margin-bottom: 30px;
}
.menu__nav { display: flex; flex-direction: column; gap: 6px; }
.menu__link {
  font-size: 44px;
  font-weight: 400;
  position: relative;
  width: fit-content;
  transition: transform 0.3s var(--ease);
}
.menu__link::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s var(--ease);
}
.menu__link:hover { transform: translateX(16px); }
.menu__link:hover::before { transform: translateY(-50%) scale(1); }
.menu__footer { margin-top: auto; }
.menu__socials { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.menu__social { font-size: 14px; }
.menu__social:hover { text-decoration: underline; }

.menu-shade {
  position: fixed;
  inset: 0;
  z-index: 25;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.menu-shade.is-open { opacity: 1; pointer-events: auto; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--grey);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__art {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__art canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__term {
  position: absolute;
  left: 7%;
  top: 56%;
  z-index: 2;
  font-family: Menlo, monospace;
  font-size: 14px;
  line-height: 2;
  color: #fff;
  text-shadow: 0 1px 10px rgba(20, 21, 23, 0.25);
}
.term-prompt { color: var(--blue); font-weight: 600; }
.hero__term-out { color: #7be08f; min-height: 28px; }
.term-cursor {
  display: inline-block;
  width: 9px;
  height: 17px;
  background: #fff;
  margin-left: 4px;
  vertical-align: -3px;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__role {
  position: absolute;
  right: 7%;
  top: 26%;
  font-weight: 400;
  z-index: 2;
}
.hero__role h2 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.3;
}
.hero__arrow {
  width: 26px; height: 26px;
  transform: rotate(45deg);
  margin-bottom: 40px;
  display: block;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  opacity: 0.85;
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 9px;
  margin-bottom: 14px;
}
.hero__ring {
  position: absolute;
  left: 7%;
  top: 24%;
  width: 116px;
  height: 116px;
  z-index: 2;
  animation: spin 16s linear infinite;
}
.hero__ring text {
  fill: #fff;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  opacity: 0.92;
}

.hero__marquee {
  white-space: nowrap;
  padding-bottom: 20px;
  will-change: transform;
  position: relative;
  z-index: 2;
}
.hero__title {
  display: inline-block;
  font-size: clamp(70px, 9.4vw, 180px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero__title span { display: inline-block; }

/* ============ DESCRIPTION ============ */
.desc {
  display: flex;
  gap: 8%;
  padding: 150px 12% 160px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.desc__eyebrow {
  width: 100%;
  font-family: Menlo, monospace;
  font-size: 14px;
  color: rgba(28, 29, 32, 0.55);
  margin-bottom: 46px;
}
.desc__eyebrow .term-prompt { color: var(--blue); }
.desc__big {
  flex: 1.4;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.35;
  font-weight: 400;
}
.desc__big .w { color: rgba(28, 29, 32, 0.16); transition: color 0.3s ease; }
.desc__big .w.on { color: var(--dark); }
.desc__side {
  flex: 0.8;
  padding-top: 12px;
}
.desc__side p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 50px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* round dark button */
.btn-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 170px; height: 170px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}
.btn-round span { position: relative; z-index: 1; }
.btn-round::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}
.btn-round:hover::before { transform: translateY(0); }
.btn-round--light {
  width: auto; height: auto;
  padding: 24px 44px;
  border-radius: 40px;
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--stripe-dark);
  transition: color 0.4s;
}
.btn-round--light:hover { color: #fff; }
.btn-round--light::before { border-radius: 40px; }
.btn-round sup { font-size: 11px; margin-left: 4px; }

/* ============ WORK ============ */
.work {
  position: relative;
  padding: 60px 10% 120px;
}
.work__label {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(28,29,32,0.6);
  margin-bottom: 60px;
}
.work__label--term {
  font-family: Menlo, monospace;
  font-size: 14px;
  letter-spacing: 0;
  color: rgba(28, 29, 32, 0.75);
}
.work__label--term .term-prompt { color: var(--blue); }
.project__num {
  font-family: Menlo, monospace;
  font-size: 13px;
  color: rgba(28, 29, 32, 0.35);
  width: 52px;
  flex-shrink: 0;
  transition: color 0.3s;
}
.project:hover .project__num { color: var(--blue); }
.project__name { flex: 1; }
.work__list--page.is-grid .project__num { display: none; }
.work__list { border-top: 1px solid var(--stripe-dark); }
.project {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 44px 8px;
  border-bottom: 1px solid var(--stripe-dark);
  transition: opacity 0.4s, padding 0.4s var(--ease);
}
.project__name {
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 400;
  transition: transform 0.4s var(--ease);
}
.project__meta {
  font-size: 15px;
  color: rgba(28,29,32,0.75);
  text-align: right;
  transition: transform 0.4s var(--ease);
}
.project__meta span {
  display: block;
  font-size: 13px;
  color: rgba(28,29,32,0.45);
  margin-top: 4px;
}
.work__list:hover .project { opacity: 0.35; }
.work__list .project:hover {
  opacity: 1;
  padding-left: 30px;
  padding-right: 30px;
}
.work__more { text-align: center; margin-top: 80px; }

/* floating preview */
.preview {
  position: fixed;
  top: 0; left: 0;
  width: 340px; height: 260px;
  pointer-events: none;
  z-index: 15;
  opacity: 0;
  transition: opacity 0.3s;
}
.preview.is-on { opacity: 1; }
.preview__bar {
  height: 30px;
  background: #141517;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  font-family: Menlo, monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}
.preview__bar i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.preview__bar span { margin-left: 8px; }
.preview__inner {
  width: 100%; height: calc(100% - 30px);
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  background: #e9eaeb;
}
.cursor-view {
  position: fixed;
  top: 0; left: 0;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  pointer-events: none;
  z-index: 16;
  transform: scale(0);
  transition: transform 0.3s var(--ease);
}
.cursor-view.is-on { transform: scale(1); }

/* ============ STRIP ============ */
.strip {
  overflow: hidden;
  padding: 130px 0 150px;
}
.strip__band {
  background: var(--darker);
  width: 120%;
  margin-left: -10%;
  transform: rotate(-3deg);
  padding: 44px 0 56px;
  box-shadow: 0 40px 90px rgba(20, 21, 23, 0.3);
  perspective: 1100px;
  overflow: hidden;
}
.strip__head {
  font-family: Menlo, monospace;
  font-size: 13px;
  color: #7be08f;
  margin: 0 12% 34px;
}
.strip__head .term-prompt { color: var(--blue); }
.strip__track {
  display: flex;
  gap: 36px;
  width: max-content;
  will-change: transform;
  transform-style: preserve-3d;
}
.strip__card {
  width: 440px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease);
}
.strip__card:nth-child(3n+2) { transform: translateZ(55px) translateY(-8px); }
.strip__card:nth-child(3n)   { transform: translateZ(-45px) translateY(8px); }
.strip__card:hover { transform: translateZ(80px); }
.strip__card .mockwrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.strip__cap {
  font-family: Menlo, monospace;
  font-size: 12px;
  color: #7be08f;
  margin-top: 14px;
}
@media (max-width: 900px) {
  .strip { padding: 80px 0 100px; }
  .strip__card { width: 300px; }
  .strip__head { margin: 0 8% 26px; }
}

/* ============ PROMISE / WHY EA DESIGN ============ */
.promise { padding: 20px 12% 140px; }
.promise .desc__eyebrow { margin-bottom: 40px; }
.promise__title {
  font-size: clamp(40px, 5.4vw, 84px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.promise__title em { font-style: normal; color: var(--blue); }
.promise__sub {
  font-size: clamp(17px, 1.5vw, 21px);
  color: rgba(28, 29, 32, 0.7);
  margin-top: 24px;
  max-width: 560px;
  line-height: 1.6;
}
.promise__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 54px;
  margin-top: 70px;
}
.promise__card {
  border-top: 2px solid var(--dark);
  padding-top: 26px;
  transition: transform 0.4s var(--ease);
}
.promise__card:hover { transform: translateY(-6px); }
.promise__card b {
  font-family: Menlo, monospace;
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 700;
  color: var(--blue);
  display: block;
}
.promise__card--urgent { border-top-color: var(--blue); }
.promise__card--urgent b { color: var(--dark); }
.promise__card--urgent h3 { color: var(--blue); }
.promise__card h3 {
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 600;
  margin: 14px 0 12px;
}
.promise__card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(28, 29, 32, 0.75);
}
.promise__cta-row { text-align: center; margin-top: 80px; }
body.is-case .promise, body.is-work .promise, body.is-about .promise, body.is-contact .promise { display: none; }
@media (max-width: 900px) {
  .promise { padding: 20px 8% 100px; }
  .promise__grid { grid-template-columns: 1fr; gap: 40px; margin-top: 50px; }
}

/* ============ CASE PAGE ============ */
.case { display: none; }
body.is-case .hero,
body.is-case .desc,
body.is-case .work,
body.is-case .strip { display: none; }
body.is-case .case { display: block; }
body.is-case .header { color: var(--dark); }

/* ============ SUB PAGES (work / about / contact) ============ */
.page { display: none; }
body.is-work .hero, body.is-work .desc, body.is-work .work, body.is-work .strip,
body.is-about .hero, body.is-about .desc, body.is-about .work, body.is-about .strip,
body.is-contact .hero, body.is-contact .desc, body.is-contact .work, body.is-contact .strip { display: none; }
body.is-work .page-work { display: block; }
body.is-about .page-about { display: block; }
body.is-contact .page-contact { display: block; }
body.is-work .header, body.is-about .header, body.is-contact .header { color: var(--dark); }
body.is-work .header__status, body.is-about .header__status, body.is-contact .header__status { border-color: rgba(28, 29, 32, 0.3); }

.page__head { padding: 170px 10% 60px; }
.page__head h1 {
  font-size: clamp(46px, 6.5vw, 104px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.page__head h1 em { font-style: normal; color: var(--blue); }

/* --- work page --- */
.workbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 60px;
}
.filters { display: flex; gap: 12px; flex-wrap: wrap; }
.filter {
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 99px;
  border: 1px solid rgba(28, 29, 32, 0.25);
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.filter sup { font-size: 10px; margin-left: 3px; }
.filter:hover { border-color: var(--dark); }
.filter.is-active { background: var(--dark); color: #fff; border-color: var(--dark); }
.viewtoggle { display: flex; gap: 8px; }
.vt {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(28, 29, 32, 0.25);
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s, color 0.3s;
}
.vt svg { width: 18px; height: 18px; }
.vt.is-active { background: var(--dark); color: #fff; }
.work__list--page { margin: 0 10% 120px; border-top: 1px solid var(--stripe-dark); }
.project.is-hidden { display: none; }
.project__thumb { display: none; }

/* grid mode */
.work__list--page.is-grid {
  border-top: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.work__list--page.is-grid .project {
  flex-direction: column;
  align-items: flex-start;
  border-bottom: none;
  padding: 0 0 10px;
  gap: 4px;
}
.work__list--page.is-grid .project:hover { padding-left: 0; padding-right: 0; }
.work__list--page.is-grid .project__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: #e9eaeb;
  margin-bottom: 18px;
}
.work__list--page.is-grid .project__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease);
}
.work__list--page.is-grid .project:hover .project__thumb img { transform: scale(1.05); }
.work__list--page.is-grid .project__name { font-size: clamp(24px, 2.4vw, 34px); }
.work__list--page.is-grid .project__meta { text-align: left; }

/* --- about page --- */
.about__divider {
  position: relative;
  margin: 40px 10% 80px;
  border-bottom: 1px solid var(--stripe-dark);
  height: 1px;
}
.about__globe {
  position: absolute;
  right: 6%;
  top: 50%;
  width: clamp(120px, 12vw, 170px);
  height: clamp(120px, 12vw, 170px);
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  transform: translateY(-50%) scale(0);
  transition: transform 0.7s var(--ease) 0.25s;
}
.about__divider.is-in .about__globe { transform: translateY(-50%) scale(1); }
.about__globe svg {
  width: 34%;
  height: 34%;
  animation: spin 10s linear infinite;
}
.about__arrow {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 10px;
  color: var(--dark);
}
.about__intro {
  display: flex;
  gap: 6%;
  padding: 20px 10% 100px;
  align-items: flex-start;
}
.about__text { flex: 1.2; }
.about__lead {
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.35;
  margin-bottom: 30px;
}
.about__text p:not(.about__lead) {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(28, 29, 32, 0.8);
}
.about__photo {
  flex: 0.8;
  max-width: 380px;
  aspect-ratio: 353 / 438;
  overflow: hidden;
  border-radius: 6px;
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}
.about__services { padding: 40px 10% 140px; }
.about__services .work__label { margin-bottom: 30px; }
.service {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: 30px;
  align-items: baseline;
  padding: 44px 0;
  border-top: 1px solid var(--stripe-dark);
}
.service__num { font-size: 15px; color: rgba(28, 29, 32, 0.45); }
.service h3 { font-size: clamp(28px, 3vw, 44px); font-weight: 500; }
.service p { font-size: 16px; line-height: 1.65; color: rgba(28, 29, 32, 0.75); }

/* --- contact page --- */
.contacthead { display: flex; align-items: center; gap: 32px; }
.contacthead__avatar {
  width: clamp(80px, 8vw, 120px);
  height: clamp(80px, 8vw, 120px);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.contacthead__avatar img { width: 100%; height: 100%; object-fit: cover; }
.cwrap {
  display: flex;
  gap: 8%;
  padding: 20px 10% 140px;
  align-items: flex-start;
}
.cform { flex: 1.5; position: relative; }
.cform__field {
  display: block;
  border-top: 1px solid var(--stripe-dark);
  padding: 36px 0;
}
.cform__label {
  display: block;
  font-size: 13px;
  color: rgba(28, 29, 32, 0.5);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.cform input, .cform textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font);
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--dark);
  resize: vertical;
}
.cform input::placeholder, .cform textarea::placeholder { color: rgba(28, 29, 32, 0.3); }
.cform__send {
  position: static;
  transform: none;
  margin-top: 30px;
  width: 160px;
  height: 160px;
  float: right;
}
.cdetails { flex: 0.6; display: flex; flex-direction: column; gap: 10px; }
.cdetails__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(28, 29, 32, 0.5);
  margin: 26px 0 6px;
}
.cdetails__label:first-child { margin-top: 0; }
.cdetails__item { font-size: 16px; width: fit-content; }
a.cdetails__item:hover { text-decoration: underline; }

/* --- sub-page responsive --- */
@media (max-width: 900px) {
  .page__head { padding: 130px 8% 40px; }
  .workbar { margin-top: 40px; }
  .work__list--page { margin: 0 6% 80px; }
  .work__list--page.is-grid { grid-template-columns: 1fr; }
  .about__divider { margin: 20px 8% 60px; }
  .about__globe { right: 8%; }
  .about__arrow { display: none; }
  .about__intro { flex-direction: column; gap: 40px; padding: 10px 8% 70px; }
  .about__photo { max-width: 100%; width: 100%; }
  .about__services { padding: 20px 8% 90px; }
  .service { grid-template-columns: 1fr; gap: 10px; padding: 34px 0; }
  .contacthead { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cwrap { flex-direction: column; gap: 60px; padding: 10px 8% 100px; }
  .cform__send { float: none; width: 150px; height: 150px; }
}

/* --- page transition overlay --- */
.pt {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--darker);
  transform: translateY(115%);
  pointer-events: none;
}
.pt.is-anim { transition: transform 0.55s var(--ease); }
.pt.is-in { transform: translateY(0); }
.pt.is-out { transform: translateY(-115%); }
.pt__curve { position: absolute; left: 0; width: 100%; height: 80px; }
.pt__curve--top { top: -79px; }
.pt__curve--bottom { bottom: -79px; }

.case__head {
  padding: 180px 10% 60px;
}
.case__title {
  font-size: clamp(54px, 7.5vw, 120px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 80px;
}
.case__meta {
  display: flex;
  gap: 6%;
  flex-wrap: wrap;
  border-top: 1px solid var(--stripe-dark);
}
.case__meta > div {
  flex: 1;
  min-width: 200px;
  padding-top: 20px;
}
.case__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(28, 29, 32, 0.55);
  margin-bottom: 14px;
}
.case__value { font-size: 17px; line-height: 1.5; }

.case__hero {
  position: relative;
  height: 78vh;
  background: linear-gradient(135deg, var(--cc1, #c9d4e0), var(--cc2, #6d829c));
  display: grid;
  place-items: center;
}
.case__stage {
  width: min(74%, 960px);
}
.case__stage > img.shot {
  aspect-ratio: 16 / 10;
  box-shadow: 0 40px 90px rgba(20, 21, 23, 0.35);
  border-radius: 8px;
}

/* --- laptop mockup with auto-scrolling site "video" --- */
.laptop { width: 100%; }
.laptop__screen {
  container-type: size;
  aspect-ratio: 16 / 10;
  background: #0b0c0e;
  border: solid #17181b;
  border-width: 12px 14px 16px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(20, 21, 23, 0.4);
  position: relative;
}
.laptop__scroll { will-change: transform; animation: sitescroll 18s ease-in-out infinite; }
.laptop__scroll--static { animation: none; }
.laptop__scroll img { width: 100%; display: block; }
@keyframes sitescroll {
  0%, 10% { transform: translateY(0); }
  46%, 56% { transform: translateY(calc(-100% + 100cqh)); }
  92%, 100% { transform: translateY(0); }
}
.laptop__base {
  height: 17px;
  margin: 0 -4.5%;
  background: linear-gradient(#33363c, #1a1c20);
  border-radius: 0 0 16px 16px;
  position: relative;
}
.laptop__base::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 12%;
  height: 6px;
  background: #101114;
  border-radius: 0 0 8px 8px;
}
.case__hero .case__live {
  position: absolute;
  top: auto;
  right: 10%;
  bottom: -90px;
  transform: none;
  margin: 0;
  width: 180px;
  height: 180px;
  z-index: 2;
}
.case__grid {
  display: flex;
  gap: 24px;
  padding: 160px 10% 120px;
}
.case__img {
  flex: 1;
  height: 60vh;
  background: linear-gradient(160deg, var(--ci1, #e9eaeb), var(--ci2, #c5c8cb));
  border-radius: 4px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.case__img--phone .phone-stage {
  height: 82%;
  aspect-ratio: 9 / 19;
}
.case__img .boardwrap {
  width: 78%;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 60px rgba(20, 21, 23, 0.25);
  border-radius: 6px;
}

/* ============ REAL SITE SHOTS ============ */
.shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: inherit;
}
.preview__inner, .mockwrap, .boardwrap { overflow: hidden; }
.mockwrap, .boardwrap { background: #fff; border-radius: 6px; }
.phone-stage {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(20, 21, 23, 0.35);
  background: #fff;
}

/* ============ MOCKUPS (code-drawn portfolio pieces) ============ */
.mock {
  container-type: inline-size;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: inherit;
  background: #fff;
}
.mock__bar {
  height: 6cqw;
  min-height: 14px;
  display: flex;
  align-items: center;
  gap: 1.6cqw;
  padding: 0 3cqw;
  background: rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}
.mock__bar i {
  width: 1.8cqw; height: 1.8cqw;
  min-width: 4px; min-height: 4px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
}
.mock__body { flex: 1; position: relative; overflow: hidden; }

/* --- Sur İnşaat: general contracting --- */
.mock--sur { background: #23262d; color: #f2f3f5; }
.mock--sur .mock__bar { background: rgba(255, 255, 255, 0.07); }
.mock--sur .mock__bar i { background: rgba(255, 255, 255, 0.25); }
.su-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 3cqw 4cqw;
  font-size: 2.4cqw;
  letter-spacing: 0.22em;
}
.su-nav b { color: #e8722c; font-weight: 600; }
.su-hero { position: relative; padding: 4cqw 4cqw 0; }
.su-hero h4 { font-size: 7.4cqw; font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
.su-hero h4 em { font-style: normal; color: #e8722c; }
.su-hero p { font-size: 2.7cqw; opacity: 0.65; margin-top: 1.8cqw; }
.su-cta {
  display: inline-block;
  margin-top: 3cqw;
  font-size: 2.5cqw;
  background: #e8722c;
  color: #1c1e24;
  font-weight: 600;
  border-radius: 0.8cqw;
  padding: 1.6cqw 4.5cqw;
}
.su-stats {
  position: relative;
  display: flex;
  gap: 6cqw;
  padding: 3.4cqw 4cqw 0;
}
.su-stats b { font-size: 4.4cqw; font-weight: 600; display: block; }
.su-stats small { font-size: 2cqw; opacity: 0.55; }
.su-skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 16cqw;
  background: #14161b;
  clip-path: polygon(0 100%, 0 55%, 8% 55%, 8% 30%, 17% 30%, 17% 62%, 27% 62%, 27% 18%, 36% 18%, 36% 50%, 46% 50%, 46% 38%, 56% 38%, 56% 66%, 66% 66%, 66% 26%, 76% 26%, 76% 55%, 86% 55%, 86% 42%, 100% 42%, 100% 100%);
}

/* --- Alfe Mobilya: custom furniture --- */
.mock--alfe { background: #f5f0e8; color: #4a3423; }
.al-nav {
  display: flex;
  justify-content: space-between;
  padding: 3cqw 4cqw;
  font-size: 2.5cqw;
  letter-spacing: 0.2em;
}
.al-hero { display: flex; align-items: center; gap: 5cqw; padding: 1.5cqw 4cqw 0; }
.al-copy h4 {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 7cqw;
  line-height: 1.1;
}
.al-copy p { font-size: 2.6cqw; opacity: 0.75; margin-top: 1.6cqw; max-width: 42cqw; }
.al-cta {
  display: inline-block;
  margin-top: 2.6cqw;
  font-size: 2.4cqw;
  background: #6b4a2f;
  color: #f5f0e8;
  border-radius: 99px;
  padding: 1.5cqw 4cqw;
}
.al-sofa { position: relative; width: 34cqw; height: 19cqw; flex-shrink: 0; }
.al-sofa i { position: absolute; background: #c98d5f; display: block; }
.al-sofa .s-back { top: 0; left: 3cqw; right: 3cqw; height: 10cqw; border-radius: 2.4cqw 2.4cqw 0 0; }
.al-sofa .s-seat { left: 3cqw; right: 3cqw; bottom: 3.4cqw; height: 5cqw; border-radius: 1cqw; background: #b97e50; }
.al-sofa .s-arm-l, .al-sofa .s-arm-r { bottom: 3.4cqw; width: 4.4cqw; height: 12cqw; border-radius: 2cqw; background: #b97e50; }
.al-sofa .s-arm-l { left: 0; }
.al-sofa .s-arm-r { right: 0; }
.al-sofa .s-leg-l, .al-sofa .s-leg-r { bottom: 0; width: 1.4cqw; height: 3.4cqw; background: #6b4a2f; }
.al-sofa .s-leg-l { left: 6cqw; }
.al-sofa .s-leg-r { right: 6cqw; }
.al-row { display: flex; gap: 2cqw; padding: 3cqw 4cqw; }
.al-chip {
  flex: 1;
  background: #ffffff;
  border-radius: 1.6cqw;
  height: 10cqw;
  display: grid;
  place-items: center;
}
.al-chip i { width: 5cqw; height: 5cqw; border-radius: 50%; display: block; }
.al-chip:nth-child(1) i { background: #6b4a2f; }
.al-chip:nth-child(2) i { background: #c98d5f; }
.al-chip:nth-child(3) i { background: #e6d7c2; }

/* --- TFTC Energy: solar solutions --- */
.mock--tftc { background: #0f1c2e; color: #eaf3ff; }
.mock--tftc .mock__bar { background: rgba(255, 255, 255, 0.07); }
.mock--tftc .mock__bar i { background: rgba(255, 255, 255, 0.25); }
.tf-sun {
  position: absolute;
  top: -6cqw; right: 6cqw;
  width: 26cqw; height: 26cqw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.85) 28%, rgba(255, 209, 102, 0.18) 60%, transparent 72%);
}
.tf-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 3cqw 4cqw;
  font-size: 2.4cqw;
  letter-spacing: 0.22em;
}
.tf-nav b { color: #ffd166; font-weight: 600; }
.tf-hero { position: relative; padding: 4cqw 4cqw 0; }
.tf-hero h4 { font-size: 7.2cqw; font-weight: 600; line-height: 1.08; }
.tf-hero h4 em { font-style: normal; color: #ffd166; }
.tf-hero p { font-size: 2.7cqw; opacity: 0.7; margin-top: 1.8cqw; max-width: 52cqw; }
.tf-cta {
  display: inline-block;
  margin-top: 3cqw;
  font-size: 2.5cqw;
  background: #ffd166;
  color: #10233c;
  font-weight: 600;
  border-radius: 99px;
  padding: 1.6cqw 4.5cqw;
}
.tf-panels {
  position: absolute;
  left: 4cqw; right: 4cqw; bottom: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.7cqw;
}
.tf-panels i { height: 5.6cqw; background: #16324f; border: 0.3cqw solid #27496e; border-radius: 0.4cqw; display: block; }

/* --- TFTC Solar: solar marketplace --- */
.mock--shop { background: #f4f7fb; color: #10233c; }
.sh-nav {
  display: flex;
  justify-content: space-between;
  padding: 2.8cqw 4cqw 0;
  font-size: 2.4cqw;
  letter-spacing: 0.2em;
}
.sh-nav b { color: #f5a300; font-weight: 600; }
.sh-top { display: flex; align-items: center; gap: 2cqw; padding: 2.4cqw 4cqw 0; }
.sh-search {
  flex: 1;
  height: 5cqw;
  background: #ffffff;
  border: 0.3cqw solid #dde5ef;
  border-radius: 99px;
  position: relative;
}
.sh-search::after {
  content: "";
  position: absolute;
  right: 2cqw; top: 50%;
  transform: translateY(-50%);
  width: 2.2cqw; height: 2.2cqw;
  border: 0.35cqw solid #9fb1c8;
  border-radius: 50%;
}
.sh-cart {
  width: 5cqw; height: 5cqw;
  border-radius: 50%;
  background: #10233c;
  flex-shrink: 0;
}
.sh-hero { padding: 3cqw 4cqw 0; }
.sh-hero h4 { font-size: 5.6cqw; font-weight: 600; line-height: 1.1; }
.sh-hero h4 em { font-style: normal; color: #f5a300; }
.sh-hero p { font-size: 2.4cqw; opacity: 0.65; margin-top: 1.2cqw; }
.sh-grid { display: flex; gap: 2cqw; padding: 2.8cqw 4cqw; }
.sh-card {
  flex: 1;
  background: #ffffff;
  border-radius: 1.6cqw;
  padding: 1.8cqw;
  box-shadow: 0 0.8cqw 2.4cqw rgba(16, 35, 60, 0.08);
}
.sh-img {
  height: 9cqw;
  border-radius: 1cqw;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 23%, #27496e 23%, #27496e 25%),
    repeating-linear-gradient(0deg, transparent 0, transparent 44%, #27496e 44%, #27496e 48%),
    #16324f;
}
.sh-line { height: 1.5cqw; background: #e3eaf3; border-radius: 2px; margin-top: 1.6cqw; }
.sh-line--short { width: 55%; }
.sh-buy { display: flex; justify-content: space-between; align-items: center; margin-top: 1.8cqw; }
.sh-buy b { font-size: 2.2cqw; font-weight: 600; }
.sh-buy span {
  background: #f5a300;
  color: #10233c;
  font-size: 1.8cqw;
  font-weight: 600;
  border-radius: 99px;
  padding: 0.8cqw 2.2cqw;
}

/* --- Moment Park: recreation & events --- */
.mock--moment { background: linear-gradient(#e2f0f4, #e7f2e4); color: #24513a; }
.mo-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 3cqw 4cqw;
  font-size: 2.4cqw;
  letter-spacing: 0.2em;
  z-index: 1;
}
.mo-sun {
  position: absolute;
  top: 4cqw; right: 8cqw;
  width: 9cqw; height: 9cqw;
  border-radius: 50%;
  background: #f6c453;
  box-shadow: 0 0 4cqw rgba(246, 196, 83, 0.65);
}
.mo-hero { position: relative; padding: 4cqw 4cqw 0; z-index: 1; }
.mo-hero h4 { font-size: 7.4cqw; font-weight: 600; line-height: 1.08; }
.mo-hero p { font-size: 2.7cqw; opacity: 0.75; margin-top: 1.8cqw; }
.mo-cta {
  display: inline-block;
  margin-top: 2.8cqw;
  font-size: 2.5cqw;
  background: #2e7d4f;
  color: #eef7ef;
  border-radius: 99px;
  padding: 1.6cqw 4.5cqw;
}
.mo-hill1, .mo-hill2 {
  position: absolute;
  bottom: -14cqw;
  width: 70cqw; height: 26cqw;
  border-radius: 50%;
}
.mo-hill1 { left: -12cqw; background: #9ccca8; }
.mo-hill2 { right: -16cqw; bottom: -16cqw; background: #6fae84; }
.mo-tree {
  position: absolute;
  bottom: 8cqw;
  width: 0; height: 0;
  border-left: 2.6cqw solid transparent;
  border-right: 2.6cqw solid transparent;
  border-bottom: 7cqw solid #2e7d4f;
}
.mo-tree--1 { left: 14cqw; }
.mo-tree--2 { left: 24cqw; bottom: 5cqw; transform: scale(0.75); }
.mo-tree--3 { right: 20cqw; bottom: 4cqw; }

/* --- Phone mock --- */
.mockphone {
  container-type: inline-size;
  width: 100%; height: 100%;
  background: #17181b;
  border-radius: 10cqw;
  padding: 3cqw;
  box-shadow: 0 30px 70px rgba(20, 21, 23, 0.35);
  position: relative;
}
.mockphone::before {
  content: "";
  position: absolute;
  top: 5.5cqw; left: 50%;
  transform: translateX(-50%);
  width: 26cqw; height: 3.4cqw;
  background: #17181b;
  border-radius: 99px;
  z-index: 2;
}
.mockphone__screen {
  width: 100%; height: 100%;
  border-radius: 7.5cqw;
  overflow: hidden;
  background: var(--p-bg, #f2f2f2);
  color: var(--p-ink, #222);
  display: flex;
  flex-direction: column;
  padding: 14cqw 7cqw 7cqw;
}
.mockphone__brand {
  font-size: 8cqw;
  letter-spacing: 0.16em;
  font-weight: 600;
}
.mockphone__brand--serif {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 10cqw;
}
.mockphone__img {
  margin-top: 6cqw;
  height: 34cqw;
  border-radius: 4cqw;
  background: var(--p-acc, #888);
  opacity: 0.85;
}
.mockphone__line { height: 2.2cqw; border-radius: 2px; background: currentColor; opacity: 0.25; margin-top: 4cqw; }
.mockphone__line--short { width: 60%; }
.mockphone__btn {
  margin-top: auto;
  height: 11cqw;
  border-radius: 99px;
  background: var(--p-ink, #222);
  color: var(--p-bg, #fff);
  display: grid;
  place-items: center;
  font-size: 3.6cqw;
}

/* --- Brand board mock --- */
.mockboard {
  container-type: inline-size;
  width: 100%; height: 100%;
  background: #faf9f7;
  color: #232323;
  border-radius: inherit;
  padding: 5cqw;
  display: flex;
  flex-direction: column;
}
.mockboard__name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 8cqw;
}
.mockboard__type {
  font-size: 4.6cqw;
  margin-top: 2cqw;
  color: rgba(35, 35, 35, 0.55);
}
.mockboard__swatches { display: flex; gap: 2cqw; margin-top: 4cqw; }
.mockboard__swatches i {
  flex: 1;
  height: 13cqw;
  border-radius: 1.4cqw;
  position: relative;
}
.mockboard__swatches i::after {
  content: attr(data-hex);
  position: absolute;
  bottom: -4cqw;
  left: 0;
  font-size: 2cqw;
  color: rgba(35, 35, 35, 0.5);
  font-family: var(--font);
}
.mockboard__rows { margin-top: auto; display: flex; flex-direction: column; gap: 2cqw; }
.mockboard__rows i { height: 1.8cqw; background: rgba(35, 35, 35, 0.15); border-radius: 2px; }
.mockboard__rows i:last-child { width: 55%; }
.case__next {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 130px 10% 120px;
  position: relative;
}
.case__next-label { color: var(--text-muted); }
.case__next-link {
  display: inline-block;
  font-size: clamp(44px, 6vw, 96px);
  font-weight: 500;
  border-bottom: 1px solid var(--stripe-light);
  padding-bottom: 24px;
  transition: color 0.3s;
}
.case__next-link:hover { color: var(--blue); }
.case__all { margin-top: 70px; }
.btn-round--dark {
  width: auto; height: auto;
  padding: 22px 40px;
  border-radius: 40px;
  background: transparent;
  color: #fff;
  border: 1px solid var(--stripe-light);
}
.btn-round--dark::before { border-radius: 40px; }

@media (max-width: 900px) {
  .case__head { padding: 140px 8% 40px; }
  .case__grid { flex-direction: column; padding: 100px 8% 80px; }
  .case__img { height: 44vh; }
  .case__stage { width: 86%; }
  .case__hero .case__live { position: absolute; right: 8%; bottom: -70px; width: 140px; height: 140px; font-size: 15px; }
}

/* ============ CONTACT ============ */
.contact {
  background: var(--dark);
  color: #fff;
  border-radius: 0;
  padding: 160px 10% 40px;
  position: relative;
}
.contact__head { max-width: 1100px; margin: 0 auto; }
.contact__title {
  display: flex;
  align-items: center;
  gap: 28px;
}
.contact__title h2 {
  font-size: clamp(46px, 6.5vw, 100px);
  font-weight: 400;
  line-height: 1.1;
}
.contact__avatar {
  width: clamp(70px, 6.5vw, 100px);
  height: clamp(70px, 6.5vw, 100px);
  border-radius: 50%;
  background: linear-gradient(135deg, #455ce9, #7a8cf0);
  overflow: hidden;
  flex-shrink: 0;
}
.contact__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact__line {
  position: relative;
  border-bottom: 1px solid var(--stripe-light);
  margin: 60px 0 100px;
  height: 1px;
}
.btn-circle {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 17px;
  overflow: hidden;
}
.btn-circle span { position: relative; z-index: 1; }
.btn-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--blue-dark);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}
.btn-circle:hover::before { transform: translateY(0); }
.contact__line-arrow {
  position: absolute;
  right: calc(8% + 210px);
  top: -70px;
  width: 28px; height: 28px;
  transform: rotate(45deg);
  color: #fff;
}
.contact__pills { display: flex; gap: 20px; flex-wrap: wrap; }
.pill {
  border: 1px solid var(--stripe-light);
  border-radius: 40px;
  padding: 22px 36px;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s;
}
.pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: var(--blue);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.pill:hover::before { transform: translateY(0); }
.pill:hover { border-color: var(--blue); }
.pill { display: inline-flex; }
.pill, .pill * { z-index: 1; }

.contact__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 140px;
  flex-wrap: wrap;
}
.contact__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.contact__value { font-size: 15px; }
.contact__socials { display: flex; gap: 24px; flex-wrap: wrap; }
.contact__social {
  font-size: 15px;
  position: relative;
  padding-bottom: 4px;
}
.contact__social::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.contact__social:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .header { padding: 47px 24px 24px; }
  .header__nav { display: none; }
  .burger { transform: scale(1); }
  .hero__role { right: 6%; top: 15%; }
  .hero__term { top: auto; bottom: calc(5% + min(max(303px, 54.9vw), 85%) + 12px); left: 6%; font-size: 12.5px; }
  .header__status { display: none; }
  .hero__ring { display: none; }
  .desc { flex-direction: column; padding: 100px 8%; gap: 50px; }
  .work { padding: 40px 6% 80px; }
  .project { flex-direction: column; align-items: flex-start; gap: 10px; }
  .project__meta { text-align: left; }
  .preview, .cursor-view { display: none; }
  .btn-circle { position: static; transform: none; margin-top: 40px; width: 150px; height: 150px; }
  .contact__line { border: none; margin: 20px 0 60px; height: auto; }
  .contact__line-arrow { display: none; }
  .contact { padding: 100px 8% 30px; }
  .strip__card { width: 280px; height: 190px; }
}
