:root {
  --ink: #07090d;
  --ink-soft: #0d1016;
  --panel: rgba(17, 20, 27, 0.72);
  --ivory: #f2ede3;
  --muted: #9d9a94;
  --faint: #676763;
  --gold: #c5a46d;
  --gold-soft: #816a46;
  --teal: #59d8cf;
  --line: rgba(242, 237, 227, 0.12);
  --line-strong: rgba(197, 164, 109, 0.32);
  --font-ar: "IBM Plex Sans Arabic", "Geeza Pro", Tahoma, Arial, sans-serif;
  --font-en: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --page: min(1380px, calc(100vw - 96px));
  --mouse-x: 50vw;
  --mouse-y: 50vh;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold-soft) var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 13% 8%, rgba(89, 216, 207, 0.045), transparent 24rem),
    radial-gradient(circle at 82% 38%, rgba(197, 164, 109, 0.055), transparent 30rem),
    var(--ink);
  color: var(--ivory);
  font-family: var(--font-ar);
  font-weight: 400;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  right: 1rem;
  padding: 0.75rem 1rem;
  translate: 0 -200%;
  background: var(--ivory);
  color: var(--ink);
  transition: translate 180ms ease;
}

.skip-link:focus {
  translate: 0;
}

.scroll-progress {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  height: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  will-change: transform;
}

.noise {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: 0.022;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0, #fff 1px, transparent 2px, transparent 5px);
  background-size: 8px 8px;
  mix-blend-mode: soft-light;
}

.pointer-glow {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    380px circle at var(--mouse-x) var(--mouse-y),
    rgba(197, 164, 109, 0.07),
    transparent 72%
  );
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 50%;
  width: var(--page);
  min-height: 104px;
  translate: 50% 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--gold);
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 0.36rem;
  color: var(--faint);
  font-family: var(--font-en);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.3rem;
}

.main-nav a,
.language-link {
  position: relative;
  color: #aaa69f;
  font-size: 0.78rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 1px;
  scale: 0 1;
  transform-origin: right;
  background: var(--gold);
  transition: scale 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.language-link:hover,
.language-link:focus-visible {
  color: var(--ivory);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  scale: 1;
}

.language-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-en);
  letter-spacing: 0.12em;
}

.language-link span {
  color: var(--gold);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(780px, 100svh);
  padding: 160px max(48px, calc((100vw - 1380px) / 2)) 84px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
  gap: clamp(4rem, 8vw, 9rem);
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.2), var(--ink) 86%),
    radial-gradient(circle at 22% 50%, rgba(197, 164, 109, 0.075), transparent 29rem);
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to left, #000 12%, transparent 72%);
}

.radar {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(197, 164, 109, 0.15);
  border-radius: 50%;
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  border: inherit;
  border-radius: inherit;
}

.radar::before {
  inset: 16%;
}

.radar::after {
  inset: 33%;
}

.radar-a {
  top: 25%;
  right: -17vw;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  opacity: 0.68;
}

.radar-b {
  bottom: -20rem;
  left: 10%;
  width: 33rem;
  aspect-ratio: 1;
  opacity: 0.16;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 1.5rem;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.4rem;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.eyebrow i {
  width: 32px;
  height: 1px;
  background: var(--line-strong);
}

.eyebrow span[lang="en"],
.kicker span {
  color: var(--faint);
  font-family: var(--font-en);
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.18em;
}

.status-dot {
  display: inline-block;
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 14px rgba(89, 216, 207, 0.8);
}

.hero h1 {
  margin: 0;
  font-size: clamp(5rem, 9.4vw, 9.8rem);
  font-weight: 300;
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.hero h1 span {
  display: block;
}

.hero h1 .name-accent {
  margin-top: 0.14em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 237, 227, 0.48);
  text-stroke: 1px rgba(242, 237, 227, 0.48);
}

.hero-role {
  margin: 2.7rem 0 0;
  color: #ded8cf;
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  font-weight: 500;
  line-height: 1.65;
}

.hero-role span {
  display: block;
  color: var(--gold);
}

.hero-intro {
  max-width: 640px;
  margin: 1.4rem 0 0;
  color: #8f8d88;
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.button {
  min-height: 56px;
  padding: 0 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.6rem;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 600;
  transition:
    translate 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button b {
  font-family: var(--font-en);
  font-weight: 400;
}

.button:hover,
.button:focus-visible {
  translate: 0 -3px;
}

.button-primary {
  min-width: 178px;
  background: var(--gold);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d5b77e;
}

.button-ghost {
  min-width: 206px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.018);
  color: var(--ivory);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--gold-soft);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 620px;
  margin-top: 3.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.hero-meta div {
  display: grid;
  gap: 0.25rem;
  padding-left: 1rem;
}

.hero-meta div + div {
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}

.hero-meta small,
.panel-signature small,
.contact-actions small {
  color: var(--faint);
  font-size: 0.62rem;
}

.hero-meta strong {
  color: #bdb9b2;
  font-size: 0.75rem;
  font-weight: 500;
}

.identity-panel {
  position: relative;
  width: min(100%, 440px);
  justify-self: end;
  padding: 1.15rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 45%),
    rgba(11, 13, 18, 0.72);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(16px);
}

.identity-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 18%;
  width: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.panel-index {
  height: 36px;
  display: flex;
  align-items: start;
  gap: 0.7rem;
  color: var(--gold);
  direction: ltr;
  font-family: var(--font-en);
}

.panel-index span {
  font-size: 0.72rem;
}

.panel-index i {
  width: 36px;
  height: 1px;
  margin-top: 0.48rem;
  background: var(--gold-soft);
}

.panel-index small {
  color: var(--faint);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
}

.portrait-shell {
  position: relative;
  aspect-ratio: 0.81;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(89, 216, 207, 0.02), rgba(197, 164, 109, 0.08)),
    #10131a;
}

.portrait-monogram {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(197, 164, 109, 0.24);
  font-family: var(--font-en);
  font-size: 7rem;
  letter-spacing: 0.06em;
}

.portrait-shell img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.68) contrast(1.08);
}

.portrait-shell::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 52%, rgba(7, 9, 13, 0.7)),
    linear-gradient(90deg, rgba(7, 9, 13, 0.24), transparent 40%);
}

.portrait-scan {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  opacity: 0.45;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  animation: scan 6s ease-in-out infinite;
}

@keyframes scan {
  0%,
  100% {
    translate: 0 20px;
    opacity: 0;
  }
  15%,
  70% {
    opacity: 0.45;
  }
  85% {
    translate: 0 430px;
    opacity: 0;
  }
}

.portrait-corner {
  position: absolute;
  z-index: 4;
  width: 26px;
  height: 26px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.7;
}

.corner-a {
  top: 14px;
  right: 14px;
  border-width: 1px 1px 0 0;
}

.corner-b {
  bottom: 14px;
  left: 14px;
  border-width: 0 0 1px 1px;
}

.panel-signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.2rem 0.15rem;
}

.panel-signature div {
  display: grid;
}

.panel-signature small {
  direction: ltr;
  font-family: var(--font-en);
  letter-spacing: 0.12em;
}

.panel-signature strong {
  margin-top: 0.18rem;
  font-size: 1rem;
  font-weight: 500;
}

.verification {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-en);
  font-size: 0.68rem;
}

.scroll-cue {
  position: absolute;
  right: 50%;
  bottom: 2.2rem;
  translate: 50% 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--faint);
  font-size: 0.65rem;
}

.scroll-cue i {
  position: relative;
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  translate: 100% 0;
  background: var(--gold);
  animation: scroll-line 2.4s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    translate: 100% 0;
  }
  50%,
  100% {
    translate: -100% 0;
  }
}

.section {
  position: relative;
  width: var(--page);
  margin-inline: auto;
  padding: clamp(8rem, 12vw, 12rem) 0;
  border-top: 1px solid var(--line);
}

.section-number {
  position: absolute;
  top: 3rem;
  left: 0;
  color: rgba(242, 237, 227, 0.08);
  font-family: var(--font-en);
  font-size: 5.2rem;
  font-weight: 400;
  line-height: 1;
}

.section-heading {
  max-width: 870px;
}

.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.9rem, 5.6vw, 6.5rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.052em;
}

.section-heading h2 em,
.contact h2 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.65fr);
  gap: clamp(5rem, 9vw, 10rem);
  margin-top: clamp(4.5rem, 7vw, 7rem);
}

.about-statement {
  position: relative;
  padding-right: 2rem;
}

.about-statement::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  right: 0;
  width: 1px;
  height: 70px;
  background: linear-gradient(var(--gold), transparent);
}

.about-statement p {
  margin: 0;
  color: #aaa7a1;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  font-weight: 300;
  line-height: 2.15;
}

.about-statement p + p {
  margin-top: 2rem;
}

.about-statement strong {
  color: var(--ivory);
  font-weight: 500;
}

.about-facts {
  display: grid;
}

.about-facts article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.about-facts article:first-child {
  padding-top: 0;
}

.about-facts article > span {
  color: var(--gold);
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.about-facts strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 500;
}

.about-facts p {
  margin: 0.32rem 0 0;
  color: var(--faint);
  font-size: 0.76rem;
  line-height: 1.8;
}

.expertise {
  width: auto;
  padding-inline: max(48px, calc((100vw - 1380px) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent),
    var(--ink-soft);
}

.expertise .section-number {
  left: max(48px, calc((100vw - 1380px) / 2));
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(4.5rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.expertise-card {
  position: relative;
  min-height: 300px;
  padding: 2rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.008);
  transition:
    background 240ms ease,
    translate 240ms ease;
}

.expertise-card:hover {
  z-index: 1;
  translate: 0 -5px;
  background: rgba(197, 164, 109, 0.045);
}

.card-index {
  color: var(--faint);
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
}

.card-signal {
  width: 36px;
  height: 1px;
  margin: 3.2rem 0 1.4rem;
  background: var(--gold-soft);
  transition: width 240ms ease;
}

.expertise-card:hover .card-signal {
  width: 72px;
  background: var(--gold);
}

.expertise-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
}

.expertise-card p {
  margin: 0.8rem 0 0;
  color: #777773;
  font-size: 0.82rem;
  line-height: 1.95;
}

.expertise-card::after {
  content: "";
  position: absolute;
  left: -50px;
  bottom: -50px;
  width: 110px;
  aspect-ratio: 1;
  border: 1px solid rgba(197, 164, 109, 0.11);
  border-radius: 50%;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: clamp(4.5rem, 7vw, 7rem);
  background: var(--line);
}

.venture {
  position: relative;
  min-height: 470px;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  background: var(--ink);
}

.venture-primary {
  background:
    radial-gradient(circle at 85% 12%, rgba(197, 164, 109, 0.09), transparent 18rem),
    #0a0d12;
}

.venture::after {
  content: "";
  position: absolute;
  bottom: -170px;
  left: -100px;
  width: 320px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
  rotate: 25deg;
}

.venture-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold);
  font-size: 0.64rem;
}

.venture-type {
  color: var(--faint);
  font-family: var(--font-en);
  letter-spacing: 0.14em;
}

.venture h3 {
  margin: 5rem 0 1.2rem;
  direction: ltr;
  color: var(--ivory);
  font-family: var(--font-en);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
  text-align: right;
}

.venture p {
  max-width: 570px;
  margin: 0;
  color: #8b8984;
  font-size: 0.92rem;
  line-height: 2.05;
}

.venture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.venture-tags span {
  padding: 0.38rem 0.72rem;
  border: 1px solid var(--line);
  color: #8d8a84;
  font-size: 0.65rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2.2rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--gold-soft);
  color: var(--gold);
  font-size: 0.76rem;
}

.principle {
  position: relative;
  margin-top: clamp(6rem, 10vw, 10rem);
  padding: 4rem clamp(2rem, 6vw, 7rem);
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(197, 164, 109, 0.045), transparent 60%);
}

.principle::after {
  content: "“";
  position: absolute;
  top: -2rem;
  left: 3rem;
  color: rgba(197, 164, 109, 0.16);
  font-family: Georgia, serif;
  font-size: 10rem;
  line-height: 1;
}

.principle blockquote {
  max-width: 970px;
  margin: 0;
  font-size: clamp(1.8rem, 3.3vw, 3.4rem);
  font-weight: 300;
  line-height: 1.55;
}

.principle blockquote strong {
  display: block;
  color: var(--gold);
  font-weight: 400;
}

.contact {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  padding: clamp(8rem, 12vw, 12rem) max(48px, calc((100vw - 1380px) / 2));
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.7fr);
  gap: clamp(5rem, 9vw, 10rem);
  align-items: center;
  border-top: 1px solid var(--line);
  background: #090c11;
}

.contact-pattern {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 10% 50%, #000, transparent 50%);
}

.contact-orbit {
  position: absolute;
  z-index: -1;
  left: -24vw;
  bottom: -50%;
  width: min(70vw, 920px);
  aspect-ratio: 1;
  border: 1px solid rgba(197, 164, 109, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(197, 164, 109, 0.018),
    0 0 0 160px rgba(197, 164, 109, 0.012);
}

.contact-copy > p:last-child {
  max-width: 680px;
  margin: 2rem 0 0;
  color: #85837e;
  font-size: 0.95rem;
  line-height: 2;
}

.contact-actions {
  display: grid;
  gap: 1rem;
}

.email-card,
.pgp-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 118px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  transition:
    border-color 200ms ease,
    background 200ms ease,
    translate 200ms ease;
}

.email-card:hover,
.email-card:focus-visible,
.pgp-card:hover,
.pgp-card:focus-visible {
  translate: -5px 0;
  border-color: var(--gold-soft);
  background: rgba(197, 164, 109, 0.04);
}

.email-card {
  display: grid;
}

.email-card strong {
  color: var(--ivory);
  font-family: var(--font-en);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.email-card > span {
  position: absolute;
  left: 1.5rem;
  color: var(--gold);
  font-family: var(--font-en);
}

.pgp-card strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.download-mark {
  display: grid;
  width: 46px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-en);
}

.file-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.2rem 0 0;
  color: var(--faint);
  font-size: 0.66rem;
}

.file-note b {
  color: #8b8983;
  font-family: var(--font-en);
  font-weight: 500;
}

.site-footer {
  width: var(--page);
  min-height: 152px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer > div {
  display: grid;
}

.site-footer strong {
  font-size: 0.9rem;
  font-weight: 500;
}

.site-footer > div span {
  color: var(--faint);
  font-size: 0.62rem;
}

.site-footer p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--faint);
  direction: ltr;
  font-family: var(--font-en);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.site-footer p i {
  width: 26px;
  height: 1px;
  background: var(--line-strong);
}

.site-footer p b {
  font-weight: 400;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1100px) {
  :root {
    --page: min(100% - 56px, 940px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 150px 28px 100px;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.64fr);
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(4.8rem, 11vw, 7.4rem);
  }

  .about-layout {
    gap: 4rem;
  }

  .expertise {
    padding-inline: 28px;
  }

  .expertise .section-number {
    left: 28px;
  }

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

  .contact {
    padding-inline: 28px;
    gap: 4rem;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100% - 40px);
  }

  .site-header {
    min-height: 82px;
  }

  .brand-copy {
    display: none;
  }

  .hero {
    padding: 122px 20px 96px;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-grid {
    background-size: 48px 48px;
  }

  .radar-a {
    top: 8%;
    right: -58vw;
    width: 120vw;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 25vw, 7rem);
  }

  .hero-role {
    font-size: 1.06rem;
  }

  .hero-intro {
    font-size: 0.92rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

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

  .hero-meta div + div {
    padding: 1rem 0 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .identity-panel {
    width: 100%;
    justify-self: stretch;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 7rem 0;
  }

  .section-number {
    top: 2rem;
    font-size: 3.2rem;
  }

  .section-heading h2,
  .contact h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .about-layout,
  .journey-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 3.4rem;
    margin-top: 3.5rem;
  }

  .about-statement {
    padding-right: 1.25rem;
  }

  .about-statement p {
    font-size: 1rem;
  }

  .about-facts article {
    grid-template-columns: 58px 1fr;
  }

  .expertise {
    padding: 7rem 20px;
  }

  .expertise .section-number {
    left: 20px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }

  .expertise-card {
    min-height: 250px;
  }

  .venture {
    min-height: 420px;
    padding: 2rem;
  }

  .venture h3 {
    margin-top: 4.3rem;
  }

  .principle {
    padding: 2.4rem 1.4rem;
  }

  .principle::after {
    left: 1rem;
  }

  .contact {
    min-height: auto;
    padding: 7rem 20px;
  }

  .contact-actions {
    margin-top: 1rem;
  }

  .site-footer {
    min-height: 170px;
    padding: 2rem 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
