/* SIIM Tech Talks — scoped to .siim-page / this template only.
   Do not paste into Beaver Builder HTML modules or Global CSS. */

.siim-page {
	--siim-teal: #1c6b76;
	--siim-teal-dark: #1a5258;
	--siim-teal-light: #3896aa;
	--siim-orange: #c44e08;
	--siim-ink: #12292c;
	--siim-body: #37484b;
	--siim-muted: #5b6d70;
	--siim-surface: #eef3f4;
	--siim-surface-2: #e3ecee;
	--siim-line: #c8d8da;
	--siim-white: #ffffff;
	--siim-max: 1180px;
	--siim-gutter: clamp(20px, 5vw, 48px);
	--siim-font-title: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--siim-font-body: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--siim-radius: 20px;
	--siim-shadow: 0 1px 2px rgba(18, 41, 44, 0.06), 0 8px 24px -16px rgba(18, 41, 44, 0.22);

	font-family: var(--siim-font-body);
	font-size: 17px;
	line-height: 1.6;
	color: var(--siim-body);
	background: var(--siim-white);
	-webkit-font-smoothing: antialiased;
	text-wrap: pretty;
}

.siim-page *,
.siim-page *::before,
.siim-page *::after {
	box-sizing: border-box;
}

.siim-page :where(h1, h2, h3, h4, p) {
	margin: 0;
}

.siim-page h1,
.siim-page h2,
.siim-page h3,
.siim-page h4 {
	font-family: var(--siim-font-title);
	color: var(--siim-ink);
	letter-spacing: -0.015em;
	line-height: 1.15;
	text-wrap: balance;
}

.siim-page img {
	max-width: 100%;
	height: auto;
	display: block;
}

.siim-page a {
	color: var(--siim-teal-dark);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.siim-page a:hover {
	color: var(--siim-orange);
}

.siim-page :focus-visible {
	outline: 3px solid var(--siim-teal-light);
	outline-offset: 2px;
	border-radius: 2px;
}

.siim-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.siim-page a.siim-skip,
.siim-skip {
	position: absolute;
	left: 12px;
	top: -64px;
	z-index: 60;
	background: var(--siim-teal-dark, #1a5258);
	color: #fff;
	padding: 12px 18px;
	border-radius: 6px;
	text-decoration: none;
	font: 600 15px/1 "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
	transition: top 0.15s ease;
}

.siim-page a.siim-skip:focus,
.siim-skip:focus {
	top: 12px;
	color: #fff;
}

/* Extra header sits under the site header. Offset is set in JS when the site header is sticky. */
.siim-header {
	background: var(--siim-surface);
	border-bottom: 1px solid var(--siim-line);
	position: sticky;
	top: var(--siim-sticky-offset, 0px);
	z-index: 50;
}

.siim-header__inner {
	max-width: var(--siim-max);
	margin: 0 auto;
	padding: 12px var(--siim-gutter);
	display: flex;
	align-items: center;
	gap: clamp(12px, 2vw, 28px);
}

.siim-header__brand {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	text-decoration: none;
}

.siim-header__brand img {
	width: clamp(74px, 8vw, 104px);
}

.siim-header__event {
	font-family: var(--siim-font-title);
	font-size: clamp(13px, 1.35vw, 16px);
	color: var(--siim-teal-dark);
	letter-spacing: 0.01em;
	padding-left: clamp(12px, 2vw, 22px);
	border-left: 1px solid var(--siim-line);
	flex: 1 1 auto;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0;
}

.siim-header__event strong {
	font-weight: 700;
	letter-spacing: 0.04em;
}

.siim-header__nav {
	margin-left: auto;
}

.siim-header__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: clamp(14px, 2vw, 26px);
}

.siim-header__nav a {
	font-size: 14px;
	font-weight: 500;
	color: var(--siim-teal-dark);
	white-space: nowrap;
	text-decoration: none;
	padding: 6px 0;
	display: inline-block;
	border-bottom: 2px solid transparent;
}

.siim-header__nav a:hover,
.siim-header__nav a[aria-current="true"] {
	border-bottom-color: var(--siim-teal-light);
	color: var(--siim-teal);
}

.siim-header__toggle {
	display: none;
	margin-left: auto;
	font: 600 14px/1 var(--siim-font-body);
	color: var(--siim-teal-dark);
	background: transparent;
	border: 1px solid var(--siim-line);
	border-radius: var(--siim-radius);
	padding: 10px 14px;
	cursor: pointer;
	min-height: 44px;
}

.siim-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	font-family: var(--siim-font-body);
	font-weight: 600;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: var(--siim-radius);
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.siim-page a.siim-btn {
	text-decoration: none;
}

.siim-btn--primary,
.siim-page a.siim-btn--primary {
	background: var(--siim-teal);
	color: #fff;
}

.siim-btn--primary:hover,
.siim-page a.siim-btn--primary:hover {
	background: var(--siim-teal-dark);
	color: #fff;
}

.siim-btn--lg {
	font-size: 16px;
	padding: 15px 26px;
	min-height: 48px;
}

.siim-btn--sm {
	font-size: 14px;
	padding: 10px 18px;
	min-height: 44px;
	flex: 0 0 auto;
}

.siim-container {
	max-width: var(--siim-max);
	margin: 0 auto;
	padding-left: var(--siim-gutter);
	padding-right: var(--siim-gutter);
}

.siim-section {
	padding: clamp(48px, 7vw, 86px) 0;
	border-top: 1px solid var(--siim-line);
}

.siim-hero {
	border-top: 0;
	padding: clamp(36px, 5vw, 60px) 0 clamp(40px, 6vw, 72px);
}

.siim-section--tint {
	background: var(--siim-surface);
}

.siim-eyebrow {
	font-family: var(--siim-font-body);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--siim-teal);
	margin: 0 0 14px;
}

.siim-h2 {
	font-size: clamp(26px, 3.6vw, 42px);
	max-width: 24ch;
}

.siim-h2--wide {
	max-width: 34ch;
}

.siim-lede {
	font-size: clamp(16px, 1.35vw, 19px);
	color: var(--siim-body);
	max-width: 62ch;
	margin-top: 20px;
}

.siim-note {
	font-size: 14px;
	font-weight: 600;
	color: var(--siim-muted);
	letter-spacing: 0.01em;
}

.siim-hero__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 200px;
	gap: clamp(24px, 4vw, 56px);
	align-items: start;
	margin-bottom: clamp(32px, 5vw, 56px);
}

.siim-hero__kicker {
	font-size: 16px;
	color: var(--siim-body);
	max-width: 46ch;
	padding-top: 6px;
}

.siim-hero h1 {
	font-size: clamp(31px, 4.8vw, 54px);
}

.siim-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(16px, 3vw, 32px);
	margin-top: clamp(28px, 4vw, 40px);
}

.siim-ph {
	background: repeating-linear-gradient(
		135deg,
		var(--siim-surface-2) 0 8px,
		var(--siim-surface) 8px 16px
	);
	border: 1px solid var(--siim-line);
	display: grid;
	place-items: center;
	text-align: center;
	font: 500 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--siim-muted);
	padding: 12px;
}

.siim-ph--circle {
	border-radius: 50%;
	aspect-ratio: 1;
	width: 100%;
	max-width: 200px;
}

.siim-grid {
	display: grid;
	gap: clamp(16px, 2vw, 24px);
	margin-top: clamp(28px, 4vw, 44px);
}

.siim-grid--2 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.siim-card {
	background: var(--siim-surface);
	border: 1px solid transparent;
	border-left: 3px solid var(--siim-teal-light);
	border-radius: var(--siim-radius);
	padding: clamp(20px, 2.4vw, 28px);
}

.siim-card h3 {
	font-size: 19px;
	margin-bottom: 10px;
}

.siim-card :where(p:not([class])) {
	font-size: 16px;
}

.siim-package {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 56px);
	margin-top: clamp(36px, 5vw, 56px);
	padding-top: clamp(28px, 4vw, 44px);
	border-top: 1px solid var(--siim-line);
}

.siim-package h3 {
	font-size: 16px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.siim-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 11px;
}

.siim-list li {
	position: relative;
	padding-left: 26px;
	font-size: 16px;
}

.siim-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--siim-teal-light);
}

.siim-timeline {
	list-style: none;
	margin: clamp(28px, 4vw, 40px) 0 0;
	padding: 0;
	max-width: 820px;
}

.siim-timeline li {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: clamp(14px, 2vw, 28px);
	padding: 18px 0;
	border-bottom: 1px solid var(--siim-line);
}

.siim-timeline li:first-child {
	border-top: 1px solid var(--siim-line);
}

.siim-timeline__dur {
	font-family: var(--siim-font-title);
	font-size: 15px;
	font-weight: 600;
	color: var(--siim-teal);
	letter-spacing: 0.01em;
}

.siim-timeline :where(p:not([class])) {
	font-size: 16px;
}

.siim-opening {
	border: 1px solid var(--siim-teal-light);
	border-radius: var(--siim-radius);
	background: var(--siim-surface);
	padding: clamp(20px, 2.4vw, 28px);
	margin-top: clamp(28px, 4vw, 40px);
}

.siim-opening__time {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--siim-teal);
	text-transform: uppercase;
}

.siim-opening h3 {
	font-size: clamp(18px, 2vw, 22px);
	margin: 8px 0 6px;
}

.siim-opening__who {
	font-size: 15px;
	color: var(--siim-muted);
}

.siim-slots {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1px;
	background: var(--siim-teal-dark);
	border: 1px solid var(--siim-teal-dark);
	border-radius: var(--siim-radius);
	overflow: hidden;
}

.siim-slots li {
	background: #1f3236;
	padding: 16px 18px 14px;
	color: #dbe6e7;
}

.siim-slots__time {
	display: block;
	font-size: 12px;
	letter-spacing: 0.06em;
	color: #9db6b9;
}

.siim-slots h3 {
	font-family: var(--siim-font-title);
	font-size: 16px;
	color: #fff;
	margin: 5px 0 8px;
}

.siim-slots__status {
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.siim-slots__status--open {
	color: #7dd0d8;
}

.siim-slots__status--taken {
	color: #94a8ab;
}

.siim-price {
	background: var(--siim-surface);
	border: 1px solid var(--siim-line);
	border-radius: var(--siim-radius);
	padding: clamp(22px, 2.6vw, 30px);
}

.siim-price__tier {
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--siim-teal-dark);
}

.siim-price__amount {
	font-family: var(--siim-font-title);
	font-size: clamp(34px, 4.4vw, 46px);
	font-weight: 600;
	color: var(--siim-ink);
	margin: 10px 0 8px;
	letter-spacing: -0.02em;
}

.siim-price :where(p:not([class])) {
	font-size: 16px;
}

.siim-faq {
	margin-top: clamp(28px, 4vw, 40px);
	max-width: 900px;
	border-top: 1px solid var(--siim-line);
}

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

.siim-faq summary {
	cursor: pointer;
	list-style: none;
	font-family: var(--siim-font-title);
	font-size: clamp(17px, 1.8vw, 19px);
	font-weight: 600;
	color: var(--siim-ink);
	padding: 20px 44px 20px 0;
	position: relative;
}

.siim-faq summary::-webkit-details-marker {
	display: none;
}

.siim-faq summary::after {
	content: "";
	position: absolute;
	right: 8px;
	top: 50%;
	width: 11px;
	height: 11px;
	margin-top: -8px;
	border-right: 2px solid var(--siim-teal);
	border-bottom: 2px solid var(--siim-teal);
	transform: rotate(45deg);
	transition: transform 0.18s ease;
}

.siim-faq details[open] summary::after {
	transform: rotate(-135deg);
	margin-top: -3px;
}

.siim-faq summary:hover {
	color: var(--siim-teal);
}

.siim-faq :where(p:not([class])) {
	font-size: 16px;
	padding: 0 0 22px;
	max-width: 70ch;
}

@media (max-width: 1000px) {
	.siim-slots {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.siim-header__inner {
		flex-wrap: wrap;
		row-gap: 10px;
	}

	.siim-header__toggle {
		display: inline-flex;
		align-items: center;
	}

	.siim-header__nav {
		order: 3;
		flex-basis: 100%;
		margin-left: 0;
		display: none;
		border-top: 1px solid var(--siim-line);
		padding-top: 8px;
	}

	.siim-header__nav.is-open {
		display: block;
	}

	.siim-header__nav ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.siim-header__nav a {
		padding: 13px 2px;
		border-bottom: 1px solid var(--siim-line);
		display: block;
	}

	.siim-header__cta {
		order: 2;
	}
}

@media (max-width: 900px) {
	.siim-package {
		grid-template-columns: 1fr;
	}

	.siim-hero__top {
		grid-template-columns: minmax(0, 1fr) 148px;
	}
}

@media (max-width: 640px) {
	.siim-page {
		font-size: 16px;
	}

	.siim-hero__top {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.siim-ph--circle {
		max-width: 132px;
	}

	.siim-timeline li {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.siim-header__event {
		flex-basis: 100%;
		padding-left: 0;
		border-left: 0;
	}

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

@media (prefers-reduced-motion: reduce) {
	.siim-page * {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}

/* ----- WP / Beaver Builder isolation (this template only) ----- */

body.siim-techtalks-template #siim-main.container,
body.siim-techtalks-template #siim-main.fl-content-full {
	width: 100%;
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

body.siim-techtalks-template #siim-main > .row {
	margin-left: 0;
	margin-right: 0;
}

body.siim-techtalks-template #siim-main .fl-content {
	padding-left: 0;
	padding-right: 0;
}

body.siim-techtalks-template #siim-main .fl-row-content-wrap,
body.siim-techtalks-template #siim-main .fl-col-content {
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

body.siim-techtalks-template #siim-main .fl-builder-content h1,
body.siim-techtalks-template #siim-main .siim-hero h1 {
	font-family: var(--siim-font-title, "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif);
	font-size: clamp(31px, 4.8vw, 54px);
	letter-spacing: -0.015em;
	line-height: 1.15;
	color: var(--siim-ink, #12292c);
	margin: 0;
}

body.siim-techtalks-template #siim-main .fl-builder-content h2 {
	font-family: var(--siim-font-title, "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif);
	letter-spacing: -0.015em;
	line-height: 1.15;
	color: var(--siim-ink, #12292c);
	margin: 0;
}

body.siim-techtalks-template #siim-main .fl-builder-content h3 {
	font-family: var(--siim-font-title, "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif);
	letter-spacing: -0.015em;
	line-height: 1.15;
	margin: 0;
}

body.siim-techtalks-template .siim-techtalks-chrome {
	position: relative;
	z-index: 0;
}
