:root {
  --gold: #f9b000;
  --white: #ffffff;
  --black: #000000;
  --ink: #1f1f1f;
  --muted: #5d5d5d;
  --line: #e8e8e8;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

.site-header,
.site-footer {
  background: var(--ink);
  color: var(--white);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 18px max(24px, calc((100vw - var(--max)) / 2));
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(150px, 42vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  color: var(--gold);
  font-weight: 800;
}

.hero {
  background:
    linear-gradient(135deg, rgba(249, 176, 0, 0.16), transparent 38%),
    var(--ink);
  color: var(--white);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  gap: 44px;
  align-items: center;
  max-width: var(--max);
  min-height: 560px;
  margin: 0 auto;
  padding: 46px 24px 58px;
}

.eyebrow,
.section-kicker,
.event-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 790px;
  color: var(--gold);
  font-size: clamp(46px, 6.1vw, 70px);
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
}

.hero-subhead {
  margin: 10px 0 0;
  color: var(--gold);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
}

.hero-text {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 19px;
  font-weight: 600;
}

.hero-context {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--white);
  font-size: 19px;
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.button-primary {
  background: var(--gold);
  color: var(--white);
}

.button-secondary {
  border-color: var(--white);
  color: var(--white);
}

.event-card {
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 30px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.event-date,
.event-time {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
}

.event-date {
  font-size: 30px;
  line-height: 1.1;
}

.event-time {
  margin-top: 8px;
  color: var(--gold);
  font-size: 24px;
}

.host-strip {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.host-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 84px;
  gap: 16px;
  align-items: center;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding-left: 14px;
}

.host-row img {
  width: 84px;
  height: 84px;
  border: 2px solid rgba(249, 176, 0, 0.72);
  border-radius: 8px;
  object-fit: cover;
}

.host-name,
.host-role {
  display: block;
}

.host-name {
  font-weight: 800;
}

.host-role {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.timer-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.timer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 24px;
  text-align: center;
}

.timer-inner p {
  margin: 0 0 18px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(74px, 1fr));
  gap: 14px;
  max-width: 480px;
  margin: 0 auto;
}

.timer-box {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.timer-box strong {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 0.9;
  border-radius: 6px;
  background: var(--gold);
  color: var(--white);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
}

.timer-box span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.content-section,
.registration-section {
  padding: 86px 24px;
}

.intro-section {
  padding-bottom: 44px;
}

.section-grid,
.registration-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  max-width: var(--max);
  margin: 0 auto;
}

.copy-stack p,
.feature-panel p,
.registration-copy p {
  margin: 0;
  font-size: 20px;
}

.copy-stack {
  display: grid;
  gap: 22px;
}

.intro-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: left;
}

.intro-copy {
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin-top: 34px;
}

.intro-copy p {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

.agenda-inner {
  display: grid;
  gap: 24px;
  margin-top: 52px;
}

.agenda-inner h2 {
  max-width: none;
  font-size: clamp(24px, 2.4vw, 34px);
}

.agenda-copy {
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin: 0;
  padding-left: 24px;
}

.agenda-copy li {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

.agenda-cta {
  justify-self: center;
  margin-top: 10px;
  min-height: 62px;
  padding: 0 34px;
  font-size: 18px;
}

.problem-section {
  background: var(--ink);
  color: var(--white);
  padding-bottom: 48px;
}

.fit-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.fit-card {
  display: grid;
  align-content: start;
  min-height: 440px;
  border: 2px solid;
  border-radius: 8px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.04);
}

.fit-card-good {
  border-color: #38b66b;
  box-shadow: inset 0 0 0 1px rgba(56, 182, 107, 0.2);
}

.fit-card-bad {
  border-color: #df4b4b;
  box-shadow: inset 0 0 0 1px rgba(223, 75, 75, 0.2);
}

.fit-label {
  justify-self: start;
  margin: 0 0 18px;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-card-good .fit-label {
  background: #38b66b;
}

.fit-card-bad .fit-label {
  background: #df4b4b;
  color: var(--white);
}

.fit-card h2 {
  color: var(--white);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.fit-card-good h2 {
  color: #7ee0a4;
}

.fit-card-bad h2 {
  color: #ff8b8b;
}

.fit-card ul {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 28px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.fit-card li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
}

.fit-card-good li::before {
  background: #38b66b;
}

.fit-card-bad li::before {
  background: #df4b4b;
}

.fit-cta {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 8px;
  min-height: 62px;
  padding: 0 34px;
  font-size: 18px;
}

.speakers-section {
  background: var(--white);
  padding-top: 44px;
  padding-bottom: 44px;
}

.speakers-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.speaker-grid {
  display: grid;
  gap: 24px;
  margin-top: 54px;
}

.speaker-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fbfbfb;
}

.speaker-card img {
  width: 260px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.speaker-card h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.speaker-card p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.registration-section {
  align-items: start;
  padding-top: 44px;
}

.registration-copy {
  position: sticky;
  top: 24px;
}

.registration-copy h2 {
  margin-bottom: 20px;
}

.registration-form {
  display: grid;
  gap: 22px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  padding: 34px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.form-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin: -34px -34px 6px;
  padding: 34px 34px 26px;
}

.form-header h3 {
  margin: 0;
  color: var(--gold);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.1;
}

.form-header p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  font-style: italic;
  line-height: 1.4;
}

.progressive-fields {
  display: grid;
  gap: 18px;
}

[hidden] {
  display: none !important;
}

.registration-form label {
  display: grid;
  gap: 9px;
  font-size: 15px;
  font-weight: 800;
}

.registration-form label:not(.radio-row label)::first-letter,
.law-firm-question legend::first-letter {
  color: inherit;
}

.registration-form label span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.registration-form input {
  width: 100%;
  min-height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.96);
  font: inherit;
}

.law-firm-question {
  display: grid;
  gap: 12px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 16px;
}

.law-firm-question legend {
  padding: 0 6px;
  font-weight: 800;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 0 14px;
}

.radio-row input {
  width: auto;
  min-height: auto;
}

.registration-form input:focus {
  border-color: var(--gold);
  outline: none;
}

.form-note {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-style: italic;
  line-height: 1.45;
}

.form-actions {
  display: grid;
  gap: 17px;
}

.registration-form .button {
  justify-self: stretch;
  min-height: 56px;
  margin-top: 2px;
  padding: 0 32px;
  color: var(--black);
  text-transform: uppercase;
}

.registration-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.registration-form.is-complete {
  align-content: center;
  min-height: 430px;
}

.confirmation-message {
  display: grid;
  gap: 18px;
}

.confirmation-message h3 {
  margin: 0;
  color: var(--gold);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
}

.confirmation-message p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.confirmation-cta {
  justify-self: start;
  margin-top: 8px;
  color: var(--black);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
}

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

.site-footer .brand {
  width: min(140px, 42vw);
}

@media (max-width: 900px) {
  .hero-inner,
  .section-grid,
  .registration-section {
    grid-template-columns: 1fr;
  }

  .split-section .section-grid,
  .fit-inner,
  .speaker-card {
    grid-template-columns: 1fr;
  }

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

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

  .registration-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .content-section {
    padding: 48px 24px;
  }

  .intro-section {
    padding-top: 44px;
    padding-bottom: 34px;
  }

  .agenda-inner {
    margin-top: 30px;
  }

  .problem-section {
    padding-top: 32px;
    padding-bottom: 34px;
  }

  .speakers-section {
    padding-top: 32px;
    padding-bottom: 18px;
  }

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

  .registration-section {
    padding-top: 20px;
    padding-bottom: 28px;
    gap: 24px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .brand {
    width: min(122px, 36vw);
  }

  .site-footer .brand {
    width: min(118px, 36vw);
  }

  .header-cta,
  .button {
    width: 100%;
  }

  h1 {
    font-size: 40px;
  }

  .hero-subhead {
    font-size: 27px;
  }

  .hero-text,
  .hero-context {
    font-size: 15px;
    line-height: 1.38;
  }

  .copy-stack p,
  .feature-panel p,
  .registration-copy p {
    font-size: 18px;
  }

  .timer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
  }

  .timer-box strong {
    font-size: 28px;
  }

  .topic-grid,
  .symptom-list {
    grid-template-columns: 1fr;
  }

  .fit-card {
    min-height: auto;
    padding: 26px;
  }

  .speaker-card {
    padding: 22px;
  }

  .speaker-card img {
    width: 100%;
    max-width: 320px;
  }

  .learning-list article {
    grid-template-columns: 1fr;
  }

  .registration-form,
  .feature-panel {
    padding: 26px;
  }

  .form-header {
    margin: -26px -26px 6px;
    padding: 26px 26px 22px;
  }

  .confirmation-cta {
    white-space: nowrap;
    font-size: 13px;
    padding: 0 14px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
