html { font-size: 16px !important; }  :root, [data-theme="light"] { --font-display: "Playfair Display", Georgia, serif; --font-body: "Source Sans 3", "Helvetica Neue", sans-serif; --brand-blue: hsl(231, 51%, 36%); --brand-red: hsl(4, 55%, 59%); --brand-gray: hsl(240, 11%, 86%); --brand-blue-gray: hsl(214, 23%, 64%); --color-brand: var(--brand-blue); --color-brand-dark: var(--color-primary-hover); --color-bg: hsl(240, 10%, 97%); --color-surface: hsl(0, 0%, 100%); --color-surface-2: hsl(240, 8%, 95%); --color-surface-offset: hsl(231, 20%, 93%); --color-divider: hsl(240, 10%, 88%); --color-border: hsl(231, 15%, 82%); --color-text: hsl(231, 30%, 15%); --color-text-muted: hsl(231, 12%, 42%); --color-text-faint: hsl(231, 8%, 64%); --color-text-inverse: hsl(0, 0%, 100%); --color-primary: var(--brand-blue); --color-primary-hover: hsl(231, 51%, 28%); --color-primary-active: hsl(231, 51%, 22%); --color-accent: var(--brand-red); --color-accent-hover: hsl(4, 55%, 50%); --shadow-sm: 0 1px 3px hsl(231 30% 10% / 0.08); --shadow-md: 0 4px 16px hsl(231 30% 10% / 0.10); --shadow-lg: 0 12px 40px hsl(231 30% 10% / 0.14); --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1); --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem); --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem); --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem); --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem); --text-hero: clamp(2.75rem, 0.5rem + 6vw, 5.5rem); --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem; --space-5: 1.25rem; --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem; --space-16: 4rem; --space-20: 5rem; --space-24: 6rem; --content-narrow: 640px; --content-default: 960px; --content-wide: 1240px; } [data-theme="dark"] { --color-bg: hsl(231, 25%, 10%); --color-surface: hsl(231, 22%, 13%); --color-surface-2: hsl(231, 20%, 16%); --color-surface-offset: hsl(231, 18%, 19%); --color-divider: hsl(231, 15%, 22%); --color-border: hsl(231, 14%, 28%); --color-text: hsl(240, 10%, 90%); --color-text-muted: hsl(231, 10%, 62%); --color-text-faint: hsl(231, 8%, 45%); --color-text-inverse: hsl(231, 25%, 10%); --color-primary: hsl(231, 60%, 68%); --color-primary-hover: hsl(231, 65%, 76%); --color-primary-active: hsl(231, 65%, 80%); --color-accent: hsl(4, 60%, 68%); --color-accent-hover: hsl(4, 65%, 76%); --shadow-sm: 0 1px 3px hsl(0 0% 0% / 0.25); --shadow-md: 0 4px 16px hsl(0 0% 0% / 0.35); --shadow-lg: 0 12px 40px hsl(0 0% 0% / 0.45); } @media (prefers-color-scheme: dark) { :root:not([data-theme]) { --color-bg: hsl(231, 25%, 10%); --color-surface: hsl(231, 22%, 13%); --color-surface-2: hsl(231, 20%, 16%); --color-surface-offset: hsl(231, 18%, 19%); --color-divider: hsl(231, 15%, 22%); --color-border: hsl(231, 14%, 28%); --color-text: hsl(240, 10%, 90%); --color-text-muted: hsl(231, 10%, 62%); --color-text-faint: hsl(231, 8%, 45%); --color-text-inverse: hsl(231, 25%, 10%); --color-primary: hsl(231, 60%, 68%); --color-accent: hsl(4, 60%, 68%); --shadow-sm: 0 1px 3px hsl(0 0% 0% / 0.25); --shadow-md: 0 4px 16px hsl(0 0% 0% / 0.35); --shadow-lg: 0 12px 40px hsl(0 0% 0% / 0.45); } }  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; scroll-padding-top: var(--space-20); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; hanging-punctuation: first last; } body { font-family: var(--font-body); font-size: var(--text-base); color: var(--color-text); background-color: var(--color-bg); line-height: 1.65; min-height: 100dvh; } img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; } h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); text-wrap: balance; line-height: 1.2; } p, li { text-wrap: pretty; } ul[role="list"], ol[role="list"] { list-style: none; } input, button, textarea, select { font: inherit; color: inherit; } button { cursor: pointer; background: none; border: none; } a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); } ::selection { background: hsl(231, 51%, 36%, 0.22); color: var(--color-text); } :focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; } @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } }  .skip-link { position: absolute; top: -100%; left: var(--space-4); background: var(--color-primary); color: var(--color-text-inverse); padding: var(--space-2) var(--space-4); font-size: var(--text-sm); font-family: var(--font-body); z-index: 9999; transition: top 0.2s; } .skip-link:focus { top: var(--space-2); }  body .container { max-width: var(--content-wide) !important; margin-inline: auto !important; padding-inline: clamp(var(--space-4), 4vw, var(--space-10)) !important; } body .container--narrow { max-width: var(--content-default) !important; margin-inline: auto !important; padding-inline: clamp(var(--space-4), 4vw, var(--space-10)) !important; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; } .section-label { display: inline-block; font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent); margin-bottom: var(--space-3); } .section-heading { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--color-text); line-height: 1.15; } .section-heading--light { color: var(--color-text-inverse); }  .btn { display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.025em; padding: var(--space-3) var(--space-6); border: 2px solid transparent; cursor: pointer; transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition); text-decoration: none; white-space: nowrap; } .btn--primary { background: var(--color-primary); color: hsl(0,0%,100%); border-color: var(--color-primary); } .btn--primary:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); } .btn--primary:active { background: var(--color-primary-active); } .btn--outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); } .btn--outline:hover { background: var(--color-primary); color: hsl(0,0%,100%); } .btn--outline-white { background: transparent; color: hsl(0,0%,100%); border-color: hsl(0,0%,100%); } .btn--outline-white:hover { background: hsl(0,0%,100%); color: var(--color-primary); } .btn--donate { background: var(--color-accent); color: hsl(0,0%,100%); border-color: var(--color-accent); font-size: var(--text-xs); padding: var(--space-2) var(--space-4); letter-spacing: 0.08em; text-transform: uppercase; } .btn--donate:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); } .btn--blue { background-color: var(--brand-blue); color: hsl(0,0%,100%); border-color: var(--brand-blue); } .btn--blue:hover { background-color: var(--color-primary-hover); border-color: var(--color-primary-hover); color: hsl(0,0%,100%); } .btn--white-outline { background: transparent; color: hsl(0,0%,100%); border-color: hsl(0,0%,100%,0.65); } .btn--white-outline:hover { background: hsl(0,0%,100%,0.12); border-color: hsl(0,0%,100%); color: hsl(0,0%,100%); } .btn--ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); } .btn--ghost:hover { background: var(--color-surface-offset); border-color: var(--brand-blue-gray); color: var(--color-text); } .btn--nav-outline { background: transparent; color: hsl(0,0%,100%); border-color: hsl(231,30%,60%); } .btn--nav-outline:hover { background: hsl(231,51%,28%); border-color: hsl(0,0%,100%); color: hsl(0,0%,100%); }  .site-header { position: sticky; top: 0; z-index: 100; background: var(--color-primary); box-shadow: var(--shadow-md); transition: box-shadow var(--transition); } .navbar { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); padding-block: var(--space-4); position: relative; } .navbar__logo { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; flex-shrink: 0; } .navbar__logo-img { height: 44px; width: auto; display: block; } .navbar__logo-text { display: flex; flex-direction: column; line-height: 1.15; } .navbar__logo-title { font-family: var(--font-display); font-size: clamp(0.9rem,0.8rem + 0.5vw,1.15rem); font-weight: 700; color: hsl(0,0%,100%); letter-spacing: 0.01em; } .navbar__logo-subtitle { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 400; color: hsl(214,23%,78%); letter-spacing: 0.06em; text-transform: uppercase; } .navbar__nav { display: flex; align-items: center; gap: var(--space-1); flex: 1; justify-content: center; } .navbar__nav-link { font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500; color: hsl(214,23%,85%); padding: var(--space-2) var(--space-3); letter-spacing: 0.02em; position: relative; transition: color var(--transition); } .navbar__nav-link::after { content: ''; position: absolute; bottom: 0; left: var(--space-3); right: var(--space-3); height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: center; transition: transform var(--transition); } .navbar__nav-link:hover { color: hsl(0,0%,100%); } .navbar__nav-link:hover::after, .navbar__nav-link--active::after { transform: scaleX(1); } .navbar__nav-link--active { color: hsl(0,0%,100%); } .navbar__actions { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; } .theme-toggle { background: none; border: 1px solid hsl(231,30%,55%); color: hsl(214,23%,85%); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: color var(--transition), border-color var(--transition), background var(--transition); } .theme-toggle:hover { color: hsl(0,0%,100%); border-color: hsl(0,0%,100%); } .navbar__mobile-toggle { display: none; background: none; border: 1px solid hsl(231, 30%, 55%); color: hsl(0, 0%, 100%); width: 40px; height: 40px; align-items: center; justify-content: center; cursor: pointer; } .header__hero-strip { background: var(--color-primary); padding: var(--space-2) 0; border-top: 1px solid hsl(231,40%,45%); width: 100% !important; max-width: 100% !important; align-self: stretch !important; } .header__hero-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); } .header__ticker { font-family: var(--font-body); font-size: var(--text-xs); color: hsl(214,23%,78%); letter-spacing: 0.04em; flex: 1 1 auto !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; min-width: 0 !important; } .header__ticker strong { color: hsl(0,0%,100%); font-weight: 600; margin-right: var(--space-2); }  .hero { position: relative; min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; } .hero__bg { position: absolute; inset: 0; z-index: 0; } .hero__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; } .hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, hsl(231,51%,18%,0.55) 0%, hsl(231,51%,12%,0.82) 70%, hsl(231,51%,8%,0.96) 100%); z-index: 1; } .hero__content { position: relative; z-index: 2; width: 100%; padding-block: var(--space-20) var(--space-20); } .hero__inner { max-width: 760px; } .hero__label { display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-red); margin-bottom: var(--space-5); } .hero__label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--brand-red); flex-shrink: 0; } .hero__heading { font-family: var(--font-display); font-size: var(--text-hero); font-weight: 700; color: hsl(0,0%,100%); line-height: 1.07; margin-bottom: var(--space-6); max-width: 720px; } .hero__heading em { font-style: italic; color: hsl(240,11%,86%); } .hero__text { font-family: var(--font-body); font-size: var(--text-lg); font-weight: 300; color: hsl(214,23%,80%); line-height: 1.65; max-width: 580px; margin-bottom: var(--space-10); } .hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; } .hero__scroll { position: absolute; bottom: var(--space-8); right: var(--space-10); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: var(--space-2); color: hsl(214,23%,72%); font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; } .hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, hsl(214,23%,72%)); }  .events { background: var(--color-bg); padding-block: clamp(var(--space-12), 7vw, var(--space-24)); } .events__header { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-8); margin-bottom: var(--space-12); } .events__header-left { max-width: 480px; } .events__header-text { font-size: var(--text-base); color: var(--color-text-muted); margin-top: var(--space-3); max-width: 44ch; } .events__view-all { font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; color: var(--color-primary); display: flex; align-items: center; gap: var(--space-2); text-decoration: none; white-space: nowrap; padding: var(--space-2) 0; transition: gap var(--transition), color var(--transition); } .events__view-all:hover { gap: var(--space-3); color: var(--color-primary-hover); } .events__view-all-arrow { font-size: 1.1em; line-height: 1; } .events__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }  .event-card { background: var(--color-surface); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); border: 1px solid hsl(231, 15%, 0%, 0.07); } .event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); } .event-card__img-wrap { position: relative; overflow: hidden; aspect-ratio: 16 / 9; flex-shrink: 0; } .event-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); } .event-card:hover .event-card__img { transform: scale(1.04); } .event-card__type-badge { position: absolute; top: var(--space-3); left: var(--space-3); background: var(--color-primary); color: hsl(0, 0%, 100%); font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: var(--space-1) var(--space-3); } .event-card__body { padding: var(--space-6); display: flex; flex-direction: column; flex: 1; } .event-card__meta { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-4); flex-wrap: wrap; } .event-card__date { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; color: var(--color-accent); letter-spacing: 0.06em; text-transform: uppercase; } .event-card__location { font-family: var(--font-body); font-size: var(--text-xs); color: var(--color-text-faint); letter-spacing: 0.02em; } .event-card__title { font-family: var(--font-display); font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem); font-weight: 600; color: var(--color-text); line-height: 1.3; margin-bottom: var(--space-4); } .event-card__title a { text-decoration: none; color: inherit; transition: color var(--transition); } .event-card__title a:hover { color: var(--color-primary); } .event-card__speakers-label { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-2); } .event-card__speakers-list { font-family: var(--font-body); font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.5; margin-bottom: var(--space-5); } .event-card__footer { margin-top: auto; padding-top: var(--space-5); border-top: 1px solid var(--color-divider); display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); } .event-card__time { font-family: var(--font-body); font-size: var(--text-xs); color: var(--color-text-muted); } .event-card__time strong { font-weight: 600; color: var(--color-text); } .event-card__register { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; color: var(--color-primary); letter-spacing: 0.04em; text-decoration: none; display: flex; align-items: center; gap: var(--space-1); transition: gap var(--transition), color var(--transition); } .event-card__register:hover { gap: var(--space-2); color: var(--color-primary-hover); }  .media { background: var(--color-surface-2); padding-block: clamp(var(--space-12), 7vw, var(--space-24)); border-top: 1px solid var(--color-divider); border-bottom: 1px solid var(--color-divider); } .media__header { margin-bottom: var(--space-12); } .media__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }  .media-card { background: var(--color-surface); box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column; border: 1px solid hsl(231, 15%, 0%, 0.07); transition: box-shadow var(--transition), transform var(--transition); } .media-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); } .media-card__img-wrap { position: relative; overflow: hidden; aspect-ratio: 16 / 10; } .media-card__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); } .media-card:hover .media-card__img { transform: scale(1.04); } .media-card__outlet-badge { position: absolute; bottom: var(--space-3); right: var(--space-3); background: hsl(0, 0%, 100%); color: var(--color-text); font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: var(--space-1) var(--space-3); box-shadow: var(--shadow-sm); } .media-card__body { padding: var(--space-6); flex: 1; display: flex; flex-direction: column; } .media-card__outlet-label { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-3); display: flex; align-items: center; gap: var(--space-2); } .media-card__outlet-icon { width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); flex-shrink: 0; } .media-card__title { font-family: var(--font-display); font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem); font-weight: 600; color: var(--color-text); line-height: 1.35; margin-bottom: var(--space-4); } .media-card__title a { color: inherit; text-decoration: none; transition: color var(--transition); } .media-card__title a:hover { color: var(--color-primary); } .media-card__expert { margin-top: auto; padding-top: var(--space-4); border-top: 1px solid var(--color-divider); display: flex; align-items: center; gap: var(--space-3); } .media-card__expert-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--color-surface-offset); } .media-card__expert-avatar img { width: 100%; height: 100%; object-fit: cover; } .media-card__expert-info { display: flex; flex-direction: column; gap: 2px; } .media-card__expert-name { font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; color: var(--color-text); } .media-card__expert-role { font-family: var(--font-body); font-size: var(--text-xs); color: var(--color-text-muted); }  .about { background: var(--color-bg); padding-block: clamp(var(--space-12), 8vw, var(--space-24)); } .about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-10), 6vw, var(--space-20)); align-items: center; } .about__content {} .about__heading { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; line-height: 1.2; margin-bottom: var(--space-6); color: var(--color-text); } .about__text { font-family: var(--font-body); font-size: var(--text-base); color: var(--color-text-muted); line-height: 1.75; margin-bottom: var(--space-5); max-width: 54ch; } .about__pillars { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-8); } .about__pillar { display: flex; align-items: flex-start; gap: var(--space-3); font-family: var(--font-body); font-size: var(--text-sm); color: var(--color-text-muted); } .about__pillar-marker { width: 18px; height: 18px; flex-shrink: 0; background: var(--color-accent); display: flex; align-items: center; justify-content: center; margin-top: 2px; } .about__pillar-marker svg { width: 10px; height: 10px; stroke: hsl(0, 0%, 100%); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; } .about__link { font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; color: var(--color-primary); display: inline-flex; align-items: center; gap: var(--space-2); text-decoration: none; border-bottom: 1px solid var(--color-primary); padding-bottom: 2px; transition: gap var(--transition), opacity var(--transition); } .about__link:hover { gap: var(--space-3); opacity: 0.8; } .about__image-wrap { position: relative; } .about__image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; box-shadow: var(--shadow-lg); } .about__image-caption { position: absolute; bottom: 0; left: 0; right: 0; background: hsl(231, 51%, 20%, 0.88); padding: var(--space-4) var(--space-5); } .about__image-caption-text { font-family: var(--font-display); font-style: italic; font-size: clamp(0.9rem, 0.8rem + 0.4vw, 1.05rem); color: hsl(214, 23%, 85%); line-height: 1.45; max-width: 44ch; } .about__stats { display: flex; gap: var(--space-8); margin-top: var(--space-8); padding-top: var(--space-8); border-top: 1px solid var(--color-divider); } .about__stat { display: flex; flex-direction: column; gap: var(--space-1); } .about__stat-num { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--color-primary); line-height: 1; } .about__stat-label { font-family: var(--font-body); font-size: var(--text-xs); color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.08em; }  .cta { background: var(--color-primary); padding-block: clamp(var(--space-16), 8vw, var(--space-24)); position: relative; overflow: hidden; } .cta::before { content: ''; position: absolute; top: -30%; right: -10%; width: 520px; height: 520px; border-radius: 50%; background: hsl(231, 51%, 42%, 0.35); pointer-events: none; } .cta::after { content: ''; position: absolute; bottom: -40%; left: -5%; width: 380px; height: 380px; border-radius: 50%; background: hsl(231, 51%, 30%, 0.25); pointer-events: none; } .cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; } .cta__heading { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: hsl(0, 0%, 100%); line-height: 1.1; margin-bottom: var(--space-5); } .cta__heading em { font-style: italic; color: hsl(240, 11%, 86%); } .cta__text { font-family: var(--font-body); font-size: var(--text-base); color: hsl(214, 23%, 78%); line-height: 1.7; max-width: 46ch; margin-bottom: var(--space-6); } .cta__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; } .cta__right { display: flex; flex-direction: column; gap: var(--space-6); } .cta__benefit { display: flex; align-items: flex-start; gap: var(--space-4); padding: var(--space-5); background: hsl(231, 51%, 32%, 0.55); border-left: 3px solid var(--color-accent); } .cta__benefit-icon { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: hsl(231, 51%, 44%, 0.5); } .cta__benefit-icon svg { width: 20px; height: 20px; stroke: hsl(214, 23%, 85%); fill: none; stroke-width: 1.5; stroke-linecap: round; } .cta__benefit-title { font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; color: hsl(0, 0%, 100%); margin-bottom: var(--space-1); } .cta__benefit-text { font-family: var(--font-body); font-size: var(--text-xs); color: hsl(214, 23%, 72%); line-height: 1.55; }  .footer { background: hsl(231,35%,12%); color: hsl(214,23%,72%); padding-top: clamp(var(--space-12),6vw,var(--space-20)); } .footer__main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-10); padding-bottom: var(--space-12); border-bottom: 1px solid hsl(231,20%,22%); } .footer__logo { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; margin-bottom: var(--space-5); } .footer__logo-img { height: 36px; width: auto; } .footer__logo-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: hsl(0,0%,100%); } .footer__tagline { font-family: var(--font-body); font-size: var(--text-sm); color: hsl(214,23%,60%); line-height: 1.65; max-width: 34ch; margin-bottom: var(--space-6); } .footer__social { display: flex; gap: var(--space-3); } .footer__social-link { width: 34px; height: 34px; border: 1px solid hsl(231,20%,30%); display: flex; align-items: center; justify-content: center; color: hsl(214,23%,62%); text-decoration: none; transition: color var(--transition), border-color var(--transition), background var(--transition); } .footer__social-link:hover { color: hsl(0,0%,100%); border-color: hsl(214,23%,55%); background: hsl(231,30%,22%); } .footer__social-link svg { width: 16px; height: 16px; fill: currentColor; } .footer__col-title { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: hsl(0,0%,100%); margin-bottom: var(--space-5); } .footer__nav-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); } .footer__nav-link { font-family: var(--font-body); font-size: var(--text-sm); color: hsl(214,23%,62%); text-decoration: none; transition: color var(--transition); } .footer__nav-link:hover { color: hsl(0,0%,100%); } .footer__contact-item { display: flex; align-items: flex-start; gap: var(--space-3); font-family: var(--font-body); font-size: var(--text-sm); color: hsl(214,23%,62%); margin-bottom: var(--space-4); } .footer__contact-icon { width: 16px; height: 16px; flex-shrink: 0; stroke: hsl(214,23%,62%); fill: none; stroke-width: 1.5; stroke-linecap: round; margin-top: 2px; } .footer__bottom { padding-block: var(--space-5); display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; } .footer__copyright { font-family: var(--font-body); font-size: var(--text-xs); color: hsl(214,23%,48%); } .footer__bottom-links { display: flex; gap: var(--space-6); } .footer__bottom-link { font-family: var(--font-body); font-size: var(--text-xs); color: hsl(214,23%,48%); text-decoration: none; transition: color var(--transition); } .footer__bottom-link:hover { color: hsl(214,23%,70%); }  html .brxe-section.page-hero, html .brxe-section.page-hero__meta, html .brxe-section.event-post, html .brxe-section.section__block, html .brxe-section.section__header, html .brxe-section.sidebar, html .brxe-section.sidebar-card, html .brxe-section.agenda-card, html .brxe-section.speaker-card, html .brxe-section.resource-card, html .brxe-section.highlight-card, html .brxe-section.media-card, html .brxe-section.summary-card { align-items: flex-start !important; flex-direction: column !important; } html .brxe-section.sidebar-card { padding: var(--space-6) !important; } html .brxe-section.agenda-card { padding: var(--space-5) var(--space-6) !important; } html .brxe-section.speaker-card { padding: var(--space-6) !important; } html .brxe-div.content-card { padding: var(--space-6) var(--space-8) !important; } html .brxe-div.registration-box { padding: var(--space-5) !important; } html .brxe-div.note-box { padding: var(--space-5) !important; }  .fpf-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: var(--space-4); } .fpf-modal[hidden] { display: none !important; } .fpf-modal__backdrop { position: absolute; inset: 0; background: hsl(231,30%,8%,0.7); backdrop-filter: blur(3px); } .fpf-modal__box { position: relative; background: var(--color-surface); border: 1px solid var(--color-divider); box-shadow: var(--shadow-lg); padding: var(--space-10); width: 100%; max-width: 480px; z-index: 1; } .fpf-modal__close { position: absolute; top: var(--space-4); right: var(--space-4); background: none; border: none; font-size: 1.5rem; line-height: 1; color: var(--color-text-muted); cursor: pointer; padding: var(--space-1); transition: color var(--transition); } .fpf-modal__close:hover { color: var(--color-text); } .fpf-modal__label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-brand); margin-bottom: var(--space-2); } .fpf-modal__title { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--color-text); margin-bottom: var(--space-3); } .fpf-modal__desc { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; margin-bottom: var(--space-6); } .fpf-modal__body .wpforms-container { margin: 0; } .fpf-modal__body .wpforms-field-label { font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); margin-bottom: var(--space-2); } .fpf-modal__body .wpforms-field input { width: 100%; border: 1px solid var(--color-border); background: var(--color-surface-2); padding: var(--space-3) var(--space-4); font-size: var(--text-sm); color: var(--color-text); outline: none; transition: border-color var(--transition); } .fpf-modal__body .wpforms-field input:focus { border-color: var(--color-brand); } .fpf-modal__body .wpforms-submit-container { margin-top: var(--space-6); } .fpf-modal__body .wpforms-submit { width: 100%; background: var(--color-brand); color: #fff; border: none; padding: var(--space-3) var(--space-6); font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; transition: background var(--transition); } .fpf-modal__body .wpforms-submit:hover { background: var(--color-brand-dark); } [data-theme="dark"] .fpf-modal__box { background: var(--color-surface); } [data-theme="dark"] .fpf-modal__title, [data-theme="dark"] .fpf-modal__desc, [data-theme="dark"] .fpf-modal__label { color: var(--color-text); } [data-theme="dark"] .fpf-modal__body .wpforms-field-label { color: var(--color-text-muted); } [data-theme="dark"] .fpf-modal__body .wpforms-field input, [data-theme="dark"] .fpf-modal__body .wpforms-field input::placeholder { background: var(--color-surface-2); color: var(--color-text); border-color: var(--color-border); } [data-theme="dark"] .fpf-modal__close { color: var(--color-text-muted); }  .events { background: var(--color-bg); padding-block: clamp(var(--space-12), 7vw, var(--space-24)); } .events__header { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-8); margin-bottom: clamp(var(--space-10), 5vw, var(--space-16)); } .events__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }  @media (max-width: 1024px) { .events__grid, .media__grid { grid-template-columns: repeat(2, 1fr); } .events__grid > *:last-child, .media__grid > *:last-child { grid-column: span 2; max-width: 560px; justify-self: center; width: 100%; } .cta__inner { grid-template-columns: 1fr; gap: var(--space-12); } .footer__main { grid-template-columns: 1fr 1fr; gap: var(--space-8); } .footer__brand { grid-column: span 2; } }  @media (max-width: 768px) { #primary-nav { display: none !important; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-primary); padding: var(--space-4); box-shadow: var(--shadow-lg); z-index: 99; } #primary-nav.is-open { display: flex !important; } .navbar { flex-wrap: nowrap; overflow: visible; }  .navbar__actions .btn { display: none !important; } .navbar__actions { gap: var(--space-2); flex-shrink: 0; } #mobile-toggle { display: flex !important; align-items: center; justify-content: center; flex-shrink: 0; width: 40px; height: 40px; } .about__inner { grid-template-columns: 1fr; } .about__image-wrap { order: -1; } .events__header { flex-direction: column; align-items: flex-start; gap: var(--space-4); } .hero__scroll { display: none; } } @media (max-width: 640px) { .events__grid, .media__grid { grid-template-columns: 1fr; } .events__grid > *:last-child, .media__grid > *:last-child { grid-column: span 1; max-width: 100%; } .footer__main { grid-template-columns: 1fr; } .footer__brand { grid-column: span 1; } .cta__right { display: none; } .hero__heading { font-size: clamp(2rem, 1rem + 5vw, 3.5rem); } .header__hero-strip { display: none; } .fpf-modal__box { padding: var(--space-6); } }