:root {
  --ink: #171714;
  --muted: #6c6c63;
  --paper: #f5f3eb;
  --paper-deep: #e9e5d9;
  --lime: #d9ff43;
  --violet: #6c5ce7;
  --violet-light: #c9c1ff;
  --coral: #ff785a;
  --line: rgba(23, 23, 20, 0.14);
  --radius: 28px;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.1), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.section {
  padding: 120px max(5vw, calc((100vw - 1400px) / 2));
  position: relative;
}

.site-header {
  width: calc(100% - 48px);
  max-width: 1400px;
  height: 72px;
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  background: rgba(245, 243, 235, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(23, 23, 20, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a,
.footer-links a {
  transition: opacity 0.2s ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  opacity: 0.55;
}

.nav-cta {
  justify-self: end;
  padding: 11px 17px;
  border-radius: 12px;
  color: white;
  background: var(--ink);
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--violet);
}

.nav-cta span {
  margin-left: 8px;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  min-height: 100vh;
  padding-top: 180px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 5vw;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 6px rgba(108, 92, 231, 0.13);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 10px rgba(108, 92, 231, 0); }
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6.7vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 600;
}

.role-word-wrap {
  display: block;
  height: 1.04em;
  overflow: hidden;
  color: var(--violet);
}

.role-word {
  display: block;
  transform-origin: left bottom;
}

.role-word.swap-out {
  animation: swapOut 0.45s ease forwards;
}

.role-word.swap-in {
  animation: swapIn 0.55s cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

@keyframes swapOut {
  to { transform: translateY(-110%) rotate(-2deg); opacity: 0; }
}

@keyframes swapIn {
  from { transform: translateY(110%) rotate(2deg); opacity: 0; }
  to { transform: translateY(0) rotate(0); opacity: 1; }
}

.hero-lede {
  max-width: 590px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.5;
}

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

.button {
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 0;
  border-radius: 15px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 15px 30px rgba(23, 23, 20, 0.15);
}

.button-primary:hover {
  background: var(--violet);
  box-shadow: 0 18px 35px rgba(108, 92, 231, 0.22);
}

.button-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
}

.text-link {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
}

.text-link span {
  margin-left: 6px;
}

.hero-visual {
  min-height: 600px;
  display: grid;
  place-items: center;
  position: relative;
}

.orbit {
  width: min(42vw, 590px);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: -4%;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(217, 255, 67, 0.55), rgba(201, 193, 255, 0.38));
  filter: blur(1px);
}

.portrait-frame {
  width: 73%;
  height: 92%;
  z-index: 2;
  position: relative;
  border: 7px solid rgba(255, 255, 255, 0.75);
  border-radius: 48% 48% 34px 34px;
  background: #d5d0c2;
  box-shadow: 0 35px 90px rgba(23, 23, 20, 0.18);
  overflow: hidden;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 42%;
}

.portrait-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 13px 18px;
  color: var(--ink);
  border-radius: 14px;
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(23, 23, 20, 0.18);
  transform: rotate(-3deg);
}

.portrait-badge span {
  display: block;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portrait-badge strong {
  display: block;
  margin-top: 3px;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.orbit-chip {
  position: absolute;
  z-index: 3;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(23, 23, 20, 0.08);
  font-size: 13px;
  font-weight: 600;
  animation: float 5s ease-in-out infinite;
}

.orbit-chip span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  font-size: 11px;
}

.chip-sales { top: 7%; left: 39%; }
.chip-teachers { top: 28%; right: -3%; animation-delay: -1s; }
.chip-hr { bottom: 22%; right: 4%; animation-delay: -2s; }
.chip-students { bottom: 5%; left: 32%; animation-delay: -0.5s; }
.chip-marketing { bottom: 26%; left: -4%; animation-delay: -1.5s; }
.chip-families { top: 24%; left: 0; animation-delay: -2.5s; }

@keyframes float {
  50% { transform: translateY(-9px); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.orb-one {
  width: 280px;
  height: 280px;
  top: 10%;
  right: -80px;
  background: rgba(217, 255, 67, 0.28);
}

.orb-two {
  width: 350px;
  height: 350px;
  bottom: -180px;
  left: 25%;
  background: rgba(201, 193, 255, 0.22);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: max(5vw, calc((100vw - 1400px) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.statement {
  padding-bottom: 0;
  color: white;
  background: var(--ink);
  overflow: hidden;
}

.experience {
  background: var(--paper);
}

.experience-heading {
  max-width: 920px;
  margin-bottom: 58px;
}

.experience-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.experience-heading h2 span {
  color: var(--violet);
}

.experience-heading > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.event-reel {
  min-height: 700px;
  margin-bottom: 72px;
  padding: clamp(34px, 5vw, 72px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(45px, 8vw, 120px);
  color: white;
  border-radius: 36px;
  background:
    radial-gradient(circle at 78% 30%, rgba(108, 92, 231, 0.28), transparent 32%),
    var(--ink);
  overflow: hidden;
}

.event-reel-copy {
  position: relative;
  z-index: 2;
}

.event-label {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.event-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(255, 120, 90, 0.13);
}

.event-reel-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.event-reel-copy > p:not(.event-label) {
  max-width: 530px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
}

.event-tags {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.event-video-shell {
  width: min(100%, 430px);
  justify-self: center;
  position: relative;
}

.event-video-glow {
  position: absolute;
  inset: 18% -22%;
  border-radius: 50%;
  background: var(--violet);
  filter: blur(90px);
  opacity: 0.35;
}

.event-video-frame {
  aspect-ratio: 9 / 16;
  position: relative;
  border: 8px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: #0b0b0a;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  transform: rotate(2deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.event-reel:hover .event-video-frame {
  transform: rotate(0);
}

.event-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0b0b0a;
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 15px;
  border: 0;
  color: white;
  background: linear-gradient(transparent 35%, rgba(8, 8, 7, 0.52));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-play span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  font-size: 24px;
  transition: transform 0.25s ease;
}

.video-play:hover span {
  transform: scale(1.08);
}

.video-play strong {
  font-family: var(--display);
  font-size: 13px;
}

.event-video-frame.is-playing .video-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.event-video-caption {
  margin: 18px 4px 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.experience-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

.experience-photo {
  min-height: 280px;
  margin: 0;
  position: relative;
  border-radius: 25px;
  background: var(--paper-deep);
  overflow: hidden;
}

.experience-photo-main {
  grid-row: 1 / 3;
}

.experience-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.experience-photo-main img {
  object-position: 55% center;
}

.experience-photo:hover img {
  transform: scale(1.035);
}

.experience-photo::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(10, 10, 8, 0.75));
  pointer-events: none;
}

.experience-photo figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
}

.experience-photo figcaption span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-size: 9px;
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 6vw;
  padding-bottom: 120px;
}

.statement .section-kicker {
  color: var(--lime);
}

.statement h2 {
  max-width: 950px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.3vw, 80px);
  line-height: 1.07;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.statement h2 span {
  color: var(--violet-light);
  text-decoration: line-through;
  text-decoration-thickness: 4px;
}

.statement-copy > p {
  max-width: 660px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 20px;
}

.marquee {
  width: calc(100% + 10vw);
  margin-left: -5vw;
  padding: 24px 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
  transform: rotate(-1.2deg) translateY(10px);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  animation: marquee 24s linear infinite;
}

.marquee-track i {
  font-style: normal;
  color: var(--violet);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.section-heading h2,
.method-intro h2,
.about-copy h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.section-heading > p:last-child {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.role-card {
  min-height: 500px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  transform-style: preserve-3d;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.role-card:hover {
  box-shadow: 0 28px 70px rgba(23, 23, 20, 0.1);
  background: rgba(255, 255, 255, 0.75);
}

.role-card-featured {
  color: white;
  border-color: var(--violet);
  background: var(--violet);
}

.role-card-featured:hover {
  background: #7665ed;
}

.role-card-warm {
  background: #ffd9c9;
}

.role-card-warm:hover {
  background: #ffd0bc;
}

.role-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.role-number {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  opacity: 0.6;
}

.role-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 18px;
}

.role-for {
  margin: 0 0 3px;
  font-size: 13px;
  opacity: 0.62;
}

.role-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(27px, 2.4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.role-card h3 + p {
  margin: 17px 0 0;
  opacity: 0.68;
  line-height: 1.55;
}

.role-card ul {
  margin: 28px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.role-card li {
  padding: 7px 11px;
  border: 1px solid currentColor;
  border-radius: 99px;
  font-size: 11px;
  opacity: 0.7;
}

.role-card a {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.role-card a span {
  transition: transform 0.2s ease;
}

.role-card:hover a span {
  transform: translateX(4px);
}

.method {
  color: white;
  background: var(--violet);
}

.method-intro {
  max-width: 980px;
}

.method-intro .section-kicker {
  color: var(--lime);
}

.method-intro h2 span {
  color: var(--lime);
}

.method-intro > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
}

.method-steps {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.method-step {
  min-height: 340px;
  padding: 25px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.method-step:last-child {
  border-right: 0;
}

.method-step > span {
  font-size: 11px;
  opacity: 0.55;
}

.step-symbol {
  width: 65px;
  height: 65px;
  margin: 60px 0 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--lime);
  font-size: 24px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.method-step:hover .step-symbol {
  color: var(--ink);
  background: var(--lime);
  transform: rotate(8deg) scale(1.06);
}

.method-step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: -0.04em;
}

.method-step p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 14px;
  line-height: 1.55;
}

.impact {
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--violet);
}

.impact-card {
  min-height: 620px;
  padding: clamp(35px, 5vw, 75px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 8vw;
  color: white;
  border-radius: 38px;
  background: var(--ink);
  overflow: hidden;
}

.impact-copy .section-kicker {
  color: var(--lime);
}

.impact-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 4.5vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.impact-copy h2 em {
  color: var(--violet-light);
  font-style: normal;
}

.impact-copy > p {
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
}

.button-light {
  color: var(--ink);
  background: var(--lime);
}

.button-light:hover {
  background: white;
}

.workflow-demo {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

.demo-tabs {
  padding: 5px;
  display: flex;
  gap: 4px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
}

.demo-tab {
  flex: 1;
  padding: 10px;
  border: 0;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.demo-tab.active {
  color: var(--ink);
  background: white;
}

.demo-panel {
  padding: 35px 25px 20px;
}

.demo-task > span,
.time-row span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-task strong {
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 29px);
  letter-spacing: -0.035em;
}

.time-row {
  margin: 45px 0 30px;
  display: grid;
  grid-template-columns: 1fr auto 1.3fr;
  align-items: center;
  gap: 20px;
}

.time-row strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 45px);
  line-height: 1;
}

.time-arrow {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--lime);
}

.after-time {
  padding: 22px;
  border-radius: 16px;
  color: var(--ink);
  background: var(--lime);
}

.after-time span {
  color: rgba(23, 23, 20, 0.55);
}

.demo-outcome {
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.demo-outcome p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 12px;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 8vw;
}

.about-visual {
  min-height: 650px;
  position: relative;
}

.portrait-placeholder {
  height: 100%;
  min-height: 650px;
  padding: 25px;
  position: relative;
  display: flex;
  align-items: flex-end;
  border-radius: 35px;
  background: #a8a292;
  overflow: hidden;
}

.about-photo {
  padding: 0;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(12, 12, 10, 0.7));
}

.about-photo > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.portrait-copy {
  max-width: 250px;
  z-index: 2;
  position: absolute;
  left: 25px;
  bottom: 25px;
  padding: 17px;
  color: white;
  border-radius: 15px;
  background: rgba(23, 23, 20, 0.72);
  backdrop-filter: blur(10px);
}

.portrait-copy span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.portrait-copy p {
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.7;
}

.about-sticker {
  width: 145px;
  height: 145px;
  position: absolute;
  top: 50px;
  right: -45px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 18px 45px rgba(23, 23, 20, 0.16);
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transform: rotate(8deg);
}

.about-copy {
  max-width: 680px;
}

.about-lead {
  margin: 30px 0 20px;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.about-lead + p {
  color: var(--muted);
  font-size: 17px;
}

.principles {
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.principles div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  border-bottom: 1px solid var(--line);
}

.principles span {
  color: var(--violet);
  font-size: 11px;
  font-weight: 700;
}

.principles strong {
  font-family: var(--display);
  font-size: 16px;
}

.offers {
  background: var(--paper-deep);
}

.offer-list {
  border-top: 1px solid var(--line);
}

.offer-row {
  min-height: 120px;
  padding: 20px 10px;
  display: grid;
  grid-template-columns: 80px 1fr 0.9fr 60px;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.25s ease, background 0.25s ease;
}

.offer-row:hover {
  padding-left: 28px;
  padding-right: 28px;
  background: var(--lime);
}

.offer-number {
  color: var(--muted);
  font-size: 11px;
}

.offer-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 43px);
  letter-spacing: -0.045em;
}

.offer-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.offer-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.contact {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 8vw;
  color: white;
  background: var(--ink);
  overflow: hidden;
}

.contact-glow {
  width: 550px;
  height: 550px;
  position: absolute;
  left: -250px;
  bottom: -300px;
  border-radius: 50%;
  background: var(--violet);
  filter: blur(120px);
  opacity: 0.38;
}

.contact-copy {
  position: relative;
  z-index: 2;
}

.contact .section-kicker {
  color: var(--lime);
}

.contact h2 span {
  color: var(--lime);
}

.contact-copy > p:last-child {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}

.contact-form {
  position: relative;
  z-index: 2;
  padding: clamp(25px, 4vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.form-honeypot {
  width: 1px !important;
  height: 1px !important;
  position: absolute !important;
  left: -10000px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  margin-bottom: 22px;
  display: block;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  outline: 0;
  color: white;
  background: transparent;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.contact-form select {
  color-scheme: dark;
}

.contact-form textarea {
  resize: vertical;
}

.button-accent {
  width: 100%;
  color: var(--ink);
  background: var(--lime);
}

.button-accent:hover {
  background: white;
}

.button-accent:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  text-align: center;
}

.form-note.success {
  color: var(--lime);
}

.site-footer {
  padding: 45px max(5vw, calc((100vw - 1400px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: white;
}

.footer-brand .brand-mark {
  color: var(--ink);
  background: var(--lime);
}

.site-footer > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 25px;
  font-size: 12px;
}

.site-footer .copyright {
  grid-column: 1 / -1;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 170px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-visual {
    min-height: 650px;
  }

  .orbit {
    width: min(75vw, 620px);
  }

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

  .experience-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 440px 300px;
  }

  .event-reel {
    grid-template-columns: 1fr 0.85fr;
    gap: 50px;
  }

  .experience-photo-main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .method-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-step:nth-child(2) {
    border-right: 0;
  }

  .method-step:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .impact-card {
    grid-template-columns: 1fr;
  }

  .about {
    gap: 6vw;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 88px 22px;
  }

  .site-header {
    width: calc(100% - 24px);
    top: 10px;
    height: 62px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    width: 40px;
    height: 40px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--ink);
    transition: transform 0.25s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    padding: 120px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: white;
    background: var(--ink);
    transform: translateY(-105%);
    transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
  }

  .mobile-menu.open {
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 8px 0;
    font-family: var(--display);
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hero {
    padding-top: 145px;
    padding-bottom: 55px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .orbit {
    width: min(94vw, 430px);
  }

  .orbit-chip {
    padding: 7px 10px;
    font-size: 10px;
  }

  .orbit-chip span {
    width: 19px;
    height: 19px;
  }

  .scroll-cue {
    display: none;
  }

  .statement-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 85px;
  }

  .statement-copy > p {
    font-size: 17px;
  }

  .marquee {
    width: calc(100% + 44px);
    margin-left: -22px;
  }

  .role-grid {
    grid-template-columns: 1fr;
  }

  .experience-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 300px);
  }

  .event-reel {
    min-height: auto;
    margin-right: -4px;
    margin-bottom: 50px;
    margin-left: -4px;
    padding: 55px 26px 35px;
    grid-template-columns: 1fr;
    gap: 45px;
    border-radius: 28px;
  }

  .event-video-shell {
    width: min(100%, 330px);
  }

  .event-video-frame {
    border-width: 6px;
    border-radius: 25px;
    transform: rotate(0);
  }

  .video-play span {
    width: 66px;
    height: 66px;
  }

  .experience-photo-main {
    grid-column: auto;
  }

  .role-card {
    min-height: 470px;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .method-step {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .method-step:last-child {
    border-bottom: 0;
  }

  .method-step:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .step-symbol {
    margin: 35px 0 25px;
  }

  .impact {
    padding: 18px;
  }

  .impact-card {
    padding: 60px 22px;
    border-radius: 28px;
  }

  .time-row {
    grid-template-columns: 1fr;
  }

  .time-arrow {
    transform: rotate(90deg);
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-visual,
  .portrait-placeholder {
    min-height: 520px;
  }

  .about-sticker {
    width: 115px;
    height: 115px;
    top: 30px;
    right: -5px;
    font-size: 13px;
  }

  .offer-row {
    padding: 25px 5px;
    grid-template-columns: 40px 1fr 45px;
    gap: 10px;
  }

  .offer-row p {
    display: none;
  }

  .offer-arrow {
    width: 40px;
    height: 40px;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer {
    padding: 45px 22px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .cursor-glow {
    display: none;
  }
}

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

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

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