:root {
  --apple-bg-white: #ffffff;
  --apple-bg-gray: #f5f5f7;
  --apple-bg-dark: #0b0c0d;
  --apple-text: #1d1d1f;
  --apple-text-secondary: #6e6e73;
  --apple-text-on-dark: #f5f5f7;
  --apple-green: #4bd66a;
  --apple-green-dark: #21823a;
  --apple-line: rgba(29, 29, 31, 0.14);
  --apple-line-dark: rgba(255, 255, 255, 0.22);
  --apple-section-gap: 120px;
  --apple-section-gap-sm: 80px;
  --apple-content-width: 1100px;
  --apple-content-wide: 1280px;
  --apple-radius: 8px;
  --font-display: "SF Pro Display", "SF Pro SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  --font-text: "SF Pro Text", "SF Pro SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  color-scheme: light;
  background: var(--apple-bg-white);
  overflow: hidden;
}

body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--apple-text);
  background: var(--apple-bg-white);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.53;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection,
body *::selection {
  color: #07180b;
  background: #a8efb5;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--apple-green);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--apple-text);
  background: var(--apple-bg-white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-170%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 900;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--apple-green);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.content-width {
  width: min(calc(100% - 64px), var(--apple-content-width));
  margin-inline: auto;
}

.section {
  padding-block: var(--apple-section-gap);
}

.page-scroller {
  width: 100%;
  height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(110, 110, 115, 0.55) transparent;
}

.page-scroller::-webkit-scrollbar {
  width: 5px;
}

.page-scroller::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: rgba(110, 110, 115, 0.5);
}

.page-scroller.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}

.panel {
  position: relative;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (min-width: 734px) and (pointer: fine) {
  .page-scroller {
    cursor: grab;
  }

  .page-scroller a,
  .page-scroller button {
    cursor: pointer;
  }
}

.section-label,
.eyebrow,
.now-kicker {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--apple-green-dark);
}

.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section-label--light {
  color: var(--apple-green);
}

/* Navigation */
.site-header {
  position: fixed;
  z-index: 800;
  top: 12px;
  left: 50%;
  width: min(calc(100% - 32px), 980px);
  height: var(--header-height);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  background: rgba(10, 12, 13, 0.28);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  transform: translateX(-50%);
  transition: color 280ms ease, background 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.site-header.is-light {
  color: var(--apple-text);
  border-color: rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.08);
}

.site-header.is-light .brand img {
  border-color: rgba(29, 29, 31, 0.12);
}

.site-nav {
  height: 100%;
  padding-inline: 14px 12px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a,
.nav-contact {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.nav-links a:hover,
.nav-contact:hover {
  opacity: 0.62;
}

.nav-contact {
  justify-self: end;
}

/* Hero */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  max-height: none;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--apple-bg-dark);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  filter: saturate(0.92) contrast(1.03);
  transform: translate3d(0, var(--hero-y, 0), 0) scale(1.06);
  transition: transform 1.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 1.2s ease;
  will-change: transform;
}

.js.is-ready .hero-media img {
  filter: saturate(1) contrast(1.01);
  transform: translate3d(0, var(--hero-y, 0), 0) scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 8, 5, 0.74) 0%, rgba(3, 8, 5, 0.36) 44%, rgba(3, 8, 5, 0.06) 72%),
    linear-gradient(0deg, rgba(3, 5, 4, 0.65) 0%, transparent 47%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 76px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow span {
  width: 7px;
  height: 7px;
  background: var(--apple-green);
  box-shadow: 0 0 18px rgba(75, 214, 106, 0.85);
}

.hero h1 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 86px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-tagline {
  margin-top: 18px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.22;
}

.hero-role {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
}

.hero-role strong {
  margin-right: 9px;
  color: var(--apple-green);
  font-size: 11px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-link,
.plain-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.primary-link {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 980px;
  color: #07180b;
  background: var(--apple-green);
  transition: background 180ms ease, transform 180ms ease;
}

.primary-link:hover {
  background: #74e489;
  transform: translateY(-2px);
}

.plain-link span,
.primary-link span {
  transition: transform 180ms ease;
}

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

.primary-link:hover span {
  transform: translateY(3px);
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 25px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 700;
}

.js .hero-reveal {
  opacity: 0;
  transform: translateY(24px);
}

.js.is-ready .hero-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js.is-ready .hero-reveal:nth-child(2) { transition-delay: 90ms; }
.js.is-ready .hero-reveal:nth-child(3) { transition-delay: 180ms; }
.js.is-ready .hero-reveal:nth-child(4) { transition-delay: 270ms; }
.js.is-ready .hero-reveal:nth-child(5) { transition-delay: 360ms; }

/* Intro */
.intro {
  min-height: 100svh;
  padding-block: 96px 54px;
  display: flex;
  align-items: center;
  background: var(--apple-bg-white);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 64px;
}

.intro-copy {
  min-width: 0;
}

.intro h2,
.connect h2 {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.intro h2 {
  margin-top: 32px;
}

.intro-body {
  margin-top: 38px;
}

.intro-body p:first-child {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.55;
}

.intro-body p + p {
  margin-top: 20px;
  color: var(--apple-text-secondary);
  font-size: 16px;
}

.wide-media {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.media-clip {
  height: 520px;
  overflow: hidden;
  border-radius: var(--apple-radius);
  background: #edceda;
}

.media-clip img {
  width: 100%;
  height: calc(100% + 80px);
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--parallax-y, -40px), 0) scale(1.01);
  will-change: transform;
}

.wide-media figcaption {
  padding: 14px 2px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--apple-text-secondary);
  font-size: 11px;
  font-weight: 600;
}

/* Focus */
.focus {
  min-height: 100svh;
  padding-block: 100px 46px;
  display: flex;
  align-items: center;
  background: var(--apple-bg-gray);
}

.focus-heading {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 60px;
}

.focus-heading h2 {
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.focus-heading > p {
  padding-bottom: 8px;
  color: var(--apple-text-secondary);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.focus-list {
  margin-top: 64px;
  border-top: 1px solid var(--apple-line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.focus-item {
  min-width: 0;
  min-height: 260px;
  padding: 24px 32px 12px;
  border-left: 1px solid var(--apple-line);
  display: flex;
  flex-direction: column;
}

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

.focus-number {
  color: var(--apple-green-dark);
  font-size: 12px;
  font-weight: 700;
}

.focus-item h3 {
  margin-top: 58px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.22;
}

.focus-item h3 span {
  color: var(--apple-text-secondary);
  font-size: 15px;
  font-weight: 500;
}

.focus-item > p:last-child {
  margin-top: auto;
  max-width: 250px;
  color: var(--apple-text-secondary);
  font-size: 15px;
}

/* Current role */
.now {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--apple-text-on-dark);
  background: var(--apple-bg-dark);
}

.now-media,
.now-overlay {
  position: absolute;
  inset: 0;
}

.now-media img {
  width: 100%;
  height: calc(100% + 100px);
  object-fit: cover;
  object-position: 50% 50%;
  transform: translate3d(0, var(--parallax-y, -50px), 0) scale(1.03);
  filter: saturate(0.78) brightness(0.62);
  will-change: transform;
}

.now-overlay {
  background:
    linear-gradient(90deg, rgba(3, 8, 14, 0.86) 0%, rgba(3, 8, 14, 0.54) 52%, rgba(3, 8, 14, 0.16) 100%),
    linear-gradient(0deg, rgba(3, 8, 14, 0.48), transparent 52%);
}

.now-content {
  position: relative;
  z-index: 2;
  padding-block: 120px;
}

.now-kicker {
  margin-top: 94px;
  color: rgba(255, 255, 255, 0.55);
}

.now h2 {
  max-width: 780px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 78px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.now-copy {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.6;
}

.now-copy span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  font-weight: 400;
}

/* Links */
.connect {
  min-height: 100svh;
  padding-top: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--apple-bg-white);
}

.connect-content {
  padding-bottom: 38px;
}

.connect h2 {
  margin-top: 32px;
}

.link-list {
  margin-top: 44px;
  border-top: 1px solid var(--apple-line);
}

.link-list a {
  min-height: 88px;
  padding: 18px 2px;
  border-bottom: 1px solid var(--apple-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  text-decoration: none;
}

.link-list a > span {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 28px;
}

.link-list strong {
  min-width: 150px;
  font-size: 25px;
  font-weight: 700;
}

.link-list small {
  color: var(--apple-text-secondary);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.link-list i {
  width: 36px;
  height: 36px;
  border: 1px solid var(--apple-line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 16px;
  font-style: normal;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.link-list a:hover i {
  color: #fff;
  border-color: var(--apple-green-dark);
  background: var(--apple-green-dark);
  transform: translate(3px, -3px);
}

/* Footer */
.site-footer {
  flex: 0 0 auto;
  padding-block: 28px;
  color: #a1a1a6;
  background: var(--apple-bg-dark);
  font-size: 11px;
}

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

.image-credit {
  text-align: center;
}

.site-footer a {
  color: #d2d2d7;
  text-decoration: none;
}

/* Scroll reveal */
.js .reveal,
.js .reveal-media {
  opacity: 0;
  transform: translateY(34px);
}

.js .reveal-media {
  transform: translateY(42px) scale(0.985);
}

.js .reveal.is-visible,
.js .reveal-media.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 760ms ease var(--reveal-delay, 0ms),
    transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}

@media (min-width: 1440px) {
  .content-width {
    width: min(calc(100% - 80px), 1200px);
  }

  .hero h1 {
    font-size: 94px;
  }

  .intro h2,
  .connect h2 {
    font-size: 78px;
  }
}

@media (max-width: 1067px) {
  :root {
    --apple-section-gap: 96px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .intro-layout,
  .focus-heading {
    gap: 44px;
  }

  .intro-layout {
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  }

  .intro h2,
  .connect h2,
  .focus-heading h2 {
    font-size: 58px;
  }

  .media-clip {
    height: 470px;
  }

  .focus-item {
    padding-inline: 24px;
  }

  .now {
    min-height: 100svh;
  }

  .now h2 {
    font-size: 64px;
  }
}

@media (max-width: 733px) {
  :root {
    --apple-section-gap: 72px;
    --header-height: 56px;
  }

  body {
    font-size: 16px;
  }

  .page-scroller {
    scroll-snap-type: y proximity;
  }

  .content-width {
    width: calc(100% - 40px);
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .site-nav {
    padding-inline: 11px 12px;
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

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

  .brand span {
    font-size: 13px;
  }

  .nav-links {
    display: none;
  }

  .nav-contact {
    font-size: 12px;
  }

  .hero {
    height: 100svh;
    min-height: 560px;
  }

  .hero-media img {
    object-position: 59% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(3, 8, 5, 0.86) 0%, rgba(3, 8, 5, 0.2) 66%),
      linear-gradient(90deg, rgba(3, 8, 5, 0.35) 0%, transparent 75%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 32%);
  }

  .hero-content {
    padding-bottom: 46px;
  }

  .hero h1 {
    margin-top: 13px;
    font-size: 50px;
  }

  .hero-tagline {
    margin-top: 14px;
    font-size: 27px;
  }

  .hero-role {
    max-width: 290px;
    margin-top: 18px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 20px;
  }

  .primary-link {
    min-height: 42px;
    padding-inline: 17px;
  }

  .hero-caption {
    display: none;
  }

  .intro {
    min-height: 100svh;
    padding-block: 86px 38px;
    align-items: flex-start;
  }

  .intro-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-copy {
    margin: 0;
  }

  .focus-heading {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro h2,
  .connect h2,
  .focus-heading h2 {
    font-size: 44px;
  }

  .intro-body p:first-child {
    font-size: 19px;
  }

  .wide-media {
    width: 100%;
  }

  .media-clip {
    height: 240px;
  }

  .media-clip img {
    object-position: 61% center;
  }

  .wide-media figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .focus-heading > p {
    font-size: 17px;
  }

  .focus-list {
    margin-top: 54px;
    grid-template-columns: 1fr;
  }

  .focus-item,
  .focus-item:first-child {
    min-height: 220px;
    padding: 22px 0 24px;
    border-left: 0;
    border-bottom: 1px solid var(--apple-line);
  }

  .focus-item h3 {
    margin-top: 38px;
  }

  .focus-item > p:last-child {
    margin-top: 28px;
  }

  .now {
    min-height: 100svh;
    align-items: flex-end;
  }

  .now-media img {
    object-position: 55% center;
  }

  .now-overlay {
    background:
      linear-gradient(0deg, rgba(3, 8, 14, 0.9) 0%, rgba(3, 8, 14, 0.28) 72%),
      linear-gradient(90deg, rgba(3, 8, 14, 0.42), transparent 80%);
  }

  .now-content {
    padding-block: 82px 68px;
  }

  .now-kicker {
    margin-top: 78px;
  }

  .now h2 {
    margin-top: 15px;
    font-size: 47px;
  }

  .now-copy {
    margin-top: 26px;
    font-size: 18px;
  }

  .link-list {
    margin-top: 38px;
  }

  .link-list a {
    min-height: 78px;
    gap: 16px;
  }

  .link-list a > span {
    display: block;
  }

  .link-list strong {
    min-width: 0;
    display: block;
    font-size: 21px;
  }

  .link-list small {
    margin-top: 3px;
    display: block;
    font-size: 13px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 18px;
  }

  .image-credit {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
    line-height: 1.45;
  }

  .connect {
    min-height: 100svh;
    padding-top: 84px;
  }

  .connect-content {
    padding-bottom: 28px;
  }
}

@media (max-height: 800px) and (min-width: 734px) {
  .hero-content {
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero-tagline {
    font-size: 27px;
  }

  .intro,
  .focus {
    padding-block: 82px 32px;
  }

  .intro h2,
  .connect h2,
  .focus-heading h2 {
    font-size: 54px;
  }

  .intro-body {
    margin-top: 26px;
  }

  .intro-body p:first-child {
    font-size: 19px;
  }

  .media-clip {
    height: 410px;
  }

  .focus-heading {
    margin-top: 22px;
  }

  .focus-list {
    margin-top: 42px;
  }

  .focus-item {
    min-height: 210px;
  }

  .focus-item h3 {
    margin-top: 36px;
  }

  .now-content {
    padding-block: 88px 52px;
  }

  .now-kicker {
    margin-top: 58px;
  }

  .now h2 {
    font-size: 60px;
  }

  .connect {
    padding-top: 82px;
  }

  .connect h2 {
    margin-top: 22px;
  }

  .link-list {
    margin-top: 30px;
  }

  .link-list a {
    min-height: 70px;
  }

  .site-footer {
    padding-block: 20px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 44px;
  }

  .hero-tagline {
    font-size: 24px;
  }

  .hero-actions {
    gap: 14px;
  }

  .primary-link,
  .plain-link {
    font-size: 13px;
  }

  .intro h2,
  .connect h2,
  .focus-heading h2 {
    font-size: 39px;
  }

  .now h2 {
    font-size: 42px;
  }
}

@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;
  }

  .hero-media img,
  .media-clip img,
  .now-media img {
    transform: none !important;
  }

  .js .reveal,
  .js .reveal-media,
  .js .hero-reveal {
    opacity: 1;
    transform: none;
  }
}
