:root {
  --ink: #06100e;
  --ink-soft: #0b1b17;
  --green: #00bd3f;
  --green-light: #62ee8c;
  --paper: #f3f5ef;
  --muted: #aab7af;
  --line: rgba(255,255,255,.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Manrope", system-ui, sans-serif;
  overflow-x: hidden;
}
body.loading { overflow: hidden; }
a { color: inherit; }
img { -webkit-user-drag: none; -webkit-user-select: none; user-select: none; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 50; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.loader {
  position: fixed; inset: 0; z-index: 100; display: grid; place-content: center;
  background: #030a08; transition: transform 1s cubic-bezier(.8,0,.2,1) .2s;
}
.loader.done { transform: translateY(-105%); }
.loader-mark { width: min(310px, 65vw); aspect-ratio: 2.8; position: relative; overflow: hidden; }
.loader-mark img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.04); opacity: .96; }
.loader-scan {
  position: absolute; inset: -10%; z-index: 2; background: #030a08;
  animation: erase 1.25s cubic-bezier(.77,0,.18,1) .25s forwards;
}
.loader-line { width: min(310px, 65vw); height: 1px; background: rgba(255,255,255,.1); overflow: hidden; margin-top: 28px; }
.loader-line span { display: block; height: 100%; background: var(--green); animation: load 1.2s ease forwards; }
@keyframes erase { to { transform: translateX(115%); } }
@keyframes load { from { width: 0; } to { width: 100%; } }

.site-header {
  position: fixed; z-index: 60; top: 0; left: 0; right: 0; height: 104px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 76px); border-bottom: 1px solid var(--line);
  transform: translateY(0); opacity: 1;
  transition: transform .55s cubic-bezier(.22,1,.36,1), opacity .4s ease, background-color .45s ease, box-shadow .45s ease;
}
.site-header.is-scrolled { background: rgba(6,16,14,.93); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); box-shadow: 0 8px 32px rgba(0,0,0,.2); }
.site-header.is-hidden { transform: translateY(-110%); opacity: 0; }
.site-header:focus-within { transform: translateY(0); opacity: 1; }
.brand { position: relative; display: block; width: 170px; height: 64px; }
.logo-sheen {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  -webkit-mask: url("ali-eyyupoglu-logo.png") center / contain no-repeat;
  mask: url("ali-eyyupoglu-logo.png") center / contain no-repeat;
  background: linear-gradient(110deg, transparent 38%, rgba(255,255,255,.32) 45%, rgba(255,255,255,.92) 50%, rgba(255,255,255,.32) 55%, transparent 62%) 125% center / 200% 100% no-repeat;
  animation: logo-glint 10s linear infinite;
  animation-play-state: paused;
}
body.ready .brand .logo-sheen { animation-play-state: running; }
.loader-mark .logo-sheen { transform: scale(1.04); animation-duration: 8s; animation-delay: 1.5s; animation-play-state: running; }
@keyframes logo-glint {
  0% { background-position: 125% center; }
  40%, 100% { background-position: -25% center; }
}
.brand img, footer img { width: 100%; height: 100%; object-fit: contain; }
.bio-link { text-decoration: none; text-transform: uppercase; font-size: .76rem; letter-spacing: .16em; font-weight: 700; }
.bio-link span { color: var(--green); margin-left: 9px; }

.hero {
  min-height: 100svh; position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .84fr);
  padding: 150px clamp(24px, 5vw, 76px) 0; overflow: hidden;
  background:
    radial-gradient(circle at 74% 38%, rgba(0,189,63,.14), transparent 28%),
    linear-gradient(115deg, #07120f 0%, #06100e 58%, #020705 100%);
}
.hero::before {
  content: ""; position: absolute; width: 32vw; height: 32vw; right: 4%; top: 17%; border: 1px solid rgba(0,189,63,.17); border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(0,189,63,.025), 0 0 0 14vw rgba(0,189,63,.018);
}
.hero-copy { position: relative; z-index: 5; align-self: center; padding-bottom: 8vh; max-width: 760px; }
.eyebrow { color: var(--green-light); text-transform: uppercase; letter-spacing: .22em; font-size: .78rem; font-weight: 700; margin: 0 0 24px; }
h1 { font-family: "DM Sans", sans-serif; font-size: clamp(3.5rem, 7.1vw, 7.6rem); line-height: .88; letter-spacing: -.065em; margin: 0; font-weight: 600; }
h1 em { color: var(--green); font-style: normal; font-weight: 500; }
.lead { max-width: 585px; color: #c1ccc5; font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.75; margin: 38px 0 0; }
.discover { display: inline-flex; align-items: center; gap: 20px; margin-top: 42px; text-decoration: none; font-size: .87rem; font-weight: 700; letter-spacing: .05em; }
.discover i { width: 46px; height: 46px; border: 1px solid rgba(98,238,140,.45); border-radius: 50%; display: grid; place-items: center; color: var(--green-light); font-style: normal; transition: .25s ease; }
.discover:hover i { background: var(--green); color: var(--ink); transform: translateY(4px); }

.portrait-wrap { position: relative; z-index: 3; align-self: end; height: calc(100svh - 105px); min-height: 600px; }
.portrait { position: absolute; bottom: 0; right: -4vw; height: 93%; width: auto; max-width: 56vw; object-fit: contain; object-position: bottom; filter: drop-shadow(0 24px 50px rgba(0,0,0,.45)); opacity: 0; transform: translateY(80px) scale(.97); transition: 1.35s cubic-bezier(.16,1,.3,1) .6s; }
body.ready .portrait { opacity: 1; transform: translateY(0) scale(1); }
.portrait-halo { position: absolute; width: 68%; aspect-ratio: 1; right: 8%; top: 17%; border-radius: 50%; background: linear-gradient(145deg, rgba(0,189,63,.22), rgba(0,189,63,.02)); filter: blur(2px); }
.sutso-orbit {
  position: absolute; z-index: 2; width: clamp(118px, 10vw, 178px); aspect-ratio: 1;
  left: 0; top: 20%; display: grid; place-items: center; opacity: 0;
  transform: translateY(24px) scale(.9); transition: opacity .9s ease 1s, transform 1.1s cubic-bezier(.16,1,.3,1) 1s;
}
body.ready .sutso-orbit { opacity: .96; transform: translateY(0) scale(1); }
.sutso-orbit::before {
  content: ""; position: absolute; inset: -15px; border-radius: 50%;
  background: radial-gradient(circle, rgba(226,178,0,.16), transparent 68%);
  filter: blur(8px);
}
.sutso-orbit img {
  position: relative; width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.38));
  animation: sutso-spin 20s linear infinite;
}
.sutso-ring {
  position: absolute; inset: -9px; border: 1px solid rgba(230,186,16,.34); border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(230,186,16,.035);
}
@keyframes sutso-spin { to { transform: rotate(360deg); } }
.vertical-word { position: absolute; right: -7px; top: 18%; writing-mode: vertical-rl; color: rgba(255,255,255,.08); letter-spacing: .42em; font-size: .66rem; font-weight: 700; }
.candidate-card { position: absolute; z-index: 5; left: -5%; bottom: 8%; padding: 20px 24px; width: 210px; background: rgba(6,16,14,.82); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(14px); }
.candidate-card span { display:block; color: var(--green-light); text-transform: uppercase; letter-spacing: .14em; font-size: .66rem; margin-bottom: 7px; }
.candidate-card strong { font-size: 1rem; }
.scroll-cue { position: absolute; bottom: 32px; left: 50%; width: 1px; height: 54px; background: rgba(255,255,255,.12); overflow: hidden; }
.scroll-cue span { display:block; height: 48%; background: var(--green); animation: scroll 1.8s ease-in-out infinite; }
@keyframes scroll { 0% { transform: translateY(-110%); } 100% { transform: translateY(220%); } }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.7,.2,1); }
body.ready .hero .reveal, .reveal.visible { opacity: 1; transform: translateY(0); }
.hero .reveal:nth-child(2) { transition-delay: .12s; }
.hero .reveal:nth-child(3) { transition-delay: .22s; }
.hero .reveal:nth-child(4) { transition-delay: .3s; }

.biography {
  position: relative; display: grid; grid-template-columns: .85fr 1fr; gap: clamp(28px, 5vw, 92px);
  padding: clamp(100px, 13vw, 190px) clamp(24px, 7vw, 110px);
  background: var(--paper); color: #10201b;
}
.bio-heading h2 { font: 600 clamp(2.4rem, 4.2vw, 4.9rem)/1.02 "DM Sans"; letter-spacing: -.055em; margin: 0; }
.bio-heading .eyebrow { color: #008d2f; }
.bio-content { padding-top: 42px; }
.bio-content p { color: #506059; font-size: 1.03rem; line-height: 1.9; margin: 0 0 25px; }
.bio-content .bio-intro { color: #10201b; font-size: clamp(1.25rem, 1.7vw, 1.55rem); line-height: 1.55; font-weight: 500; }
.socials { display: flex; gap: 12px; margin-top: 38px; }
.socials a { width: 50px; height: 50px; border: 1px solid #cbd3ce; border-radius: 50%; display: grid; place-items: center; transition: .25s ease; }
.socials a:hover { background: var(--green); border-color: var(--green); transform: translateY(-4px); }
.socials svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.socials svg path:first-child { fill: currentColor; stroke: none; }
.socials a:nth-child(3) svg path { fill: none; stroke: currentColor; }
.socials a:nth-child(4) svg path { fill: none; stroke: currentColor; }
.socials .fill { fill: currentColor; stroke: none; }

footer { min-height: 280px; padding: 66px clamp(24px, 7vw, 110px); display: grid; grid-template-columns: 200px 1fr auto; gap: 40px; align-items: center; border-top: 1px solid var(--line); }
footer img { height: 90px; }
footer p { color: #dce4df; font-size: clamp(1.2rem, 2vw, 1.8rem); }
footer > span { color: #829087; font-size: .78rem; }

@media (max-width: 900px) {
  .site-header { height: 86px; }
  .brand { width: 145px; height: 55px; }
  .hero { min-height: 100svh; grid-template-columns: 1fr; padding-top: 125px; }
  .hero-copy { align-self: start; padding-bottom: 0; }
  h1 { font-size: clamp(3.4rem, 16vw, 6.2rem); }
  .lead { max-width: 500px; line-height: 1.6; margin-top: 25px; }
  .discover { margin-top: 26px; }
  .portrait-wrap { position: absolute; right: 0; left: 0; bottom: 0; height: 52svh; min-height: 400px; }
  .portrait { right: -12vw; height: 100%; max-width: 88vw; }
  .portrait-halo { width: 68vw; right: -8vw; top: 0; }
  .sutso-orbit { left: 5%; top: 9%; width: clamp(112px, 18vw, 150px); }
  .candidate-card { left: 24px; bottom: 24px; }
  .vertical-word, .scroll-cue { display: none; }
  .biography { grid-template-columns: 1fr; }
  .bio-content { padding-top: 0; }
  footer { grid-template-columns: 160px 1fr; }
  footer > span { grid-column: 2; }
}

@media (max-width: 600px) {
  .site-header { padding-inline: 20px; }
  .bio-link { font-size: .66rem; }
  .hero { padding: 116px 20px 0; }
  .hero-copy { z-index: 6; }
  .eyebrow { font-size: .66rem; margin-bottom: 18px; }
  h1 { font-size: clamp(3.2rem, 15.7vw, 5.2rem); }
  .lead { font-size: .94rem; max-width: 90%; }
  .portrait-wrap { height: 59svh; min-height: 450px; opacity: .88; bottom: 0; }
  .portrait { right: -23vw; max-width: none; height: 100%; }
  .portrait-halo { top: 4%; }
  .sutso-orbit { left: 18px; top: 12%; width: 112px; }
  .candidate-card { display: none; }
  .biography { display: block; padding: 95px 22px; }
  .bio-heading h2 { font-size: 2.8rem; }
  .bio-content { margin-top: 44px; }
  footer { display: block; padding: 58px 22px; }
  footer img { width: 170px; }
  footer p { margin: 30px 0; }
}

/* Logo positions can be adjusted independently of the portrait. */
.header-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 48px); }
.header-nav a { padding-block: 12px; font-size: .875rem; letter-spacing: .07em; }
a:focus-visible, summary:focus-visible { outline: 2px solid var(--green-light); outline-offset: 6px; }
.sutso-mobile { display: none; }
.footer-brands { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.footer-brands .footer-wordmark { width: 175px; height: 70px; }
.sutso-orbit.sutso-footer { position: relative; inset: auto; width: 78px; flex: 0 0 78px; opacity: 1; transform: none; }
.sutso-footer img { width: 100%; height: 100%; }
footer { grid-template-columns: minmax(290px, 1fr) 1fr auto; }
.assembly { padding: clamp(80px, 9vw, 140px) clamp(22px, 7vw, 110px); scroll-margin-top: 32px; background: linear-gradient(140deg, #0c2119, #06100e 60%); }
.assembly-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 70px; }
.assembly h2 { font: 500 clamp(2.5rem, 4.8vw, 5rem)/1.08 "DM Sans", sans-serif; letter-spacing: -.05em; margin: 0; }
.assembly h2 em { font-style: normal; color: var(--green-light); }
.assembly-description { max-width: 330px; color: #bdcbc2; font-size: 1rem; line-height: 1.8; }
.assembly-description span { display: block; color: #9aada2; font-size: .875rem; margin-top: 16px; }
.profession-groups { position: relative; }
.profession-groups::before { content: ""; position: absolute; top: 44px; bottom: 44px; left: 35px; width: 1px; background: linear-gradient(var(--green), #254d38); }
.profession-group { position: relative; border-top: 1px solid var(--line); }
.profession-group:last-child { border-bottom: 1px solid var(--line); }
.group-summary { display: grid; grid-template-columns: 72px minmax(0, 1fr) auto 44px; gap: 26px; align-items: center; padding: 30px 0; cursor: pointer; list-style: none; }
.group-summary::-webkit-details-marker { display: none; }
.group-number { position: relative; display: grid; place-items: center; width: 72px; height: 72px; border: 1px solid #315641; border-radius: 50%; background: #0a1b13; font: 500 1.8rem/1 "DM Sans", sans-serif; color: #a4b5aa; transition: color .25s, background .25s; }
.group-kicker { font-size: .875rem; color: #9caf9f; letter-spacing: .14em; }
.group-title h3 { font: 500 clamp(1.2rem, 2.3vw, 2rem)/1.25 "DM Sans", sans-serif; margin: 8px 0 0; overflow-wrap: anywhere; }
.group-count { font-size: .875rem; color: #adbbb2; white-space: nowrap; }
.group-toggle { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid #385442; border-radius: 50%; font: 300 1.6rem/1 sans-serif; transition: transform .3s; }
.profession-group[open] .group-number, .group-summary:hover .group-number { background: var(--green-light); color: #06100e; border-color: var(--green-light); }
.profession-group[open] .group-toggle { transform: rotate(45deg); }
.group-roster { position: relative; list-style: none; margin: 0 0 44px 35px; padding: 20px 0 0 63px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 25px; row-gap: 38px; }
.group-roster::before { content: ""; position: absolute; left: 0; top: 0; width: 63px; height: 1px; background: #315641; }
.member-card { position: relative; min-width: 0; padding-top: 30px; }
.member-card::before { content: ""; position: absolute; top: 0; left: 0; right: -25px; height: 1px; background: #315641; }
.member-card::after { content: ""; position: absolute; top: 0; left: 50%; height: 25px; width: 1px; background: #315641; }
.member-card:last-child::before { right: 0; }
.member-card:nth-child(even) { padding-top: 64px; }
.member-card:nth-child(even)::after { height: 59px; }
.member-sequence { position: absolute; right: 10px; top: 45px; z-index: 1; font-size: .8rem; color: #b2c4b7; }
.member-card:nth-child(even) .member-sequence { top: 79px; }
.member-photo { aspect-ratio: 4/5; display: grid; place-items: center; overflow: hidden; border: 1px solid #2a4936; border-radius: 90px 90px 4px 4px; background: radial-gradient(ellipse at 50% 25%, #214732, #0c1e14 80%); transition: border-color .3s, transform .3s; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.photo-placeholder { color: #adbdaf; padding: 20px; text-align: center; font-size: .875rem; }
.member-card:hover .member-photo { transform: translateY(-4px); border-color: var(--green-light); }
.member-card h4 { font: 500 clamp(1.15rem, 1.6vw, 1.5rem)/1.3 "DM Sans", sans-serif; margin: 20px 0 8px; overflow-wrap: anywhere; }
.member-role { font-size: .875rem; color: var(--green-light); margin: 0; line-height: 1.6; }
@media (max-width: 1100px) {
  .group-roster { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .portrait-wrap > .sutso-orbit { display: none; }
  .discover { display: grid; grid-template-columns: 108px minmax(0, 1fr) 46px; align-items: center; gap: 14px; width: fit-content; max-width: 100%; }
  .discover .sutso-mobile { position: relative; inset: auto; display: grid; width: 92px; margin: 8px; }
  .discover i { flex-shrink: 0; }
  .assembly-heading { display: block; }
  .assembly-description { max-width: none; margin-top: 30px; }
  .group-summary { gap: 18px; }
}
@media (max-width: 600px) {
  .site-header { gap: 14px; }
  .brand { width: 120px; flex-shrink: 0; }
  .header-nav { gap: 0; flex-direction: column; align-items: flex-end; }
  .header-nav a { padding-block: 5px; font-size: .875rem; letter-spacing: 0; }
  .discover { font-size: .875rem; gap: 10px; letter-spacing: 0; grid-template-columns: 96px minmax(0, 1fr) 32px; }
  .discover i { width: 32px; height: 32px; }
  .discover .sutso-mobile { width: 80px; margin: 8px; }
  .assembly-heading { margin-bottom: 36px; }
  .profession-groups::before { left: 23px; }
  .group-summary { grid-template-columns: 48px minmax(0, 1fr) 30px; gap: 12px; padding: 25px 0; }
  .group-number { width: 48px; height: 48px; font-size: 1.3rem; }
  .group-count { display: none; }
  .group-toggle { width: 28px; height: 28px; font-size: 1.2rem; }
  .group-roster { margin-left: 23px; padding-left: 25px; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 14px; }
  .group-roster::before { width: 25px; }
  .member-card::before { right: -14px; }
  .member-photo { border-radius: 65px 65px 4px 4px; }
  .photo-placeholder { padding: 10px; }
  .footer-brands { margin-bottom: 26px; }
}
@media (max-width: 360px) {
  .group-roster { grid-template-columns: 1fr; }
  .member-card:nth-child(even) { padding-top: 30px; }
  .member-card:nth-child(even)::after { height: 25px; }
  .member-card:nth-child(even) .member-sequence { top: 45px; }
}
@media (prefers-reduced-motion: reduce) {
  .logo-sheen { display: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
