a {
	text-decoration: none !important;
}

/* Ensure details blocks have a consistent width */
#post-42 details {
  display: block;
  width: 100%;
  max-width: 500px; /* Adjust as needed */
  box-sizing: border-box;
}

/* Style the summary element */
#post-42 details summary {
  font-weight: bold;
  cursor: pointer;
}

/* Prevent content from causing width expansion */
#post-42 details > * {
  max-width: 100%;
  overflow-wrap: break-word;
}

/* Announcement Bar */
.site-announcement-bar {
  background-color: #fff;
  color: #000;
  font-size: 0.95rem;
  position: relative;
  z-index: 9999;
}

.site-announcement-bar__inner {
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: center;
}

.site-announcement-bar__text {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.site-announcement-bar__link {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.site-announcement-bar__link:hover {
  text-decoration: underline;
}

.site-announcement-bar__close {
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}

/* Hero */
/*.home-cyphr-hero {
  background:
    radial-gradient(circle at top right, rgba(53, 195, 214, 0.22), transparent 30%),
    linear-gradient(135deg, #071923 0%, #0c2430 55%, #103848 100%);
  color: #ffffff;
  padding: 5rem 1rem;
}

.home-cyphr-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
}

.home-cyphr-hero__eyebrow,
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 700;
  color: #7ee6e6;
  margin-bottom: 1rem;
}

.home-cyphr-hero__title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.home-cyphr-hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.home-cyphr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.home-cyphr-hero__trust {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.home-cyphr-hero__mockup {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.home-cyphr-hero__mockup img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}*/

/* Carousel - Added Aug 2026 */
.home-hero-slider {
	position: relative;
	background:
			radial-gradient(circle at top right, rgba(53, 195, 214, 0.22), transparent 30%),
			linear-gradient(135deg, #071923 0%, #0c2430 55%, #103848 100%);
	color: #ffffff;
	overflow: hidden;
}

.home-hero-slider__viewport {
	position: relative;
	width: 100%;
	height: 520px;
	overflow: hidden;
	background: #071923;
}

.home-hero-slide {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
			opacity 700ms ease,
			visibility 0s linear 700ms;
}

.home-hero-slide.is-active {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition:
			opacity 700ms ease,
			visibility 0s linear 0s;
}

.home-hero-slide__inner {
	width: 100%;
	max-width: 1280px;
	height: 100%;
	margin: 0 auto;
	padding: 4rem 1rem 5rem;
	display: grid;
	grid-template-columns: 1.3fr 0.7fr;
	gap: 2rem;
	align-items: center;
}

.home-hero-slide__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
	font-weight: 700;
	color: #7ee6e6;
	margin-bottom: 1rem;
}

.home-hero-slide__title {
	font-size: clamp(2.2rem, 5vw, 4.5rem);
	line-height: 1.05;
	margin: 0 0 1rem;
	color: #ffffff;
}

.home-hero-slide__subtitle {
	font-size: 1.1rem;
	line-height: 1.7;
	max-width: 640px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.5rem;
}

.home-hero-slide__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
	margin-bottom: 1rem;
}

.home-hero-slide__trust {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.78);
}

.home-hero-slide__mockup {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	padding: 1rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(10px);
}

.home-hero-slide__mockup img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.home-hero-slider__controls {
	position: absolute;
	left: 50%;
	bottom: 1.25rem;
	z-index: 20;
	transform: translateX(-50%);

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;

	width: max-content;
	margin: 0;
	padding: 0.45rem 0.65rem;

	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(5, 18, 28, 0.62);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.home-hero-slider__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 36px;
	height: 36px;
	padding: 0;

	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;

	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
	transition:
			background-color 200ms ease,
			border-color 200ms ease;
}

.home-hero-slider__arrow:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.3);
}

.home-hero-slider__dots {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.home-hero-slider__dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 0;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
}

.home-hero-slider__dot.is-active {
	background: #7ee6e6;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.85rem 1.25rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	transition: 0.2s ease;
}

.btn--primary {
	background: linear-gradient(90deg, #18c3c8 0%, #1198c7 100%);
	color: #ffffff;
}

.btn--secondary {
	background: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.32);
}

@media (max-width: 1024px) {
	.home-hero-slide__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.home-hero-slide__inner {
		padding: 4rem 1rem;
	}

	.home-hero-slide__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.btn {
		width: 100%;
	}
}

/* Cygenex image-only slide */
.home-hero-slide--image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #071923;
	overflow: hidden;
}

.home-hero-slide__full-image {
	display: block;
	width: auto;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}

/* Tablet and mobile */
@media (max-width: 1024px) {
	.home-hero-slide--image {
		padding: 1.5rem 1.5rem 5.5rem;
	}

	.home-hero-slide__full-image {
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center;
	}
}

/* Smaller phones */
@media (max-width: 640px) {
	.home-hero-slide--image {
		padding: 1rem 1rem 5.5rem;
	}

	.home-hero-slide__full-image {
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center;
	}
}

@media (min-width: 640px) {
	.home-hero-slider__viewport {
		height: 600px;
	}
}

@media (min-width: 1025px) {
	.home-hero-slider__viewport {
		height: 640px;
	}
}

@media (max-width: 1024px) {
	.home-hero-slide__inner {
		grid-template-columns: 1fr;
		padding-top: 3rem;
		padding-bottom: 5rem;
	}
}

@media (max-width: 640px) {
	.home-hero-slider__viewport {
		height: 680px;
	}

	.home-hero-slide__inner {
		padding: 2.5rem 1rem 5rem;
	}
}

/* Tablet */
@media (max-width: 1024px) {
	.home-hero-slider__viewport {
		height: 940px;
	}

	.home-hero-slide__inner {
		grid-template-columns: 1fr;
		grid-template-rows: auto minmax(0, 1fr);
		gap: 2rem;
		padding: 3rem 2rem 6rem;
	}

	.home-hero-slide__content {
		max-width: 100%;
	}

	.home-hero-slide__media {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 0;
	}

	.home-hero-slide__mockup {
		width: 100%;
		max-width: 720px;
		height: 100%;
		max-height: 390px;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
	}

	.home-hero-slide__mockup img {
		width: 100%;
		height: 100%;
		max-height: 360px;
		object-fit: contain;
		object-position: center;
	}
}

/* Mobile */
@media (max-width: 640px) {
	.home-hero-slider__viewport {
		height: 820px;
	}

	.home-hero-slide__inner {
		gap: 1.5rem;
		padding: 2.25rem 1rem 5.5rem;
	}

	.home-hero-slide__title {
		font-size: clamp(2.25rem, 10vw, 3.25rem);
		line-height: 1.08;
	}

	.home-hero-slide__subtitle {
		font-size: 1rem;
		line-height: 1.55;
		margin-bottom: 1.25rem;
	}

	.home-hero-slide__trust {
		font-size: 0.9rem;
		line-height: 1.45;
	}

	.home-hero-slide__mockup {
		max-height: 260px;
		padding: 0.75rem;
		border-radius: 18px;
	}

	.home-hero-slide__mockup img {
		max-height: 235px;
	}

	.home-hero-slider__controls {
		bottom: 1rem;
	}
}

/* Spotlight */
.home-cyphr-spotlight {
  padding: 4.5rem 1rem;
  background: #f7fbfc;
}

.home-cyphr-spotlight__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.home-cyphr-spotlight__heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.home-cyphr-spotlight__heading h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.home-cyphr-spotlight__heading p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #37515c;
}

.home-cyphr-spotlight__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #d9e7eb;
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 10px 30px rgba(8, 32, 43, 0.05);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: #4c6670;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn--primary {
  background: linear-gradient(90deg, #18c3c8 0%, #1198c7 100%);
  color: #ffffff;
}

.btn--primary:hover {
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.home-cyphr-spotlight .btn--secondary {
  color: #0c2430;
  border-color: #b9d3da;
}

/* Responsive */
@media (max-width: 1024px) {
  .home-cyphr-hero__inner {
    grid-template-columns: 1fr;
  }

  .home-cyphr-spotlight__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-announcement-bar__inner {
    align-items: flex-start;
  }

  .home-cyphr-hero {
    padding: 4rem 1rem;
  }

  .home-cyphr-spotlight__grid {
    grid-template-columns: 1fr;
  }

  .home-cyphr-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}