:root {
  --green-950: #063d28;
  --green-900: #075532;
  --green-800: #087a42;
  --green-700: #0b9450;
  --green-500: #39b75f;
  --green-200: #c8edd2;
  --green-100: #eaf8ee;
  --lime-100: #f4fae8;
  --cream: #fffdf5;
  --ink: #173226;
  --muted: #62756b;
  --white: #ffffff;
  --line: rgba(8, 84, 50, .13);
  --shadow: 0 24px 70px rgba(9, 69, 42, .12);
  --shadow-soft: 0 15px 42px rgba(9, 69, 42, .08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  background: var(--green-950);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 9999;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-tint { background: linear-gradient(180deg, #f3faef 0%, #ecf7ef 100%); }
.section-dark { background: var(--green-950); color: #fff; }
.section-shell { position: relative; overflow: hidden; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 245, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8, 84, 50, .08);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; line-height: 1.1; color: var(--green-900); }
.brand-mark { width: 43px; height: 43px; display: grid; place-items: center; color: var(--green-700); }
.brand-mark svg { width: 100%; height: 100%; }
.brand strong { display: block; font-size: 14px; letter-spacing: .08em; }
.brand small { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
.primary-nav { display: flex; align-items: center; gap: 25px; }
.primary-nav > a:not(.button) { text-decoration: none; font-size: 14px; font-weight: 650; color: #355447; }
.primary-nav > a:not(.button):hover { color: var(--green-700); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--green-100); padding: 11px; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--green-900); transition: .2s ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--green-700);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-800), var(--green-500));
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  box-shadow: 0 12px 28px rgba(8, 122, 66, .2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 17px 34px rgba(8, 122, 66, .26); }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 42px; padding: 0 18px; font-size: 13px; }
.button-ghost { background: rgba(255,255,255,.55); color: var(--green-900); box-shadow: none; }
.button-outline { background: transparent; color: var(--green-800); box-shadow: none; }
.button-light { background: #fff; border-color: #fff; color: var(--green-900); }

.hero { padding: 82px 0 92px; background: radial-gradient(circle at 10% 20%, #f6ffe9 0, transparent 34%), linear-gradient(135deg, #fffdf7 0%, #f1faeb 100%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.06fr .8fr; align-items: center; gap: 72px; }
.hero-copy { padding: 28px 0; }
.eyebrow { margin: 0 0 14px; color: var(--green-700); text-transform: uppercase; letter-spacing: .13em; font-size: 13px; font-weight: 800; }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(44px, 6.1vw, 76px); line-height: 1.02; letter-spacing: -.045em; }
.hero h1 span { display: block; color: var(--green-800); }
.hero-lead { max-width: 680px; margin: 25px 0 0; font-size: 18px; color: #50675b; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 33px; }
.countdown { display: grid; grid-template-columns: repeat(4, minmax(72px, 1fr)); gap: 10px; max-width: 520px; margin-top: 34px; }
.countdown div { padding: 13px 10px; border: 1px solid var(--line); background: rgba(255,255,255,.72); border-radius: 15px; text-align: center; }
.countdown strong { display: block; font-size: 24px; line-height: 1; color: var(--green-900); }
.countdown span { display: block; margin-top: 7px; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.hero-visual { position: relative; padding: 12px; }
.poster-card { position: relative; width: min(100%, 430px); margin-left: auto; border: 10px solid #fff; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); transform: rotate(1.6deg); }
.poster-card::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(8,84,50,.08); pointer-events: none; }
.floating-note { position: absolute; display: flex; flex-direction: column; min-width: 154px; padding: 15px 18px; background: rgba(255,255,255,.95); border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow-soft); backdrop-filter: blur(10px); }
.floating-note strong { color: var(--green-800); font-size: 22px; line-height: 1.1; }
.floating-note span { color: var(--muted); font-size: 12px; }
.floating-note-one { left: -20px; top: 18%; }
.floating-note-two { right: -24px; bottom: 18%; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); opacity: .4; }
.hero-orb-one { width: 520px; height: 520px; right: -220px; top: -200px; background: #d9f39d; }
.hero-orb-two { width: 300px; height: 300px; left: -120px; bottom: -170px; background: #b8e8c7; }

.stats-strip { background: var(--green-900); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid article { padding: 28px 20px; border-right: 1px solid rgba(255,255,255,.14); }
.stats-grid article:last-child { border-right: 0; }
.stats-grid strong { display: block; font-size: 23px; line-height: 1.15; }
.stats-grid span { display: block; margin-top: 6px; color: rgba(255,255,255,.72); font-size: 13px; }

.split-grid { display: grid; grid-template-columns: 1fr .82fr; align-items: center; gap: 82px; }
.section-copy h2, .section-heading h2 { margin: 0; font-size: clamp(34px, 4.5vw, 55px); line-height: 1.08; letter-spacing: -.035em; }
.section-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.section-heading { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.section-heading > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.section-heading-light .eyebrow { color: #83df9e; }
.section-heading-light > p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.check-list { display: grid; gap: 12px; margin-top: 27px; }
.check-list div { display: flex; align-items: flex-start; gap: 11px; padding: 13px 15px; background: var(--green-100); border-radius: 13px; color: #36584a; }
.check-list span { flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--green-700); color: #fff; font-size: 12px; }
.image-frame { position: relative; width: min(100%, 480px); justify-self: end; padding: 0; border: 0; background: transparent; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.image-frame img { width: 100%; }
.zoom-label { position: absolute; right: 16px; bottom: 16px; padding: 8px 12px; border-radius: 999px; background: rgba(6,61,40,.88); color: #fff; font-size: 12px; }

.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sector-card { padding: 31px; border: 1px solid rgba(8,84,50,.1); border-radius: var(--radius-lg); background: rgba(255,255,255,.83); box-shadow: var(--shadow-soft); }
.sector-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: var(--green-100); color: var(--green-800); font-size: 28px; }
.sector-card h3 { margin: 19px 0 10px; font-size: 22px; }
.sector-card p { margin: 0; color: var(--muted); }
.wide-media { max-width: 680px; margin: 44px auto 0; }
.wide-media button { width: 100%; padding: 0; border: 0; border-radius: var(--radius-xl); overflow: hidden; background: transparent; box-shadow: var(--shadow); }

.venue-section { background: linear-gradient(180deg, #fffdf5 0, #f9fbf3 100%); }
.media-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 860px; margin: 0 auto; }
.media-card { position: relative; padding: 0; overflow: hidden; border: 0; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); text-align: left; }
.media-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; transition: transform .35s ease; }
.media-card:hover img { transform: scale(1.025); }
.media-card span { display: block; padding: 16px 18px; font-weight: 750; color: var(--green-900); }

.activity-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.activity-card { min-height: 285px; padding: 24px; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-lg); background: rgba(255,255,255,.055); }
.activity-card span { color: #7fde9b; font-size: 38px; font-weight: 900; line-height: 1; }
.activity-card h3 { margin: 21px 0 10px; font-size: 18px; line-height: 1.25; }
.activity-card p { margin: 0; color: rgba(255,255,255,.68); font-size: 14px; }
.media-pair-dark { margin-top: 38px; }
.media-pair-dark .media-card { background: rgba(255,255,255,.08); }
.media-pair-dark .media-card span { color: #fff; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.price-card-featured { border: 2px solid var(--green-700); transform: translateY(-8px); }
.recommended { position: absolute; top: 14px; right: 14px; padding: 6px 10px; border-radius: 999px; background: var(--green-100); color: var(--green-800); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.price-name { margin: 0; color: var(--green-800); font-weight: 850; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.price { margin: 13px 0 20px; color: var(--muted); }
.price strong { display: inline-block; color: var(--ink); font-size: 31px; letter-spacing: -.035em; }
.price-card ul { flex: 1; margin: 0 0 25px; padding: 0; list-style: none; }
.price-card li { position: relative; padding: 9px 0 9px 25px; border-bottom: 1px solid #edf3ee; color: var(--muted); font-size: 14px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green-700); font-weight: 900; }
.price-card .button { width: 100%; }
.booth-includes { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 35px; padding: 29px 32px; background: var(--green-100); border-radius: var(--radius-lg); }
.booth-includes h3 { margin: 0; font-size: 25px; }
.booth-includes p:not(.eyebrow) { margin: 7px 0 0; color: var(--muted); }
.text-link { flex: 0 0 auto; color: var(--green-800); text-decoration: none; font-weight: 800; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.booth-gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 13px; margin-top: 26px; }
.thumbnail { padding: 0; overflow: hidden; border: 0; border-radius: 14px; background: #fff; box-shadow: var(--shadow-soft); }
.thumbnail img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; transition: transform .3s ease; }
.thumbnail:hover img { transform: scale(1.04); }

.documents-section .split-grid { grid-template-columns: 1.15fr .85fr; }
.document-pair { width: 100%; }

.cta-section { padding: 0 0 104px; background: var(--cream); }
.cta-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; padding: 55px; border-radius: 32px; color: #fff; background: linear-gradient(135deg, var(--green-950), var(--green-700)); box-shadow: var(--shadow); }
.cta-card .eyebrow { color: #91e8a9; }
.cta-card h2 { max-width: 740px; margin: 0; font-size: clamp(34px, 4.3vw, 52px); line-height: 1.06; letter-spacing: -.035em; }
.cta-card p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.76); }
.contact-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.contact-list span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: rgba(255,255,255,.8); font-size: 12px; }
.cta-action { min-width: 250px; text-align: center; }
.cta-action .button { width: 100%; }
.cta-action small { display: block; margin-top: 10px; color: rgba(255,255,255,.6); }

.site-footer { padding: 65px 0 20px; background: #042e20; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 50px; }
.brand-footer { color: #fff; }
.brand-footer small { color: rgba(255,255,255,.62); }
.site-footer h3 { margin: 0 0 10px; color: #fff; font-size: 15px; }
.site-footer p { margin: 10px 0 0; font-size: 13px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 45px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom a { color: #fff; text-decoration: none; font-size: 13px; }

.floating-register { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: none; padding: 13px 19px; border-radius: 999px; background: var(--green-700); color: #fff; text-decoration: none; font-size: 13px; font-weight: 800; box-shadow: 0 13px 32px rgba(5, 73, 41, .3); }

.lightbox { width: min(94vw, 980px); max-height: 92vh; padding: 0; border: 0; border-radius: 20px; background: #10241a; box-shadow: 0 30px 100px rgba(0,0,0,.45); overflow: hidden; }
.lightbox::backdrop { background: rgba(1, 18, 10, .82); backdrop-filter: blur(5px); }
.lightbox img { display: block; max-width: 100%; max-height: 88vh; margin: auto; object-fit: contain; }
.lightbox-close { position: fixed; top: max(18px, calc(4vh)); right: max(18px, calc(4vw)); z-index: 2; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(0,0,0,.55); color: #fff; font-size: 28px; line-height: 1; }
.noscript-note { padding: 12px; background: #fff2c8; color: #5f4a00; text-align: center; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1050px) {
  .primary-nav { gap: 16px; }
  .primary-nav > a:not(.button) { display: none; }
  .hero-grid { grid-template-columns: 1fr .72fr; gap: 40px; }
  .activity-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .booth-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 790px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 75px 0; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.button) { display: block; padding: 12px; }
  .primary-nav .button { margin-top: 8px; }
  .hero { padding: 55px 0 70px; }
  .hero-grid, .split-grid, .documents-section .split-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-copy { text-align: center; }
  .hero h1 { font-size: clamp(40px, 12vw, 62px); }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .countdown { margin-inline: auto; }
  .hero-visual { max-width: 480px; margin-inline: auto; }
  .poster-card { width: min(88%, 420px); margin-inline: auto; }
  .floating-note-one { left: 0; }
  .floating-note-two { right: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid article:nth-child(2) { border-right: 0; }
  .stats-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .image-frame { justify-self: center; }
  .sector-grid, .activity-grid { grid-template-columns: 1fr; }
  .activity-card { min-height: auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-featured { transform: none; }
  .booth-includes { align-items: flex-start; flex-direction: column; }
  .cta-card { grid-template-columns: 1fr; padding: 39px 28px; text-align: center; }
  .cta-card h2, .cta-card p { margin-inline: auto; }
  .contact-list { justify-content: center; }
  .cta-action { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .floating-register { display: block; }
}

@media (max-width: 560px) {
  .header-inner { min-height: 68px; }
  .brand-mark { width: 37px; height: 37px; }
  .brand strong { font-size: 12px; }
  .brand small { font-size: 10px; }
  .hero h1 { letter-spacing: -.04em; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .countdown { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .countdown div { padding: 10px 3px; }
  .countdown strong { font-size: 20px; }
  .countdown span { font-size: 9px; }
  .floating-note { min-width: 126px; padding: 11px 13px; }
  .floating-note strong { font-size: 18px; }
  .floating-note span { font-size: 10px; }
  .stats-grid article { padding: 22px 13px; }
  .stats-grid strong { font-size: 19px; }
  .media-pair { grid-template-columns: 1fr 1fr; gap: 10px; }
  .media-card span { padding: 12px; font-size: 12px; }
  .booth-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}
