:root {
  --resy-red: #ff462d;
  --resy-black: #2a2a2a;
  --resy-paper: #f7f3ee;
  --resy-line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 70, 45, 0.18), transparent 30%),
    linear-gradient(180deg, #151515 0%, #0f0f10 100%);
  color: var(--resy-paper);
}

body.is-locked {
  height: 100vh;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 36px 28px 20px;
  background: transparent;
  backdrop-filter: blur(10px);
  border-bottom: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-header .brand-link-docked {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}

.landing {
  position: relative;
  min-height: 100vh;
  padding: 32px;
  overflow: visible;
}

.hero {
  min-height: calc(100vh - 64px);
  max-height: 100vh;
  display: grid;
  place-items: center;
  justify-items: center;
  gap: 28px;
  text-align: center;
  overflow: hidden;
  transition:
    opacity 300ms ease,
    min-height 680ms cubic-bezier(0.22, 1, 0.36, 1),
    max-height 680ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 680ms cubic-bezier(0.22, 1, 0.36, 1),
    margin 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  flex-wrap: nowrap;
}

.brand-link {
  display: flex;
  width: fit-content;
  max-width: calc(100vw - 40px);
  margin-inline: auto;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease;
}

.brand-link:hover {
  transform: translateY(-2px);
}

.brand-link:active {
  transform: scale(0.985);
}

.brand-link-floating {
  position: fixed;
  z-index: 30;
  margin: 0;
  justify-content: flex-start;
  transform-origin: top left;
  pointer-events: none;
  will-change: transform, top, left, width;
  transition:
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    top 820ms cubic-bezier(0.22, 1, 0.36, 1),
    left 820ms cubic-bezier(0.22, 1, 0.36, 1),
    width 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-link-to-header {
  top: 36px !important;
  left: 28px !important;
  width: 244px !important;
  gap: 12px;
  justify-content: flex-start;
}

.brand-link-to-header .logo {
  width: 88px;
}

.brand-link-to-header .partner-mark {
  gap: 8px;
}

.brand-link-to-header .partner-x {
  font-size: 1.35rem;
}

.brand-link-to-header .partner-name {
  font-size: 2.55rem;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.brand-link-docked .logo {
  width: 88px;
}

.brand-link-docked .partner-mark {
  gap: 8px;
}

.brand-link-docked .partner-x {
  font-size: 1.35rem;
}

.brand-link-docked .partner-name {
  font-size: 2.55rem;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.hero-mark {
  display: grid;
  place-items: center;
  padding: 0;
}

.logo {
  width: clamp(160px, 24vw, 240px);
  height: auto;
  display: block;
}

.partner-mark {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  min-width: 0;
}

.partner-x {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 246, 239, 0.96);
}

.partner-name {
  display: block;
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(3.45rem, 7.1vw, 6.1rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.075em;
  color: #fff6ef;
  text-rendering: geometricPrecision;
}

.hero-settled {
  opacity: 0;
  min-height: 0;
  max-height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.section-list {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 92px 0 120px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(56px);
  pointer-events: none;
  transition:
    opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 640ms;
}

.section-list.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 0ms;
}

body.is-intro .section-list {
  display: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(56px);
  pointer-events: none;
}

body.is-intro .hero {
  min-height: calc(100vh - 64px);
}

body.is-open .section-list {
  display: block;
}

.content-section {
  display: block;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  scroll-margin-top: 128px;
}

.content-section:first-child {
  border-top: 0;
}

.content-section:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 32px;
  gap: 24px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.section-number {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 246, 239, 0.56);
}

.section-title {
  font-size: clamp(1.6rem, 3.2vw, 3.2rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  font-weight: 900;
  color: #fff6ef;
  max-width: none;
  text-wrap: balance;
  transform-origin: left center;
  transition:
    font-size 260ms ease,
    line-height 260ms ease,
    letter-spacing 260ms ease,
    transform 260ms ease,
    color 260ms ease;
}

.content-section.is-expanded .section-title {
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.section-plus {
  position: relative;
  width: 28px;
  height: 28px;
  justify-self: end;
}

.section-plus::before,
.section-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: rgba(255, 246, 239, 0.82);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.section-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.content-section.is-expanded .section-plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.4);
}

.section-panel {
  padding: 18px 0 6px 114px;
}

.section-panel p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 246, 239, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.vision-content {
  display: grid;
  gap: 28px;
}

.vision-headline {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 900;
  color: #fff6ef;
}

.vision-accent {
  color: #d86d3d;
}

.vision-copy {
  display: grid;
  gap: 22px;
  max-width: 72ch;
}

.vision-copy p {
  max-width: 58ch;
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.7;
  color: rgba(255, 246, 239, 0.8);
}

.vision-copy-strong {
  font-weight: 800;
  color: #fff6ef;
}

.vision-callout {
  max-width: 74ch;
  padding: 28px 32px;
  border-left: 5px solid #d86d3d;
  background: rgba(255, 246, 239, 0.08);
}

.vision-callout p {
  max-width: none;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.6;
  color: #f3e8df;
}

.opportunity-content {
  display: grid;
  gap: 28px;
}

.opportunity-headline {
  margin: 0;
  font-size: clamp(2.2rem, 4.3vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #fff6ef;
}

.opportunity-copy {
  display: grid;
  gap: 20px;
  max-width: 72ch;
}

.opportunity-copy p,
.opportunity-insight p,
.shift-card p {
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.65;
  color: rgba(255, 246, 239, 0.8);
}

.opportunity-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat-card,
.opportunity-insight,
.shift-card {
  border-radius: 22px;
  background: rgba(255, 246, 239, 0.06);
}

.stat-card {
  padding: 16px 18px;
}

.stat-value {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  font-weight: 900;
  color: #fff6ef;
}

.stat-copy {
  margin: 0 0 14px;
  font-size: 1.12rem;
  line-height: 1.4;
  color: rgba(255, 246, 239, 0.82);
}

.stat-source,
.shift-source {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 246, 239, 0.12);
  font-size: 0.58rem;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: rgba(255, 246, 239, 0.56);
}

.opportunity-insight {
  padding: 26px 30px;
}

.opportunity-label {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 246, 239, 0.56);
}

.opportunity-insight p:last-child {
  color: #f3e8df;
}

.opportunity-shift {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.shift-card {
  padding: 20px 22px;
  border: 1px solid rgba(255, 246, 239, 0.1);
}

.shift-card-accent {
  border-color: rgba(216, 109, 61, 0.7);
}

.shift-card h4 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #fff6ef;
}

.strategy-content {
  display: grid;
  gap: 28px;
}

.strategy-headline {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #fff6ef;
}

.strategy-intro {
  max-width: 66ch;
  margin: 0;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.65;
  color: rgba(255, 246, 239, 0.8);
}

.strategy-list {
  display: grid;
  gap: 8px;
}

.strategy-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 246, 239, 0.12);
}

.strategy-item:first-child {
  border-top: 0;
}

.strategy-item-number {
  position: relative;
}

.strategy-item-number::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border-radius: 999px;
  background: #d86d3d;
}

.strategy-item-body h4 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #fff6ef;
}

.strategy-item-body p {
  max-width: 76ch;
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.68;
  color: rgba(255, 246, 239, 0.78);
}

.strategy-kicker {
  margin: 0 0 8px !important;
  font-size: 0.86rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: #d86d3d !important;
}

.strategy-callout {
  padding: 28px 30px;
  border-radius: 24px;
  background: rgba(255, 246, 239, 0.06);
}

.strategy-callout-title {
  margin: 0 0 10px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff6ef;
}

.strategy-callout p:last-child {
  max-width: 60ch;
  margin: 0;
  font-size: clamp(1.1rem, 1.75vw, 1.5rem);
  line-height: 1.6;
  color: #f3e8df;
}

.foundation-content {
  display: grid;
  gap: 28px;
}

.foundation-headline {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #fff6ef;
}

.foundation-intro {
  max-width: 72ch;
  margin: 0;
  font-size: clamp(1.02rem, 1.38vw, 1.22rem);
  line-height: 1.7;
  color: rgba(255, 246, 239, 0.8);
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.foundation-card {
  padding: 22px 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 246, 239, 0.12);
  background: rgba(255, 246, 239, 0.04);
}

.foundation-card-number {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: #d86d3d;
}

.foundation-card h4 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #fff6ef;
}

.foundation-card p:last-child {
  margin: 0;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.62;
  color: rgba(255, 246, 239, 0.76);
}

.competition-content {
  display: grid;
  gap: 28px;
}

.competition-headline {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #fff6ef;
}

.competition-intro {
  max-width: 72ch;
  margin: 0;
  font-size: clamp(1.02rem, 1.38vw, 1.22rem);
  line-height: 1.7;
  color: rgba(255, 246, 239, 0.8);
}

.competition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.competition-card {
  padding: 18px 20px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 246, 239, 0.12);
  background: rgba(255, 246, 239, 0.04);
}

.competition-card-accent {
  border-color: rgba(216, 109, 61, 0.88);
}

.competition-card h4 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #fff6ef;
}

.competition-card p:last-child {
  margin: 0;
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.64;
  color: rgba(255, 246, 239, 0.76);
}

.competition-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.competition-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 246, 239, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 246, 239, 0.72);
}

.competition-tag-green {
  background: rgba(88, 160, 126, 0.16);
  color: #87d0aa;
}

.behavior-content {
  display: grid;
  gap: 28px;
}

.behavior-headline {
  margin: 0;
  font-size: clamp(2.2rem, 4.1vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #fff6ef;
}

.behavior-intro {
  max-width: 70ch;
  margin: 0;
  font-size: clamp(1.02rem, 1.38vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 246, 239, 0.8);
}

.behavior-list {
  display: grid;
}

.behavior-item {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 246, 239, 0.12);
}

.behavior-item:first-child {
  border-top: 0;
}

.behavior-kicker {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 246, 239, 0.5);
}

.behavior-kicker-accent {
  color: #d86d3d;
}

.behavior-labels h4 {
  margin: 0;
  font-size: clamp(1.35rem, 1.9vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #fff6ef;
}

.behavior-body p:last-child {
  max-width: 72ch;
  margin: 0;
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.68;
  color: rgba(255, 246, 239, 0.78);
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 11vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  text-transform: lowercase;
  color: #fff6ef;
}

@media (max-width: 640px) {
  .landing {
    padding: 88px 20px 20px;
  }

  .hero {
    gap: 20px;
  }

  .brand-lockup {
    flex-direction: row;
    gap: 12px;
    justify-content: flex-start;
  }

  .hero-mark {
    width: auto;
  }

  .logo {
    width: clamp(112px, 28vw, 132px);
  }

  .partner-mark {
    gap: 8px;
  }

  .partner-x {
    font-size: clamp(1.3rem, 4.8vw, 1.8rem);
  }

  .partner-name {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    white-space: nowrap;
  }

  .site-header {
    padding: 24px 20px 16px;
  }

  .site-header .brand-link-docked,
  .brand-link-to-header {
    gap: 8px;
  }

  .brand-link-to-header {
    top: 24px !important;
    left: 20px !important;
    width: 168px !important;
  }

  .brand-link-to-header .logo,
  .brand-link-docked .logo {
    width: 72px;
  }

  .brand-link-to-header .partner-x,
  .brand-link-docked .partner-x {
    font-size: 1.05rem;
  }

  .brand-link-to-header .partner-name,
  .brand-link-docked .partner-name {
    font-size: 1.95rem;
    line-height: 0.92;
    letter-spacing: -0.055em;
    white-space: nowrap;
  }

  .section-list {
    padding: 48px 0 80px;
  }

  .content-section {
    padding: 24px 0;
  }

  .section-toggle {
    grid-template-columns: 1fr 28px;
    gap: 10px 16px;
  }

  .section-number {
    grid-column: 1 / -1;
  }

  .section-title {
    max-width: none;
  }

  .section-panel {
    padding: 14px 0 4px;
  }

  .opportunity-stats,
  .opportunity-shift,
  .strategy-item,
  .foundation-grid,
  .competition-grid,
  .behavior-item {
    grid-template-columns: 1fr;
  }
}
