:root {
  --sda-forest: #173f2b;
  --sda-forest-deep: #0b281a;
  --sda-leaf: #355724;
  --sda-gold: #d2ae58;
  --sda-cream: #f4f2e9;
  --sda-paper: #fff;
  --sda-ink: #14231a;
  --sda-muted: #68766d;
  --sda-line: #dce2dc;
  --sda-danger: #a82c2c;
  --site-width: 1180px;
  --site-ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f8f8f4 !important;
  color: var(--sda-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}
body, button, input, select, textarea { font-family: inherit; }
a { color: inherit; }
img { max-width: 100%; }
::selection { background: var(--sda-gold); color: var(--sda-forest-deep); }
.site-frame { width: min(calc(100% - 40px), var(--site-width)); margin-inline: auto; }
.site-sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

/* Shared SDA identity and navigation */
.site-header { position: relative; z-index: 80; background: rgba(255,255,255,.96); border: 0 !important; box-shadow: 0 1px 0 rgba(20,35,26,.1); }
.site-identity-bar { background: var(--sda-forest-deep); color: rgba(255,255,255,.78); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.site-identity-bar .site-frame { min-height: 28px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.site-identity-bar span:last-child { color: rgba(255,255,255,.48); }
.site-navbar { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.site-brand { display: inline-flex; align-items: center; gap: 13px; min-width: 0; color: var(--sda-ink); text-decoration: none; }
.site-brand-mark { width: 44px; height: 52px; flex: 0 0 auto; object-fit: contain; }
.site-brand-copy { display: grid; line-height: 1; }
.site-brand-copy strong { font-size: 18px; font-weight: 900; letter-spacing: -.035em; }
.site-brand-copy span { margin-top: 6px; color: var(--sda-muted); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { position: relative; color: #435249; font-size: 13px; font-weight: 800; text-decoration: none; }
.site-nav a:not(.site-nav-action)::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; background: var(--sda-leaf); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--site-ease); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav-action { padding: 12px 17px; border-radius: 6px; background: var(--sda-forest); color: white !important; box-shadow: 0 8px 22px rgba(11,40,26,.14); transition: transform .2s, background .2s; }
.site-nav-action:hover { background: var(--sda-forest-deep); transform: translateY(-2px); }
.site-nav-toggle { display: none; width: 43px; height: 43px; place-content: center; gap: 5px; border: 1px solid var(--sda-line); border-radius: 6px; background: white; color: var(--sda-ink); }
.site-nav-toggle span { display: block; width: 19px; height: 2px; background: currentColor; transition: transform .22s, opacity .22s; }
.site-nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.site-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
.site-mobile-nav { display: none; padding: 8px 20px 18px; border-top: 1px solid var(--sda-line); background: white; }
.site-mobile-nav a { display: flex; min-height: 47px; align-items: center; padding-inline: 10px; border-bottom: 1px solid #edf0ed; color: #34443a; font-size: 14px; font-weight: 800; text-decoration: none; }
.site-mobile-nav a.primary { justify-content: center; margin-top: 10px; border: 0; border-radius: 6px; background: var(--sda-forest); color: white; }

/* Branded page transition */
html.site-is-loading { overflow: hidden; }
.site-loader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; background: var(--sda-cream); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .3s ease, visibility .3s ease; }
.site-loader.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.site-loader-progress { position: absolute; top: 0; right: 0; left: 0; height: 3px; overflow: hidden; background: rgba(23,63,43,.1); }
.site-loader-progress::after { content: ""; display: block; width: 35%; height: 100%; background: var(--sda-leaf); animation: site-progress 1.2s ease-in-out infinite; }
.site-loader-stage { position: relative; display: grid; width: 112px; height: 112px; place-items: center; }
.site-loader-stage img { width: 54px; height: 68px; object-fit: contain; animation: loader-breathe 1.8s ease-in-out infinite; }
.site-loader-ring { position: absolute; inset: 3px; border: 1px solid rgba(53,87,36,.18); border-top-color: var(--sda-leaf); border-radius: 50%; animation: site-spin 1.35s linear infinite; }
.site-loader-ring:last-of-type { inset: 15px; border-color: rgba(210,174,88,.18); border-right-color: var(--sda-gold); animation-direction: reverse; animation-duration: 1.05s; }
.site-loader-label { position: absolute; top: calc(50% + 75px); color: var(--sda-leaf); font-size: 10px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }

/* Motion */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--site-ease), transform .8s var(--site-ease); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal="left"] { transform: translateX(-38px); }
[data-reveal="right"] { transform: translateX(38px); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.clickable-surface { cursor: pointer; }
.clickable-surface:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(210,174,88,.55); outline-offset: 3px; }
.loading-button { position: relative; color: transparent !important; pointer-events: none; }
.loading-button::after { content: ""; position: absolute; top: 50%; left: 50%; width: 19px; height: 19px; margin: -10px; border: 2px solid rgba(255,255,255,.4); border-top-color: white; border-radius: 50%; animation: site-spin .7s linear infinite; }

/* Landing hero */
.landing-page { overflow-x: hidden; background: #f8f8f4 !important; }
.landing-hero { position: relative; isolation: isolate; min-height: min(780px, calc(100vh - 104px)); overflow: hidden; background: var(--sda-forest-deep); color: white; }
.landing-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: calc(100% / 7) 100%, calc(100% / 7) 100%; animation: grid-flow 16s linear infinite; }
.landing-hero::after { content: ""; position: absolute; z-index: -1; width: 620px; height: 620px; right: -210px; top: -300px; border: 1px solid rgba(210,174,88,.3); border-radius: 50%; box-shadow: 0 0 0 80px rgba(210,174,88,.035), 0 0 0 160px rgba(210,174,88,.025); animation: slow-drift 10s ease-in-out infinite alternate; }
.landing-hero-grid { min-height: inherit; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(340px,.72fr); gap: clamp(48px,7vw,100px); align-items: center; padding-block: clamp(70px,9vw,120px); }
.hero-eyebrow, .section-kicker { display: flex; align-items: center; gap: 12px; margin: 0; color: var(--sda-gold); font-size: 10px; font-weight: 900; letter-spacing: .24em; text-transform: uppercase; }
.hero-eyebrow::before, .section-kicker::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.hero-title { max-width: 780px; margin: 24px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.25rem,7.2vw,6.8rem); font-weight: 400; letter-spacing: -.055em; line-height: .88; }
.hero-title em { color: var(--sda-gold); font-weight: 400; }
.hero-copy { max-width: 610px; margin: 29px 0 0; color: rgba(255,255,255,.69); font-size: clamp(15px,1.45vw,18px); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.hero-button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 12px; padding: 0 22px; border: 1px solid rgba(255,255,255,.28); border-radius: 6px; color: white; font-size: 13px; font-weight: 900; text-decoration: none; transition: transform .22s, border-color .22s, background .22s; }
.hero-button.primary { border-color: var(--sda-gold); background: var(--sda-gold); color: var(--sda-forest-deep); }
.hero-button:hover { transform: translateY(-3px); border-color: white; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 0; margin-top: 46px; }
.hero-stat { min-width: 130px; padding: 0 25px; border-left: 1px solid rgba(255,255,255,.18); }
.hero-stat:first-child { padding-left: 0; border-left: 0; }
.hero-stat strong { display: block; font-family: Georgia,serif; font-size: 28px; font-weight: 400; }
.hero-stat span { display: block; margin-top: 6px; color: rgba(255,255,255,.5); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero-visual { position: relative; justify-self: end; width: min(100%,440px); }
.hero-visual::before { content: ""; position: absolute; top: -18px; right: -18px; bottom: 18px; left: 18px; border: 1px solid rgba(210,174,88,.45); }
.hero-visual img { position: relative; display: block; width: 100%; aspect-ratio: 4/5.25; border-radius: 4px 22px 4px 22px; object-fit: cover; box-shadow: 0 35px 90px rgba(0,0,0,.3); }
.hero-visual-caption { position: absolute; right: -24px; bottom: 28px; left: 34px; display: flex; align-items: center; gap: 13px; padding: 16px 18px; border-left: 3px solid var(--sda-gold); background: rgba(11,40,26,.92); backdrop-filter: blur(12px); }
.hero-visual-caption img { width: 25px; height: 34px; border-radius: 0; box-shadow: none; object-fit: contain; }
.hero-visual-caption strong { display: block; font-size: 12px; }
.hero-visual-caption span { display: block; margin-top: 4px; color: rgba(255,255,255,.55); font-size: 10px; }

.landing-intro { padding-block: clamp(82px,10vw,145px); }
.landing-intro-grid { display: grid; grid-template-columns: .62fr 1.38fr; gap: clamp(45px,8vw,120px); align-items: start; }
.section-kicker { color: var(--sda-leaf); }
.section-title { margin: 0; font-family: Georgia,"Times New Roman",serif; color: var(--sda-ink); font-size: clamp(2.45rem,5vw,4.9rem); font-weight: 400; letter-spacing: -.045em; line-height: .98; }
.section-title em { color: var(--sda-leaf); font-weight: 400; }
.section-copy { max-width: 670px; margin: 25px 0 0; color: var(--sda-muted); font-size: 16px; line-height: 1.8; }
.intro-principles { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 50px; border-top: 1px solid var(--sda-line); }
.intro-principle { padding: 26px 26px 0 0; }
.intro-principle + .intro-principle { padding-left: 26px; border-left: 1px solid var(--sda-line); }
.intro-principle strong { font-family: Georgia,serif; font-size: 19px; font-weight: 400; }
.intro-principle p { margin: 10px 0 0; color: var(--sda-muted); font-size: 12px; line-height: 1.7; }

/* Event discovery */
.events-section { padding-block: clamp(80px,10vw,140px); background: white; }
.events-heading { display: flex; align-items: end; justify-content: space-between; gap: 35px; }
.events-heading .section-title { max-width: 720px; }
.event-tools { display: grid; grid-template-columns: minmax(230px,1fr) auto; gap: 22px; align-items: end; margin-top: 50px; padding: 0 0 20px; border: 0; border-bottom: 1px solid var(--sda-line); background: transparent; }
.event-search-wrap { position: relative; }
.event-search-wrap i { position: absolute; top: 50%; left: 2px; color: var(--sda-muted); transform: translateY(-50%); }
.event-search { width: 100%; height: 48px; padding: 0 12px 0 30px; border: 0; border-bottom: 1px solid #bbc5bd; border-radius: 0; background: transparent; color: var(--sda-ink); font-size: 15px; outline: 0; transition: border-color .2s; }
.event-search:focus { border-color: var(--sda-leaf); box-shadow: none; }
.event-filters { display: flex; gap: 7px; overflow-x: auto; scrollbar-width: none; }
.event-filters::-webkit-scrollbar { display: none; }
.event-filter { flex: 0 0 auto; min-height: 39px; padding: 0 14px; border: 1px solid var(--sda-line); border-radius: 5px; background: transparent; color: #536159; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; transition: .2s; }
.event-filter:hover, .event-filter[aria-pressed="true"] { border-color: var(--sda-forest); background: var(--sda-forest); color: white; }
.event-list { margin-top: 25px; }
.event-row { display: grid; grid-template-columns: minmax(280px,.76fr) minmax(0,1.24fr); gap: clamp(35px,7vw,90px); align-items: center; padding-block: 55px; border-bottom: 1px solid var(--sda-line); }
.event-row-media { position: relative; overflow: hidden; border-radius: 3px 16px 3px 16px; background: #e8ece8; }
.event-row-media img { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .8s var(--site-ease); }
.event-row:hover .event-row-media img { transform: scale(1.035); }
.event-status { position: absolute; top: 14px; left: 14px; padding: 7px 9px; border-radius: 3px; background: rgba(11,40,26,.9); color: white; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; backdrop-filter: blur(8px); }
.event-row-meta { display: flex; flex-wrap: wrap; gap: 14px 22px; color: var(--sda-leaf); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.event-row h3 { margin: 16px 0 0; font-family: Georgia,serif; font-size: clamp(2rem,4vw,3.35rem); font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.event-row p { max-width: 630px; margin: 18px 0 0; color: var(--sda-muted); font-size: 14px; line-height: 1.75; }
.event-row-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 27px; padding-top: 19px; border-top: 1px solid #e8ebe8; }
.event-fee { font-size: 12px; color: var(--sda-muted); }
.event-fee strong { color: var(--sda-ink); font-size: 16px; }
.event-link { display: inline-flex; align-items: center; gap: 10px; color: var(--sda-forest); font-size: 12px; font-weight: 900; text-decoration: none; text-transform: uppercase; letter-spacing: .06em; }
.event-link i { transition: transform .2s; }
.event-link:hover i { transform: translateX(5px); }
.event-empty { padding: 50px 20px; text-align: center; color: var(--sda-muted); }

.journey-section { position: relative; overflow: hidden; padding-block: clamp(85px,10vw,135px); background: var(--sda-forest-deep); color: white; }
.journey-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px,9vw,130px); }
.journey-section .section-title { color: white; }
.journey-steps { border-top: 1px solid rgba(255,255,255,.18); }
.journey-step { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.journey-step span { color: var(--sda-gold); font-family: Georgia,serif; font-size: 22px; }
.journey-step strong { display: block; font-size: 15px; }
.journey-step p { margin: 8px 0 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.7; }
.landing-cta { padding-block: clamp(80px,10vw,140px); background: var(--sda-cream); text-align: center; }
.landing-cta .section-title { max-width: 820px; margin-inline: auto; }
.landing-cta p { max-width: 580px; margin: 25px auto 0; color: var(--sda-muted); line-height: 1.75; }
.cta-link { display: inline-flex; min-height: 51px; align-items: center; gap: 12px; margin-top: 30px; padding: 0 22px; border-radius: 6px; background: var(--sda-forest); color: white; font-size: 12px; font-weight: 900; text-decoration: none; text-transform: uppercase; letter-spacing: .05em; transition: transform .2s, background .2s; }
.cta-link:hover { background: var(--sda-forest-deep); transform: translateY(-3px); }
.site-footer { padding-block: 36px; background: #081e14; color: rgba(255,255,255,.55); }
.site-footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-footer-brand { display: flex; align-items: center; gap: 12px; color: white; }
.site-footer-brand img { width: 30px; height: 40px; }
.site-footer-brand strong { display: block; font-size: 13px; }
.site-footer-brand span { font-size: 10px; color: rgba(255,255,255,.46); }
.site-footer p { max-width: 430px; margin: 0; font-size: 11px; line-height: 1.65; text-align: right; }

/* Event and registration experience */
.registration-page { background: #f6f6f1 !important; }
.registration-shell { max-width: 1120px !important; }
.registration-language { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.registration-language-switch { display: inline-flex; padding: 3px; border: 1px solid var(--sda-line); border-radius: 6px; background: white; }
.registration-language-switch a { padding: 8px 13px; border-radius: 4px; font-size: 11px; font-weight: 900; text-decoration: none; }
.registration-language-switch a[aria-current="page"] { background: var(--sda-forest); color: white; }
.event-intro { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(330px,.96fr); overflow: hidden; border-radius: 4px 20px 4px 20px; background: var(--sda-forest-deep); color: white; box-shadow: 0 25px 70px rgba(11,40,26,.13); }
.event-intro-media { min-height: 470px; position: relative; overflow: hidden; background: #dfe5df; }
.event-intro-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--site-ease); }
.event-intro:hover .event-intro-media img { transform: scale(1.025); }
.event-intro-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(35px,5vw,65px); }
.event-intro-copy .event-category { align-self: start; padding: 6px 9px; border-left: 2px solid var(--sda-gold); color: var(--sda-gold); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.event-intro-copy h1 { margin: 20px 0 0; color: white !important; font-family: Georgia,serif; font-size: clamp(2.7rem,5vw,4.5rem) !important; font-weight: 400 !important; letter-spacing: -.045em; line-height: .95; }
.event-intro-meta { display: grid; gap: 10px; margin-top: 25px; color: rgba(255,255,255,.67); font-size: 12px; }
.event-intro-meta div { display: flex; gap: 10px; align-items: center; }
.event-intro-description { margin-top: 23px; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.7; }
.event-intro-fee { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-top: 27px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.18); }
.event-intro-fee span { color: rgba(255,255,255,.5); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.event-intro-fee strong { display: block; margin-top: 5px; font-family: Georgia,serif; color: var(--sda-gold); font-size: 25px; font-weight: 400; }
.event-intro-fee a { color: white; font-size: 11px; font-weight: 900; text-decoration: none; text-transform: uppercase; letter-spacing: .05em; }
.registration-shell > section:not(.event-intro):not(.registration-app) { border-radius: 8px !important; }
.registration-app { overflow: hidden; border-radius: 4px 18px 4px 18px !important; background: white; box-shadow: 0 24px 70px rgba(11,40,26,.09); }
.registration-progress { padding: 22px 28px; border-bottom: 1px solid var(--sda-line); background: #f3f4ef !important; }
.registration-progress-track { display: grid !important; grid-template-columns: repeat(3,1fr); gap: 0 !important; }
.step-indicator { min-height: 42px; display: flex; align-items: center; justify-content: center; padding: 8px 12px !important; border: 0 !important; border-right: 1px solid #cad2cb !important; border-radius: 0 !important; background: transparent !important; color: #859087 !important; font-size: 11px !important; font-weight: 900; }
.step-indicator:last-child { border-right: 0 !important; }
.step-indicator.bg-slate-900, .step-indicator.bg-emerald-600 { background: var(--sda-forest) !important; color: white !important; }
.registration-form-body { padding: clamp(25px,5vw,52px) !important; }
.registration-app h2 { font-family: Georgia,serif; font-size: clamp(1.9rem,3.2vw,2.6rem) !important; font-weight: 400 !important; letter-spacing: -.025em; }
.registration-app input:not([type="checkbox"]):not([type="radio"]), .registration-app select, .registration-app textarea { border: 1px solid #d2dad3 !important; border-radius: 6px !important; background: #fcfdfb !important; transition: border-color .2s, box-shadow .2s, background .2s; }
.registration-app input:focus, .registration-app select:focus, .registration-app textarea:focus { border-color: var(--sda-leaf) !important; background: white !important; box-shadow: 0 0 0 3px rgba(53,87,36,.1) !important; outline: 0; }
.registration-type-grid { gap: 12px !important; }
.registration-type-option { position: relative; min-height: 190px; padding: 24px !important; border: 1px solid var(--sda-line) !important; border-radius: 4px 12px 4px 12px !important; background: white !important; box-shadow: none !important; transition: border-color .22s, transform .22s, background .22s !important; }
.registration-type-option::after { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 3px; background: transparent; transition: background .2s; }
.registration-type-option:hover { border-color: #9eada2 !important; background: #f7f8f4 !important; transform: translateY(-3px); }
.registration-type-option:hover::after { background: var(--sda-gold); }
.registration-type-option .h-14 { width: 46px !important; height: 46px !important; border-radius: 5px !important; background: #edf1eb !important; color: var(--sda-leaf) !important; }
.registration-step-enter { animation: registration-slide .52s var(--site-ease) both; }
.registration-app .rounded-3xl { border-radius: 10px !important; }
.registration-app .rounded-2xl { border-radius: 7px !important; }
.registration-app .rounded-xl { border-radius: 6px !important; }
.registration-app button.bg-emerald-600, .registration-app button.bg-slate-900 { border-radius: 6px !important; background: var(--sda-forest) !important; box-shadow: 0 8px 22px rgba(11,40,26,.12); transition: transform .2s, background .2s; }
.registration-app button.bg-emerald-600:hover, .registration-app button.bg-slate-900:hover { background: var(--sda-forest-deep) !important; transform: translateY(-2px); }
.field-error { margin-top: 6px; color: var(--sda-danger); font-size: 12px; font-weight: 800; }
.is-invalid { border-color: #c44141 !important; box-shadow: 0 0 0 3px rgba(196,65,65,.09) !important; }
.registration-actions { position: sticky; bottom: 0; z-index: 15; margin-inline: calc(clamp(25px,5vw,52px) * -1); padding: 14px clamp(25px,5vw,52px) calc(14px + env(safe-area-inset-bottom)); border-top: 1px solid var(--sda-line); background: rgba(255,255,255,.94); backdrop-filter: blur(15px); }
.draft-status { display: flex; align-items: center; gap: 7px; color: var(--sda-muted); font-size: 11px; font-weight: 800; }
.draft-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sda-leaf); }

@keyframes site-progress { 0% { transform: translateX(-110%); } 55% { transform: translateX(180%); } 100% { transform: translateX(310%); } }
@keyframes site-spin { to { transform: rotate(360deg); } }
@keyframes loader-breathe { 50% { transform: scale(.94); opacity: .72; } }
@keyframes grid-flow { to { background-position: calc(100% / 7) 0, 0 0; } }
@keyframes slow-drift { to { transform: translate(-35px,30px); } }
@keyframes registration-slide { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-nav-toggle { display: grid; }
  .site-mobile-nav:not([hidden]) { display: grid; }
  .landing-hero-grid { grid-template-columns: 1fr; }
  .hero-visual { justify-self: start; width: min(78%,440px); margin-top: 15px; }
  .landing-intro-grid, .journey-grid { grid-template-columns: 1fr; }
  .landing-intro-grid { gap: 30px; }
  .event-tools { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: minmax(240px,.8fr) 1.2fr; gap: 35px; }
  .event-intro { grid-template-columns: 1fr; }
  .event-intro-media { min-height: 370px; }
}

@media (max-width: 680px) {
  .site-frame { width: min(calc(100% - 28px), var(--site-width)); }
  .site-identity-bar span:last-child { display: none; }
  .site-navbar { min-height: 68px; }
  .site-brand-mark { width: 37px; height: 45px; }
  .site-brand-copy strong { font-size: 16px; }
  .site-brand-copy span { font-size: 8px; }
  .landing-hero { min-height: auto; }
  .landing-hero-grid { padding-block: 75px 90px; }
  .hero-title { font-size: clamp(3.15rem,16vw,5.2rem); }
  .hero-copy { line-height: 1.65; }
  .hero-button { flex: 1 1 100%; }
  .hero-stats { gap: 22px 0; }
  .hero-stat { min-width: 50%; padding-left: 15px; }
  .hero-stat:nth-child(odd) { padding-left: 0; border-left: 0; }
  .hero-visual { width: calc(100% - 18px); }
  .hero-visual-caption { right: -18px; left: 20px; }
  .intro-principles { grid-template-columns: 1fr; }
  .intro-principle, .intro-principle + .intro-principle { padding: 21px 0; border-left: 0; border-bottom: 1px solid var(--sda-line); }
  .events-heading { display: block; }
  .event-row { grid-template-columns: 1fr; gap: 26px; padding-block: 38px; }
  .event-row h3 { font-size: 2.3rem; }
  .event-row-footer { align-items: end; }
  .site-footer-grid { align-items: flex-start; flex-direction: column; }
  .site-footer p { text-align: left; }
  .registration-shell { padding-inline: 14px !important; }
  .registration-language { justify-content: space-between; }
  .registration-language > span { font-size: 11px; }
  .event-intro-media { min-height: 270px; }
  .event-intro-copy { padding: 30px 24px 34px; }
  .event-intro-fee { align-items: start; flex-direction: column; }
  .registration-progress { padding: 17px 14px; }
  .registration-progress-track { overflow: hidden; }
  .step-indicator { min-width: 0 !important; padding-inline: 4px !important; font-size: 9px !important; }
  .registration-form-body { padding: 25px 18px !important; }
  .registration-actions { margin-inline: -18px; padding-inline: 18px; }
  .registration-type-grid { grid-template-columns: 1fr !important; }
  .registration-type-option { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Current public shell and landing composition */
.site-nav-width { width: min(calc(100% - 40px), var(--site-width)); margin-inline: auto; }
.site-identity-bar .site-nav-width { min-height: 28px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.site-nav-main { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.site-brand-symbol { width: 43px; height: 52px; flex: 0 0 auto; object-fit: contain; }
.site-brand-copy { display: flex; align-items: baseline; gap: 4px; }
.site-brand-copy small { color: var(--sda-leaf); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.site-brand-copy strong { color: var(--sda-ink); font-size: 20px; font-weight: 900; letter-spacing: -.04em; }
.site-brand-divider { width: 1px; height: 32px; margin-left: 3px; background: var(--sda-line); }
.site-brand-entity { color: var(--sda-muted); font-size: 9px; font-weight: 800; letter-spacing: .11em; line-height: 1.5; text-transform: uppercase; }
.site-desktop-nav { display: flex; align-items: center; gap: 29px; }
.site-desktop-nav a { position: relative; color: #435249; font-size: 12px; font-weight: 850; text-decoration: none; }
.site-desktop-nav a:not(.site-nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -10px; left: 0; height: 2px; background: var(--sda-leaf); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--site-ease); }
.site-desktop-nav a:hover::after, .site-desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav-cta { padding: 12px 16px; border-radius: 5px; background: var(--sda-forest); color: white !important; }
.site-nav-quiet { color: var(--sda-muted) !important; }
.site-mobile-nav a { justify-content: space-between; }
.site-mobile-nav a span { color: #8b968e; font-size: 10px; }
.site-mobile-nav a.primary span { color: white; }
.site-loader-orbit { position: absolute; border-radius: 50%; }
.site-loader-orbit-one { inset: 3px; border: 1px solid rgba(53,87,36,.2); border-top-color: var(--sda-leaf); animation: site-spin 1.35s linear infinite; }
.site-loader-orbit-two { inset: 15px; border: 1px solid rgba(210,174,88,.22); border-right-color: var(--sda-gold); animation: site-spin 1.05s linear infinite reverse; }
.site-loader-mark { display: grid; width: 56px; height: 68px; place-items: center; }
.site-loader-mark img { width: 100%; height: 100%; object-fit: contain; animation: loader-breathe 1.8s ease-in-out infinite; }
.site-loader-label span { color: var(--sda-gold); }

.home-hero { position: relative; isolation: isolate; min-height: min(790px,calc(100vh - 104px)); overflow: hidden; background: var(--sda-forest-deep); color: white; }
.creation-grid { position: absolute; inset: 0; z-index: -2; display: grid; grid-template-columns: repeat(7,1fr); opacity: .11; }
.creation-grid span { border-right: 1px solid rgba(255,255,255,.35); }
.creation-grid span:nth-child(odd) { animation: creation-flow 8s ease-in-out infinite alternate; }
.home-hero::after { content: ""; position: absolute; z-index: -1; width: 610px; height: 610px; top: -330px; right: -190px; border: 1px solid rgba(210,174,88,.28); border-radius: 50%; box-shadow: 0 0 0 80px rgba(210,174,88,.035),0 0 0 160px rgba(210,174,88,.02); animation: slow-drift 11s ease-in-out infinite alternate; }
.home-hero-grid { min-height: inherit; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(340px,.72fr); gap: clamp(50px,7vw,100px); align-items: center; padding-block: clamp(72px,9vw,120px); }
.site-eyebrow { display: flex; align-items: center; gap: 12px; margin: 0; color: var(--sda-gold); font-size: 10px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.site-eyebrow > span { width: 34px; height: 1px; background: currentColor; }
.site-eyebrow.dark { color: var(--sda-leaf); }
.home-hero-copy h1 { max-width: 760px; margin: 24px 0 0; font-family: Georgia,"Times New Roman",serif; font-size: clamp(3.4rem,7.2vw,6.8rem); font-weight: 400; letter-spacing: -.055em; line-height: .88; }
.home-hero-copy h1 em { color: var(--sda-gold); font-weight: 400; }
.home-hero-lead { max-width: 610px; margin: 29px 0 0; color: rgba(255,255,255,.67); font-size: clamp(15px,1.4vw,18px); line-height: 1.75; }
.home-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 11px; padding: 0 21px; border: 1px solid transparent; border-radius: 5px; font-size: 12px; font-weight: 900; text-decoration: none; transition: transform .22s,background .22s,border-color .22s; }
.button:hover { transform: translateY(-3px); }
.button-light { background: var(--sda-gold); color: var(--sda-forest-deep); }
.button-ghost-light { border-color: rgba(255,255,255,.3); color: white; }
.button-text-light { min-height: 40px; color: rgba(255,255,255,.72); }
.button-dark { background: var(--sda-forest); color: white; }
.home-trust-line { display: flex; flex-wrap: wrap; margin-top: 44px; }
.home-trust-line > div { min-width: 135px; padding: 0 24px; border-left: 1px solid rgba(255,255,255,.18); }
.home-trust-line > div:first-child { padding-left: 0; border-left: 0; }
.home-trust-line strong, .home-trust-line span { display: block; }
.home-trust-line strong { font-family: Georgia,serif; font-size: 23px; font-weight: 400; }
.home-trust-line span { margin-top: 5px; color: rgba(255,255,255,.46); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.home-hero-visual { position: relative; justify-self: end; width: min(100%,440px); }
.hero-image-wrap { position: relative; }
.hero-image-wrap::before { content: ""; position: absolute; z-index: -1; top: -18px; right: -18px; bottom: 18px; left: 18px; border: 1px solid rgba(210,174,88,.45); }
.hero-image-wrap > img { display: block; width: 100%; aspect-ratio: 4/5.2; border-radius: 3px 19px 3px 19px; object-fit: cover; box-shadow: 0 35px 90px rgba(0,0,0,.3); }
.hero-image-shade { position: absolute; inset: 45% 0 0; border-radius: 0 0 3px 19px; background: linear-gradient(transparent,rgba(4,20,12,.9)); pointer-events: none; }
.hero-event-caption { position: absolute; right: 24px; bottom: 24px; left: 24px; padding: 15px 42px 2px 16px; border-left: 2px solid var(--sda-gold); color: white; text-decoration: none; }
.hero-event-caption span, .hero-event-caption small, .hero-event-caption strong { display: block; }
.hero-event-caption span { color: var(--sda-gold); font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.hero-event-caption strong { margin-top: 6px; font-family: Georgia,serif; font-size: 19px; font-weight: 400; line-height: 1.15; }
.hero-event-caption small { margin-top: 6px; color: rgba(255,255,255,.6); font-size: 10px; }
.hero-event-caption b { position: absolute; top: 50%; right: 5px; font-size: 18px; transform: translateY(-50%); }
.hero-orbit-note { position: absolute; top: 40px; left: -33px; display: flex; align-items: center; gap: 11px; padding: 12px 15px; background: rgba(11,40,26,.9); color: rgba(255,255,255,.7); font-size: 8px; font-weight: 800; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; backdrop-filter: blur(10px); }
.hero-orbit-note img { width: 22px; height: 29px; }
.hero-scroll { position: absolute; right: 34px; bottom: 28px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.45); font-size: 8px; font-weight: 900; letter-spacing: .15em; text-decoration: none; text-transform: uppercase; transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; }
.hero-scroll span { width: 38px; height: 1px; overflow: hidden; background: rgba(255,255,255,.3); }

.home-intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(50px,9vw,130px); align-items: end; padding-block: clamp(90px,11vw,155px); }
.home-intro h2, .section-heading h2, .journey-section h2, .home-cta h2 { margin: 22px 0 0; font-family: Georgia,"Times New Roman",serif; color: var(--sda-ink); font-size: clamp(2.5rem,5.2vw,5rem); font-weight: 400; letter-spacing: -.05em; line-height: .96; }
.home-intro > p, .section-heading > p { margin: 0; color: var(--sda-muted); font-size: 15px; line-height: 1.8; }
.events-section.site-frame { padding-block: clamp(80px,10vw,140px); background: transparent; }
.events-section { border-top: 1px solid var(--sda-line); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(50px,9vw,130px); align-items: end; }
.event-row-image { position: relative; display: block; overflow: hidden; border-radius: 3px 16px 3px 16px; background: #e5eae5; }
.event-row-image img { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .8s var(--site-ease); }
.event-row:hover .event-row-image img { transform: scale(1.035); }
.event-row-content { position: relative; }
.event-row-index { position: absolute; top: 2px; right: 0; color: #d5dbd6; font-family: Georgia,serif; font-size: 30px; }
.event-category { margin: 0; color: var(--sda-leaf); font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.event-row h3 a { color: inherit; text-decoration: none; }
.event-description { max-width: 620px; margin-top: 17px !important; }
.event-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 25px 0 0; padding: 20px 0; border-top: 1px solid #e3e7e3; border-bottom: 1px solid #e3e7e3; }
.event-meta dt { color: #8a958d; font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.event-meta dd { margin: 6px 0 0; color: var(--sda-ink); font-size: 11px; font-weight: 750; line-height: 1.45; }
.event-link { margin-top: 22px; }
.event-closed { display: inline-block; margin-top: 22px; color: #8c3c32; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.event-empty img { display: block; width: 38px; height: 50px; margin: 0 auto 15px; }
.event-empty strong, .event-empty span { display: block; }
.event-empty span { margin-top: 6px; font-size: 12px; }
.journey-steps { margin: 0; padding: 0; list-style: none; }
.journey-steps li { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.journey-steps li:first-child { border-top: 1px solid rgba(255,255,255,.18); }
.journey-steps li > span { color: var(--sda-gold); font-family: Georgia,serif; font-size: 22px; }
.journey-steps strong { display: block; font-size: 15px; }
.journey-steps p { margin: 8px 0 0; color: rgba(255,255,255,.57); font-size: 13px; line-height: 1.7; }
.journey-section h2 { color: white; }
.home-cta { display: grid; grid-template-columns: 70px 1fr auto; gap: 35px; align-items: center; padding-block: clamp(80px,10vw,135px); }
.home-cta > img { width: 55px; height: 70px; }
.home-cta h2 { font-size: clamp(2.2rem,4vw,3.7rem); }
.home-cta p:not(.site-eyebrow) { max-width: 620px; margin: 17px 0 0; color: var(--sda-muted); line-height: 1.7; }
.site-footer-brand { text-decoration: none; }
.site-footer-brand span { display: grid; }
.site-footer-brand small { margin-top: 3px; color: rgba(255,255,255,.4); font-size: 8px; }
.site-footer-grid > p { text-align: center; }
.site-footer-grid > div { display: flex; gap: 22px; }
.site-footer-grid > div a { color: rgba(255,255,255,.62); font-size: 10px; font-weight: 800; text-decoration: none; }
.site-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.32); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }

@keyframes creation-flow { to { background: linear-gradient(to bottom,transparent,rgba(210,174,88,.16),transparent); transform: translateY(18px); } }

@media (max-width: 900px) {
  .site-desktop-nav { display: none; }
  .home-hero-grid { grid-template-columns: 1fr; }
  .home-hero-visual { justify-self: start; width: min(78%,440px); margin-top: 15px; }
  .home-intro, .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .home-cta { grid-template-columns: 60px 1fr; }
  .home-cta .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 680px) {
  .site-nav-width { width: min(calc(100% - 28px),var(--site-width)); }
  .site-brand-entity, .site-brand-divider { display: none; }
  .site-brand-symbol { width: 36px; height: 44px; }
  .home-hero-grid { padding-block: 75px 90px; }
  .home-hero-copy h1 { font-size: clamp(3.1rem,16vw,5.1rem); }
  .home-hero-actions .button { flex: 1 1 100%; }
  .home-trust-line > div { width: 50%; min-width: 0; padding: 0 14px; }
  .home-trust-line > div:nth-child(3) { margin-top: 22px; padding-left: 0; border-left: 0; }
  .home-hero-visual { width: calc(100% - 18px); }
  .hero-orbit-note { left: -5px; }
  .hero-scroll { display: none; }
  .event-meta { grid-template-columns: 1fr; }
  .home-cta { grid-template-columns: 1fr; text-align: center; }
  .home-cta > img { margin-inline: auto; }
  .home-cta .site-eyebrow { justify-content: center; }
  .home-cta .button { grid-column: 1; justify-self: stretch; }
  .site-footer-grid > p { text-align: left; }
  .site-footer-grid > div { flex-wrap: wrap; }
  .site-footer-bottom { align-items: flex-start; flex-direction: column; }
}

/* Attendee registration lookup */
.registration-portal-page { min-height: 100vh; background: linear-gradient(135deg,#f7f7f2 0%,#edf1eb 100%) !important; }
.registration-portal { padding-block: clamp(55px,8vw,95px) !important; }
.registration-portal-heading { display: grid; grid-template-columns: 58px 1fr; gap: 25px; align-items: start; }
.registration-portal-heading > img { width: 49px; height: 62px; object-fit: contain; }
.registration-portal-heading p:first-child { margin: 0; color: var(--sda-leaf) !important; font-size: 9px; letter-spacing: .2em; }
.registration-portal-heading h1 { margin-top: 10px !important; font-family: Georgia,serif; font-size: clamp(2.5rem,6vw,4rem) !important; font-weight: 400 !important; letter-spacing: -.045em; line-height: .96; }
.registration-portal-heading p:last-child { max-width: 580px; color: var(--sda-muted); line-height: 1.7; }
.registration-lookup-form { padding: clamp(25px,5vw,42px) !important; border: 0 !important; border-radius: 4px 16px 4px 16px !important; box-shadow: 0 24px 70px rgba(11,40,26,.08) !important; }
.registration-lookup-form label { color: var(--sda-ink); font-size: 11px; }
.registration-lookup-form input { border: 1px solid #d2dad3 !important; border-radius: 6px !important; background: #fcfdfb; transition: border-color .2s,box-shadow .2s; }
.registration-lookup-form input:focus { border-color: var(--sda-leaf) !important; box-shadow: 0 0 0 3px rgba(53,87,36,.1); outline: 0; }
.registration-lookup-form button { border-radius: 6px !important; background: var(--sda-forest) !important; transition: transform .2s,background .2s; }
.registration-lookup-form button:hover { background: var(--sda-forest-deep) !important; transform: translateY(-2px); }
.registration-result { border: 0 !important; border-radius: 4px 17px 4px 17px !important; box-shadow: 0 24px 70px rgba(11,40,26,.09) !important; }
.registration-result > div:first-child { background: var(--sda-forest-deep) !important; }
.registration-result .rounded-2xl { border-radius: 7px !important; }
.registration-result article { background: #fdfdfb; }

@media (max-width: 680px) {
  .registration-portal-heading { grid-template-columns: 40px 1fr; gap: 16px; }
  .registration-portal-heading > img { width: 37px; height: 48px; }
}

/* Completion and payment states */
.system-state-page,.payment-state-page{min-height:100vh;background:linear-gradient(135deg,#f7f7f2,#edf1eb)!important}
.system-state-shell,.pay-shell{width:min(calc(100% - 28px),720px);margin-inline:auto;padding-block:clamp(55px,8vw,105px)}
.system-state-card,.pay-card{position:relative;overflow:hidden;padding:clamp(28px,6vw,55px);border:0;border-radius:4px 18px 4px 18px;background:#fff;box-shadow:0 25px 75px rgba(11,40,26,.09)}
.system-state-card{text-align:center}
.system-state-card::before,.pay-card::before{content:"";position:absolute;top:0;right:0;left:0;height:4px;background:linear-gradient(90deg,var(--sda-leaf),var(--sda-gold))}
.system-state-mark{position:relative;width:80px;height:90px;margin:0 auto 20px}
.system-state-mark img{width:58px;height:74px;object-fit:contain}
.system-state-mark span{position:absolute;right:0;bottom:5px;display:grid;width:28px;height:28px;place-items:center;border:3px solid #fff;border-radius:50%;background:var(--sda-forest);color:#fff;font-size:13px;font-weight:900}
.system-state-kicker{margin:0;color:var(--sda-leaf);font-size:9px;font-weight:900;letter-spacing:.2em;text-transform:uppercase}
.system-state-card h1{margin:15px 0 0;font-family:Georgia,serif;font-size:clamp(2.7rem,7vw,4.5rem);font-weight:400;letter-spacing:-.05em;line-height:.95}
.system-state-lead{margin:20px 0 0;color:#435249;font-size:15px;line-height:1.7}
.system-state-code{margin:27px 0;padding:20px 15px;border-top:1px solid var(--sda-line);border-bottom:1px solid var(--sda-line);background:#f8f8f4}
.system-state-code span,.system-state-code strong{display:block}
.system-state-code span{color:var(--sda-muted);font-size:9px;font-weight:900;letter-spacing:.13em;text-transform:uppercase}
.system-state-code strong{margin-top:8px;color:var(--sda-forest);font-family:Georgia,serif;font-size:27px;font-weight:400;letter-spacing:.04em;overflow-wrap:anywhere}
.system-state-copy{max-width:560px;margin:0 auto;color:var(--sda-muted);font-size:13px;line-height:1.75}
.system-state-actions{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:12px;margin-top:30px}
.system-state-actions a{display:inline-flex;min-height:48px;align-items:center;justify-content:space-between;gap:24px;padding:0 18px;border:1px solid var(--sda-line);border-radius:5px;color:#526158;font-size:11px;font-weight:900;text-decoration:none;transition:transform .2s,border-color .2s}
.system-state-actions a.primary{border-color:var(--sda-forest);background:var(--sda-forest);color:#fff}
.system-state-actions a:hover{transform:translateY(-2px);border-color:var(--sda-forest)}

.payment-state-heading{display:grid;grid-template-columns:52px 1fr;gap:20px;align-items:start}
.payment-state-heading img{width:47px;height:60px;object-fit:contain}
.payment-state-heading p{margin:0;color:var(--sda-leaf);font-size:9px;font-weight:900;letter-spacing:.17em;text-transform:uppercase}
.payment-state-heading h1{margin:10px 0 0;font-family:Georgia,serif;font-size:clamp(2.4rem,6vw,3.9rem);font-weight:400;letter-spacing:-.045em;line-height:.97}
.pay-meta{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0;margin:32px 0;border-top:1px solid var(--sda-line);border-left:1px solid var(--sda-line)}
.pay-meta div{min-width:0;padding:17px;border-right:1px solid var(--sda-line);border-bottom:1px solid var(--sda-line);background:#fafaf7}
.pay-meta span,.pay-meta strong,.pay-meta code{display:block}
.pay-meta span{color:var(--sda-muted);font-size:9px;font-weight:900;letter-spacing:.09em;text-transform:uppercase}
.pay-meta strong,.pay-meta code{margin-top:7px;color:var(--sda-ink);font-size:13px;overflow-wrap:anywhere}
.pay-card>p{color:#56645b;font-size:13px;line-height:1.7}
.pay-card>p>a{color:var(--sda-forest);font-weight:850}
.payment-notice{padding:13px 15px;border-left:3px solid;border-radius:3px;background:#f3f5f1;font-weight:800!important}
.payment-notice.success{border-color:var(--sda-leaf);color:#315d3c!important}.payment-notice.error{border-color:#a83b32;color:#91332c!important}
.pay-action{min-height:46px;border:0;border-radius:5px;background:var(--sda-forest);padding:0 18px;color:#fff;font-size:12px;font-weight:900;cursor:pointer;transition:transform .2s,background .2s}
.pay-action:hover{background:var(--sda-forest-deep);transform:translateY(-2px)}

/* Public QR credential */
html body.credential-page{min-height:100vh;background:linear-gradient(135deg,#f6f6f0,#e9eee8)!important}
body.credential-page main{width:min(calc(100% - 28px),680px);margin:0 auto;padding-block:clamp(35px,6vw,75px)}
.credential-brand{margin-bottom:18px}
.credential-brand a{display:inline-flex;align-items:center;gap:12px;color:var(--sda-ink);text-decoration:none}
.credential-brand img{width:36px;height:46px}
.credential-brand span{display:grid}
.credential-brand strong{font-size:15px}
.credential-brand small{margin-top:3px;color:var(--sda-muted);font-size:8px;font-weight:800;letter-spacing:.11em;text-transform:uppercase}
body.credential-page .language{margin-bottom:12px}
body.credential-page .language a{border:1px solid var(--sda-line);border-radius:4px;background:#fff;color:#58675e;font-size:10px}
body.credential-page .language a.active{border-color:var(--sda-forest);background:var(--sda-forest);color:#fff}
body.credential-page .credential{overflow:hidden;border:0;border-radius:4px 18px 4px 18px;background:#fff;box-shadow:0 25px 75px rgba(11,40,26,.1)}
body.credential-page .head{position:relative;padding:28px;background:var(--sda-forest-deep);color:#fff}
body.credential-page .head::after{content:"";position:absolute;right:22px;bottom:-22px;width:75px;height:75px;background:url('/assets/sda-symbol-white.svg') center/contain no-repeat;opacity:.1}
body.credential-page .head p{color:var(--sda-gold);font-size:9px}
body.credential-page .head h1{margin-top:10px;font-family:Georgia,serif;font-size:clamp(2rem,6vw,3.1rem);font-weight:400;letter-spacing:-.035em}
body.credential-page .body{padding:clamp(22px,5vw,36px)}
body.credential-page .photo{border-radius:4px 12px 4px 12px;background:#e8eee7;color:var(--sda-leaf)}
body.credential-page .identity h2{font-family:Georgia,serif;font-size:clamp(1.7rem,5vw,2.4rem);font-weight:400;letter-spacing:-.025em}
body.credential-page .valid{border-radius:3px;background:#e4eee5;color:#285c38;font-size:9px;letter-spacing:.05em;text-transform:uppercase}
body.credential-page .grid{gap:0;border-top:1px solid var(--sda-line);border-left:1px solid var(--sda-line)}
body.credential-page .item{padding:15px;border-right:1px solid var(--sda-line);border-bottom:1px solid var(--sda-line);border-radius:0;background:#fafaf7}
body.credential-page .status{border-radius:3px;background:#eef1ed;font-size:9px;letter-spacing:.035em;text-transform:uppercase}
body.credential-page .status.ok{background:#e2eee4;color:#285d39}
body.credential-page .back{margin:0;padding:18px;border-top:1px solid var(--sda-line);color:var(--sda-forest);font-size:11px;text-transform:uppercase;letter-spacing:.06em}
body.credential-page .invalid-mark{border-radius:4px 12px 4px 12px}

@media(max-width:560px){
  .system-state-actions{align-items:stretch;flex-direction:column}.system-state-actions a{width:100%}
  .payment-state-heading{grid-template-columns:40px 1fr}.payment-state-heading img{width:36px;height:48px}
  .pay-meta{grid-template-columns:1fr}
  body.credential-page .identity{align-items:flex-start}
}

/* Integrated for Mission landing additions */
.hero-rotating-title{height:2.08em;overflow:hidden}
.hero-title-window{position:relative;display:block;width:100%;height:100%}
.hero-title-phrase{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-start;padding:.06em 0 .12em;will-change:opacity,transform}
.hero-title-phrase>span,.hero-title-phrase>em{display:block}
.hero-title-phrase>span{white-space:nowrap}
.hero-title-phrase.phrase-one{animation:hero-phrase-one 9s var(--site-ease) infinite}
.hero-title-phrase.phrase-two{opacity:0;animation:hero-phrase-two 9s var(--site-ease) infinite}
@keyframes hero-phrase-one{0%,43%{opacity:1;transform:none}49%,94%{opacity:0;transform:translateY(-28px)}95%{opacity:0;transform:translateY(28px)}100%{opacity:1;transform:none}}
@keyframes hero-phrase-two{0%,44%{opacity:0;transform:translateY(28px)}50%,93%{opacity:1;transform:none}99%,100%{opacity:0;transform:translateY(-28px)}}

.scripture-section{position:relative;overflow:hidden;padding-block:clamp(85px,11vw,155px);background:var(--sda-cream)}
.scripture-section::after{content:"21";position:absolute;right:-15px;bottom:-95px;color:rgba(53,87,36,.05);font-family:Georgia,serif;font-size:clamp(14rem,32vw,31rem);line-height:1;pointer-events:none}
.scripture-grid{position:relative;z-index:1;display:grid;grid-template-columns:.55fr 1.45fr;gap:clamp(50px,10vw,150px);align-items:center}
.scripture-mark{display:flex;align-items:center;gap:20px;color:var(--sda-leaf);font-size:9px;font-weight:900;letter-spacing:.15em;line-height:1.7;text-transform:uppercase}
.scripture-mark img{width:64px;height:82px;object-fit:contain}
.scripture-section blockquote{margin:0}
.scripture-section blockquote p{max-width:900px;margin:0;font-family:Georgia,"Times New Roman",serif;color:var(--sda-ink);font-size:clamp(3.2rem,7vw,7rem);font-weight:400;letter-spacing:-.055em;line-height:.92}
.scripture-section blockquote footer{display:flex;align-items:center;gap:13px;margin-top:28px;color:var(--sda-leaf);font-size:10px;font-weight:900;letter-spacing:.2em;text-transform:uppercase}
.scripture-section blockquote footer::before{content:"";width:38px;height:1px;background:currentColor}

.about-ntuc-section{position:relative;overflow:hidden;padding-block:clamp(90px,11vw,155px);background:var(--sda-forest);color:#fff}
.about-ntuc-section::after{content:"";position:absolute;right:-210px;bottom:-300px;width:600px;height:600px;border:1px solid rgba(210,174,88,.18);border-radius:50%;box-shadow:0 0 0 75px rgba(210,174,88,.025),0 0 0 150px rgba(210,174,88,.018)}
.about-ntuc-grid{position:relative;z-index:1;display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(55px,9vw,135px);align-items:start}
.about-ntuc-section h2{margin:22px 0 0;font-family:Georgia,"Times New Roman",serif;font-size:clamp(2.8rem,5.4vw,5.2rem);font-weight:400;letter-spacing:-.05em;line-height:.95}
.about-ntuc-copy{padding-top:30px;border-top:1px solid rgba(255,255,255,.2)}
.about-ntuc-copy p{margin:0;color:rgba(255,255,255,.66);font-size:14px;line-height:1.85}
.about-ntuc-copy p+p{margin-top:20px}
.about-ntuc-copy a{display:inline-flex;align-items:center;gap:12px;margin-top:30px;padding-bottom:7px;border-bottom:1px solid var(--sda-gold);color:#fff;font-size:10px;font-weight:900;letter-spacing:.08em;text-decoration:none;text-transform:uppercase}
.site-footer-bottom em{color:rgba(255,255,255,.34);font-size:9px;text-transform:none;letter-spacing:.02em}
.site-footer-bottom em a{color:var(--sda-gold);font-weight:800;text-decoration:none}
.site-footer-bottom em a:hover{text-decoration:underline}

@media(max-width:760px){
  .home-hero-copy .hero-rotating-title{height:2.12em;font-size:clamp(2.8rem,13.5vw,4.2rem)}
  .scripture-grid,.about-ntuc-grid{grid-template-columns:1fr}
  .scripture-grid{gap:45px}
  .scripture-mark img{width:48px;height:62px}
  .scripture-section blockquote p{font-size:clamp(3rem,14vw,5rem)}
  .about-ntuc-grid{gap:35px}
  .about-ntuc-copy{padding-top:24px}
}
@media(prefers-reduced-motion:reduce){
  .hero-title-phrase.phrase-one{opacity:1;transform:none;animation:none!important}
  .hero-title-phrase.phrase-two{display:none;animation:none!important}
}
