:root {
  --primary:#d9ee89;
  --background:#fff;
  --text:#18231f;
  --navy:#142620;
  --muted:#5f6964;
  --line:#dfe3df;
  --surface:#f5f6f2;
  --error:#af2626;
  --wrap:1200px;
}

* {
  box-sizing:border-box;
}

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

body {
  margin:0;
  background:var(--background);
  color:var(--text);
  font-family:Pretendard,-apple-system,BlinkMacSystemFont,"Apple SD Gothic Neo","Malgun Gothic",sans-serif;
  font-size:16px;
  line-height:1.7;
  word-break:keep-all;
}

button,input,select {
  font:inherit;
}

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

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

button {
  cursor:pointer;
}

img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

figure,p,h1,h2,h3,h4 {
  margin:0;
}

button {
  color:inherit;
}

h1,h2,h3 {
  line-height:1.25;
  letter-spacing:-.045em;
}

h2 {
  font-size:40px;
  font-weight:650;
}

h2 span,h1 span {
  display:block;
}

p+p {
  margin-top:18px;
}

:focus-visible {
  outline:3px solid #718b27;
  outline-offset:5px;
}

.wrap {
  width:min(var(--wrap),calc(100% - 96px));
  margin-inline:auto;
}

.section {
  padding-block:104px;
}

.eyebrow {
  font-size:12px;
  letter-spacing:.14em;
  font-weight:700;
  margin-bottom:22px;
}

.muted {
  color:var(--muted);
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  border:1px solid var(--text);
  background:var(--text);
  color:white;
  padding:15px 24px;
  line-height:1.5;
  font-size:15px;
  font-weight:600;
  border-radius:2px;
  transition:background .18s,transform .18s;
}

.button:hover {
  background:#34453b;
  transform:translateY(-1px);
}

.button span {
  font-size:21px;
  line-height:1;
}

.button-primary {
  background:var(--primary);
  color:var(--navy);
  border-color:var(--primary);
}

.button-primary:hover {
  background:#e8f5bb;
}

.button-small {
  padding:10px 18px;
  gap:28px;
  font-size:14px;
}

.button-outline {
  background:transparent;
  color:var(--text);
}

.button-outline:hover {
  background:var(--surface);
}

.button:disabled {
  cursor:wait;
  opacity:.65;
  transform:none;
}

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

.skip-link {
  position:fixed;
  top:-80px;
  left:20px;
  padding:12px;
  background:white;
  z-index:100;
}

.skip-link:focus {
  top:12px;
}

.site-header {
  position:sticky;
  top:0;
  z-index:30;
  background:var(--background);
  border-bottom:1px solid var(--line);
}

.header-inner {
  display:flex;
  align-items:center;
  height:87px;
  gap:36px;
}

.brand {
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
  line-height:1;
}

.brand>strong {
  font-size:34px;
  font-weight:800;
  letter-spacing:-2px;
}

.brand>img {
  width:72px;
  height:32px;
  object-fit:contain;
}

.brand-mark {
  color:#8eac40;
}

.brand-year {
  font-size:14px;
  font-weight:650;
  border-left:1px solid var(--line);
  padding-left:12px;
}

.brand-year small {
  display:block;
  font-size:8px;
  line-height:1.25;
  letter-spacing:.06em;
  margin-top:5px;
}

.main-nav {
  display:flex;
  gap:30px;
  align-items:center;
  margin-left:auto;
  font-size:14px;
}

.main-nav a {
  padding:10px 0;
}

.main-nav a:hover {
  color:#5a7226;
}

.nav-register {
  display:none;
}

.menu-toggle {
  display:none;
}

.hero {
  position:relative;
  isolation:isolate;
  background:var(--navy);
  min-height:650px;
  color:white;
  overflow:hidden;
}

.hero-image,.hero-shade {
  position:absolute;
  inset:0;
  z-index:-2;
}

.hero-image img {
  object-position:center 53%;
}

.hero-shade {
  z-index:-1;
  background:linear-gradient(90deg,rgba(9,20,15,.94) 0%,rgba(9,20,15,.78) 38%,rgba(9,20,15,.22) 100%);
}

.hero-content {
  padding-top:81px;
  padding-bottom:98px;
  position:relative;
}

.hero-kicker {
  font-size:16px;
  font-weight:500;
  letter-spacing:.04em;
  color:var(--primary);
  margin-bottom:25px;
}

.hero h1 {
  font-size:58px;
  font-weight:600;
  line-height:1.3;
  letter-spacing:-.055em;
}

.hero-description {
  font-size:17px;
  margin-top:24px;
  color:#e0e4df;
}

.hero-details {
  margin-top:30px;
  font-size:16px;
  line-height:1.7;
}

.hero-details p+p {
  margin-top:2px;
}

.hero-details strong {
  font-size:21px;
  margin-right:8px;
  font-weight:550;
  letter-spacing:.025em;
}

.hero-details p>span:not(.separator) {
  color:#c2cac3;
  margin-left:8px;
  font-size:14px;
}

.separator {
  margin:0 17px;
  color:#aeb6ad;
}

.hero-cta {
  margin-top:27px;
  min-width:200px;
}

.hero-organizer {
  font-size:12px;
  color:#b4c0b7;
  margin-top:24px;
}

.hero-organizer strong {
  color:#e0e4df;
  font-weight:500;
  margin-left:8px;
}

.hero-organizer>span {
  margin-left:22px;
}

.hero-bottom {
  position:absolute;
  bottom:22px;
  left:0;
  right:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:10px;
  letter-spacing:.12em;
  color:#e0e4df;
}

.hero-bottom a {
  font-size:12px;
  letter-spacing:0;
}

.hero-bottom a span {
  margin-left:18px;
}

.hero-edition {
  position:absolute;
  right:max(48px,calc((100vw - var(--wrap))/2));
  bottom:110px;
  font-size:84px;
  line-height:1;
  letter-spacing:-.035em;
  font-weight:300;
  opacity:.85;
}

.hero-edition span {
  display:block;
  font-size:10px;
  letter-spacing:.22em;
  margin-top:18px;
  text-align:right;
}

.event-facts {
  display:grid;
  grid-template-columns:1fr .9fr 1.1fr 1.5fr;
  padding-block:34px;
  border-bottom:1px solid var(--line);
  gap:24px;
}

.event-facts>div+div {
  padding-left:28px;
  border-left:1px solid var(--line);
}

.event-facts span {
  display:block;
  font-size:10px;
  letter-spacing:.14em;
  color:var(--muted);
  margin-bottom:6px;
  font-weight:600;
}

.event-facts strong {
  font-size:16px;
  font-weight:600;
}

.overview {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  align-items:center;
}

.overview h2 {
  margin-bottom:30px;
}

.overview-copy>p:not(.eyebrow) {
  font-size:16px;
  line-height:1.95;
  max-width:480px;
}

.overview-image {
  height:330px;
}

.overview-image>img,.overview-image>.image-placeholder {
  height:290px;
}

.overview-image figcaption {
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:11px;
  color:var(--muted);
  padding-top:15px;
}

.overview-image figcaption span {
  font-size:9px;
  letter-spacing:.12em;
  white-space:nowrap;
}

.image-placeholder {
  background:#d9dfd5;
  min-height:180px;
  display:grid;
  place-items:center;
  color:#71826d;
}

.image-placeholder span {
  font-size:12px;
  letter-spacing:.16em;
}

.hero .image-placeholder {
  height:100%;
  background:var(--navy);
}

@media(min-width:1600px) {
  .hero {
    min-height:700px;
  }
  .hero-content {
    padding-top:108px;
  }
}

@media(max-width:1100px) {
  .wrap {
    width:calc(100% - 64px);
  }
  .header-inner {
    gap:24px;
  }
  .main-nav {
    gap:24px;
  }
  .overview {
    gap:48px;
  }
  .hero h1 {
    font-size:52px;
  }
  .event-facts {
    grid-template-columns:1fr 1fr;
  }
  .event-facts>div+div {
    padding-left:0;
    border:0;
  }
  .event-facts>div:nth-child(even) {
    border-left:1px solid var(--line);
    padding-left:32px;
  }
  .hero-edition {
    right:32px;
  }
}

@media(max-width:768px) {
  html {
    scroll-padding-top:86px;
  }
  .wrap {
    width:calc(100% - 40px);
  }
  .header-inner {
    height:72px;
    gap:16px;
  }
  .brand>strong {
    font-size:29px;
  }
  .brand-year {
    font-size:12px;
  }
  .brand-year small {
    font-size:7px;
  }
  .header-cta {
    margin-left:auto;
    padding:8px 13px;
    gap:18px;
    font-size:12px;
  }
  .header-cta span {
    font-size:18px;
  }
  .menu-toggle {
    order:3;
    display:flex;
    width:32px;
    height:40px;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    border:0;
    background:none;
    padding:5px;
  }
  .menu-toggle>span:not(.sr-only) {
    height:1.5px;
    width:22px;
    background:var(--text);
  }
  .main-nav {
    position:absolute;
    top:72px;
    left:0;
    right:0;
    display:none;
    padding:16px 24px 25px;
    background:var(--background);
    border-bottom:1px solid var(--line);
    box-shadow:0 12px 20px #00000008;
  }
  .main-nav.is-open {
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:2px;
  }
  .nav-register {
    display:block;
  }
  .hero {
    min-height:610px;
  }
  .hero-content {
    padding-top:60px;
    padding-bottom:90px;
  }
  .hero h1 {
    font-size:44px;
  }
  .hero-kicker {
    font-size:12px;
    letter-spacing:.01em;
    margin-bottom:25px;
  }
  .hero-description {
    font-size:15px;
    max-width:260px;
    margin-top:20px;
  }
  .hero-shade {
    background:linear-gradient(90deg,rgba(9,20,15,.88),rgba(9,20,15,.55));
  }
  .hero-image img {
    object-position:60% center;
  }
  .hero-details {
    margin-top:27px;
    font-size:13px;
  }
  .hero-details strong {
    font-size:18px;
  }
  .separator {
    margin:0 10px;
  }
  .hero-details p>span:not(.separator) {
    font-size:12px;
  }
  .hero-cta {
    margin-top:26px;
    min-width:183px;
    padding:13px 20px;
  }
  .hero-organizer {
    font-size:10px;
    line-height:1.9;
  }
  .hero-organizer>span {
    margin-left:12px;
  }
  .hero-organizer strong {
    margin-left:4px;
  }
  .hero-bottom {
    bottom:22px;
    font-size:8px;
  }
  .hero-bottom a {
    font-size:10px;
  }
  .hero-edition {
    display:none;
  }
  .event-facts {
    padding-block:25px;
    gap:23px 16px;
  }
  .event-facts>div:nth-child(even) {
    padding-left:17px;
  }
  .event-facts span {
    font-size:9px;
  }
  .event-facts strong {
    font-size:13px;
    line-height:1.5;
    display:block;
  }
  .section {
    padding-block:68px;
  }
  h2 {
    font-size:30px;
  }
  .eyebrow {
    font-size:10px;
    margin-bottom:17px;
  }
  .overview {
    grid-template-columns:1fr;
    gap:32px;
  }
  .overview h2 {
    margin-bottom:22px;
  }
  .overview-copy>p:not(.eyebrow) {
    font-size:15px;
    line-height:1.9;
  }
  .overview-image {
    height:auto;
  }
  .overview-image>img,.overview-image>.image-placeholder {
    height:235px;
  }
  .overview-image figcaption {
    font-size:10px;
    flex-wrap:wrap;
    gap:4px;
  }
  .overview-image figcaption span {
    font-size:8px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    transition:none!important;
    animation:none!important;
  }
}

/* Editorial sections */
.highlights-band {
  background:var(--navy);
  color:white;
}

.highlights {
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:80px;
  padding-block:76px;
}

.highlights-intro .eyebrow {
  color:var(--primary);
}

.highlights-intro h2 {
  font-size:34px;
  line-height:1.4;
}

.highlight {
  display:flex;
  gap:30px;
  padding-block:24px;
  border-top:1px solid #ffffff26;
}

.highlight:first-child {
  padding-top:0;
  border-top:0;
}

.highlight:last-child {
  padding-bottom:0;
}

.highlight-number {
  font-size:13px;
  color:var(--primary);
  padding-top:3px;
}

.highlight-label {
  font-size:11px;
  color:var(--primary);
  letter-spacing:.06em;
  margin-bottom:7px;
}

.highlight h3 {
  font-size:23px;
  font-weight:550;
  letter-spacing:-.04em;
}

.highlight h3+p {
  font-size:14px;
  color:#b6c1b9;
  line-height:1.7;
  margin-top:12px;
  max-width:430px;
}

.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:35px;
  margin-bottom:46px;
}

.section-heading .eyebrow {
  margin-bottom:14px;
}

.section-description {
  font-size:14px;
  color:var(--muted);
  white-space:pre-line;
  max-width:350px;
}

.schedule-meta {
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:2px solid var(--text);
  padding-bottom:19px;
}

.schedule-meta strong {
  font-size:23px;
  letter-spacing:-.015em;
  font-weight:550;
}

.schedule-meta strong span {
  font-size:13px;
  font-weight:500;
  margin-left:10px;
}

.schedule-meta>span {
  font-size:12px;
  color:var(--muted);
}

.schedule-row {
  display:grid;
  grid-template-columns:185px 1fr 235px;
  align-items:center;
  gap:24px;
  padding:25px 15px;
  border-bottom:1px solid var(--line);
}

.schedule-time {
  font-size:15px;
  font-variant-numeric:tabular-nums;
  letter-spacing:.01em;
}

.schedule-info {
  display:flex;
  flex-direction:column;
  gap:7px;
  align-items:flex-start;
}

.schedule-info h3 {
  font-size:18px;
  line-height:1.6;
  font-weight:550;
  letter-spacing:-.025em;
}

.session-type {
  font-size:10px;
  letter-spacing:.025em;
  font-weight:500;
  color:var(--muted);
}

.session-keynote {
  color:var(--navy);
  background:var(--primary);
  padding:1px 7px;
}

.schedule-speaker {
  font-size:12px;
  color:var(--muted);
  text-align:right;
}

.schedule-break {
  padding-block:17px;
  background:var(--surface);
  color:#6b736d;
}

.schedule-break .schedule-info h3 {
  font-size:15px;
}

.section-note {
  font-size:12px;
  color:var(--muted);
  margin-top:23px;
  line-height:1.6;
}

.speakers-band {
  background:var(--surface);
}

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

.speaker-photo {
  height:300px;
  overflow:hidden;
  background:#dde1dc;
}

.speaker-photo img {
  filter:grayscale(1);
  object-position:center 25%;
  transition:filter .25s,transform .4s;
}

.speaker:hover .speaker-photo img {
  filter:grayscale(0);
  transform:scale(1.025);
}

.speaker-session {
  color:#59674b;
  font-size:11px;
  margin:19px 0 10px;
}

.speaker h3 {
  font-size:23px;
  display:flex;
  align-items:baseline;
  gap:12px;
  letter-spacing:-.03em;
}

.speaker h3 span {
  font-size:12px;
  font-weight:400;
  letter-spacing:0;
}

.speaker-role {
  font-size:12px;
  margin-top:9px;
  color:var(--muted);
}

.speaker-bio {
  font-size:13px;
  line-height:1.7;
  color:var(--muted);
  margin-top:13px;
}

.venue-layout {
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:64px;
  align-items:center;
}

.venue-map {
  position:relative;
  min-height:345px;
  height:100%;
  background:#eef0e9;
  overflow:hidden;
  isolation:isolate;
  border:1px solid #e2e6db;
}

.venue-map iframe {
  height:100%;
  min-height:345px;
  width:100%;
  border:0;
}

.map-grid {
  position:absolute;
  inset:0;
  z-index:-1;
  background-image:linear-gradient(#fff9 1px,transparent 1px),linear-gradient(90deg,#fff9 1px,transparent 1px);
  background-size:42px 42px;
  transform:rotate(-12deg) scale(1.3);
}

.map-placeholder {
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  justify-content:center;
  height:100%;
  min-height:345px;
  padding:25px;
}

.map-placeholder svg {
  margin-bottom:20px;
  color:var(--navy);
}

.map-placeholder strong {
  font-size:20px;
}

.map-placeholder>span {
  font-size:12px;
  margin-top:6px;
  color:var(--muted);
}

.map-placeholder>p {
  font-size:12px;
  color:var(--muted);
  margin-top:28px;
  background:#ffffffb8;
  padding:6px 12px;
}

.venue-info .eyebrow {
  margin-bottom:15px;
}

.venue-info h3 {
  font-size:29px;
  font-weight:600;
}

.venue-info h3 span {
  font-size:16px;
  display:block;
  letter-spacing:0;
  font-weight:400;
  margin-top:11px;
}

.venue-address {
  color:var(--muted);
  font-size:14px;
  margin-top:13px;
}

.venue-info dl {
  margin:28px 0 0;
}

.venue-info dl>div {
  border-top:1px solid var(--line);
  padding-block:19px;
  display:grid;
  grid-template-columns:70px 1fr;
  gap:20px;
}

.venue-info dt {
  font-size:13px;
  font-weight:600;
}

.venue-info dd {
  font-size:13px;
  color:var(--muted);
  margin:0;
}

.text-link {
  font-size:13px;
  text-decoration:underline;
  text-underline-offset:5px;
  background:none;
  border:0;
  padding:3px 0;
}

.registration-band {
  background:#f3f4ef;
}

.registration-layout {
  display:grid;
  grid-template-columns:390px 1fr;
  gap:64px;
  align-items:start;
}

.ticket-column {
  position:sticky;
  top:115px;
}

.ticket-panel {
  padding:35px;
  background:var(--navy);
  color:white;
}

.ticket-panel>.eyebrow {
  color:#bfccb4;
  font-size:10px;
}

.ticket-panel>h3 {
  font-size:26px;
  font-weight:500;
  line-height:1.5;
  margin-bottom:39px;
}

.ticket-label {
  font-size:11px;
  letter-spacing:.11em;
  color:var(--primary);
}

.ticket-price {
  font-size:43px;
  font-weight:550;
  letter-spacing:-.035em;
  line-height:1.5;
  margin-top:11px;
}

.ticket-price small {
  display:block;
  font-size:11px;
  color:#b1bdb3;
  letter-spacing:0;
  font-weight:400;
  margin-top:1px;
}

.ticket-description {
  font-size:13px;
  margin-top:19px;
  color:#d2dad2;
}

.ticket-panel ul {
  padding:24px 0 0;
  margin:27px 0 30px;
  border-top:1px solid #ffffff30;
  list-style:none;
}

.ticket-panel li {
  font-size:13px;
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:13px;
}

.ticket-panel li span {
  color:var(--primary);
  font-size:14px;
}

.ticket-date {
  border-top:1px solid #ffffff30;
  padding-top:24px;
}

.ticket-date>span {
  font-size:13px;
  letter-spacing:.02em;
}

.ticket-date strong {
  display:block;
  font-weight:400;
  font-size:12px;
  color:#b4c0b6;
  margin-top:5px;
}

.ticket-options {
  margin:0 0 30px;
  border:0;
  padding:0;
}

.ticket-options legend {
  font-size:13px;
  margin-bottom:12px;
}

.ticket-option {
  display:flex;
  align-items:center;
  gap:12px;
  padding:13px 12px;
  border:1px solid #ffffff40;
  margin-bottom:7px;
  cursor:pointer;
}

.ticket-option:has(input:checked) {
  border-color:var(--primary);
  background:#ffffff0b;
}

.ticket-option>span {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex:1;
  font-size:13px;
}

.ticket-option strong {
  font-weight:500;
}

.ticket-option>span>span {
  color:var(--primary);
}

.ticket-content[hidden] {
  display:none;
}

.refund-details {
  margin-top:16px;
  padding:17px 0;
  border-bottom:1px solid #d7dcd0;
}

.refund-details summary {
  font-size:13px;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
  list-style:none;
}

.refund-details summary span {
  font-size:18px;
}

.refund-details[open] summary span {
  transform:rotate(45deg);
}

.refund-details dl {
  font-size:12px;
  line-height:1.8;
}

.refund-details dl>div+div {
  margin-top:12px;
}

.refund-details dt {
  font-weight:550;
}

.refund-details dd {
  margin:0;
  color:var(--muted);
}

.refund-details>p {
  font-size:12px;
}

.registration-form {
  background:white;
  padding:36px 38px;
}

.form-heading {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
}

.form-heading h3 {
  font-size:22px;
  font-weight:600;
}

.form-heading>span {
  font-size:11px;
  color:var(--muted);
}

i {
  font-style:normal;
  color:#af3e2f;
}

.demo-notice {
  font-size:12px;
  background:#f2f5e7;
  border-left:2px solid #8ba753;
  padding:12px 14px;
  margin-bottom:26px;
  line-height:1.7;
  color:#526141;
}

.demo-notice strong {
  font-weight:650;
  display:block;
}

.form-fields {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.field-wide {
  grid-column:1/-1;
}

.form-field {
  min-width:0;
}

.form-field>label {
  display:flex;
  align-items:center;
  gap:5px;
  font-size:13px;
  font-weight:550;
  margin-bottom:8px;
}

.optional {
  color:#788274;
  font-size:11px;
  font-weight:400;
  margin-left:4px;
}

.form-field input {
  border:1px solid #d8dcd4;
  border-radius:0;
  background:white;
  padding:11px 13px;
  width:100%;
  height:46px;
  font-size:14px;
  line-height:1.5;
  transition:border-color .2s;
}

.form-field input::placeholder {
  color:#949b91;
  font-size:12px;
}

.form-field input:focus {
  outline:2px solid #90a85b;
  outline-offset:1px;
  border-color:#90a85b;
}

.form-field input[aria-invalid=true] {
  border-color:var(--error);
}

.field-error {
  font-size:12px;
  color:var(--error);
  line-height:1.5;
  margin:5px 0 0;
}

.field-error:empty {
  display:none;
}

.terms-agreement {
  border:0;
  padding:0;
  margin:32px 0 0;
  min-width:0;
}

.terms-agreement legend {
  font-size:16px;
  font-weight:600;
  margin-bottom:13px;
}

.agree-all {
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 12px;
  background:var(--surface);
  font-size:13px;
  cursor:pointer;
}

.agree-all>span {
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
}

.agree-all .optional {
  font-size:10px;
}

input[type=checkbox],input[type=radio] {
  flex:none;
  accent-color:var(--navy);
  width:17px;
  height:17px;
  margin:0;
  cursor:pointer;
}

.terms-list {
  padding-top:10px;
}

.term-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:6px 0;
}

.term-row>label {
  display:flex;
  align-items:center;
  gap:9px;
  font-size:12px;
  cursor:pointer;
  line-height:1.6;
  flex:1;
  min-height:32px;
}

.term-row b {
  font-weight:400;
  color:var(--muted);
}

.term-row b.term-required {
  color:var(--text);
}

.term-view {
  border:0;
  background:none;
  font-size:11px;
  color:var(--muted);
  text-decoration:underline;
  text-underline-offset:3px;
  padding:8px 3px;
  flex:none;
}

.order-total {
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid var(--line);
  padding-top:24px;
  margin-top:22px;
  margin-bottom:20px;
}

.order-total>span {
  font-size:14px;
}

.order-total strong {
  font-size:28px;
  line-height:1.3;
  font-weight:600;
  letter-spacing:-.025em;
}

.button-submit {
  width:100%;
  justify-content:center;
  position:relative;
  font-size:15px;
  padding:16px 23px;
}

.button-submit>span[aria-hidden] {
  position:absolute;
  right:23px;
}

.button-submit #submit-label {
  font-size:15px;
  line-height:1.5;
}

.form-footnote {
  font-size:11px;
  text-align:center;
  color:var(--muted);
  margin-top:13px;
}

.form-alert {
  font-size:13px;
  color:var(--error);
  padding:12px 14px;
  background:#fdf0ed;
  margin:12px 0;
  line-height:1.7;
}

.form-alert[hidden] {
  display:none;
}

.faq-layout {
  display:grid;
  grid-template-columns:1fr 1.65fr;
  gap:80px;
}

.faq-layout h2 {
  line-height:1.4;
}

.faq-contact {
  font-size:13px;
  color:var(--muted);
  margin-top:23px;
  line-height:1.9;
}

.faq-contact a {
  display:inline-block;
  color:var(--text);
  margin-top:10px;
}

.faq-list {
  border-top:1px solid var(--text);
}

.faq-list details {
  border-bottom:1px solid var(--line);
}

.faq-list summary {
  display:flex;
  align-items:center;
  gap:22px;
  list-style:none;
  cursor:pointer;
  min-height:81px;
  padding-block:20px;
  font-size:15px;
  font-weight:500;
}

.faq-number {
  font-size:11px;
  color:var(--muted);
  font-weight:400;
}

.faq-icon {
  font-size:23px;
  margin-left:auto;
  line-height:1;
  font-weight:300;
}

.faq-list details[open] .faq-icon {
  transform:rotate(45deg);
}

.faq-list details>p {
  padding:0 42px 25px;
  font-size:14px;
  color:var(--muted);
  line-height:1.85;
}

.site-footer {
  background:var(--navy);
  color:#c1cbc3;
  padding:52px 0 23px;
}

.footer-top {
  display:flex;
  gap:28px;
  align-items:center;
  border-bottom:1px solid #ffffff22;
  padding-bottom:31px;
}

.footer-brand {
  font-size:46px;
  font-weight:700;
  line-height:1;
  letter-spacing:-.06em;
  color:white;
  flex-shrink:0;
}

.footer-brand>span {
  color:var(--primary);
  margin-left:3px;
}

.footer-brand>small {
  font-size:16px;
  letter-spacing:0;
  font-weight:400;
  margin-left:12px;
}

.footer-top>p {
  font-size:13px;
  color:#e9eee9;
}

.footer-top>p>span {
  display:block;
  font-size:11px;
  color:#8e9f92;
  margin-top:4px;
}

.back-top {
  font-size:12px;
  margin-left:auto;
  white-space:nowrap;
}

.footer-bottom {
  display:flex;
  justify-content:space-between;
  gap:30px;
  padding-top:30px;
}

.footer-bottom strong {
  font-size:12px;
  font-weight:500;
  color:#e1e8df;
}

.footer-bottom p {
  font-size:11px;
  line-height:1.85;
  color:#94a699;
  margin-top:10px;
}

.footer-links {
  display:flex;
  align-items:flex-start;
  gap:24px;
}

.footer-links button {
  font-size:11px;
  border:0;
  background:none;
  color:#dce4dc;
  padding:0;
  line-height:1.7;
}

.footer-copyright {
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:10px;
  color:#87998c;
  margin-top:40px;
}

.mobile-cta {
  display:none;
}

.modal {
  border:0;
  padding:32px;
  width:min(540px,calc(100% - 40px));
  max-height:85dvh;
  color:var(--text);
  background:white;
  box-shadow:0 24px 100px #0004;
}

.modal::backdrop {
  background:#0b1913ad;
}

.modal-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:16px;
}

.modal-header .eyebrow {
  margin-bottom:0;
  font-size:10px;
}

.modal-close {
  border:0;
  background:none;
  font-size:29px;
  line-height:1;
  padding:3px 4px;
  width:32px;
  height:32px;
  font-weight:300;
}

.modal h2 {
  font-size:25px;
  font-weight:600;
}

.modal-description {
  font-size:13px;
  color:var(--muted);
  margin-top:16px;
  line-height:1.8;
}

.terms-content {
  white-space:normal;
  padding:23px 0 30px;
  font-size:15px;
  line-height:1.9;
}

.modal-open {
  overflow:hidden;
}

.receipt-details {
  margin:25px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:13px 0;
}

.receipt-details>div {
  display:grid;
  grid-template-columns:82px 1fr;
  gap:18px;
  font-size:13px;
  padding:10px 0;
}

.receipt-details dt {
  color:var(--muted);
}

.receipt-details dd {
  margin:0;
  overflow-wrap:anywhere;
  word-break:normal;
}

.receipt-details>div:last-child dd {
  font-weight:600;
}

.checkout-actions {
  display:flex;
  flex-direction:column;
  gap:10px;
}

.checkout-actions .button-outline {
  justify-content:center;
  font-size:13px;
}

.mock-fail {
  display:block;
  margin:18px auto 0;
  color:var(--muted);
  font-size:12px;
}

.receipt-page {
  min-height:70vh;
  padding-block:80px;
}

.receipt-card {
  max-width:580px;
  margin:auto;
  text-align:center;
}

.receipt-symbol {
  display:grid;
  place-items:center;
  width:62px;
  height:62px;
  margin:0 auto 23px;
  background:var(--primary);
  border-radius:50%;
  font-size:28px;
}

.receipt-card h1 {
  font-size:32px;
  font-weight:600;
}

.receipt-card .eyebrow {
  font-size:11px;
  margin-bottom:16px;
}

.receipt-lead {
  font-size:14px;
  color:var(--muted);
  line-height:1.9;
  margin-top:22px;
}

.receipt-card .receipt-details {
  text-align:left;
  margin-block:35px;
}

.receipt-card .receipt-details>div {
  grid-template-columns:90px 1fr;
}

.cancel-demo {
  font-size:13px;
  margin-top:26px;
}

.cancel-demo summary {
  cursor:pointer;
}

.cancel-demo p {
  margin:15px 0;
  font-size:12px;
  color:var(--muted);
}

.cancel-demo .button {
  font-size:12px;
}

.receipt-failed {
  background:#f5ded7;
  color:#94341f;
}

.failure-reference {
  margin:25px 0;
  font-size:12px;
  color:var(--muted);
  overflow-wrap:anywhere;
}

.receipt-contact {
  font-size:13px;
  line-height:1.8;
  color:var(--muted);
  margin-top:25px;
}

@media(max-width:1100px) {
  .highlights {
    gap:45px;
  }
  .section-heading h2 {
    font-size:34px;
  }
  .section-description {
    max-width:260px;
  }
  .schedule-row {
    grid-template-columns:155px 1fr 180px;
    gap:16px;
  }
  .schedule-info h3 {
    font-size:16px;
  }
  .speaker-grid {
    gap:18px;
  }
  .speaker-photo {
    height:240px;
  }
  .speaker h3 {
    flex-wrap:wrap;
    gap:7px;
    font-size:21px;
  }
  .venue-layout {
    gap:35px;
  }
  .registration-layout {
    grid-template-columns:330px 1fr;
    gap:32px;
  }
  .ticket-panel {
    padding:27px;
  }
  .registration-form {
    padding:28px;
  }
  .ticket-price {
    font-size:38px;
  }
  .faq-layout {
    gap:45px;
  }
  .term-row>label {
    font-size:11px;
  }
}

@media(max-width:768px) {
  .highlights {
    grid-template-columns:1fr;
    gap:30px;
    padding-block:52px;
  }
  .highlights-intro h2 {
    font-size:28px;
  }
  .highlight {
    gap:23px;
    padding-block:22px;
  }
  .highlight:first-child {
    padding-top:24px;
    border-top:1px solid #ffffff26;
  }
  .highlight h3 {
    font-size:21px;
  }
  .highlight h3+p {
    font-size:14px;
    margin-top:8px;
  }
  .highlight-label {
    font-size:11px;
  }
  .highlight-number {
    font-size:12px;
  }
  .section-heading {
    display:block;
    margin-bottom:30px;
  }
  .section-heading h2 {
    font-size:29px;
    line-height:1.4;
  }
  .section-description {
    font-size:13px;
    margin-top:17px;
    max-width:none;
  }
  .schedule-meta {
    padding-bottom:15px;
    align-items:flex-end;
    gap:18px;
  }
  .schedule-meta strong {
    font-size:20px;
    white-space:nowrap;
  }
  .schedule-meta strong span {
    font-size:11px;
    margin-left:6px;
  }
  .schedule-meta>span {
    font-size:10px;
    text-align:right;
    max-width:120px;
  }
  .schedule-row {
    grid-template-columns:92px 1fr;
    padding:22px 3px;
    gap:6px 16px;
    align-items:start;
  }
  .schedule-time {
    font-size:11px;
    padding-top:2px;
  }
  .schedule-info {
    gap:5px;
  }
  .schedule-info h3 {
    font-size:15px;
    line-height:1.65;
  }
  .session-type {
    font-size:9px;
  }
  .schedule-speaker {
    grid-column:2;
    font-size:11px;
    text-align:left;
  }
  .schedule-break {
    padding:16px 3px;
  }
  .schedule-break .schedule-info h3 {
    font-size:14px;
  }
  .section-note {
    font-size:11px;
    line-height:1.8;
    margin-top:18px;
  }
  .speaker-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:30px 16px;
  }
  .speaker-photo {
    height:230px;
  }
  .speaker h3 {
    font-size:20px;
    display:block;
  }
  .speaker h3 span {
    display:block;
    font-size:11px;
    margin-top:8px;
  }
  .speaker-session {
    font-size:10px;
    margin:15px 0 9px;
    min-height:34px;
  }
  .speaker-role {
    font-size:11px;
    margin-top:7px;
  }
  .speaker-bio {
    font-size:12px;
    margin-top:10px;
    line-height:1.8;
  }
  .venue-layout {
    grid-template-columns:1fr;
    gap:30px;
  }
  .venue-map,.map-placeholder,.venue-map iframe {
    min-height:270px;
  }
  .venue-info h3 {
    font-size:25px;
  }
  .venue-info h3 span {
    font-size:14px;
    margin-top:9px;
  }
  .venue-address {
    font-size:13px;
  }
  .venue-info dl {
    margin-top:24px;
  }
  .venue-info dl>div {
    padding-block:15px;
    gap:20px;
  }
  .registration-layout {
    grid-template-columns:1fr;
    gap:28px;
  }
  .ticket-column {
    position:static;
  }
  .ticket-panel {
    padding:27px;
  }
  .ticket-panel>h3 {
    font-size:24px;
    margin-bottom:28px;
  }
  .ticket-panel>h3 br {
    display:none;
  }
  .ticket-price {
    font-size:39px;
  }
  .ticket-price small {
    display:inline-block;
    margin-left:10px;
    font-size:11px;
  }
  .ticket-description {
    font-size:13px;
  }
  .ticket-panel ul {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px 12px;
    margin-block:22px;
    padding-top:22px;
  }
  .ticket-panel li {
    font-size:11px;
    line-height:1.8;
    margin:0;
    gap:7px;
  }
  .ticket-date {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding-top:20px;
  }
  .ticket-date>span {
    font-size:12px;
  }
  .ticket-date strong {
    font-size:11px;
    margin:0;
  }
  .refund-details {
    padding-block:14px;
  }
  .registration-form {
    padding:26px 20px;
  }
  .registration-band>.wrap {
    width:calc(100% - 32px);
  }
  .registration-band .section-heading {
    padding-inline:4px;
  }
  .form-heading h3 {
    font-size:20px;
  }
  .form-heading>span {
    font-size:11px;
  }
  .demo-notice {
    font-size:12px;
  }
  .form-fields {
    grid-template-columns:1fr;
    gap:19px;
  }
  .form-field>label {
    font-size:14px;
  }
  .form-field input {
    font-size:16px;
    height:49px;
  }
  .form-field input::placeholder {
    font-size:13px;
  }
  .form-field .optional {
    font-size:12px;
  }
  .terms-agreement legend {
    font-size:16px;
  }
  .agree-all {
    padding:14px 10px;
    font-size:14px;
    gap:9px;
  }
  .agree-all .optional {
    font-size:10px;
  }
  .term-row {
    gap:4px;
    padding-block:7px;
  }
  .term-row>label {
    font-size:12px;
    gap:8px;
  }
  .term-view {
    font-size:11px;
    min-height:35px;
  }
  .terms-list {
    padding-top:9px;
  }
  .order-total strong {
    font-size:27px;
  }
  .form-footnote {
    font-size:11px;
  }
  .faq-layout {
    grid-template-columns:1fr;
    gap:28px;
  }
  .faq-layout h2 {
    font-size:29px;
  }
  .faq-layout h2 br {
    display:none;
  }
  .faq-contact {
    font-size:12px;
    margin-top:17px;
  }
  .faq-contact a {
    margin-top:5px;
  }
  .faq-list summary {
    gap:15px;
    min-height:74px;
    font-size:14px;
  }
  .faq-number {
    font-size:10px;
  }
  .faq-list details>p {
    font-size:13px;
    padding:0 25px 20px;
  }
  .site-footer {
    padding-top:34px;
    padding-bottom:100px;
  }
  .footer-top {
    gap:20px;
    align-items:flex-start;
    position:relative;
    padding-bottom:24px;
    flex-direction:column;
  }
  .footer-brand {
    font-size:39px;
  }
  .footer-brand>small {
    font-size:13px;
  }
  .footer-top>p {
    font-size:12px;
  }
  .footer-top>p>span {
    font-size:10px;
  }
  .back-top {
    position:absolute;
    right:0;
    top:12px;
    font-size:11px;
  }
  .footer-bottom {
    flex-direction:column;
    gap:25px;
    padding-top:24px;
  }
  .footer-bottom p {
    font-size:10px;
    line-height:2;
  }
  .footer-links {
    gap:24px;
  }
  .footer-links button {
    font-size:11px;
  }
  .footer-copyright {
    font-size:9px;
    flex-direction:column;
    gap:7px;
    margin-top:27px;
  }
  .mobile-cta {
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:25;
    background:#fff;
    border-top:1px solid var(--line);
    padding:10px 20px max(10px,env(safe-area-inset-bottom));
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:center;
  }
  .mobile-cta>span {
    font-size:10px;
    color:var(--muted);
    line-height:1.7;
  }
  .mobile-cta>span>strong {
    display:block;
    font-size:13px;
    color:var(--text);
    font-weight:600;
  }
  .mobile-cta .button {
    font-size:14px;
    padding:10px 18px;
    gap:38px;
  }
  .mobile-cta.is-hidden {
    display:none;
  }
  .modal {
    width:100%;
    max-width:none;
    margin:auto 0 0;
    max-height:88dvh;
    padding:26px 23px 30px;
    border-radius:12px 12px 0 0;
  }
  .modal h2 {
    font-size:23px;
    line-height:1.45;
  }
  .modal-description {
    font-size:13px;
  }
  .terms-content {
    font-size:14px;
  }
  .receipt-details>div {
    grid-template-columns:75px 1fr;
    font-size:13px;
    gap:12px;
  }
  .receipt-page {
    padding-block:50px 60px;
  }
  .receipt-card h1 {
    font-size:27px;
  }
  .receipt-lead {
    font-size:13px;
  }
  .receipt-card .receipt-details>div {
    grid-template-columns:72px 1fr;
    font-size:12px;
    gap:15px;
  }
}

@media(max-width:430px) {
  .hero h1 {
    font-size:39px;
  }
  .hero-description {
    max-width:290px;
  }
  .speaker-photo {
    height:200px;
  }
  .speaker-session {
    font-size:10px;
  }
  .ticket-panel {
    padding:25px;
  }
  .ticket-panel ul {
    grid-template-columns:1fr;
  }
  .ticket-panel li {
    font-size:13px;
  }
  .ticket-panel>h3 br {
    display:block;
  }
  .ticket-date {
    gap:10px;
  }
  .ticket-date>span {
    font-size:11px;
  }
  .ticket-date strong {
    font-size:10px;
  }
  .registration-form {
    padding:25px 18px;
  }
  .term-row>label {
    font-size:11px;
  }
  .term-row>label>span {
    max-width:230px;
  }
  .agree-all {
    font-size:13px;
  }
  .hero-bottom>span {
    font-size:8px;
    letter-spacing:.06em;
  }
  .hero-bottom>a {
    font-size:10px;
  }
  .form-field input {
    min-width:0;
  }
  .footer-top>p {
    max-width:100%;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    transition:none!important;
    animation:none!important;
  }
}

/* Final readability pass: keep consent and business information comfortably legible. */
.highlights-intro h2 {
  max-width:310px;
}

.faq-layout h2 {
  max-width:240px;
}

.term-row>label {
  font-size:13px;
  line-height:1.75;
}

.term-view {
  font-size:12px;
  min-width:36px;
  min-height:40px;
}

.footer-bottom p {
  font-size:12px;
}

.footer-links button {
  font-size:12px;
}

@media(max-width:768px) {
  .highlights-intro h2 {
    max-width:270px;
  }
  .faq-layout h2 {
    max-width:none;
  }
  .term-row>label {
    font-size:13px;
  }
  .term-view {
    min-width:36px;
    min-height:44px;
  }
  .hero-description {
    max-width:245px;
  }
  .footer-bottom p {
    font-size:12px;
  }
  .footer-copyright {
    font-size:10px;
  }
}

