:root {
  --ink: #101114;
  --muted: #667077;
  --paper: #f6f8f8;
  --line: #e0e5e5;
  --pink: #ff0a85;
  --orange: #ff8a00;
  --green: #00843d;
  --blue: #315b84;
  --radius: 8px;
  --shadow: 0 18px 40px rgba(20, 24, 28, .12);
}

* { box-sizing: border-box; }
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}
a { color: inherit; }
img, video, canvas, iframe { max-width: 100%; }
.site-header {
  background: #070707;
  color: #fff;
}
.top-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px 0;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
}
.hero-pattern {
  min-height: 154px;
  background-color: #111;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.07) 8px, transparent 8px),
    linear-gradient(rgba(255,255,255,.055) 8px, transparent 8px);
  background-size: 48px 32px;
  background-position: center;
}
.hero-pattern.has-event-banner {
  min-height: 240px;
  background-size: cover;
  background-position: center;
}
.hero-pattern.has-event-banner .hero-inner {
  min-height: 240px;
}
.hero-inner {
  max-width: 1180px;
  min-height: 154px;
  margin: 0 auto;
  padding: 32px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  font-size: clamp(36px, 6vw, 76px);
  line-height: .82;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}
.brand span { color: var(--pink); display: block; }
.brand small { color: var(--orange); font-size: .33em; margin-left: 8px; }
.brand-image img { width: min(220px, 55vw); max-height: 112px; object-fit: contain; display: block; }
.hero-link { font-size: 22px; font-weight: 900; text-decoration: none; }
.subbar {
  background: #f2f5f5;
  border-bottom: 1px solid var(--line);
}
.subbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  color: #93a0a6;
  font-weight: 700;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 22px 72px;
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: start;
}
.headline {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
  text-transform: uppercase;
}
.headline h1, .headline h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 52px);
  line-height: .95;
  font-weight: 950;
}
.slash { height: 22px; background: repeating-linear-gradient(135deg, transparent 0 10px, #e6eded 10px 12px, transparent 12px 18px); }
.event-card h3 {
  color: var(--pink);
  margin: 0 0 28px;
  font-size: 28px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.event-card p { color: var(--muted); font-size: 20px; margin: 10px 0; }
.event-card strong { color: var(--ink); }
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.intro-panel {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
}
.intro-panel p { color: var(--muted); font-size: 24px; margin: 0 0 26px; }
.btn {
  appearance: none;
  border: 0;
  border-radius: 5px;
  background: #2d343d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 850;
  font-size: 17px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(16,24,40,.18); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(255,10,133,.28);
  outline-offset: 2px;
}
.btn-pink { background: var(--pink); }
.btn-muted { background: #9aa6a8; }
.step {
  height: 46px;
  margin-bottom: 18px;
  background: #f3f7f7;
  border-radius: 5px;
  overflow: hidden;
}
.step span {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.field label {
  display: block;
  color: #687277;
  font-weight: 850;
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d8dddd;
  border-radius: 4px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255,10,133,.08);
}
.field textarea { min-height: 98px; resize: vertical; }
.checkline { display: inline-flex !important; align-items: center; gap: 8px; color: var(--ink) !important; margin-top: 8px; }
.checkline input { width: auto; min-height: auto; }
.span-2 { grid-column: span 2; }
.captcha-box { margin: 8px 0 2px; }
.error { color: #b42318; font-size: 14px; margin-top: 6px; font-weight: 700; }
.actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 28px; }
.review-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.readonly {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
}
.success-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: center;
}
.badge-preview {
  aspect-ratio: 2 / 3;
  background: #111;
  color: #fff;
  border-radius: 6px;
  padding: 28px;
  transform: rotate(9deg);
  display: grid;
  align-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-preview .mark { font-size: 42px; line-height: .9; font-weight: 950; text-transform: uppercase; }
.badge-preview .mark span { color: var(--pink); display: block; }
.badge-preview-art { padding: 0; overflow: hidden; background: #111; }
.badge-preview-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.info-box {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 22px;
  margin-top: 22px;
}
.footer {
  background: #f2f5f5;
  border-bottom: 4px solid var(--orange);
  padding: 30px 22px;
  text-align: center;
  color: #333;
}
.alert { padding: 14px 16px; border-radius: 5px; margin-bottom: 18px; font-weight: 800; }
.alert-ok { background: var(--orange); color: #fff; }
.alert-error { background: #fee4e2; color: #912018; }
.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
  margin-bottom: 34px;
}
.landing-hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: .95;
  margin: 0 0 18px;
  letter-spacing: 0;
}
.eyebrow {
  color: var(--pink);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 12px;
}
.lead {
  color: var(--ink);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 850;
  margin: 0 0 16px;
}
.landing-hero p:not(.eyebrow):not(.lead) {
  color: var(--muted);
  font-size: 20px;
  max-width: 760px;
}
.landing-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn-outline { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.landing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.landing-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
}
.landing-block h2 { margin: 0 0 16px; font-size: 26px; }
.landing-block li { margin: 10px 0; font-weight: 800; }
.span-wide { grid-column: span 2; }
.timeline { display: grid; gap: 10px; }
.timeline div { border-left: 4px solid var(--orange); background: var(--paper); padding: 12px 14px; border-radius: 4px; font-weight: 800; }
.event-site {
  background: #fff;
}
.event-nav {
  position: sticky;
  top: 0;
  z-index: 8;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  backdrop-filter: blur(10px);
}
.event-nav a {
  border-radius: 999px;
  padding: 9px 14px;
  color: #1a2028;
  text-decoration: none;
  font-weight: 900;
  transition: background-color .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.event-nav a:hover, .event-nav a.active, .event-nav-cta {
  background: var(--pink);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255,10,133,.16);
}
.event-page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 22px 22px;
}
.event-page-hero h1 {
  font-size: clamp(54px, 9vw, 112px);
  line-height: .88;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}
.event-hero-section {
  min-height: 620px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,10,133,.22), transparent 28%),
    linear-gradient(135deg, #090a0c 0%, #151922 62%, #101114 100%);
  color: #fff;
  display: grid;
  align-items: end;
  padding: 84px max(22px, calc((100vw - 1180px) / 2)) 74px;
}
.event-hero-copy {
  width: min(900px, 100%);
}
.event-hero-logo {
  width: min(260px, 70vw);
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 32px;
}
.event-hero-section h1 {
  font-size: clamp(48px, 9vw, 118px);
  line-height: .9;
  letter-spacing: 0;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.event-hero-section p {
  max-width: 760px;
  color: #d8dee8;
  font-size: clamp(20px, 3vw, 31px);
  font-weight: 800;
  margin: 0 0 22px;
}
.event-hero-section strong {
  display: block;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
}
.event-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 22px;
}
.event-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 44px;
  align-items: center;
}
.event-section h2 {
  font-size: clamp(38px, 6vw, 78px);
  line-height: .94;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.event-rich-text {
  color: var(--muted);
  font-size: 20px;
  font-weight: 650;
}
.event-media-box {
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
}
.event-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-media-box a {
  color: #fff;
  font-size: 24px;
  font-weight: 950;
  text-decoration: none;
}
.event-media-placeholder {
  padding: 28px;
  font-size: 34px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}
.event-numbers {
  max-width: none;
  background: #101114;
  color: #fff;
  padding-left: max(22px, calc((100vw - 1180px) / 2));
  padding-right: max(22px, calc((100vw - 1180px) / 2));
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.numbers-grid article {
  min-height: 150px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255,255,255,.05);
  transition: transform .16s ease, border-color .16s ease, background-color .16s ease;
}
.numbers-grid article:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.075); }
.numbers-grid strong {
  display: block;
  color: var(--pink);
  font-size: clamp(34px, 5vw, 62px);
  line-height: .9;
  font-weight: 950;
  margin-bottom: 12px;
}
.numbers-grid span {
  color: #e8edf2;
  font-weight: 900;
}
.section-title-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}
.section-title-row h2 {
  margin: 0;
}
.section-title-row > span, .section-title-row a {
  color: var(--pink);
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: none;
}
.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.stage-card {
  min-height: 430px;
  border-radius: 8px;
  padding: 24px;
  background: #f4f7f7;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.stage-card:hover { transform: translateY(-3px); border-color: rgba(255,10,133,.32); box-shadow: var(--shadow); }
.stage-card > span {
  position: absolute;
  right: 20px;
  top: 14px;
  color: rgba(16,17,20,.12);
  font-size: 86px;
  font-weight: 950;
}
.stage-card p {
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.stage-card h3 {
  font-size: 30px;
  line-height: 1;
  margin: 0 0 18px;
}
.stage-card div {
  color: var(--muted);
  font-weight: 650;
}
.stage-card footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-weight: 800;
}
.stage-card footer strong {
  color: var(--pink);
  font-size: 32px;
}
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.speaker-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  min-height: 250px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 10px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.speaker-card:hover { transform: translateY(-3px); border-color: rgba(255,10,133,.32); box-shadow: var(--shadow); }
.speaker-card img, .speaker-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 7px;
  object-fit: cover;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 72px;
  font-weight: 950;
}
.speaker-card strong {
  font-size: 20px;
  line-height: 1.1;
}
.speaker-card span {
  color: var(--muted);
  font-weight: 700;
}
.event-agenda {
  max-width: none;
  background: #f3f6f6;
  padding-left: max(22px, calc((100vw - 1180px) / 2));
  padding-right: max(22px, calc((100vw - 1180px) / 2));
}
.agenda-table {
  display: grid;
  gap: 8px;
}
.agenda-table article {
  display: grid;
  grid-template-columns: 130px 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px 18px;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.agenda-table article:hover { transform: translateX(2px); border-color: rgba(255,138,0,.42); box-shadow: 0 10px 28px rgba(16,24,40,.08); }
.agenda-table span {
  color: var(--pink);
  font-weight: 950;
  text-transform: uppercase;
}
.agenda-table b {
  font-size: 24px;
}
.agenda-table strong {
  display: block;
  font-size: 19px;
}
.agenda-table small {
  color: var(--muted);
  font-weight: 800;
}
.participation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.participation-card {
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 46px);
  background: #fff;
}
.participation-card.dark {
  background: #101114;
  color: #fff;
}
.participation-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}
.participation-card.dark p:not(.eyebrow) {
  color: #cbd3da;
}
.participation-card ul {
  padding-left: 18px;
  margin: 24px 0;
}
.participation-card li {
  margin: 8px 0;
  font-weight: 900;
}
.event-final-cta {
  max-width: 1180px;
  margin: 0 auto 72px;
  padding: 58px 22px;
  border-radius: 8px;
  background: #101114;
  color: #fff;
  text-align: center;
}
.event-faqs h2 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: .92;
  margin: 0 0 28px;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.faq-list details[open], .faq-list details:hover { border-color: rgba(255,10,133,.28); box-shadow: 0 12px 34px rgba(16,24,40,.08); }
.faq-list summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 950;
}
.faq-list p {
  color: var(--muted);
  font-weight: 700;
  margin: 12px 0 0;
}
.event-final-cta h2 {
  margin: 0 auto 26px;
  max-width: 780px;
  font-size: clamp(40px, 7vw, 86px);
  line-height: .92;
  text-transform: uppercase;
}
.event-final-cta .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.event-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  text-align: left;
}
.event-footer-grid span {
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 14px;
  color: #d8dee8;
}
.event-footer-grid b {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

@media (max-width: 820px) {
  .two-col, .success-grid, .landing-hero, .landing-grid { grid-template-columns: 1fr; }
  .event-card { order: -1; }
  .form-grid, .review-row { grid-template-columns: 1fr; }
  .span-2, .span-wide { grid-column: auto; }
  .hero-inner { align-items: flex-start; flex-direction: column; }
  .hero-link { font-size: 18px; }
  .wrap { padding-top: 34px; }
  .headline { grid-template-columns: 1fr; }
  .slash { display: none; }
  .actions { justify-content: stretch; flex-direction: column; }
  .actions .btn, .landing-actions .btn { width: 100%; }
  .panel { padding: 20px; }
  .success-grid { gap: 24px; }
  .badge-preview { transform: rotate(3deg); max-width: 320px; margin: 0 auto; }
  .event-nav { overflow-x: auto; justify-content: flex-start; }
  .event-hero-section { min-height: auto; padding-top: 54px; }
  .event-about, .participation-grid, .stage-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .speaker-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .agenda-table article { grid-template-columns: 1fr; gap: 6px; }
  .section-title-row { display: block; }
  .event-footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: no-preference) {
  .event-hero-copy, .event-section, .event-page-hero, .event-final-cta, .panel, .lead-box, .landing-block {
    animation: dmFadeUp .48s ease both;
  }
  .event-section:nth-of-type(2) { animation-delay: .04s; }
  .event-section:nth-of-type(3) { animation-delay: .08s; }
  .event-section:nth-of-type(4) { animation-delay: .12s; }
}

@keyframes dmFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 520px) {
  .top-strip { padding: 10px 16px 0; text-align: left; font-size: 12px; }
  .hero-inner { padding: 22px 16px; gap: 14px; }
  .brand { font-size: clamp(30px, 12vw, 48px); }
  .hero-link { font-size: 16px; }
  .wrap { padding: 26px 16px 52px; }
  .headline h1, .headline h2 { font-size: clamp(28px, 10vw, 40px); }
  .event-card h3 { font-size: 22px; margin-bottom: 16px; }
  .event-card p, .intro-panel p, .landing-hero p:not(.eyebrow):not(.lead) { font-size: 17px; }
  .btn { width: 100%; padding: 0 16px; text-align: center; }
  .step { height: auto; }
  .step span { width: 100%; min-height: 44px; }
  .panel { padding: 18px; }
  .success-grid { align-items: start; }
  .event-section { padding: 48px 16px; }
  .event-hero-section { padding-left: 16px; padding-right: 16px; }
  .numbers-grid, .speaker-grid { grid-template-columns: 1fr; }
  .event-final-cta { margin: 0 16px 52px; padding: 34px 18px; }
}

@media print {
  body { background: #fff; }
  .no-print { display: none !important; }
}
