:root {
  --canvas: #f1ebe2;
  --canvas-soft: #f7f3ed;
  --paper: #fcfaf6;
  --paper-warm: #f8f2e9;
  --ink: #2c2723;
  --ink-soft: #453d36;
  --muted: #6f675f;
  --muted-light: #91877d;
  --line: #dbd0c3;
  --line-strong: #c7b8a8;
  --taupe: #9b897b;
  --bronze: #705a4a;
  --bronze-dark: #574438;
  --sage: #7d8671;
  --cream: #fffdf8;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shadow: 0 32px 90px rgba(75, 59, 45, 0.13);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a,
input {
  font: inherit;
}

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

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

button {
  color: inherit;
}

::selection {
  background: var(--bronze);
  color: var(--cream);
}

:focus-visible {
  outline: 3px solid #9c5f31;
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  border-color: rgba(112, 90, 74, 0.12);
  background: rgba(247, 243, 237, 0.92);
  box-shadow: 0 12px 36px rgba(71, 57, 45, 0.05);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.brand img {
  width: 42px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--bronze);
  content: "";
  transform: scaleX(0);
  transition: transform 250ms var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid var(--bronze-dark);
  border-radius: 999px;
  background: var(--bronze-dark);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), background-color 220ms ease, box-shadow 220ms ease;
}

.header-cta:hover {
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(63, 48, 38, 0.16);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.6);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: transform 220ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-3px);
}

.menu-toggle span:last-child {
  transform: translateY(3px);
}

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

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

.mobile-navigation {
  border-top: 1px solid var(--line);
  background: var(--canvas-soft);
}

.mobile-navigation nav {
  display: grid;
  width: min(100% - 40px, 520px);
  margin: 0 auto;
  padding: 24px 0 32px;
}

.mobile-navigation a {
  padding: 15px 2px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.65rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 148px 0 54px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(245, 239, 231, 0.32) 1px, transparent 1px) 50% 0 / 160px 100%,
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.95), transparent 35rem),
    var(--canvas);
}

.hero::after {
  position: absolute;
  inset: auto -10% -360px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  content: "";
  filter: blur(70px);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 90px;
  right: -16vw;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(112, 90, 74, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow::before,
.hero-glow::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(112, 90, 74, 0.07);
  border-radius: inherit;
  content: "";
}

.hero-glow::after {
  inset: 26%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(620px, 1.22fr);
  align-items: center;
  gap: clamp(40px, 5vw, 84px);
}

.hero-copy {
  padding-bottom: 36px;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--bronze);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.manifesto h2,
.section-heading h2,
.audiences h2,
.method h2,
.launch h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(4rem, 6.2vw, 6.3rem);
  line-height: 0.88;
}

.hero h1 em,
.manifesto h2 em,
.section-heading h2 em,
.audiences h2 em,
.method h2 em,
.launch h2 em {
  color: var(--bronze);
  font-weight: 500;
}

.hero-intro {
  max-width: 560px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px 16px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 240ms var(--ease), background-color 240ms ease, color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

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

.button-primary {
  border-color: var(--bronze-dark);
  background: var(--bronze-dark);
  color: var(--cream);
  box-shadow: 0 14px 30px rgba(87, 68, 56, 0.14);
}

.button-primary:hover {
  background: var(--ink);
  box-shadow: 0 18px 34px rgba(44, 39, 35, 0.18);
}

.button-text {
  padding-inline: 18px;
  color: var(--ink-soft);
}

.button-text::after {
  margin-left: 10px;
  content: "↗";
  transition: transform 220ms ease;
}

.button-text:hover::after {
  transform: translate(3px, -3px);
}

.launch-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.launch-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(125, 134, 113, 0.12);
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 74px 0 62px;
}

.fan-orbit {
  position: absolute;
  top: -16px;
  right: -44px;
  width: 440px;
  opacity: 0.09;
  transform: rotate(8deg);
}

.app-window {
  position: relative;
  width: 730px;
  max-width: 100%;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(112, 90, 74, 0.2);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: perspective(1400px) rotateY(-3deg) rotateX(1.5deg);
  transform-origin: center left;
}

.window-bar {
  display: grid;
  height: 44px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.82);
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4c8bb;
}

.window-title {
  color: #7c736a;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.window-avatar {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  justify-self: end;
  border-radius: 50%;
  background: var(--bronze);
  color: white;
  font-size: 0.48rem;
  font-weight: 700;
}

.app-layout {
  display: grid;
  min-height: 432px;
  grid-template-columns: 148px minmax(0, 1fr);
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  padding: 20px 14px 16px;
  border-right: 1px solid var(--line);
  background: #eee7dd;
}

.app-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 6px 19px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}

.app-logo img {
  width: 25px;
  height: auto;
}

.side-nav {
  display: grid;
  gap: 3px;
}

.side-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  color: #766d64;
  font-size: 0.58rem;
  font-weight: 600;
}

.side-link i {
  width: 9px;
  height: 9px;
  border: 1px solid currentColor;
  border-radius: 3px;
}

.side-link.active {
  background: rgba(255, 253, 248, 0.8);
  color: var(--bronze-dark);
}

.side-event {
  margin-top: auto;
  padding: 12px;
  border: 1px solid rgba(112, 90, 74, 0.13);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.5);
}

.side-event > span,
.side-event small {
  display: block;
  color: #81776d;
  font-size: 0.48rem;
  letter-spacing: 0.04em;
}

.side-event strong {
  display: block;
  margin: 5px 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.77rem;
  line-height: 1.1;
}

.app-main {
  min-width: 0;
  padding: 25px 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.85), transparent 14rem),
    #f6f0e8;
}

.app-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.app-heading > div {
  display: grid;
}

.app-kicker {
  color: var(--bronze);
  font-size: 0.49rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.app-heading strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1;
}

.app-heading button,
.schedule-head button {
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  background: var(--bronze-dark);
  color: white;
  font-size: 0.52rem;
  font-weight: 700;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
  margin-top: 25px;
}

.agenda-panel,
.tasks-panel {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 253, 248, 0.82);
}

.panel-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 11px;
  border-bottom: 1px solid #e5dbcf;
}

.panel-heading span {
  font-family: var(--serif);
  font-size: 0.93rem;
  font-weight: 600;
}

.panel-heading small {
  color: #857a70;
  font-size: 0.45rem;
}

.agenda-row {
  display: grid;
  grid-template-columns: 30px 7px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid #ebe3da;
}

.agenda-row:last-child {
  border-bottom: 0;
}

.agenda-row time {
  color: #746b63;
  font-size: 0.47rem;
  font-weight: 600;
}

.agenda-row > i {
  width: 6px;
  height: 6px;
  margin-top: 3px;
  border-radius: 50%;
  background: #b6aa9d;
}

.agenda-row i.sage,
.event-dot.sage {
  background: var(--sage);
}

.agenda-row i.taupe,
.event-dot.taupe {
  background: var(--taupe);
}

.agenda-row i.bronze,
.event-dot.bronze {
  background: var(--bronze);
}

.agenda-row div {
  min-width: 0;
}

.agenda-row strong,
.agenda-row span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agenda-row strong {
  color: #4a4038;
  font-size: 0.55rem;
}

.agenda-row span {
  margin-top: 2px;
  color: #8b8177;
  font-size: 0.43rem;
}

.muted-row {
  opacity: 0.68;
}

.tasks-panel label {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 7px;
  align-items: start;
  padding: 11px 0;
  border-bottom: 1px solid #ebe3da;
  color: #5a5048;
  font-size: 0.5rem;
  line-height: 1.4;
}

.tasks-panel input {
  width: 12px;
  height: 12px;
  margin: 0;
  accent-color: var(--sage);
}

.tasks-panel input:checked + span {
  color: #92887f;
  text-decoration: line-through;
}

.task-progress {
  padding-top: 14px;
}

.task-progress > span {
  display: block;
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: #e4dbd1;
}

.task-progress i {
  display: block;
  width: 60%;
  height: 100%;
  border-radius: inherit;
  background: var(--sage);
}

.task-progress small {
  display: block;
  margin-top: 5px;
  color: #81776e;
  font-size: 0.42rem;
}

.capability-line {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  margin-top: 36px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  list-style: none;
  padding: 0;
  text-transform: uppercase;
}

.capability-line li {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

.capability-line li:not(:last-child)::after {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--taupe);
  content: "";
}

.manifesto {
  padding: 130px 0 140px;
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 10vw;
  align-items: start;
}

.manifesto h2,
.section-heading h2,
.audiences h2,
.method h2,
.launch h2 {
  font-size: clamp(3.5rem, 5.6vw, 5.8rem);
  line-height: 0.92;
}

.manifesto-copy {
  padding-top: 36px;
}

.manifesto-copy p {
  max-width: 610px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.9;
}

.manifesto-copy strong {
  color: var(--ink-soft);
  font-weight: 600;
}

.product-stage {
  margin-top: 100px;
}

.stage-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--bronze);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-canvas {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--canvas-soft);
  box-shadow: 0 25px 70px rgba(82, 65, 51, 0.09);
}

.event-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 38px 28px;
  border-bottom: 1px solid var(--line);
}

.event-summary h3 {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1;
}

.event-summary p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.summary-people {
  display: flex;
  align-items: center;
}

.summary-people span,
.summary-people small {
  display: grid;
  width: 37px;
  height: 37px;
  margin-left: -7px;
  place-items: center;
  border: 2px solid var(--canvas-soft);
  border-radius: 50%;
  background: var(--taupe);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
}

.summary-people span:first-child {
  background: #746457;
}

.summary-people span:nth-child(2) {
  background: #66705d;
}

.summary-people span:nth-child(3) {
  background: var(--bronze);
}

.summary-people small {
  background: #e5dbd0;
  color: var(--ink-soft);
}

.event-tabs {
  display: flex;
  gap: 32px;
  padding: 0 38px;
  border-bottom: 1px solid var(--line);
}

.event-tabs span {
  position: relative;
  padding: 16px 0 14px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
}

.event-tabs span.active {
  color: var(--bronze-dark);
}

.event-tabs span.active::after {
  position: absolute;
  inset: auto 0 -1px;
  height: 2px;
  background: var(--bronze);
  content: "";
}

.day-layout {
  display: grid;
  min-height: 400px;
  grid-template-columns: 104px minmax(0, 1fr);
}

.day-rail {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  background: #eee6dc;
}

.day-rail button {
  display: grid;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  text-align: center;
}

.day-rail button.active {
  border-color: var(--line-strong);
  background: var(--cream);
}

.day-rail small {
  color: var(--ink-soft);
  font-size: 0.52rem;
  text-transform: uppercase;
}

.day-rail strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1;
}

.schedule {
  padding: 28px 36px 30px;
}

.schedule-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.schedule-head > div {
  display: grid;
}

.schedule-head span {
  color: var(--bronze);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.schedule-head strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.schedule article {
  display: grid;
  grid-template-columns: 54px 9px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.schedule time {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.event-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.schedule article strong,
.schedule article p {
  display: block;
  margin: 0;
}

.schedule article strong {
  font-size: 0.78rem;
}

.schedule article p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.62rem;
}

.status {
  padding: 5px 9px;
  border-radius: 99px;
  background: #eee6dc;
  color: var(--ink-soft);
  font-size: 0.52rem;
  font-weight: 700;
}

.status.ready {
  background: #e7ebe2;
  color: #58634d;
}

.features {
  padding: 130px 0 150px;
  background:
    radial-gradient(circle at 12% 2%, rgba(255, 255, 255, 0.75), transparent 26rem),
    var(--canvas);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 10vw;
}

.section-heading > p {
  max-width: 480px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 78px;
}

.feature-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(252, 250, 246, 0.72);
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms var(--ease);
}

.feature-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 24px 54px rgba(77, 60, 47, 0.08);
  transform: translateY(-4px);
}

.feature-large {
  display: grid;
  min-height: 380px;
  grid-column: 1 / -1;
  grid-template-columns: 0.82fr 1.18fr;
}

.feature-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 42px;
}

.feature-number {
  display: block;
  margin-bottom: 46px;
  color: var(--bronze);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.feature-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.5vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.feature-copy p {
  max-width: 470px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.85;
}

.feature-programme {
  background: var(--bronze-dark);
  color: var(--cream);
}

.feature-programme .feature-number,
.feature-programme .feature-copy p {
  color: #d7c9bc;
}

.mini-timeline {
  display: grid;
  align-content: center;
  align-self: stretch;
  margin: 34px 34px 34px 0;
  padding: 28px 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.065);
}

.mini-timeline > span {
  display: grid;
  grid-template-columns: 46px 9px 1fr;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-timeline > span:last-child {
  border-bottom: 0;
}

.mini-timeline time {
  color: #e4d8ce;
  font-size: 0.65rem;
}

.mini-timeline i {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--taupe);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.06);
}

.mini-timeline strong,
.mini-timeline small {
  grid-column: 3;
}

.mini-timeline strong {
  font-size: 0.78rem;
}

.mini-timeline small {
  margin-top: -10px;
  color: #e4d8ce;
  font-size: 0.58rem;
}

.guest-stack {
  position: absolute;
  right: 36px;
  bottom: 24px;
  left: 36px;
  display: grid;
  gap: 8px;
  transform: rotate(-2deg);
}

.guest-stack > span {
  display: grid;
  min-height: 64px;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--cream);
  box-shadow: 0 8px 22px rgba(77, 60, 47, 0.06);
}

.guest-stack i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #e8dfd5;
  color: var(--bronze-dark);
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 700;
}

.guest-stack b {
  font-size: 0.68rem;
}

.guest-stack small {
  color: #5e694f;
  font-size: 0.54rem;
}

.seating-map {
  position: absolute;
  right: 32px;
  bottom: 28px;
  width: 270px;
  height: 175px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background:
    linear-gradient(rgba(112, 90, 74, 0.045) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(90deg, rgba(112, 90, 74, 0.045) 1px, transparent 1px) 0 0 / 22px 22px,
    var(--cream);
  transform: rotate(2deg);
}

.table {
  position: absolute;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 7px double var(--taupe);
  border-radius: 50%;
  background: var(--paper);
  color: var(--bronze-dark);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}

.table small {
  position: absolute;
  top: calc(100% + 7px);
  width: 95px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.46rem;
  font-weight: 600;
  text-align: center;
}

.table.t1 {
  top: 26px;
  left: 23px;
}

.table.t2 {
  top: 36px;
  right: 25px;
  border-color: var(--sage);
}

.table.t3 {
  bottom: 20px;
  left: 105px;
  width: 52px;
  height: 52px;
  border-color: var(--bronze);
}

.feature-contacts {
  min-height: 330px;
}

.contact-tags {
  display: flex;
  position: absolute;
  right: 38px;
  bottom: 36px;
  left: 38px;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-tags span {
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 0.6rem;
  font-weight: 600;
}

.feature-access {
  min-height: 330px;
  background: #e8e6dc;
}

.feature-access .feature-copy p {
  color: #5e5750;
}

.access-preview {
  position: absolute;
  right: 38px;
  bottom: 34px;
  left: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.access-preview div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(87, 68, 56, 0.12);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.64);
}

.access-preview span {
  color: var(--bronze);
  font-size: 0.49rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-preview b {
  color: var(--ink-soft);
  font-size: 0.58rem;
  line-height: 1.5;
}

.audiences {
  padding: 130px 0 142px;
  background: var(--paper);
}

.audiences-intro {
  max-width: 1080px;
}

.audience-list {
  margin-top: 76px;
  border-bottom: 1px solid var(--line);
}

.audience-list article {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 32px;
  padding: 38px 4px;
  border-top: 1px solid var(--line);
  transition: padding 260ms var(--ease), background-color 260ms ease;
}

.audience-list article:hover {
  padding-inline: 18px;
  background: rgba(241, 235, 226, 0.48);
}

.audience-list article > span {
  color: var(--bronze);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.audience-list article > div {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(300px, 1.3fr);
  align-items: baseline;
  gap: 7vw;
}

.audience-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.audience-list p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.8;
}

.audience-list i {
  color: var(--taupe);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: normal;
  transition: transform 250ms ease;
}

.audience-list article:hover i {
  transform: translate(4px, -4px);
}

.method {
  padding: 135px 0;
  background: var(--ink);
  color: var(--cream);
}

.method-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 10vw;
}

.method .section-label {
  color: #c6b4a5;
}

.method h2 em {
  color: #c8b19f;
}

.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.method-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.method-steps li > span {
  color: #bda895;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.method-steps h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
}

.method-steps p {
  max-width: 570px;
  margin: 10px 0 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.82rem;
  line-height: 1.8;
}

.launch {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.8), transparent 34rem),
    var(--canvas);
  text-align: center;
}

.launch::before,
.launch::after {
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(112, 90, 74, 0.1);
  border-radius: 50%;
  content: "";
}

.launch::after {
  width: 490px;
  height: 490px;
}

.launch-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 620px;
  opacity: 0.04;
  transform: translate(-50%, -48%);
}

.launch-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding: 100px 0;
}

.launch .section-label {
  justify-content: center;
}

.launch p:not(.section-label) {
  max-width: 610px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

.button-light {
  margin-top: 34px;
  border-color: var(--bronze-dark);
  background: var(--bronze-dark);
  color: var(--cream);
  box-shadow: 0 14px 34px rgba(87, 68, 56, 0.18);
}

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

.launch small {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.67rem;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  color: rgba(255, 253, 248, 0.68);
}

.footer-inner {
  display: grid;
  min-height: 120px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  font-size: 0.7rem;
}

.footer-brand {
  color: var(--cream);
  font-size: 1.55rem;
}

.footer-brand img {
  filter: brightness(0) invert(1);
  opacity: 0.74;
}

.footer-inner p {
  margin: 0;
  text-align: center;
}

.footer-inner p a,
.footer-inner > a:last-child {
  color: var(--cream);
}

.footer-inner p a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-inner > a:last-child {
  justify-self: end;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(340px, 0.78fr) minmax(540px, 1.22fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 6vw, 5.3rem);
  }

  .app-window {
    width: 660px;
  }

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

  .tasks-panel {
    display: none;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 44px, 760px);
  }

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

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

  .menu-toggle {
    display: grid;
    position: relative;
    place-items: center;
    justify-self: end;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

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

  .hero-copy {
    max-width: 700px;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(4rem, 10vw, 6rem);
  }

  .hero-intro {
    max-width: 650px;
  }

  .hero-visual {
    margin-top: 4px;
    padding: 74px 0 34px;
  }

  .app-window {
    width: 100%;
    transform: none;
  }

  .capability-line {
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .manifesto,
  .features,
  .audiences {
    padding-block: 105px;
  }

  .manifesto-grid,
  .section-heading,
  .method-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .manifesto-copy {
    padding-top: 0;
  }

  .product-stage {
    margin-top: 74px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .feature-large {
    grid-column: auto;
  }

  .feature-card,
  .feature-large {
    min-height: 420px;
  }

  .feature-large {
    grid-template-columns: 1fr;
  }

  .mini-timeline {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 0 30px 30px;
  }

  .feature-contacts,
  .feature-access {
    min-height: 330px;
  }

  .audience-list article > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .method {
    padding-block: 110px;
  }

  .method-heading {
    max-width: 550px;
  }

  .footer-inner {
    min-height: 160px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-bottom: 24px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, 560px);
  }

  html {
    scroll-padding-top: 70px;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    font-size: 1.55rem;
  }

  .brand img {
    width: 36px;
  }

  .hero {
    padding: 112px 0 42px;
    background:
      radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.85), transparent 25rem),
      var(--canvas);
  }

  .hero h1 {
    font-size: clamp(3.55rem, 16vw, 5rem);
    line-height: 0.9;
  }

  .hero-intro {
    margin-top: 25px;
    font-size: 0.93rem;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    justify-items: start;
    margin-top: 30px;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .button-text {
    justify-content: flex-start;
    padding-inline: 4px;
  }

  .launch-note {
    margin-top: 18px;
  }

  .hero-visual {
    width: calc(100vw - 20px);
    margin-left: -6px;
    padding-top: 52px;
  }

  .fan-orbit {
    top: -12px;
    right: -60px;
    width: 300px;
  }

  .app-window {
    border-radius: 14px;
  }

  .window-bar {
    grid-template-columns: 1fr auto;
  }

  .window-title {
    display: none;
  }

  .app-layout {
    min-height: 360px;
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

  .app-main {
    padding: 20px 16px;
  }

  .app-heading strong {
    font-size: 1.35rem;
  }

  .app-heading button {
    padding: 7px 9px;
  }

  .dashboard-grid {
    margin-top: 18px;
  }

  .agenda-panel {
    padding: 13px;
  }

  .agenda-row {
    padding-block: 10px;
  }

  .capability-line {
    display: none;
  }

  .manifesto,
  .features,
  .audiences {
    padding-block: 82px;
  }

  .manifesto h2,
  .section-heading h2,
  .audiences h2,
  .method h2,
  .launch h2 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .manifesto-copy p {
    font-size: 0.92rem;
  }

  .product-stage {
    width: 100%;
    margin-top: 60px;
  }

  .stage-topline {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

  .stage-topline span:last-child {
    display: none;
  }

  .event-canvas {
    margin-top: 16px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .event-summary {
    padding: 24px 16px 20px;
  }

  .event-summary p,
  .summary-people {
    display: none;
  }

  .event-tabs {
    gap: 22px;
    padding: 0 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .event-tabs::-webkit-scrollbar {
    display: none;
  }

  .event-tabs span {
    flex: 0 0 auto;
  }

  .day-layout {
    min-height: 350px;
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .day-rail {
    padding: 20px 10px;
  }

  .schedule {
    min-width: 0;
    padding: 20px 14px;
  }

  .schedule-head button {
    display: none;
  }

  .schedule article {
    grid-template-columns: 42px 7px minmax(0, 1fr);
    gap: 8px;
    padding-block: 17px;
  }

  .schedule article p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .status {
    display: none;
  }

  .section-heading {
    gap: 24px;
  }

  .section-heading > p {
    font-size: 0.89rem;
  }

  .feature-grid {
    gap: 14px;
    margin-top: 42px;
  }

  .feature-card,
  .feature-large {
    min-height: 450px;
    border-radius: 16px;
  }

  .feature-copy {
    padding: 30px;
  }

  .feature-number {
    margin-bottom: 28px;
  }

  .feature-copy h3 {
    font-size: 2.5rem;
  }

  .feature-copy p {
    font-size: 0.82rem;
  }

  .mini-timeline {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 0 16px 16px;
    padding: 17px 20px;
  }

  .mini-timeline > span {
    padding-block: 13px;
  }

  .guest-stack,
  .contact-tags,
  .access-preview {
    right: 20px;
    left: 20px;
  }

  .guest-stack {
    bottom: 16px;
  }

  .seating-map {
    right: 20px;
    bottom: 22px;
    width: 245px;
  }

  .feature-contacts,
  .feature-access {
    min-height: 400px;
  }

  .access-preview {
    grid-template-columns: 1fr;
  }

  .audience-list {
    margin-top: 46px;
  }

  .audience-list article {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 27px 2px;
  }

  .audience-list article:hover {
    padding-inline: 2px;
    background: transparent;
  }

  .audience-list article > div {
    gap: 12px;
  }

  .audience-list h3 {
    font-size: 2rem;
  }

  .audience-list i {
    display: none;
  }

  .method {
    padding-block: 84px;
  }

  .method-grid {
    gap: 56px;
  }

  .method-steps li {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .launch {
    min-height: 650px;
  }

  .launch-inner {
    padding-block: 78px;
  }

  .launch::before {
    width: 540px;
    height: 540px;
  }

  .launch::after {
    width: 360px;
    height: 360px;
  }

  .launch-mark {
    width: 430px;
  }

  .launch p:not(.section-label) {
    font-size: 0.9rem;
  }

  .footer-inner {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding-block: 34px;
    text-align: center;
  }

  .footer-inner p {
    order: 3;
    padding: 0;
  }
}

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

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