/*
Theme Name: BlankSlate Child
Template: blankslate

Asymmetry Purple = #7F7EFF
Light Teal Gray = #e2dedd
*/

html, body {
	margin: 0;
	padding: 0;
	font-family:"Inter", sans-serif;
	background:#000;
	color: #fff;
	top: 0 !important;
}

h1 {
	font-size: clamp(32px, 4vw, 60px);
	font-family: "Inter", sans-serif;
	letter-spacing: -0.05em;
	font-weight: 500;
}

h2 {
	font-size: clamp(24px, 4vw, 64px);
	font-family: "Inter", sans-serif;
	letter-spacing: -0.05em;
	font-weight: 500;
}

h3 {
	font-size: clamp(20px, 5vw, 36px);
	font-family: "Inter", sans-serif;
	letter-spacing: -0.05em;
	font-weight: 500;
}

h4 {
	font-size: clamp(18px, 5vw, 24px);
	font-family: "Inter", sans-serif;
	letter-spacing: -0.02em;
}

p {
	line-height: 120%;
	letter-spacing: -0.02em;
	margin: 16px 0;
	font-size: clamp(14px, 2vw, 24px);
    color: #fff;
    font-weight: 300;
}

b {
	font-weight: 700;
}

img {
	max-width:100%;
}

a {
	text-decoration: none;
	color: inherit;
}

input, select, textarea {
	color: #444;
	background: #fff;
}

.container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 24px;
}

.frame {
	background: #000;
	padding: 100px;
	position: relative;
}
.frame:before {
	background: #e2dedd;
	position: absolute;
	width:100px;
	height:100px;
	top: 0px;
	right: 0px;
	content: "";
}
.frame:after {
	background: #000;
	position: absolute;
	width: 50px;
    height: 50px;
    background: #7F7EFF;
    top: 50px;
    right: 50px;
	content: "";
}

section {
	padding: 80px 0;
}

.page-bg {
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	height: 100%;
	width:100%;
}

.purple {
	color: #7F7EFF;
}

.btn {
	background: transparent;
	border: 1px solid #fff;
	color:#fff;
	font-family: "Bebas Neue", sans-serif;
	padding: 12px 32px;
	overflow: hidden;
	position: relative;
	transition:.5s all ease;
}
.content-btn {
	margin: 24px 0;
	display: inline-block;
}
.btn.lrg-btn {
	padding: 16px 48px;
	font-size: 32px;
}
.slide-btn span {
	position: relative;
	z-index:10;
}
.slide-btn:before {
	position: absolute;
	content: "";
	width:0;
	height: 100%;
	left:0;
	top:0;
	transition: .7s all ease;
	background: #fff;
	z-index:1;
}
.slide-btn:hover:before {
	width:100%;
}
.slide-btn:hover {
	color: #000;
}
.btn.btn-white {
	background: #fff;
	color: #000;
	border:2px solid #fff;
}
.btn.btn-white:hover {
	background: transparent;
	color: #fff;
}

.btn-hex {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    border: 2px solid #fff;
    color: #000;
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-hex-sml {
    display: inline-block;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #fff;
    color: #000;
    font-family: "Bebas Neue", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-hex:hover, .btn-hex-sml:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}

.flex {
	display: flex;
	align-items: center;
}

.flex-between {
	justify-content: space-between;
}

#wpadminbar {
    top: auto !important;
    bottom: 0;
}
#wpadminbar .quicklinks .ab-sub-wrapper {
    bottom: 28px;
}
@media screen and (max-width: 782px) {
    #wpadminbar .quicklinks .ab-sub-wrapper {
        bottom: 46px;
    }
}

/* LETTER ANIMATIONS */
.animated-text {
    color: #fff;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.letter {
	display: inline-block;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.1s ease-in-out;
}

.word-wrapper {
    display: inline-block; /* Treat each word as a block for wrapping */
    white-space: nowrap; /* Prevent words from breaking within themselves */
}

/* HEADER */
header.header {
	position: fixed;
	top: 0;
	left: 0;
	width:100%;
	z-index: 9999;
	transition: .3s all ease;
	border-bottom: 1px solid #fff;
	background: #000;
}
body.scrolled header {
	padding: 12px 0;
	background: #e2dedd;
}
body.scrolled .light-logo {
	display: none;
}
body.scrolled .dark-logo {
	display: block;
}
body.scrolled .menu li a {
	color: #000;
}
body.scrolled header .btn {
	color: #000;
	border-color: #000;
}
body.scrolled header .btn:hover {
	color: #7F7EFF;
	border-color: #fff;
}
.logo {
	max-width: 250px;
}
.logo .light-logo {
	display: block;
}
.logo .dark-logo {
	display: none;
}
.header-cta {
	border-left: 1px solid #fff;
	background: #fff;
	padding: 14px; 
}
.header-cta a {
	display: block;
}
.header-cta .btn {
	border: 0;
	color: #000;
	font-size: 20px;
	text-align: left;
}
.header-cta:hover {
	color: #fff;
	background: #222;
}
.header-cta:hover .btn {
	color: #fff;
}
.logo img {
	display: block;
}

/* MENU */
.menu {
	margin-left: auto;
}
.primary-menu {
	font-family:"Bebas Neue", sans-serif;
}

.primary-menu {
	width:100%;
	display: flex;
	min-width:400px;
	margin-left: auto;
	margin-right: 0;
}

.primary-menu li {
	width:100%;
	padding: 24px;
}

.primary-menu li a {
	font-size: 24px;
	border-left: 1px solid #fff;
	padding: 24px;
}
.primary-menu li a:hover {
	color: #999;
}
.mobile-menu {
	position: fixed;
	width:100%;
	height:100%;
	right: 0;
	top: -100%;
	opacity: 0;
	visibility: hidden;
	transition: .5s all ease;
	background: #000;
	z-index: 999;
	padding: 100px 0;
}
.mobile-menu .primary-menu li a {
	font-size: 36px;
	padding: 24px;
	border: 0;
}
.mobile-menu .primary-menu {
	flex-direction: column;
}
.mobile-menu .primary-menu li {
	padding: 12px;
	font-size: 1.5em;
}
.mobile-menu .primary-menu li a:hover {
	color: #ddd;
}
.mobile-menu.active {
	position: fixed;
	right: 0;
	top:0;
	opacity: 1;
	visibility: visible;
}
.mobile-menu-btn {
	display: none;
	position: relative;
	margin: 0 0 0 24px;
	width: 32px;
	height: 32px;
	top: 5px;
}
body.scrolled .mobile-menu-btn span {
	background: #000;
}
.mobile-menu-btn span {
	width: 32px;
	height: 2px;
	position: absolute;
	background: #fff;
	transition: .4s all ease;
	pointer-events: none;
}
.mobile-menu-btn span:nth-child(1) {
	top: 0px;
}
.mobile-menu-btn span:nth-child(2) {
	top: 8px;
	opacity: 1;
}
.mobile-menu-btn span:nth-child(3) {
	top: 16px;
}

.mobile-menu-btn.active span:nth-child(1) {
	top: 8px;
	transform:rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
	top: 8px;
	transform:rotate(-45deg);
}
body.scrolled .primary-menu li a:hover {
	color: #7F7EFF;
}

/* HOME */
.hero-img {
    position: absolute;
    width:100%;
    transition: transform 0.1s ease-out;
    top: 300px;
    left: 0;
}
#image1 {
	z-index: 101;
}
#image2 {
	z-index: 100;
}
#image3 {
	z-index: 99;
}
section {
	position: relative;
	z-index:200;
}


/* ---------------------------------------------------------
   DEFENSE TECH HOME TEMPLATE STYLES
--------------------------------------------------------- */

.defense-home-wrapper {
    background-color: #0b0c10;
    color: #c5c6c7;
    font-family: 'Courier New', Courier, monospace; /* Tech/Mono font feel */
    overflow-x: hidden;
}

.defense-home-wrapper h1, 
.defense-home-wrapper h2, 
.defense-home-wrapper h3 {
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #66fcf1;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    max-height: 950px;
    overflow: hidden;
    text-align: center;
    background: #000;
    padding: 150px 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0;
    max-width: 800px;
    min-width: 300px;
    text-align: center;
    width:50%;
}

.hero-content h1 {
    margin-bottom: 32px;
}

.hero-content h1.hero-title-first {
    margin-bottom: 8px;
}

.hero-sub {
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

/* GRID SECTION */
.defense-grid {
    padding: 150px 0 0 0;
    background: #000;
    border-top: 1px solid #fff;
    display: flex;
}
.grid-sticky-feature {
	width:100%;
}
.grid-sticky-feature h2 {
	font-weight:100;
	letter-spacing: .5em;
	text-transform: uppercase;
}

.sticky-content {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	justify-content: left;
	align-items: center;
}

.sticky-content h2 {
	position: relative;
	z-index:99;
	margin: 0;
}

.sticky-content p {
	width: 75%;
    font-size: 20px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding: 24px 0;
    margin: 0 0 16px 0;
}

.sticky-content img:before {
	position: absolute;
	content: "+";
	font-size: 96px;
	font-weight: 100;
	top: -20px;
	color: #fff;
	left: -20px;
	
}
.video-frame {
	position: relative;
}
.video-frame:after {
	position: absolute;
	content:"";
	width:100%;
	height:100px;
	background: #000;
	bottom: 0;
	left: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
} 
.video-frame .bg-img {
	position: relative;
	z-index:50;
	width:100%;
}
.video-frame video {
	position: absolute;
    top: 11%;
    left: 20%;
    z-index: 60;
    width: 60%;
	aspect-ratio: 16/9;
}
.video-frame video:after {
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	content:"";
	background: #000;
}

.sticky-content img:after {
	position: absolute;
	content: "+";
	font-size: 96px;
	font-weight: 100;
	bottom: -20px;
	right: -20px;
	color: #fff;
	
}

.defense-grid .container {
    padding: 0 10%;
}

.defense-grid .container p {
    padding: 0 100px;
    text-align: center;
    margin-bottom: 48px;
}

.grid-box {
    display: flex;
    flex-wrap: wrap;
    width:100%;
}

.grid-card {
    width:50%;
    border: 1px solid #111;
    padding: 32px;
    position: relative;
    min-height: 275px;
    transition: all 0.3s ease;
    opacity: .5;
}

.grid-card:hover {
    border: 1px solid #fff;
    opacity: 1;
}

.grid-card img {
	margin: 48px auto;
	width:33.333%;
	min-width: 100px;
	display: block;
	transition: all 0.3s ease;
    opacity: .5;
}

.grid-card:hover img {
    opacity: 1;
}

.grid-card p {
	display: none;
}

.card-image {
	position: absolute;
	top: 0;
	left:0;
	width: 100%;
	height:100%;
	z-index: 90;
	opacity: .1;
	transition: .5s all ease;
}
.grid-card:hover .card-image {
	opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #45a29e;
    margin-bottom: 20px;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%); /* Slanted shape */
}

.grid-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 300;
    position: relative;
    z-index:99;
}
.grid-card h3 span {
    display: inline-block;
    width: 100%;
    font-size: 1.5em;
    font-weight: 600;
}

.grid-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

/* MISSIONS SECTION */
.splide__track {
	overflow: visible;
}
.splide__arrows {
	position: absolute;
	top: -50px;
	right: 50px;
}
.splide__arrow {
	background: transparent;
	color: #fff;
}
.splide__arrow--prev svg {
	fill: #fff;
	width:64px;
	opacity: 1;
}
.splide__arrow--next svg {
	fill: #fff;
	width:32px;
	opacity: 1;
}
.missions-section {
    padding: 100px 0 5px 0;
    background: #111;
    overflow: hidden; /* Hide horizontal overflow from slider */
}

.missions-section h2 {
    margin-bottom: 24px;
}

.missions-section p {
    margin-bottom: 48px;
}

.mission-card {
    background: #000;
    padding: 30px;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .4s all ease;
    opacity: .5;
}

.mission-card:hover {
    opacity: 1;
}
.mission-card img {
    display: block;
    margin: 60px auto 0 auto;
    width: 50%;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.mission-card h3 {
    margin: 20px 0 10px;
    font-size: 28px;
    color: #fff;
}

.mission-card p {
    font-size: 16px;
    margin: 0;
}

/* CTA SECTION */
.defense-cta {
    position: relative;
    padding: 120px 0;
    margin-bottom: 100px;
}
.defense-cta .container {
	margin: 0 10%;
	padding: 100px;
	background: rgba(0,0,0,.5);
}

.cta-content {
    position: relative;
    z-index: 100;   
}

.defense-cta h2 {
    margin-bottom: 24px;
    color: #fff;
}

/* FOOTER */
.footer {
	background: #000;
	padding: 100px 0;
	text-align: center;
}

.footer .logo {
	display: block;
	margin: 24px auto;
}

.copyright {
	font-weight: 300;
	margin-top: 24px;
	font-size: 14px;
}

/* MEDIA QUERIES */
@media (max-width:1200px) {
	.hero {
		height: 750px;
	}
}

@media (max-width:960px) {

	header {
		padding: 12px 0;
	}

	.grid-box {
        grid-template-columns: 1fr;
    }
	.logo {
		max-width:200px;
	}
	#menu-menu-1 {
		display: none;
	}
	.mobile-menu {
		display: block;
	}
	.mobile-menu-btn {
		display: block;
	}
	.menu ul {
		flex-wrap:wrap;
		justify-content:center;
		text-align: center;
	}
	.menu ul li {
		width: 100%;
	}
	.frame {
		padding: 40px;
	}
	.item {
		width:100%;
	}

	.hero {
		padding: 150px 0;
		height: 650px;
	}

	.hero-copy {
		width:100%;
		padding-right: 24px;
	}

	.hero-image {
		position:relative;
		width:100%;
		top: 0%;
		right: -24px;
		margin: -40px 0;
	}
	.value-prop-copy {
		width: 90%;
		padding: 32px;

	}
	.use-case-header{
		flex-wrap: wrap;
	}
	.use-case-title {
		width:100%;
	}
	.use-case-header p {
		width:100%;
	}
	.use-case-copy {
		padding: 12px;
		top: 12px;
		right: 12px;
	}
}

@media (max-width:768px) {
	.hero {
		padding: 100px 0 200px 0;
		height: 550px;
	}
	.defense-grid {
		flex-wrap:wrap;
	}
	.sticky-content p {
		font-size: 16px;
	}
	.cta-content {
		padding: 0;
	}

}

@media (max-width:540px) {
	.defense-grid {
		padding: 60px 0;
	}
	.defense-grid .container p {
	    padding: 0 24px;
	    margin-bottom: 24px;
	}
	.defense-grid h2 {
		margin-bottom: 16px;
	}
	.grid-card {
		width: 50%;
	}
	.grid-card h3 {
		font-size: 16px;
	}
	.grid-card h3 span {
		font-size: 1.25em;
	}
	.grid-card img {
		margin-bottom: 16px;
	}
	.hero {
		height: 450px;
	}
	.hero-content {
		padding: 0 24px;
	}
	.missions-section {
		padding: 60px 0;
	}
	.key-features h2.animated-text {
		padding-right: 100px;
	}
	.cta-content {
		padding: 24px;
	}
	.defense-cta {
		padding: 60px 0;
	}
	.use-case-copy {
		position: relative;
		width:100%;
		right: 0px;
		top: 0px;
		padding: 24px;
		text-align: right;
		background: #000;
	}
	.feature {
		width:100%;
		padding: 0 40px 0 0;
	}
	.splide__arrows {
		top: -30px;
	}

	.header-cta {
		display: none;
	}
	.cta-bar .container {
		flex-wrap: wrap;
	}
	.cta-bar a.btn {
		margin-top: 24px;
	}
	.logo {
		max-width:150px;
	}
	.defense-cta .container {
		padding: 60px 24px;
	}
	.mission-card {
		min-height: 400px;
	}
}
