/* Accessible and Responsive Base Styles */
:root {
    /* Color Palette */		
	--color-primary-white: #FAFAFA; /* Primary White */
	--color-bkg-primary: #292F33; /* Primary Black */
	--color-bkg-secondary: #0F1117; /* Rich Black */
	--color-activation: #FF5722; /* Orange */
	--color-gray: #757575; /* Gray */
	--color-readgray: #5F6368; /* Read Gray */
	--color-tintblue: #EDF2F8; /* Blue Tint */

	
	--color-dkblue: #001966; /* Dark Blue */
    --color-cyan: #4DBFCC;   /* Cyan */
	--color-deepred: #B31A33; /* Deep Red */
	--color-deeppurple: #4D0080; /* Deep Purple */
	--color-teal: #5AC8FA; /* Teal */
	--color-indigo: #5856D6; /* Indigo */
	--color-green: #00B300; /* Green */
	--color-dkgreen: #009933; /* Dark Green */
	--color-ltgreen: #66CC66; /* light Green */
	--color-ltblue: #0099E6; /* Light Blue */
	--color-pink: #FF2D55; /* Pink */
	--color-purple: #AF52DE; /* Purple */
	--color-dkorange: #F06B00; /* Dark Orange */
	--color-ltorange: #E6A12E; /* Light Orange */

	
/* Typography */
    --font-family-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 1.125rem;
    --line-height-base: 1.6;

/* Spacing Adjustments for Generous Whitespace */
    --space-sm: 0.75rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;
	
/* Spacing for mobile DELETE? */
	--mobile-padding: 0.25rem;

	
/* Layout */
    --container-max-width: 1280px;
}


/* 1. CSS Reset & Base */
*, *::before, *::after {
    box-sizing: border-box; 
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    /* color: var(--color-bkg-primary);  Delete reload black ? */
    background-color: var(--color-primary-white);
    min-height: 100vh;
    background-attachment: fixed;
}



/* === 3. FOCUS STYLES (ACCESSIBILITY) === */
a:focus, 
button:focus, 
input:focus, 
textarea:focus, 
select:focus {
    outline: 0.1rem solid var(--color-activation);
    outline-offset: 0.2rem;
    border-radius: var(--border-radius-sm);
}

button.carousel-arrow:focus,
button.carousel-arrow:focus-visible,
button.carousel-arrow:active {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
  border-radius: 50% !important;
}

.carousel-arrow::after {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* === 4. UTILITY CLASSES === */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-xl);
    width: 100%;
}

.section {
  padding: var(--space-xl) var(--space-lg);
}

.heading {
    max-width: var(--container-max-width);
    margin: 0;
    width: 100%;
}

.icon svg {
  width: 100px;
  height: 100px;
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin-bottom: 8px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    align-items: start;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    align-items: start;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
	align-items: start;
	margin: var(--space-lg) 0;
}


/* === 5. TYPOGRAPHY SYSTEM === */
.type-base-positioning {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0;
}

.type-lg,
.type-md,
.type-sm {
    position: relative;
    display: inline-block;
    vertical-align: top;
	text-align: left;
    margin-bottom: 0;
	text-rendering: optimizeLegibility;
}

.type-lg {
    font-size: 4rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-bkg-primary);
	padding-bottom: 0.1em;
}

.type-md {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.005em;
}

.type-sm {
	font-size: 1rem;
    line-height: 1.25;
    font-weight: 600;
}

.type-body {
	font-size: 1.125rem;
    line-height: 1.75;
    font-weight: 400;
    color: var(--color-bkg-primary);
    text-align: left;
    margin-top: var(--space-sm); /* keep this */
}

/* Subheading */
.subhead {
	font-size: 1rem;
	text-transform: uppercase;
    line-height: 1.25;
	letter-spacing: 0.1em; 
    font-weight: 600;
	
    align-self: stretch;
	position: relative;
    display: block;
    padding-top: 0;
    padding-bottom: var(--space-xxl);
}

/* Subhead hairline */
.subhead::before {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background-color: currentColor;
	margin-bottom: 5px;
}

/* Light + dark variants (just color) */
.subhead--light {
    color: var(--color-bkg-primary); /* adjust for light background */
}

.subhead--dark {
    color: var(--color-primary-white); /* adjust for dark bg */
}



/* Responsive */

@media (max-width: 768px) {
	.section {
		padding: var(--space-md) var(--space-sm);
	}
	.container {
		padding: var(--space-lg) var(--space-md);
	}
	.subhead {
    	padding-bottom: var(--space-lg);
	}	
    .grid-2 {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
	.grid-3 {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
	.grid-5 {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--space-lg);
		margin: var(--space-lg) 0;
	}
}


@media (max-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}



@media (min-width: 768px) {
    .type-xl {
        font-size: 7rem;
        letter-spacing: -0.04em;
    }
}

/* Standard links (inside paragraphs) */
a {
    color: var(--color-activation);
    text-decoration: underline;
}

a:hover {
    color: var(--color-dkorange); /* Darker orange on hover */
}

/* 2. Heading links (like your Privacy Policy) */
/* This keeps the heading looking like a heading until you hover it */
h2.type-sm a {
    color: inherit; 
    text-decoration: none;
}

h2.type-sm a:hover {
    text-decoration: underline;
    color: var(--color-activation);
}


/* Base Button Class (Shared Styles) */
.btn {
	width: auto;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem; 
    cursor: pointer;
    border-radius: 0.8rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.6px solid var(--color-activation);
    box-shadow: none; 
    transform: none;
}

/* Primary Button (Ghost Style) */
.btn-primary {
    padding: var(--space-sm) var(--space-md);
    background-color: var(--color-primary-white);
    color: var(--color-activation);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--color-activation);
    color: var(--color-primary-white);
    border-radius: 0.8rem;
    outline: none;
    box-shadow: none;
    transform: none;
}


/* --- 2. Navigation Styles --- */

nav {
    background-color: var(--color-primary-white);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-primary-white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl); /* left */
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-bkg-primary);
}

.nav-cta {
    font-size: 1rem;
    padding: 0.6rem 1.25rem;
}


@media (max-width: 768px) {
	.nav-container {
    padding: 0 var(--space-md);
	}
}


/* HERO =================================================================== */
.hero {
    min-height: 70vh;
    padding: var(--space-xl) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    max-width: var(--container-max-width);
}

.hero h1 {
    margin-bottom: 0;
    color: var(--color-bkg-primary);
}

.hero .type-lg {
  font-size: 5.1rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.05em;
  position: relative;
  display: inline-block;
  width: max-content;
  padding-right: 0.4rem;

  background: linear-gradient(90deg, var(--color-dkblue), var(--color-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  padding-top: var(--space-xl);
  margin-bottom: 0.35rem;
}

.hero .type-lg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background-color: var(--color-gray);
}

.hero .type-md {
    margin-bottom: var(--space-lg);
	font-size: 1.6rem;
}

.hero .btn {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  padding: var(--space-xxl) 0 var(--space-sm);
    justify-content: flex-start;
  }

  .hero .type-lg {
    font-size: 3.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
  }

  .hero .type-lg::after {
    left: 0;
    width: 100%;
  }

  .hero .type-md {
    font-size: 1rem;
    padding-bottom: var(--space-xxl);
  }

  .hero .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: auto;
  }
}


/* INTRODUCTION =================================================================== */
.section-introduction {
    margin: 0 auto;
    width: 100%;
}

.section-introduction .container {
    display: flex;
    flex-direction: column;
	padding-bottom: var(--space-xxl);
}

.section-introduction .type-lg {
	max-width: 750px;	
	font-weight: 700;
  	text-align: left;
	
	background: linear-gradient(90deg, var(--color-deepred), var(--color-deeppurple));
  	-webkit-background-clip: text;
  	background-clip: text;
  	-webkit-text-fill-color: transparent;
	padding-top: var(--space-xl);
}

.section-introduction .type-lg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background-color: var(--color-gray);
}

.section-introduction .type-md {   
	max-width: 800px;
  	text-align: left;
	padding-top: var(--space-sm);
	padding-bottom: var(--space-xxl);
}


@media (max-width: 768px) {
.section-introduction .type-md {
    font-size: 1.75rem;
	padding-bottom: var(--space-md);
  }
.section-introduction .type-lg {
    font-size: 3rem;
	padding-top: 0;
  }
}


/* LANDSCAPE ========================================================= */
.section-landscape {
    background-image: linear-gradient(to bottom right, var(--color-bkg-primary) 0%, var(--color-bkg-secondary) 100%);
    margin: 0 auto;
    width: 100%;
}

.section-landscape .container {
    display: flex;
    flex-direction: column;
}

.section-landscape .type-md {   
	max-width: 625px;
  	text-align: left;
	color: var(--color-primary-white);
	padding-bottom: var(--space-lg);
}

.section-landscape .type-lg {
	max-width: 750px;	
	font-weight: 700;
  	text-align: left;
	
	background: linear-gradient(90deg, var(--color-teal), var(--color-indigo));
  	-webkit-background-clip: text;
  	background-clip: text;
  	-webkit-text-fill-color: transparent;
	padding-bottom: var(--space-lg);
}

.section-landscape .type-lg::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.5rem;
  width: 100%;
  height: 1px;
  background-color: var(--color-gray);
}

@media (max-width: 768px) {
.section-landscape .type-md {
    font-size: 1.75rem;
  }
.section-landscape .type-lg {
    font-size: 3rem;
  }
}


/* PROBLEM SECTION =============================================================== */
.section-problem {
    background-color: var(--color-primary-white);
    color: var(--color-bkg-primary);
}

.section-problem .type-lg  {
  	font-weight: 700;	
	margin-bottom: var(--space-md);
	
	background-image: linear-gradient(90deg, var(--color-dkblue) 0%, var(--color-indigo) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;		
}

@media (max-width: 768px) {
.section-problem .type-lg {
    font-size: 3rem;
  }
}


/* TENETS SECTION =============================================================== */
.section-tenets {
    background-color: var(--color-primary-white);
    color: var(--color-bkg-primary);
}

.section-tenets .accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.section-tenets .type-lg  {
  font-weight: 700;
	
  background-image: linear-gradient(90deg, var(--color-ltgreen) 0%, var(--color-ltblue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-tenets .type-md  {
  color: var(--color-gray);
  font-weight: 600;
}

@media (max-width: 768px) {
.section-tenets .type-lg {
    font-size: 3rem;
  }
.section-tenets .type-md {
    font-size: 1.75rem;
  }
}


/* SOLUTION =================================================================== */
.section-solution {
  background-image: linear-gradient(to bottom right, var(--color-dkblue) 0%, var(--color-bkg-primary) 18%);
}

.section-solution .container {
  display: flex;
  flex-direction: column;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-bottom: 0;
}

.section-solution .subhead {
  padding-bottom: var(--space-md);
}

/*
.section-solution .carousel-card {
  background-color: var(--color-tintblue);
}
*/

.section-solution .icon svg {
  fill: #F06B00;
}

.section-solution .type-lg  {
 	font-weight: 700;	
	margin-bottom: var(--space-sm);
	
	background-image: linear-gradient(90deg, var(--color-ltorange) 0%, var(--color-dkorange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-solution .type-sm {
	color: var(--color-gray);
	margin-bottom: var(--space-lg);
}

.section-solution .type-md {
    color: var(--color-bkg-primary);
}

.section-solution .type-body {
	font-size: 1.125rem;
    line-height: 1.2;
    color: var(--color-bkg-primary);
}

@media (max-width: 768px) {
.section-solution .type-lg {
    font-size: 3rem;
  }
}


/* FEATURES =================================================================== */
.section-feature {
    background-color: var(--color-primary-white);
    color: var(--color-bkg-primary);
}

.section-feature .type-lg {
    font-weight: 900;
    font-size: 3rem;
	padding-inline: var(--space-md);

	background-image: linear-gradient(90deg, var(--color-deepred) 0%, var(--color-deeppurple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-feature .type-md {
	padding-top: var(--space-sm);
	padding-inline: var(--space-md);
}

.section-feature .type-body {
	font-size: 1.125rem;
    line-height: 1.5;
    color: var(--color-gray);
	padding-inline: var(--space-md);
}

@media (max-width: 768px) {
  .section-feature .type-lg,
  .section-feature .type-md,
  .section-feature .type-body {
    padding-inline: 0;
  }
}

@media (max-width: 768px) {
  .grid-2.reverse { grid-template-areas: "right" "left"; }
  .grid-2.reverse > :first-child { grid-area: left; }
  .grid-2.reverse > :last-child { grid-area: right; }
}



/* FUTURE STATE INFLOW =================================================================== */
.section-inuse {
  background-image: linear-gradient(to bottom right, var(--color-deeppurple) 0%, var(--color-bkg-primary) 18%);
  margin: 0 auto;
  width: 100%;
  padding-bottom: var(--space-md);
}

.section-inuse .container {
  display: flex;
  flex-direction: column;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-bottom: var(--space-sm);
}

.section-inuse .subhead {
  padding-bottom: 0;
}

.section-inuse .carousel-card {
  background-color: var(--color-primary-white);
}

.day-media {
  margin: var(--space-xl) 0 var(--space-sm);
}

.day-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.section-inuse .type-sm {
    color: var(--color-bkg-primary);
}

.section-inuse .type-lg {
    color: var(--color-bkg-primary);
	font-size: 2rem;
	font-weight: 800;
	margin-top: var(--space-sm);
}

.section-inuse .type-md {
    color: var(--color-bkg-primary);
	font-size: 1rem;
	font-weight: 500;
}

.section-inuse .type-body {
	font-size: 1.125rem;
    line-height: 1.2;
    color: var(--color-bkg-primary);
	margin-top: 0;
	margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
.day-media { margin: var(--space-sm) 0;}
}


/* CUSTOMERS =================================================================== */
.section-customers {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
    color: var(--color-bkg-primary);
}

.section-customers .container {
    display: flex;
    flex-direction: column;
}

.section-customers .subhead {
  padding-bottom: var(--space-md);
}

.section-customers .type-lg {
    text-align: left;
	font-weight: 700;
    margin-bottom: 0;
	
  background-image: linear-gradient(90deg, var(--color-ltgreen) 0%, var(--color-ltblue) 100%);
  	-webkit-background-clip: text;
  	background-clip: text;
  	-webkit-text-fill-color: transparent;
}

.section-customers img {
    width: 100%;
    max-width: 125px;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.85;
    transition: opacity 0.2s ease-in-out;
}

.section-customers img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
.section-customers .type-lg {
    font-size: 3rem;
  }
}

/* START THE WORK =================================================================== */
.section-join {
  background-image: linear-gradient(to bottom right, var(--color-bkg-primary) 0%, var(--color-bkg-secondary) 100%);
  margin: 0 auto;
  width: 100%;
  color: var(--color-primary-white);
}

.section-join .container {
  display: flex;
  flex-direction: column;
}

.section-join .subhead {
    padding-bottom: var(--space-md);
}

.section-join .type-lg {
  text-align: left;
  max-width: 850px;
  font-weight: 700;

  background-image: linear-gradient(90deg, var(--color-teal) 0%, var(--color-indigo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
	}

.section-join .type-body {
  color: var(--color-primary-white);	
}

.section-join .grid-2 {
	padding-left: 0;
    padding-right: 0;
	margin: var(--space-lg) 0;
}

.section-join form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
  max-width: 500px;
}

.section-join input,
.section-join textarea {
  width: 100%;
  padding: var(--space-sm);
  border: none;
  border-radius: 0.8rem;
  background-color: rgba(255,255,255,0.1);
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  color: #FFFFFF;
}

.section-join input::placeholder,
.section-join textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-wrapper select {
  width: 100%;
  padding: var(--space-sm);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0.8rem;
  background-color: rgba(255,255,255,0.1);
  color: var(--color-primary-white);
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
}

/* Custom Arrow */
.custom-select-wrapper::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: var(--space-sm);
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-primary-white);
  font-size: 0.75rem;
}


.section-join .btn {
  align-self: flex-start;
  padding: var(--space-sm) var(--space-lg);
}

.form-message {
    margin-top: var(--space-md);
    font-size: 1rem;
	font-style: italic;
    line-height: 1.5;
    color: var(--color-activation);
    opacity: 0.95;
    font-weight: 300;
    transition: opacity 0.3s ease, transform 0.3s ease;
}


@media (max-width: 768px) {
.section-join .type-lg {
    font-size: 2.5rem;
  }
}


/* FAQ =================================================================== */

.section-faq {
  background-color: var(--color-primary-white);
  color: var(--color-bkg-primary);
  /* padding: var(--space-xl) var(--space-lg); */
}

.section-faq .accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}



/* EULA & PRIVACY POLICY =================================================== */

.section-eula {
  background-color: var(--color-primary-white);
  color: var(--color-bkg-primary);
}

.section-eula .type-md{
 padding-top: var(--space-lg)
}

.section-eula .type-body{
	font-size: 1rem;
}


/* -------------------------------------------------------------------- */

/* New Feature Image Stack */
.feature-media {
  width: 100%;
  overflow: visible;
}

.feature-stack {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-stack img {
  width: clamp(90px, 28vw, 160px);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);

  opacity: 0; 
  transform: translateY(16px) scale(0.985);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}


/* Hero image */
.feature-stack .img-center {
  z-index: 3;
  margin-inline: -16px; /* pulls neighbors under it */
  transform: translateY(12px) scale(0.985);
}
.feature-stack .img-center.visible {
  opacity: 1;
  transform: translateY(-14px) scale(1);
}

/* Left image */
.feature-stack .img-left {
  z-index: 2;
  transform: translateY(16px) scale(0.983);
}
.feature-stack .img-left.visible {
  opacity: 1;
  transform: translateX(22px) translateY(6px) scale(1);
}

/* Right image */
.feature-stack .img-right {
  z-index: 1;
  transform: translateY(0px) scale(0.982);
}
.feature-stack .img-right.visible {
  opacity: 1;
  transform: translateX(-22px) translateY(10px) scale(1);
}


/* Image timing */
.feature-stack .img-left.visible   { transition-delay: 0.06s; }
.feature-stack .img-right.visible  { transition-delay: 0.14s; }
.feature-stack .img-center.visible { transition-delay: 0.22s; }

@media (max-width: 768px) {
  .feature-media {
    padding-top: var(--space-lg);
	padding-bottom: var(--space-sm);
  }
}

@media (max-width: 768px) {
  .feature-stack {
    gap: var(--space-sm);
  }
}

@media (max-width: 768px) {
  .feature-stack img {
    --img-offset: 8px;
  }
}


/* --- Accordion Container --- */

.accordion-item {
  border-bottom: 0.5px solid var(--color-gray);
  padding-bottom: var(--space-sm);
}

.accordion-header {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  
  text-align: left;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gray);
  padding: var(--space-sm) 0;
  min-width: 0; 
  overflow: hidden;
  transition: color 0.25s ease;
}

.accordion-header:hover,
.accordion-header:focus {
  color: var(--color-activation);
}

.accordion-header::after {
  content: ''; 
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  margin-left: var(--space-sm);
  margin-right: var(--space-sm);
  border-right: 2px solid var(--color-gray); 
  border-bottom: 2px solid var(--color-gray);  
  transform: rotate(45deg);
  transition: transform 0.3s ease, border-color 0.25s ease;
}

.accordion-header:hover::after,
.accordion-header:focus::after {
  border-color: var(--color-activation);
}

.accordion-header[aria-expanded="true"]::after {
  transform: rotate(225deg);
  border-color: var(--color-activation);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--color-gray);
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.accordion-content p:last-child {
    margin-bottom: var(--space-xl);
}
.accordion-content p {
  margin: var(--space-sm) 0;
  line-height: 1.6;
}

.accordion-header[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 600px; /* enough to handle long answers */
}

.accordion-header:focus {
  outline: none;
  box-shadow: none;
}


@media (max-width: 768px) {
	.accordion-header {
	  font-size: 1rem;
	}
}


/* --- Edge-to Edge Carousel Section --- */
.section--carousel {
  padding: var(--space-sm) 0;
}

/* Bleed container to make carousel edge-to-edge */
.carousel-bleed {
  width: 100vw;
  margin-left: 0
}

/* Carousel wrapper */
.carousel {
  position: relative;
}

/* --- Scroll track --- */
.carousel-track {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
	
  -webkit-overflow-scrolling: touch;
  padding-top: var(--space-sm);
	
  padding-left: 20vw;
  scroll-padding-left: 20vw;
  padding-right: 20vw;
	
  margin-left: 0 !important;
  width: 100%;
	
}

.carousel-card:first-child {
  margin-left: 0; /* desktop offset */
}

/* Hide native scrollbar */
.carousel-track::-webkit-scrollbar {
  display: none;
}

/* --- Cards --- */
.carousel-card {
  flex: 0 0 300px; /* Desktop width */
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  border-radius: 16px;
  padding: var(--space-md);
  background-color: var(--color-primary-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

/* --- Card media --- */
.carousel-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

/* --- Controls --- */
.carousel-controls {
	display: flex;
    justify-content: flex-end;
	width: 100%;	
    max-width: var(--container-max-width);
	
    margin: 0 auto;
    padding: var(--space-md) var(--space-xl) var(--space-lg);
	gap: var(--space-sm);
}


/* --- Arrow buttons --- */
.carousel-arrow {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
  transition: opacity 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Chevron icons (CSS-only) */
.carousel-arrow::after {
  content: '';
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: var(--color-bkg-primary);
  transition: border-color 0.2s ease;
}

.carousel-prev::after { transform: rotate(225deg); }
.carousel-next::after { transform: rotate(45deg); }

.carousel-arrow:hover::after {
  border-color: var(--color-activation);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .carousel-track {
    padding-left: 10vw; /* Mobile first card offset */
  }

  .carousel-card {
    flex: 0 0 62vw;
    max-width: 350px;
  }

  .carousel-controls {
    padding: var(--space-md) var(--space-md);
  }

}





/* STORAGE 

	
	
/* --- Carousel Wrapper --- 
.feature-carousel {
	width: 100%;
}

.carousel-wrapper {
	position: relative; 
	padding-bottom: 3.5rem;
}

/* --- Carousel Track (The Scrollable Area) --- 
.carousel-track {
	display: flex;
	gap: var(--space-lg);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	
	padding-top: var(--space-sm);
	padding-bottom: var(--space-sm);
	padding-left: var(--space-lg);
	padding-right: var(--space-lg);
}

/* Hide native scrollbar (Applied to the track) 
.carousel-track::-webkit-scrollbar {
	display: none;
}

/* --- Cards (.day) --- 
.day {
	flex: 0 0 300px;
	display: flex;
	flex-direction: column; /* Stack children vertically 
	scroll-snap-align: start;
	background: #F3F4F6;
	border-radius: 15px;
	padding: var(--space-lg);
	text-align: left;
	
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
}

.day:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}


/* Carousel Images 
.carousel-image {
	margin-top: var(--space-md);
}

.carousel-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
	object-fit: cover;
}


/* --- Arrows (Button Container) --- 
.carousel-arrow {
	position: absolute;
	bottom: 0.5rem;
	margin-left: 0.5rem;
	background: rgba(255,255,255,0.95); /* Near-white background 
	border: none;
	border-radius: 50%;
	outline: none;
	cursor: pointer;
	font-size: 0; /* Hide any default text content 
	width: 40px;
	height: 40px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.15); /* Clean shadow 
	opacity: 0.9;
	transition: opacity 0.3s ease, background 0.3s ease;
	z-index: 10;
	-webkit-tap-highlight-color: transparent;
}

/* Show arrows on hover of the wrapper (optional, can be removed to always show) 
.carousel-wrapper:hover .carousel-arrow {
	opacity: 1;
}

.carousel-prev {
	right: 3.5rem;}

.carousel-next {
	right: 0.5rem;
}

/* --- Arrow Disabled State (Clean UX) --- 
.carousel-arrow:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

/* --- Chevron Icon (Drawn using CSS borders) --- 
.carousel-arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	
	width: 10px;
	height: 10px;
	border-style: solid;
	border-width: 2px 2px 0 0; /* Creates the two-sided chevron corner 
	border-color: var(--color-bkg-primary); /* Default dark color 
	
	/* Animation 
	transition: transform 0.3s ease, border-color 0.3s ease;
}

/* --- Chevron Rotation --- 
.carousel-prev::after {
	transform: translate(-50%, -50%) rotate(225deg);
}

.carousel-next::after {
	/* Right-facing chevron 
	transform: translate(-50%, -50%) rotate(45deg);
}

/* --- Chevron Hover/Disabled Color --- 
.carousel-arrow:hover::after {
	border-color: var(--color-activation);
}
.carousel-arrow:disabled::after {
	border-color: var(--color-gray); /* Gray out the icon when disabled 
}


/* --- Gradient fade overlay --- 
.carousel-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100%;
	pointer-events: none;
	z-index: 5;
	background: linear-gradient(to left, var(--color-bkg-primary) 0%, rgba(245,245,247,0) 100%);
}

/* Responsive 
@media (max-width: 768px) {
.day {
	flex: 0 0 90%;
}
  
.carousel-track {
	padding-left: var(--space-md);
	padding-right: var(--space-md);
}
  
.carousel-wrapper::after {
	width: 30px;
	}
}


.feature-carousel {
  width: 100%;
}
.carousel-wrapper {
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  display: flex;
  gap: var(--space-sm);
  padding-bottom: var(--space-md);
}

.carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-md);
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.day {
	width: 275px; 
	aspect-ratio: 1 / 2;   
	scroll-snap-align: start;
	background: #F5F5F7;
	border-radius: 12px;
	padding: var(--space-lg);
	text-align: left;
	transition: transform 0.3s ease;
}

.day:hover {
  transform: translateY(-5px);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-wrapper:hover .carousel-arrow {
  opacity: 1;
}

.carousel-prev {
  left: 0.5rem;
}

.carousel-next {
  right: 0.5rem;
}

.carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
}
@media (max-width: 768px) {
  .day {
    flex: 0 0 90%; 
  }

  .carousel-wrapper::after {
    width: 30px;
  }
}







.type-subhead,
.type-subhead-dark {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    position: relative;
    display: block;
    padding-top: 0;
  	padding-bottom: 0;
  	margin-bottom: var(--space-lg);
	text-align: left;
}

.type-subhead {
    color: var(--color-gray);
}

.type-subhead-dark {
    color: var(--color-primary-white);
}

.type-subhead::before,
.type-subhead-dark::before {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    margin-bottom: var(--space-xs);
    margin-left: 0;
}

.type-subhead::before {
    background-color: var(--color-bkg-secondary);
}

.type-subhead-dark::before {
    background-color: var(--color-primary-white);
}




.accordion-item {
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: var(--space-md);
}

.accordion-header {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-bkg-primary);
  padding: var(--space-sm) 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 0; 
  overflow: hidden;
  transition: color 0.25s ease;
}

.accordion-header:hover,
.accordion-header:focus {
  color: var(--color-activation);
}

.accordion-header:hover::after,
.accordion-header:focus::after {
  border-color: var(--color-activation); 
  transition: border-color 0.25s ease;
}

.accordion-header::after {
  content: '+';
  font-weight: 400;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem; 
  height: 1.5rem;
  border: 2px solid;
  border-radius: 50%;
  flex-shrink: 0; 
  margin-left: var(--space-sm);
}

.accordion-header[aria-expanded="true"]::after {
  content: '>';
  font-size: 1.2rem;
  font-weight: 700;
  transform: rotate(270deg);
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  color: var(--color-bkg-primary);
}

.accordion-content p {
  margin: var(--space-sm) 0;
  line-height: 1.6;
}

.accordion-header[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 600px;
}

.accordion-header:focus {
  outline: none;
  box-shadow: none;
}






.accordion-item {
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: var(--space-md);
}

.accordion-header {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-bkg-primary);
  padding: var(--space-sm) 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 0; 
  overflow: hidden;
  transition: color 0.25s ease;
}

.accordion-header:hover,
.accordion-header:focus {
  color: var(--color-activation);
}

.accordion-header:hover::after,
.accordion-header:focus::after {
  border-color: var(--color-activation); 
}

.accordion-header::after {
  content: '';  
  display: block; 
  width: 8px;
  height: 8px;
  margin-left: var(--space-sm);
  margin-right: var(--space-sm);
  transition: transform 0.3s ease, border-color 0.25s ease;
  border-right: 2px solid var(--color-gray); 
  border-bottom: 2px solid var(--color-gray);
  transform: rotate(45deg); 
  flex-shrink: 0;
}

.accordion-header[aria-expanded="true"]::after {
  transform: rotate(225deg); 
  border-color: var(--color-activation); 
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  color: var(--color-bkg-primary);
}

.accordion-content p {
  margin: var(--space-sm) 0;
  line-height: 1.6;
}

.accordion-header[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 600px;
}

.accordion-header:focus {
  outline: none;
  box-shadow: none;
}





/* FEATURES =================================================================== 
.section-feature {
    background-color: var(--color-primary-white);
    color: var(--color-bkg-primary);
    padding: var(--space-xl) var(--space-lg);
}

.section-feature .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.section-feature .grid-2 {
    align-items: center;
    gap: var(--space-xl);
}

.section-feature .grid-2.reverse > :first-child {
    order: 2;
}

.section-customers .type-subhead {
    margin-bottom: var(--space-xxl);
}
.section-feature .type-lg {
	text-align: left;
	font-size: 4rem;
	font-weight: 900;
    margin-bottom: var(--space-sm);
	
	background-image: linear-gradient(90deg, var(--color-deepred) 0%, var(--color-deeppurple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-feature .type-lg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem; 
  width: 110%;
  height: 1px;
  background-color: var(--color-gray);
}

.section-feature .type-md {
    color: var(--color-gray);
    max-width: 500px;
}

.section-feature .feature-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 0.75rem;
	
	opacity: 0;
 	transform: translateY(100px);
  	transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  	will-change: opacity, transform;
}

.feature-image.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
    .section-feature .grid-2.reverse > :first-child {
        order: unset; 
    }
}



.feature-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.image-stack {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-stack img {
  position: absolute;
  width: 250px;
  max-width: 85%;
  display: block;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);

  opacity: 0;
  transform: translateY(40px) scale(0.985);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.image-stack img.visible {
  opacity: 1;
}

.img-center {
  z-index: 3;
  transform: translateY(40px) scale(0.985); 
}
.img-center.visible {
  transform: translateY(-20px) scale(1);
}

.img-left {
  left: -25px;
  z-index: 2;
  transform: translateY(130px) scale(0.983);
}
.img-left.visible {
  transform: translateY(18px) scale(1); 
}

.img-right {
  right: -25px;
  z-index: 1;
  transform: translateY(145px) scale(0.982); 
}
.img-right.visible {
  transform: translateY(22px) scale(1); 
}

.img-left.visible   { transition-delay: 0.06s; }
.img-right.visible  { transition-delay: 0.14s; }
.img-center.visible { transition-delay: 0.22s; }





*/



