@font-face {
  font-family: "Instrument Serif";
  src: url(".codex/skills/canvas-design/canvas-fonts/InstrumentSerif-Regular.ttf") format("truetype");
  font-display: swap;
}

.join-panel:hover {
  background:
    radial-gradient(circle at top right, rgba(24, 146, 155, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.88) !important;
  border-color: var(--line) !important;
  box-shadow: var(--shadow) !important;
}

.join-panel:hover h3,
.join-panel:hover p,
.join-panel:hover .join-panel-label {
  color: inherit !important;
}

@font-face {
  font-family: "Instrument Sans";
  src: url(".codex/skills/canvas-design/canvas-fonts/InstrumentSans-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url(".codex/skills/canvas-design/canvas-fonts/InstrumentSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url(".codex/skills/canvas-design/canvas-fonts/Outfit-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url(".codex/skills/canvas-design/canvas-fonts/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url(".codex/skills/canvas-design/canvas-fonts/WorkSans-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url(".codex/skills/canvas-design/canvas-fonts/WorkSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #f5f8fb;
  --bg-strong: #edf2f6;
  --surface: rgba(255, 255, 255, 0.82);
  --line: rgba(25, 42, 65, 0.1);
  --text: #12243c;
  --text-soft: #5e6e84;
  --brand-indigo: #253f85;
  --brand-teal: #138a8a;
  --brand-steel: #6b7a90;
  --shadow: 0 18px 80px rgba(16, 32, 58, 0.08);
  --shadow-soft: 0 12px 40px rgba(16, 32, 58, 0.06);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(19, 138, 138, 0.12), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(37, 63, 133, 0.12), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 36, 60, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 36, 60, 0.018) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
}

body::after {
  content: "";
  position: fixed;
  inset: -12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(19, 138, 138, 0.16), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(37, 63, 133, 0.16), transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(19, 138, 138, 0.11), transparent 26%),
    radial-gradient(circle at 86% 66%, rgba(37, 63, 133, 0.12), transparent 24%);
  filter: blur(42px);
  opacity: 0.95;
  transform-origin: center;
  animation: ambient-drift 22s ease-in-out infinite alternate;
}

@keyframes ambient-drift {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  50% { transform: translate3d(1.5%, 2%, 0) scale(1.04); }
  100% { transform: translate3d(2%, -1.5%, 0) scale(1.02); }
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.narrow {
  width: min(100%, 760px);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 40px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(245, 248, 251, 0.78);
  border-bottom: 1px solid rgba(18, 36, 60, 0.05);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(245, 248, 251, 0.92);
  border-bottom-color: rgba(18, 36, 60, 0.09);
  box-shadow: 0 10px 30px rgba(16, 32, 58, 0.06);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 220px;
  height: auto;
}

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

.site-nav a {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--text-soft);
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-1px);
}

#event-hero,
#event-about,
#event-topics,
#event-tickets,
#event-important {
  scroll-margin-top: 112px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero,
.page-hero {
  padding-top: 54px;
}

.event-hero-immersive {
  padding-top: 34px;
}

.hero {
  min-height: calc(78vh - 88px);
  display: grid;
  align-items: center;
}

.hero-grid,
.path-grid,
.event-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.event-hero-shell {
  position: relative;
  min-height: min(72vh, 760px);
  padding: 72px 0 36px;
}

.event-hero-main {
  position: relative;
  z-index: 3;
  width: fit-content;
  max-width: min(100%, 1100px);
  text-align: left;
  display: grid;
  gap: 18px;
}

.event-hero-main-centered {
  margin-inline: auto;
  justify-items: center;
  text-align: center;
}

.event-hero-title {
  width: min(100%, 18ch);
  max-width: 18ch;
  margin: 0 auto;
  line-height: 0.97;
}

.event-hero-title-line {
  display: block;
  width: 100%;
  text-align: center;
}

.event-hero-title-line-fixed {
  white-space: nowrap;
}

.event-hero-lead {
  max-width: 45ch;
  margin: 0;
}

.event-hero-meta,
.event-hero-actions {
  justify-content: center;
}

.event-text-rotate {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 5.2em;
  margin-left: 0.18em;
  color: var(--brand-teal);
  white-space: nowrap;
  text-align: center;
}

.event-text-rotate-word {
  display: inline-flex;
  justify-content: center;
}

.event-text-rotate-char {
  display: inline-block;
  will-change: transform, opacity;
}

.event-text-rotate.is-animating .event-text-rotate-char {
  animation: event-text-rise 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes event-text-rise {
  from {
    opacity: 0;
    transform: translateY(70%) scale(0.96);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.event-tech-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(37, 63, 133, 0.16);
  background: radial-gradient(circle at center, rgba(19, 138, 138, 0.11), rgba(19, 138, 138, 0) 68%);
}

.event-tech-orbit-one {
  width: 156px;
  height: 156px;
  top: 18px;
  right: 16%;
}

.event-tech-orbit-two {
  width: 108px;
  height: 108px;
  left: 14%;
  bottom: 86px;
}

.event-intro-section {
  padding-top: 8px;
}

.event-intro-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.84fr);
  align-items: center;
  gap: 24px;
  padding: 34px 40px;
  border-radius: 34px;
  border: 1px solid rgba(18, 36, 60, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 80px rgba(16, 32, 58, 0.12);
}

.event-intro-copy {
  display: grid;
  gap: 16px;
  max-width: 34rem;
  min-width: 0;
}

.event-intro-copy h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 3.15vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.event-intro-title {
  display: block;
  max-width: 15ch;
  text-wrap: balance;
}

.event-intro-title span {
  display: inline;
  white-space: normal;
}

.event-intro-actions {
  margin-top: 8px;
}

.event-intro-portrait {
  width: 100%;
  min-height: 320px;
  max-height: 430px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.contact-stack {
  display: grid;
  gap: 28px;
  justify-items: center;
}

.registration-hero-stack {
  display: grid;
  justify-items: center;
}

.registration-copy {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
  max-width: 50rem;
}

.registration-copy h1 {
  max-width: 16ch;
}

.registration-meta {
  justify-content: center;
}

.registration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 30px;
  align-items: start;
}

.registration-form {
  display: grid;
  gap: 18px;
}

.registration-form:hover,
.registration-side:hover {
  background: var(--surface) !important;
  border-color: var(--line) !important;
  box-shadow: var(--shadow) !important;
}

.registration-form:hover h2,
.registration-form:hover h3,
.registration-form:hover p,
.registration-form:hover label,
.registration-form:hover .mini-label,
.registration-form:hover .form-feedback,
.registration-side:hover h2,
.registration-side:hover h3,
.registration-side:hover p,
.registration-side:hover .mini-label,
.registration-side:hover strong,
.registration-side:hover .text-link {
  color: inherit !important;
}

.registration-form:hover input,
.registration-form:hover select,
.registration-form:hover textarea {
  background: rgba(255, 255, 255, 0.82) !important;
  border-color: var(--line) !important;
  color: var(--text) !important;
}

.registration-form:hover input::placeholder,
.registration-form:hover textarea::placeholder {
  color: var(--text-soft) !important;
}

.registration-form-copy {
  color: var(--text-soft);
  max-width: 56ch;
}

.registration-side {
  display: grid;
  gap: 18px;
}

.registration-steps {
  display: grid;
  gap: 14px;
}

.registration-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(18, 36, 60, 0.07);
}

.registration-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(19, 138, 138, 0.08);
  color: var(--brand-indigo);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.registration-step strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.registration-step p {
  margin: 0;
  color: var(--text-soft);
}

.registration-next-section[hidden] {
  display: none;
}

.registration-next-panel {
  align-items: center;
}

.registration-next-copy {
  display: grid;
  gap: 12px;
  max-width: 44rem;
}

.registration-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.registration-summary span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(19, 138, 138, 0.08);
  color: var(--text);
}

.consent-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.consent-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--brand-teal);
}

.consent-check span {
  display: block;
}

.legal-hero {
  padding-bottom: 10px;
}

.legal-copy {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  max-width: 48rem;
}

.legal-layout,
.legal-policy {
  display: grid;
  gap: 22px;
}

.legal-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.legal-card:hover {
  background: var(--surface) !important;
  border-color: var(--line) !important;
  box-shadow: var(--shadow) !important;
  transform: none !important;
}

.legal-card:hover h2,
.legal-card:hover p,
.legal-card:hover .mini-label,
.legal-card:hover .text-link {
  color: inherit !important;
}

.legal-card h2 {
  margin: 0;
  font-size: 1.5rem;
}

.legal-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.legal-card-wide {
  grid-column: 1 / -1;
}

.hero-centered {
  display: block;
}

.hero-copy,
.hero-panel,
.contact-copy,
.contact-form,
.featured-copy,
.featured-visual,
.section-heading,
.founder-body {
  min-width: 0;
}

.hero-copy-centered {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

.community-hero-copy {
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.community-hero-copy h1 {
  max-width: none;
  display: grid;
  justify-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 0.94;
}

.community-hero-line {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.community-hero-copy .eyebrow,
.community-hero-copy .page-lead {
  margin-left: auto;
  margin-right: auto;
}

.community-hero-copy .button {
  margin-top: 10px;
}

.hero-lead-centered {
  max-width: 760px;
  margin: 0 auto;
}

.hero-actions-centered {
  justify-content: center;
}

.eyebrow,
.mini-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Work Sans", "Instrument Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.6rem, 5.7vw, 5.8rem);
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
  line-height: 0.96;
}

.hero-line {
  display: block;
  width: 100%;
  text-align: center;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  max-width: 22ch;
}

h3 {
  font-family: "Work Sans", "Instrument Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.06;
}

p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-soft);
}

.hero-lead,
.page-lead,
.section-heading p {
  max-width: 60ch;
  font-size: 1.08rem;
  font-family: "Work Sans", "Instrument Sans", "Segoe UI", sans-serif;
  line-height: 1.45;
}

.hero-lead {
  font-size: clamp(1.2rem, 1.75vw, 1.6rem);
  font-weight: 500;
  color: #3e516b;
}

.section-heading p,
.page-lead,
.hero-lead,
.path-copy p,
.featured-copy p,
.founder-body p,
.contact-copy p {
  line-height: 1.45;
}

.hero-subline {
  display: block;
  white-space: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.competence-section {
  padding-top: 12px;
}

.competence-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 30px;
}

.competence-copy {
  display: grid;
  gap: 12px;
}

.competence-copy .section-copy {
  max-width: 56ch;
}

.competence-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.competence-control {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.competence-control:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(19, 138, 138, 0.2);
  background: rgba(255, 255, 255, 0.96);
}

.competence-control:disabled {
  opacity: 0.4;
  cursor: default;
}

.competence-track-wrap {
  position: relative;
}

.competence-track-wrap::before,
.competence-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 68px;
  z-index: 2;
  pointer-events: none;
}

.competence-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 10%, rgba(245, 248, 251, 0));
}

.competence-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 10%, rgba(245, 248, 251, 0));
}

.competence-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 380px);
  gap: 20px;
  overflow-x: auto;
  padding: 4px 4px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.competence-track::-webkit-scrollbar {
  display: none;
}

.competence-card {
  scroll-snap-align: start;
  display: grid;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(18, 36, 60, 0.08);
  box-shadow: var(--shadow);
}

.competence-image-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.competence-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 36, 60, 0) 10%, rgba(18, 36, 60, 0.08) 100%);
}

.competence-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.competence-card:hover .competence-image {
  transform: scale(1.04);
}

.competence-card-body {
  padding: 22px 22px 24px;
  display: grid;
  gap: 10px;
}

.competence-card-body h3 {
  font-size: 1.55rem;
  line-height: 1;
}

.competence-card-body p {
  font-size: 1rem;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  position: relative;
  isolation: isolate;
  overflow: visible;
  transform-origin: center;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background-color 220ms ease;
}

.step-number {
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.join-step:hover .step-number {
  background: #fff;
  color: var(--brand-indigo);
  box-shadow: 0 10px 24px rgba(16, 32, 58, 0.16);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.28) 50%, transparent 75%);
  transform: translateX(-140%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 72%);
  opacity: 0;
  transform: scale(0.9);
  filter: blur(14px);
  z-index: -1;
  transition:
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px) scale(1.045);
  box-shadow: 0 18px 36px rgba(37, 63, 133, 0.16);
  filter: saturate(1.04);
}

.button:active {
  transform: scale(0.99);
  transition-duration: 80ms;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(140%);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: scale(1.08);
  filter: blur(20px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-indigo), var(--brand-teal));
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--line);
}

.button-full {
  width: 100%;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--text);
  font-size: 0.95rem;
}

.hero-panel {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 20px;
  transition: transform 260ms ease;
}

.hero-card,
.glass-card,
.editorial-card,
.event-card,
.archive-card,
.founder-card,
.principle-card,
.detail-card,
.contact-form,
.featured-event,
.cta-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.hero-card:hover,
.glass-card:hover,
.editorial-card:hover,
.event-card:hover,
.archive-card:hover,
.founder-card:hover,
.principle-card:hover,
.detail-card:hover,
.contact-form:hover,
.featured-event:hover,
.cta-panel:hover {
  background: linear-gradient(135deg, var(--brand-indigo), var(--brand-teal));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(16, 32, 58, 0.16);
}

.hero-card:hover h1,
.hero-card:hover h2,
.hero-card:hover h3,
.hero-card:hover p,
.glass-card:hover h2,
.glass-card:hover h3,
.glass-card:hover p,
.editorial-card:hover h3,
.editorial-card:hover p,
.event-card:hover h3,
.event-card:hover p,
.event-card:hover .event-date,
.archive-card:hover h3,
.archive-card:hover p,
.archive-card:hover .archive-top,
.founder-card:hover h3,
.founder-card:hover p,
.principle-card:hover h3,
.principle-card:hover p,
.detail-card:hover h2,
.detail-card:hover p,
.detail-card:hover .mini-label,
.contact-form:hover label,
.contact-form:hover .form-feedback,
.featured-event:hover h2,
.featured-event:hover p,
.featured-event:hover .featured-meta,
.featured-event:hover .mini-label,
.cta-panel:hover h2,
.cta-panel:hover p,
.cta-panel:hover .eyebrow {
  color: white;
}

.event-card:hover .event-meta span,
.featured-event:hover .tag-row span,
.featured-event:hover .event-meta span,
.featured-event:hover .event-detail-meta span {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.contact-form:hover input,
.contact-form:hover select,
.contact-form:hover textarea {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: white;
}

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

.founder-card:hover,
.featured-event:hover,
.cta-panel:hover {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.principle-card:hover,
.detail-card:hover {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(19, 138, 138, 0.14);
  box-shadow: 0 24px 60px rgba(16, 32, 58, 0.11);
  transform: translateY(-4px) scale(1.015);
}

.founder-card:hover h3,
.founder-card:hover p,
.featured-event:hover h2,
.featured-event:hover p,
.featured-event:hover .featured-meta,
.featured-event:hover .mini-label,
.cta-panel:hover h2,
.cta-panel:hover p,
.cta-panel:hover .eyebrow {
  color: inherit;
}

.featured-event:hover .tag-row span,
.featured-event:hover .event-meta span,
.featured-event:hover .event-detail-meta span {
  background: rgba(19, 138, 138, 0.08);
  color: var(--text);
}

.principle-card:hover h3,
.principle-card:hover p,
.detail-card:hover h2,
.detail-card:hover p,
.detail-card:hover .mini-label {
  color: inherit;
}

.event-card:hover {
  background: var(--surface);
  border-color: rgba(19, 138, 138, 0.12);
  box-shadow: 0 22px 48px rgba(16, 32, 58, 0.12);
  transform: translateY(-4px) scale(1.015);
}

.event-card:hover h3,
.event-card:hover p,
.event-card:hover .event-date {
  color: inherit;
}

.event-card:hover .event-meta span {
  background: rgba(19, 138, 138, 0.08);
  color: var(--text);
}

.hero-card,
.glass-card,
.editorial-card,
.event-card,
.archive-card,
.founder-card,
.principle-card,
.detail-card,
.contact-form {
  border-radius: var(--radius-lg);
}

.marquee-card,
.pulse-card,
.glass-card,
.editorial-card,
.event-card,
.principle-card,
.detail-card,
.contact-form {
  padding: 24px;
}

.marquee-stack {
  display: grid;
  gap: 10px;
}

.marquee-stack span {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 63, 133, 0.08), rgba(19, 138, 138, 0.08));
  color: var(--text);
}

.signal-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  display: grid;
  gap: 10px;
}

.hero-orbit {
  position: absolute;
  inset: 50% auto auto 54%;
  width: 240px;
  height: 240px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(37, 63, 133, 0.16);
}

.hero-orbit span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-indigo), var(--brand-teal));
  box-shadow: 0 0 0 10px rgba(37, 63, 133, 0.08);
  opacity: 0;
  transform: scale(0.8);
}

.hero-orbit span:nth-child(1) {
  top: -9px;
  left: 50%;
}

.hero-orbit span:nth-child(2) {
  top: 50%;
  right: -9px;
}

.hero-orbit span:nth-child(3) {
  bottom: -9px;
  left: 50%;
}

body.is-ready .hero-orbit span {
  opacity: 1;
  transform: scale(1);
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1), opacity 480ms ease;
}

body.is-ready .hero-orbit span:nth-child(1) { transition-delay: 180ms; }
body.is-ready .hero-orbit span:nth-child(2) { transition-delay: 300ms; }
body.is-ready .hero-orbit span:nth-child(3) { transition-delay: 420ms; }

.trust-grid,
.cta-panel,
.featured-event {
  border-radius: var(--radius-xl);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: end;
  padding: 28px 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.94));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.trust-stats,
.feature-grid,
.editorial-grid,
.event-grid,
.principle-grid,
.event-detail-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.event-grid {
  margin-top: 28px;
}

.event-showcase {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.event-showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.event-showcase-hint {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.event-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 380px);
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(36, 70, 137, 0.28) transparent;
}

.event-rail::-webkit-scrollbar {
  height: 10px;
}

.event-rail::-webkit-scrollbar-thumb {
  background: rgba(36, 70, 137, 0.24);
  border-radius: 999px;
}

.event-rail-card {
  min-height: 100%;
  scroll-snap-align: start;
}

.event-rail-card .event-card-body {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 228px;
}

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

.trust-stats div,
.contact-points div,
.path-steps li {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(18, 36, 60, 0.08);
}

.trust-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.trust-stats strong,
.contact-points strong,
.path-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-layout,
.principles-wrap,
.section-heading {
  display: grid;
  gap: 28px;
}

.card-count {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand-steel);
  letter-spacing: 0.14em;
}

.editorial-band::before {
  content: "";
  position: absolute;
  inset: 60px 0;
  background:
    radial-gradient(circle at left, rgba(37, 63, 133, 0.08), transparent 36%),
    radial-gradient(circle at right, rgba(19, 138, 138, 0.08), transparent 28%);
  z-index: -1;
}

.editorial-band,
.featured-visual,
.founder-visual,
.editorial-visual,
.event-art {
  position: relative;
}

.editorial-card,
.event-card,
.founder-card {
  overflow: hidden;
}

.hero-card:hover,
.glass-card:hover,
.editorial-card:hover,
.event-card:hover,
.archive-card:hover,
.founder-card:hover,
.principle-card:hover,
.detail-card:hover,
.contact-form:hover,
.featured-event:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(16, 32, 58, 0.11);
  border-color: rgba(19, 138, 138, 0.18);
}

.editorial-visual,
.event-art {
  min-height: 210px;
  border-radius: 18px;
  background-color: var(--bg-strong);
  overflow: hidden;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), filter 320ms ease;
}

.event-art-image {
  background: rgba(255, 255, 255, 0.72);
}

.event-art-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

.event-rail-card .event-art {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.event-rail-card .event-art-image img {
  object-position: center center;
}

.editorial-card:hover .editorial-visual,
.event-card:hover .event-art,
.featured-event:hover .event-art,
.founder-card:hover .founder-visual {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.visual-salon,
.event-art-large {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.22), transparent 40%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.4), transparent 18%),
    linear-gradient(135deg, #203775 0%, #2c4f94 46%, #139796 100%);
}

.visual-mastermind {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.25), transparent 36%),
    radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.24), transparent 16%),
    linear-gradient(135deg, #eef3f9 0%, #d5e0f0 40%, #bddfdc 100%);
}

.visual-journey {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), transparent 45%),
    radial-gradient(circle at 18% 72%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(135deg, #112445 0%, #1f3b68 42%, #176f78 100%);
}

.editorial-visual::before,
.founder-visual::before {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.editorial-visual::after,
.founder-visual::after {
  content: "";
  position: absolute;
  inset: 24px auto auto 24px;
  width: 86px;
  height: 86px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.path-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(19, 138, 138, 0.12), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(37, 63, 133, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.92);
}

.cta-panel h2 {
  max-width: 30ch;
}

.event-final-cta {
  align-items: center;
  gap: 28px;
}

.event-final-cta-copy {
  display: grid;
  gap: 12px;
  max-width: 42rem;
}

.event-final-cta-copy h2 {
  max-width: 20ch;
}

.event-final-cta-copy p:last-child {
  max-width: 56ch;
  color: var(--text-soft);
}

.join-panel-actions {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.join-panel-actions .button {
  margin: 0;
}

.event-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.button-colorful {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  isolation: isolate;
  overflow: visible;
  border-radius: 999px;
  border: 1px solid rgba(18, 36, 60, 0.08);
  background: #111827;
  color: #fff;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.18);
  transform-origin: center;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button-colorful::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #4f46e5 0%, #a855f7 50%, #ec4899 100%);
  opacity: 0.42;
  filter: blur(14px);
  transition: opacity 260ms ease;
}

.button-colorful::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(168, 85, 247, 0.24), rgba(236, 72, 153, 0) 72%);
  opacity: 0;
  transform: scale(0.9);
  filter: blur(16px);
  z-index: -1;
  transition:
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button-colorful span {
  position: relative;
  z-index: 1;
}

.button-colorful-arrow {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.92;
}

.button-colorful:hover,
.button-colorful:focus-visible {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 24px 42px rgba(17, 24, 39, 0.24);
  filter: saturate(1.04);
}

.button-colorful:hover::before,
.button-colorful:focus-visible::before {
  opacity: 0.82;
}

.button-colorful:hover::after,
.button-colorful:focus-visible::after {
  opacity: 1;
  transform: scale(1.08);
  filter: blur(20px);
}

.about-service-icon {
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.about-service-item:hover .about-service-icon,
.about-pillar-card:hover .about-service-icon {
  background: #fff;
  color: var(--brand-indigo);
  box-shadow: 0 10px 24px rgba(16, 32, 58, 0.16);
}

.featured-event {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 26px;
  padding: 28px;
}

.featured-copy,
.event-card-body,
.contact-form {
  display: grid;
  gap: 14px;
}

.featured-meta,
.event-date,
.archive-top,
.event-detail-meta {
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-steel);
}

.event-art-large {
  min-height: 320px;
  height: 100%;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.featured-floating {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 240px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  transition: transform 240ms ease, background-color 240ms ease;
  animation: float-card 3.6s ease-in-out infinite;
}

.featured-event:hover .featured-floating {
  animation-play-state: paused;
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.9);
}

.tag-row,
.event-meta,
.event-detail-meta,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row span,
.event-meta span,
.event-detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 138, 138, 0.08);
  color: var(--text);
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.93rem;
}

.event-detail-prose,
.event-detail-list-card {
  grid-column: span 3;
}

.event-detail-prose {
  gap: 16px;
}

.event-theme-card {
  padding-top: 26px;
}

.feature-detail-card {
  display: grid;
  height: 100%;
  align-content: start;
  background: rgba(255, 255, 255, 0.74);
  border: 0;
  box-shadow: none;
  padding: 30px 28px 26px;
  text-align: center;
}

.feature-detail-card:hover {
  background: rgba(255, 255, 255, 0.74);
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.feature-detail-card:hover h2,
.feature-detail-card:hover p,
.feature-detail-card:hover .mini-label {
  color: inherit;
}

.feature-detail-card h2 {
  max-width: 12ch;
  margin: 18px auto 0;
  font-size: clamp(2.1rem, 3.1vw, 3.5rem);
  line-height: 1.02;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.feature-detail-card p {
  max-width: 32ch;
  margin: 14px auto 0;
}

.feature-card-decorator {
  position: relative;
  width: 144px;
  height: 144px;
  margin: 0 auto 8px;
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 70%, transparent 100%);
  mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 70%, transparent 100%);
}

.feature-card-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(18, 36, 60, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(18, 36, 60, 0.14) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}

.feature-card-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(18, 36, 60, 0.25);
  border-left: 1px solid rgba(18, 36, 60, 0.25);
  color: var(--brand-indigo);
  font-size: 1.2rem;
}

.event-theme-card > .mini-label {
  margin-bottom: 8px;
}

.event-theme-card > h2 {
  margin-bottom: 18px;
}

.event-bullet-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-soft);
  display: grid;
  gap: 10px;
  line-height: 1.6;
}

.event-bullet-list.compact {
  gap: 8px;
}

.event-ticket-block {
  display: grid;
  gap: 10px;
}

.event-ticket-block strong {
  color: var(--text);
  font-size: 1rem;
}

.event-pricing-card {
  padding-top: 26px;
}

.event-pricing-card > .mini-label {
  margin-bottom: 8px;
}

.event-pricing-card > h2 {
  margin-bottom: 12px;
}

.event-pricing-card:hover {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow);
  transform: none;
}

.event-pricing-card:hover h2,
.event-pricing-card:hover h3,
.event-pricing-card:hover p,
.event-pricing-card:hover .mini-label,
.event-pricing-card:hover li,
.event-pricing-card:hover .event-price-value,
.event-pricing-card:hover .event-price-note,
.event-pricing-card:hover .event-price-secondary,
.event-pricing-card:hover .event-price-badge {
  color: inherit;
}

.event-alert-card {
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  perspective: 1400px;
}

.event-alert-card:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.event-alert-card:hover h2,
.event-alert-card:hover h3,
.event-alert-card:hover p,
.event-alert-card:hover .mini-label {
  color: inherit;
}

.event-alert-depth,
.event-alert-face {
  border-radius: calc(var(--radius-lg) + 2px);
}

.event-alert-depth {
  position: absolute;
  inset: 18px 20px -18px 20px;
  background:
    linear-gradient(145deg, rgba(132, 19, 31, 0.34), rgba(241, 95, 78, 0.14)),
    linear-gradient(180deg, rgba(117, 15, 32, 0.24), rgba(117, 15, 32, 0.04));
  filter: blur(10px);
  transform: translate3d(0, 12px, -40px) scale(0.98);
  opacity: 0.95;
  pointer-events: none;
}

.event-alert-face {
  position: relative;
  overflow: hidden;
  padding: 34px 34px 32px;
  border: 1px solid rgba(148, 24, 45, 0.18);
  background:
    radial-gradient(circle at top right, rgba(255, 174, 158, 0.34), transparent 32%),
    radial-gradient(circle at bottom left, rgba(193, 40, 58, 0.18), transparent 34%),
    linear-gradient(155deg, rgba(255, 250, 250, 0.98), rgba(255, 243, 240, 0.94));
  box-shadow:
    0 28px 50px rgba(103, 17, 31, 0.16),
    inset 1px 1px 0 rgba(255, 255, 255, 0.8),
    inset -1px -1px 0 rgba(164, 37, 53, 0.08);
  transform: rotateX(7deg) rotateY(-8deg);
  transform-style: preserve-3d;
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.event-alert-face::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.55) 18%, transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 36%);
  mix-blend-mode: screen;
  animation: eventAlertSheen 8s ease-in-out infinite;
  pointer-events: none;
}

.event-alert-face::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(197, 48, 65, 0.18), transparent 68%);
  pointer-events: none;
}

.event-alert-card:hover .event-alert-face {
  transform: rotateX(3deg) rotateY(-4deg) translateY(-4px);
  box-shadow:
    0 34px 64px rgba(103, 17, 31, 0.2),
    inset 1px 1px 0 rgba(255, 255, 255, 0.88),
    inset -1px -1px 0 rgba(164, 37, 53, 0.1);
}

.event-alert-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.event-alert-status {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(159, 24, 43, 0.08);
  border: 1px solid rgba(159, 24, 43, 0.14);
  color: #8a1830;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-alert-card h2 {
  margin-bottom: 14px;
  max-width: 12ch;
}

.event-alert-intro {
  max-width: 64ch;
  margin: 0 0 24px;
  color: #6a4a4c;
}

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

.event-alert-item {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(162, 35, 54, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 14px 30px rgba(136, 28, 44, 0.08);
}

.event-alert-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #9a3141;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-alert-item strong {
  display: block;
  margin-bottom: 10px;
  color: #13213a;
  font-size: 1.05rem;
  line-height: 1.25;
}

.event-alert-item p {
  margin: 0;
  color: #6a4a4c;
  line-height: 1.6;
}

@keyframes eventAlertSheen {
  0%, 100% { transform: translateX(-16%); opacity: 0.44; }
  50% { transform: translateX(14%); opacity: 0.72; }
}

.event-pricing-intro {
  margin-bottom: 24px;
  max-width: 52ch;
}

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

.event-pricing-grid-single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

.event-pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.event-price-tier {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid rgba(18, 36, 60, 0.88);
  box-shadow: 4px 4px 0 rgba(18, 36, 60, 0.88);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.event-price-tier:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(18, 36, 60, 0.88);
}

.event-price-tier-left {
  transform: rotate(-1deg);
}

.event-price-tier-popular {
  transform: rotate(1deg);
}

.event-price-tier-right {
  transform: rotate(-1.5deg);
}

.event-price-tier-single {
  transform: rotate(-1deg);
}

.event-price-tier-popular:hover,
.event-price-tier-left:hover,
.event-price-tier-right:hover {
  transform: translate(-3px, -3px);
}

.event-price-tier-single:hover {
  transform: translate(-3px, -3px);
}

.event-price-badge {
  position: absolute;
  top: -12px;
  right: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 2px solid rgba(18, 36, 60, 0.88);
  background: #f7efe1;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.event-price-badge-popular {
  background: #f2cf67;
}

.event-price-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  border: 2px solid rgba(18, 36, 60, 0.88);
  color: var(--brand-indigo);
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
}

.event-price-tier h3 {
  font-size: 1.65rem;
  margin-bottom: 8px;
}

.event-price-copy {
  min-height: 72px;
  margin-bottom: 20px;
  line-height: 1.55;
}

.event-price-main {
  display: grid;
  gap: 2px;
  margin-bottom: 12px;
}

.event-price-value {
  font-family: "Work Sans", "Instrument Sans", "Segoe UI", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.95;
  color: var(--text);
}

.event-price-note {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.event-price-secondary {
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: 0.98rem;
  font-weight: 700;
}

.event-price-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.event-price-features li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  line-height: 1.5;
}

.event-price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(18, 36, 60, 0.88);
  font-size: 0.72rem;
  line-height: 1;
}

.event-theme-panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
}

.event-theme-image {
  width: 100%;
  max-height: 440px;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}

.event-theme-card:hover {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow);
  transform: none;
}

.event-theme-card:hover h2,
.event-theme-card:hover h3,
.event-theme-card:hover p,
.event-theme-card:hover .mini-label {
  color: inherit;
}

.event-theme-card:hover .event-theme-icon {
  background: rgba(255, 255, 255, 0.92);
}

.event-theme-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 0% 50%, rgba(37, 63, 133, 0), rgba(37, 63, 133, 0), rgba(37, 63, 133, 0.85), rgba(19, 138, 138, 0.8), rgba(19, 138, 138, 0), rgba(19, 138, 138, 0)),
    linear-gradient(135deg, rgba(37, 63, 133, 0.9), rgba(19, 138, 138, 0.88));
  background-size: 240% 240%, 100% 100%;
  background-position: 0% 50%, 0 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: event-shine-border 12s linear infinite;
  pointer-events: none;
}

@keyframes event-shine-border {
  0% { background-position: 0% 50%, 0 0; }
  50% { background-position: 100% 50%, 0 0; }
  100% { background-position: 0% 50%, 0 0; }
}

.event-theme-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 6px 6px 2px;
}

.event-theme-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 12px 0;
}

.event-theme-item::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 48px;
  bottom: -8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(37, 63, 133, 0.18), rgba(19, 138, 138, 0.12));
}

.event-theme-item-last::after {
  display: none;
}

.event-theme-icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(18, 36, 60, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(16, 32, 58, 0.08);
  font-size: 0.92rem;
  color: var(--text);
}

.event-theme-icon-ai {
  color: #d97a00;
  border-color: rgba(217, 122, 0, 0.28);
}

.event-theme-icon-mobile {
  color: #c78a00;
  border-color: rgba(199, 138, 0, 0.28);
}

.event-theme-icon-network {
  color: #2f6ee7;
  border-color: rgba(47, 110, 231, 0.28);
}

.event-theme-icon-device {
  color: #13776b;
  border-color: rgba(19, 119, 107, 0.28);
}

.event-theme-icon-apps {
  color: #1b8b8f;
  border-color: rgba(27, 139, 143, 0.28);
}

.event-theme-icon-security {
  color: #2d6f52;
  border-color: rgba(45, 111, 82, 0.28);
}

.event-theme-copy {
  display: grid;
  gap: 6px;
  width: 100%;
  max-width: 44rem;
  padding-top: 3px;
}

.event-theme-copy h3 {
  font-size: 1.06rem;
  line-height: 1.16;
  max-width: 24ch;
  text-wrap: balance;
}

.event-theme-copy p {
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 62ch;
}

.text-link {
  color: var(--brand-indigo);
  font-weight: 700;
}

.archive-details {
  margin-top: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.archive-details summary {
  padding: 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.archive-details summary::-webkit-details-marker {
  display: none;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 24px 24px;
}

.archive-card {
  padding: 20px;
}

.archive-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

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

.founder-stack {
  display: grid;
  gap: 24px;
  margin-top: 18px;
}

.founder-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.founder-feature-right {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
}

.founder-feature-media {
  min-height: 360px;
}

.founder-photo-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(18, 36, 60, 0.06));
}

.founder-photo {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.founder-feature-copy {
  padding: 36px 34px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.founder-feature-copy h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.founder-feature-copy p {
  max-width: 52ch;
}

.founder-feature-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.founder-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
}

@media (max-width: 860px) {
  .founder-card {
    grid-template-columns: 1fr;
  }
  .founder-visual {
    min-height: 180px;
  }
}

.founder-visual {
  min-height: 260px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #203775 0%, #149393 100%);
}

.founder-visual-alt {
  background: linear-gradient(135deg, #0e1f3e 0%, #2f528f 54%, #1a8789 100%);
}

.founder-visual-alt::before,
.founder-visual-alt::after {
  display: none;
}

.founder-visual span {
  position: relative;
  z-index: 1;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.94);
}

.founder-body {
  padding: 24px;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-path {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-path-card,
.faq-list {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

.contact-path-card {
  padding: 22px 24px;
  display: grid;
  gap: 14px;
}

.contact-path-step {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-steel);
}

.contact-path-arrow {
  width: 72px;
  height: 14px;
  display: flex;
  align-items: center;
}

.contact-path-arrow span {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-indigo), var(--brand-teal));
  position: relative;
  border-radius: 999px;
}

.contact-path-arrow span::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--brand-teal);
  border-right: 2px solid var(--brand-teal);
  transform: translateY(-50%) rotate(45deg);
}

.contact-linkedin-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-linkedin-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(18, 36, 60, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.contact-linkedin-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 138, 138, 0.2);
  background: rgba(255, 255, 255, 0.92);
}

.contact-linkedin-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 63, 133, 0.12), rgba(19, 138, 138, 0.14));
  color: var(--brand-indigo);
}

.contact-copy-simple {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-copy-simple .page-lead,
.contact-copy-simple .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.contact-stack .contact-form {
  width: min(720px, 100%);
}

.contact-form-static:hover {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow);
  transform: none;
}

.contact-form-static:hover label,
.contact-form-static:hover .form-feedback,
.contact-form-static:hover p {
  color: inherit;
}

.contact-form-static:hover input,
.contact-form-static:hover select,
.contact-form-static:hover textarea {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(18, 36, 60, 0.12);
  color: var(--text);
}

.contact-form-static:hover input::placeholder,
.contact-form-static:hover textarea::placeholder {
  color: #7d7d7d;
}

.faq-section {
  padding-top: 10px;
}

.faq-shell {
  display: grid;
  gap: 24px;
}

.faq-list {
  padding: 10px 28px;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(18, 36, 60, 0.08);
}

.faq-trigger {
  width: 100%;
  min-height: 72px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--brand-indigo);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-content p {
  overflow: hidden;
  padding: 0;
}

.faq-item.is-open .faq-content {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-content p {
  padding: 0 0 22px;
}

.faq-cta-copy {
  text-align: center;
  font-size: 1.02rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.94rem;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(18, 36, 60, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(19, 138, 138, 0.45);
  box-shadow: 0 0 0 4px rgba(19, 138, 138, 0.1);
}

.form-feedback {
  min-height: 1.4em;
}

.form-feedback.is-success {
  color: #0f7a5b;
}

.site-footer {
  padding: 30px 0 48px;
}

.footer-brand {
  margin-bottom: 8px;
}

.footer-brand .brand-logo {
  width: 208px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding-top: 28px;
  border-top: 1px solid rgba(18, 36, 60, 0.08);
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.footer-links-primary,
.footer-links-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links-primary {
  gap: 10px 12px;
}

.footer-links-primary a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.94rem;
  transition: color 180ms ease, background-color 180ms ease;
}

.footer-links-primary a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
}

.footer-links-secondary {
  gap: 8px 22px;
}

.footer-links-secondary a {
  color: #7a97c4;
  font-size: 0.94rem;
  transition: color 180ms ease;
}

.footer-links-secondary a:hover {
  color: #5f80b7;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.reveal-enhanced .reveal {
  opacity: 0;
  transform: translateY(24px);
}

body.reveal-enhanced .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.reveal-enhanced .reveal[data-reveal="left"] {
  transform: translate(-24px, 18px);
}

body.reveal-enhanced .reveal[data-reveal="right"] {
  transform: translate(24px, 18px);
}

body.reveal-enhanced .reveal[data-reveal="up"] {
  transform: translateY(32px);
}

body.reveal-enhanced .reveal.is-visible[data-reveal="left"],
body.reveal-enhanced .reveal.is-visible[data-reveal="right"],
body.reveal-enhanced .reveal.is-visible[data-reveal="up"] {
  transform: translate(0, 0);
}

@media (max-width: 980px) {
  .event-showcase-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-rail {
    grid-auto-columns: minmax(310px, 340px);
  }
}

@media (max-width: 720px) {
  .event-rail {
    grid-auto-columns: calc(100vw - 48px);
    gap: 18px;
  }

  .event-rail-card .event-card-body {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::after { animation: none; }
  .hero-orbit span,
  .reveal,
  .button,
  .hero-panel,
  .hero-card,
  .glass-card,
  .editorial-card,
  .event-card,
  .archive-card,
  .founder-card,
  .principle-card,
  .detail-card,
  .contact-form,
  .featured-event,
  .editorial-visual,
  .event-art,
  .featured-floating,
  .site-header,
  .site-nav a { transition: none; }
  .reveal { opacity: 1; transform: none; }
  .button::before,
  .site-nav a::after { display: none; }
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    width: min(280px, calc(100vw - 40px));
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .hero-grid,
  .path-grid,
  .event-detail-grid,
  .trust-grid,
  .featured-event { grid-template-columns: 1fr; }
  .trust-stats,
  .feature-grid,
  .editorial-grid,
  .registration-grid,
  .legal-layout,
  .event-detail-content,
  .form-row { grid-template-columns: 1fr; }
  .event-grid,
  .principle-grid,
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .event-detail-prose,
  .event-detail-list-card { grid-column: auto; }
  .event-alert-grid { grid-template-columns: 1fr; }
  .event-alert-face {
    padding: 28px 26px 24px;
    transform: none;
  }
  .event-alert-depth { inset: 14px 16px -14px 16px; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-feature,
  .founder-feature-right { grid-template-columns: 1fr; }
  .cta-panel,
  .footer-row { flex-direction: column; align-items: flex-start; }
  .competence-head { flex-direction: column; align-items: flex-start; }

  .event-final-cta-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .registration-copy,
  .registration-next-copy {
    max-width: 100%;
  }

  .event-hero-shell {
    min-height: auto;
    padding-bottom: 0;
  }

  .event-hero-main {
    max-width: 760px;
    text-align: center;
  }

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

  .event-hero-meta,
  .event-hero-actions {
    justify-content: center;
  }

  .event-intro-feature {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .event-intro-copy {
    max-width: 100%;
    text-align: center;
  }

  .event-intro-copy h2 {
    max-width: 13ch;
    margin-left: auto;
    margin-right: auto;
  }

  .event-intro-title {
    max-width: 11ch;
  }

  .event-intro-actions {
    justify-content: center;
  }

  .event-intro-portrait {
    max-width: 540px;
    margin: 0 auto;
  }

  .faq-list {
    padding: 8px 22px;
  }
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-linkedin-list {
    flex-direction: column;
  }

  .contact-linkedin-pill {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .nav-row { min-height: 76px; }
  .container { width: min(1180px, calc(100vw - 40px)); }
  h1 {
    font-size: clamp(2.2rem, 8.5vw, 3rem);
    max-width: none;
    line-height: 1.06;
  }
  h2 {
    font-size: clamp(1.7rem, 8.5vw, 2.4rem);
    max-width: 22ch;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .section { padding: 32px 0; }
  .hero,
  .page-hero { padding-top: 34px; }
  .hero {
    min-height: auto;
  }
  .event-alert-topline {
    flex-direction: column;
    align-items: flex-start;
  }
  .event-alert-card h2 {
    max-width: none;
  }
  .event-alert-item {
    border-radius: 18px;
  }
  .hero-panel { min-height: auto; }
  .hero-orbit { display: none; }
  .brand-logo { width: 182px; }
  .footer-brand .brand-logo { width: 172px; }
  .cta-panel,
  .featured-event,
  .trust-grid { padding: 22px; }
  .founder-feature-copy { padding: 26px 22px; }
  .founder-feature-media { min-height: 220px; }
  .founder-feature-copy h3 { font-size: 1.8rem; }
  .competence-track-wrap::before,
  .competence-track-wrap::after { width: 24px; }
  .competence-track { grid-auto-columns: minmax(248px, 84vw); gap: 16px; }
  .competence-card-body { padding: 18px 18px 20px; }
  .competence-card-body h3 { font-size: 1.3rem; }
  .hero-copy-centered {
    text-align: center;
  }

  .registration-step {
    grid-template-columns: 1fr;
  }
    .hero-lead-centered,
    .hero-actions-centered {
      margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .hero-lead-centered {
    max-width: 360px;
  }
  .hero-subline {
    white-space: normal;
  }
  .hero-actions,
  .hero-actions-centered {
    justify-content: center;
  }
  .hero-actions .button,
  .hero-actions-centered .button,
  .contact-form .button-full {
    width: min(100%, 320px);
  }

  .event-hero-title {
    max-width: 14ch;
    line-height: 0.98;
  }

  .event-hero-title-line-fixed {
    white-space: normal;
  }

  .event-text-rotate {
    display: inline-block;
    min-width: 0;
    margin-left: 0.12em;
    white-space: normal;
  }

  .event-hero-portrait .event-art {
    min-height: 320px;
  }

  .event-tech-orbit-one {
    width: 96px;
    height: 96px;
    top: 20px;
    right: 8%;
  }

  .event-tech-orbit-two {
    width: 72px;
    height: 72px;
    left: 8%;
    bottom: 34px;
  }

  .event-intro-feature {
    padding: 22px;
    border-radius: 28px;
  }

  .event-intro-copy {
    text-align: center;
  }

  .event-intro-copy h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 12ch;
    font-size: clamp(2.2rem, 9vw, 3.4rem);
    line-height: 0.98;
  }

  .event-intro-title {
    max-width: 12ch;
  }

  .event-intro-title span {
    white-space: normal;
  }

  .event-intro-portrait {
    min-height: 300px;
    max-height: 360px;
    border-radius: 18px;
  }

  .event-theme-panel {
    padding: 14px;
    border-radius: 24px;
  }

  .event-pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .event-price-tier,
  .event-price-tier-left,
  .event-price-tier-popular,
  .event-price-tier-right {
    transform: none;
  }

  .event-price-copy {
    min-height: 0;
  }

  .event-theme-item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

  .event-theme-item::after {
    left: 18px;
  }

  .event-theme-icon {
    width: 38px;
    height: 38px;
  }

  .event-theme-copy h3 {
    font-size: 1rem;
  }
  .faq-list {
    padding: 6px 18px;
  }
}
