:root {
  --orange: #f15a29;
  --orange-dark: #d9461b;
  --orange-soft: #fff0e9;
  --ink: #101217;
  --muted: #697078;
  --paper: #f8f8f6;
  --white: #fff;
  --line: #e4e5e6;
  --dark: #111318;
  --radius: 26px;
  --container: 1180px;
  --shadow: 0 24px 70px rgba(16, 18, 23, .10);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden
}

body.nav-open {
  overflow: hidden
}

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

button,
input,
textarea {
  font: inherit
}

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

.container {
  width: min(var(--container), calc(100% - 56px));
  margin-inline: auto
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -60px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px
}

.skip-link:focus {
  top: 18px
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 248, 246, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 18, 23, .07);
  transition: .25s
}

.site-header.scrolled {
  box-shadow: 0 10px 35px rgba(0, 0, 0, .05)
}

.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  color: var(--orange);
  font-size: 20px
}

.brand-mark {
  font-size: 37px;
  line-height: 0;
  margin-left: -3px;
  transform: rotate(-20deg)
}

.brand small {
  position: absolute;
  left: 2px;
  top: 24px;
  white-space: nowrap;
  font-size: 6px;
  letter-spacing: .08em;
  color: var(--ink);
  font-weight: 700
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  font-weight: 700
}

.nav a {
  transition: .2s
}

.nav a:hover,
.nav a.active {
  color: var(--orange)
}

.nav-cta {
  color: #fff !important;
  background: var(--orange);
  padding: 13px 22px;
  border-radius: 7px;
  box-shadow: 0 10px 25px rgba(241, 90, 41, .18)
}

.nav-cta:hover {
  background: var(--orange-dark)
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 9px;
  cursor: pointer
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: .2s
}

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(16, 18, 23, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 18, 23, .035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent)
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 80px 0
}

.hero-copy {
  max-width: 620px
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .19em;
  margin-bottom: 17px
}

.hero h1 {
  font-family: Manrope, sans-serif;
  font-size: clamp(54px, 6.5vw, 90px);
  line-height: .96;
  letter-spacing: -.06em
}

.hero h1 em {
  font-style: normal;
  color: var(--orange)
}

.hero-lead {
  max-width: 510px;
  margin: 27px 0;
  color: var(--muted);
  font-size: 17px
}

.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  padding: 15px 22px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: .25s
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 13px 32px rgba(241, 90, 41, .22)
}

.btn-light {
  background: #fff;
  color: var(--ink)
}

.text-link {
  font-size: 15px;
  font-weight: 800
}

.text-link span {
  color: var(--orange);
  margin-left: 6px
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 52px
}

.hero-proof strong {
  font-family: Manrope, sans-serif;
  font-size: 31px;
  line-height: 1
}

.hero-proof span {
  font-size: 16px;
  line-height: 1.35;
  color: var(--muted)
}

.hero-visual {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.image-frame {
  position: relative;
  z-index: 2;
  width: min(460px, 90%);
  aspect-ratio: .86;
  overflow: hidden;
  border-radius: 200px 200px 28px 28px;
  background: #ddd;
  box-shadow: 25px 30px 80px rgba(16, 18, 23, .14)
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.orb {
  position: absolute;
  border-radius: 50%
}

.orb-one {
  width: 150px;
  height: 150px;
  background: var(--orange);
  top: 20px;
  left: 4px;
  z-index: 3
}

.orb-two {
  width: 310px;
  height: 310px;
  background: #ffe1d4;
  right: -55px;
  bottom: 5px
}

.floating-card {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(16, 18, 23, .13)
}

.card-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: 10px
}

.floating-card strong,
.floating-card small {
  display: block
}

.floating-card strong {
  font-size: 16px
}

.floating-card small {
  font-size: 16px;
  color: var(--muted)
}

.vertical-label {
  position: absolute;
  right: -45px;
  top: 42%;
  transform: rotate(90deg);
  font-size: 14px;
  letter-spacing: .25em;
  color: #a4a8ad
}

.section {
  padding: 120px 0
}

.white {
  background: #fff
}

.intro-grid {
  display: grid;
  grid-template-columns: 150px 1.2fr 1fr;
  gap: 45px;
  align-items: start
}

.section-number {
  font-size: 15px;
  font-weight: 800;
  color: var(--orange)
}

.section-number span {
  color: #9ca1a7;
  font-size: 14px;
  letter-spacing: .08em;
  margin-left: 6px
}

.intro h2,
.section-heading h2,
.page-hero h1 {
  font-family: Manrope, sans-serif;
  font-size: clamp(38px, 4vw, 59px);
  line-height: 1.04;
  letter-spacing: -.05em
}

.intro h2 span,
.section-heading h2 span,
.page-hero h1 span {
  color: var(--orange)
}

.intro-text,
.rich-copy {
  color: var(--muted);
  font-size: 16px
}

.intro-text p+p,
.rich-copy p+p {
  margin-top: 18px
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 55px
}

.section-heading>p {
  max-width: 360px;
  color: var(--muted);
  font-size: 16px
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.feature-card {
  min-height: 390px;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  position: relative;
  transition: .35s
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow)
}

.feature-card.featured {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange)
}

.feature-no {
  position: absolute;
  right: 30px;
  top: 27px;
  font-size: 14px;
  opacity: .55
}

.feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 27px;
  margin-bottom: 85px
}

.featured .feature-icon {
  background: rgba(255, 255, 255, .18);
  color: #fff
}

.feature-card h3 {
  font-family: Manrope, sans-serif;
  font-size: 21px;
  line-height: 1.15;
  margin-bottom: 14px
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
  max-width: 300px
}

.featured p {
  color: rgba(255, 255, 255, .82)
}

.feature-card a {
  position: absolute;
  bottom: 31px;
  font-size: 14px;
  font-weight: 800
}

.feature-card a span {
  color: var(--orange)
}

.featured a {
  color: #fff
}

.featured a span {
  color: #fff
}

.tech-band {
  background: var(--dark);
  color: #fff;
  padding: 48px 0
}

.tech-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px
}

.tech-inner .eyebrow {
  margin: 0;
  color: #ff946f
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px
}

.tech-list span {
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: #d8dade;
  font-size: 14px
}

.stats {
  background: #fff;
  padding: 70px 0
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.stat {
  padding: 30px 20px;
  border-right: 1px solid var(--line)
}

.stat:last-child {
  border-right: 0
}

.stat strong {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 42px;
  letter-spacing: -.05em
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 5px
}

.events {
  background: #fff
}

.event-grid {
  border-top: 1px solid var(--line)
}

.event {
  display: grid;
  grid-template-columns: 170px 1fr 50px;
  align-items: center;
  gap: 35px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line)
}

.event time {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--orange);
  font-size: 16px;
  font-weight: 800
}

.event time b {
  font-family: Manrope, sans-serif;
  font-size: 42px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.05em
}

.event p {
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .15em
}

.event h3 {
  font-family: Manrope, sans-serif;
  font-size: 19px
}

.event span {
  color: var(--muted);
  font-size: 14px
}

.event>a,
.circle-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: .2s
}

.event>a:hover,
.circle-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff
}

.cta {
  background: var(--orange);
  color: #fff;
  padding: 90px 0
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px
}

.cta .eyebrow {
  color: rgba(255, 255, 255, .65)
}

.cta h2 {
  font-family: Manrope, sans-serif;
  font-size: clamp(40px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.05em
}

.cta h2 span {
  color: #ffd4c5
}

.footer {
  background: var(--dark);
  color: #fff;
  padding: 70px 0 25px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 65px
}

.footer-brand {
  color: #fff
}

.footer-grid>div:first-child p {
  color: #8e949b;
  font-size: 14px;
  margin-top: 20px
}

.footer h4 {
  font-size: 16px;
  color: #8e949b;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 18px
}

.footer a:not(.brand) {
  display: block;
  color: #d8dade;
  font-size: 14px;
  margin: 10px 0
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  color: #70767e;
  font-size: 14px
}

.page-hero {
  padding: 125px 0 100px;
  background: #fff;
  position: relative;
  overflow: hidden
}

.page-hero:after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--orange-soft);
  right: -120px;
  top: -120px
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px
}

.page-hero h1 {
  font-size: clamp(48px, 7vw, 82px);
  max-width: 900px
}

.page-hero p:last-child {
  max-width: 650px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 16px
}

.section-kicker {
  color: var(--orange);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 18px
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px
}

.split-grid h2 {
  font-family: Manrope, sans-serif;
  font-size: clamp(35px, 4vw, 55px);
  line-height: 1.05;
  letter-spacing: -.05em
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.principles-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  min-height: 280px
}

.principles-grid span {
  color: var(--orange);
  font-weight: 800;
  font-size: 14px
}

.principles-grid h3 {
  font-family: Manrope, sans-serif;
  font-size: 24px;
  margin: 70px 0 12px
}

.principles-grid p {
  color: var(--muted);
  font-size: 16px
}

.dark-panel {
  background: var(--dark);
  color: #fff;
  padding: 100px 0
}

.dark-panel-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px
}

.dark-panel h2 {
  font-family: Manrope, sans-serif;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1;
  letter-spacing: -.05em;
  max-width: 750px
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.program-card {
  position: relative;
  padding: 38px;
  min-height: 330px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: .3s
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.program-card>span {
  font-size: 14px;
  color: var(--orange);
  font-weight: 800
}

.program-card h2 {
  font-family: Manrope, sans-serif;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 75px 0 12px
}

.program-card p {
  max-width: 430px;
  color: var(--muted);
  font-size: 16px
}

.program-card a {
  position: absolute;
  left: 38px;
  bottom: 30px;
  font-size: 14px;
  font-weight: 800
}

.program-card a b {
  color: var(--orange);
  margin-left: 5px
}

.soft-section {
  background: var(--orange-soft)
}

.event-page-list {
  border-top: 1px solid var(--line)
}

.event-large {
  display: grid;
  grid-template-columns: 110px 1fr 50px;
  align-items: center;
  gap: 40px;
  padding: 50px 0;
  border-bottom: 1px solid var(--line)
}

.event-index {
  font-family: Manrope, sans-serif;
  font-size: 48px;
  letter-spacing: -.06em;
  color: var(--orange)
}

.event-large h2 {
  font-family: Manrope, sans-serif;
  font-size: clamp(28px, 3vw, 45px);
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 12px
}

.event-large p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  max-width: 600px
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding-bottom: 32px;
  transition: .3s
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.blog-art {
  height: 220px;
  background: var(--dark);
  color: var(--orange);
  font-family: Manrope, sans-serif;
  font-size: 90px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  letter-spacing: -.08em
}

.blog-card>.eyebrow,
.blog-card>h2,
.blog-card>p:not(.eyebrow),
.blog-card>a {
  margin-left: 28px;
  margin-right: 28px
}

.blog-card>.eyebrow {
  margin-top: 27px
}

.blog-card h2 {
  font-family: Manrope, sans-serif;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -.03em
}

.blog-card>p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  margin-top: 13px
}

.blog-card>a {
  display: block;
  margin-top: 25px;
  font-size: 14px;
  font-weight: 800
}

.blog-card>a span {
  color: var(--orange)
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px
}

.contact-intro h2 {
  font-family: Manrope, sans-serif;
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1;
  letter-spacing: -.05em
}

.contact-intro h2 span {
  color: var(--orange)
}

.contact-intro>p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  margin-top: 25px
}

.contact-detail {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  margin-top: 28px
}

.contact-detail span {
  display: block;
  color: #8a9096;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .15em
}

.contact-detail a {
  font-weight: 700;
  font-size: 16px
}

.contact-form {
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 22px
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid #dfe1e3;
  background: #fbfbfa;
  border-radius: 8px;
  padding: 13px 14px;
  outline: 0;
  transition: .2s
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(241, 90, 41, .1)
}

.contact-form textarea {
  resize: vertical
}

.form-note {
  margin-top: 14px;
  color: #8b9197;
  font-size: 14px
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .75s ease forwards
}

.reveal-delay {
  animation-delay: .12s
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: none
  }
}

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

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

  .btn,
  .feature-card,
  .program-card,
  .blog-card {
    transition: none
  }
}

@media(max-width:950px) {
  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12)
  }

  .nav.open {
    display: flex
  }

  .nav a {
    padding: 12px 8px
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px
  }

  .menu-toggle {
    display: block
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 55px
  }

  .hero-copy {
    text-align: center;
    margin: auto
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto
  }

  .hero-actions,
  .hero-proof {
    justify-content: center
  }

  .hero-visual {
    min-height: 480px
  }

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

  .feature-grid,
  .principles-grid,
  .blog-grid {
    grid-template-columns: 1fr
  }

  .tech-inner,
  .cta-inner,
  .dark-panel-inner {
    flex-direction: column;
    align-items: flex-start
  }

  .tech-list {
    justify-content: flex-start
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stat:nth-child(2) {
    border-right: 0
  }

  .stat {
    border-bottom: 1px solid var(--line)
  }

  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px
  }

  .program-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px
  }

  .footer-grid>div:first-child {
    grid-column: 1/-1
  }
}

@media(max-width:600px) {
  .container {
    width: min(calc(100% - 34px), var(--container))
  }

  .nav-wrap {
    height: 72px
  }

  .hero {
    min-height: auto
  }

  .hero h1 {
    font-size: 50px
  }

  .hero-inner {
    gap: 25px
  }

  .hero-visual {
    min-height: 400px
  }

  .image-frame {
    width: 82%
  }

  .orb-one {
    width: 105px;
    height: 105px;
    left: 0
  }

  .floating-card {
    left: 0;
    bottom: 10px
  }

  .vertical-label {
    display: none
  }

  .section {
    padding: 80px 0
  }

  .page-hero {
    padding: 90px 0 75px
  }

  .page-hero h1 {
    font-size: 48px
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 35px
  }

  .event {
    grid-template-columns: 1fr 40px;
    gap: 15px
  }

  .event time {
    grid-column: 1/-1
  }

  .event>div {
    grid-column: 1
  }

  .event>a {
    grid-column: 2;
    grid-row: 2
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr
  }

  .stat {
    padding: 25px 14px
  }

  .stat strong {
    font-size: 33px
  }

  .event-large {
    grid-template-columns: 55px 1fr 40px;
    gap: 15px;
    padding: 35px 0
  }

  .event-index {
    font-size: 34px
  }

  .program-card h2 {
    margin-top: 55px;
    font-size: 27px
  }

  .contact-form {
    padding: 25px
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px
  }

  .footer {
    padding-top: 55px
  }
}