/* -------------------------------------------------
   page-front.css   Primary Brand Colours
------------------------------------------------- */
/* -------------------------------------------------
   Neutral Palette
------------------------------------------------- */
/* -------------------------------------------------
   Accent / Utility Colours
------------------------------------------------- */
.usp-bullets {
    position: relative;
    color: white;
    background-color: rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    z-index: 10;
    padding: 20px 0;
    margin-top: 20px;
}
/*
@media (min-width: 769px) {
    .usp-bullets .splide {
        visibility: visible !important;
    }
    
    .usp-bullets .splide__track {
        overflow: visible !important;
        width: 100%;
    }
    
    .usp-bullets ul.splide__list {
        display: flex !important;
        justify-content: center !important;
        transform: none !important;
        width: 100% !important;
    }
    
    .usp-bullets li.splide__slide {
        position: relative !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .usp-bullets ul.splide__list {
        display: flex;
    }
}
*/
.usp-bullets li.splide__slide {
    position: relative;
    margin: 0;
    white-space: nowrap;
    visibility: visible;
}

.usp-bullets li.splide__slide:not(:first-child)::before {
    content: "";
    position: absolute;
    left: calc(-1.5rem - 2px);
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #167ac6;
    border-radius: 50%;
}

.features {
  padding: 2.5rem 0 4rem;
}
.features ul.splide__list {
  display: flex;
}
.features li.splide__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 180px;
  margin: 0;
  visibility: visible;
  margin-right: 3.3rem;
}
.features__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}
.features__icon svg {
  fill: #167ac6;
  stroke: #167ac6;
  stroke-width: 1;
}
.features__icon img {
  width: 50px;
  height: 50px;
}
.features__label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

/* _intro-video.scss */
.product-video {
  padding: 4rem 0;
  text-align: center;
}

.product-video__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0b1f3b;
  margin-bottom: 0.5rem;
}

.product-video__player {
  position: relative;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16/9;
  /* fluid responsive size */
}

.product-video__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.specs {
  background: #f2f5f8;
  padding: 4rem 0 0;
}
.specs .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
}
.specs__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0b1f3b;
  margin-bottom: 2rem;
  text-align: center;
}
.specs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 2rem;
  text-align: left;
}
@media (min-width: 768px) {
  .specs__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.specs__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 16px;
  color: #202020;
}
.specs__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: #478cbf;
  border-radius: 50%;
}
.swipe-prompt {
  text-align: center;
  font-size: 1.1rem;
  color: #535353;
  padding: 2rem 30px 0;
  margin: 0;
  background: #f2f5f8;
}
.swipe-prompt a {
  color: #167ac6;
  font-weight: 600;
}
.swipe-prompt a:hover {
  text-decoration: underline;
}

.kickstarter {
  background: #f2f5f8;
  padding: 4rem 0;
  text-align: center;
}
.kickstarter__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0b1f3b;
  margin-bottom: 0.75rem;
}
.kickstarter__lead {
  max-width: 650px !important;
  margin-bottom: 2.5rem;
}
.kickstarter__prices {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .kickstarter__prices {
    grid-template-columns: repeat(2, 1fr);
  }
}
.kickstarter__price-item {
  background: #ffffff;
  border: 1px solid #d4d9df;
  border-radius: 8px;
  padding: 1.25rem 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.kickstarter__label {
  color: #202020;
  display: block;
}
.kickstarter__price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #823329;
}
.kickstarter__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 580px) {
  .kickstarter__actions {
    flex-direction: row;
    justify-content: center;
    gap: 1.25rem;
  }
}
.kickstarter__or {
  font-size: 0.85rem;
  color: #202020;
}
.kickstarter__count {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: #535353;
}
.kickstarter__count strong {
  color: #167ac6;
  font-weight: 600;
}

.kickstarter__price-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kickstarter .price-bar__main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 680px) {
  .kickstarter .price-bar__main {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.kickstarter .price-bar__label {
  font-size: 0.875rem;
  color: rgb(95.75, 95.75, 95.75);
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.kickstarter .price-bar__price {
  font-size: 3.5rem;
  font-weight: 700;
  color: #167ac6;
}
.kickstarter .price-bar__desc {
  color: rgb(95.75, 95.75, 95.75);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.kickstarter .price-bar__rrp {
  font-size: 1rem;
  color: #535353;
}

.home .hero {
  padding: 6rem 0 0 0;
  min-height: unset;
}
.home .hero::before {
  content: " ";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.home .hero > .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.home .hero .hero__content {
  max-width: 500px;
  text-align: left;
  text-shadow: 0 0 3px rgb(0, 0, 0), 0 0 3px rgba(0, 0, 0, 0.5);
}
.home .hero .hero__content h1 {
  font-size: 44px;
  line-height: 1.2;
}
.home .hero .hero__content .hero__actions {
  justify-content: flex-start;
}
.home .hero .hero__images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  z-index: 1;
  padding-top: 10px;
}
.home .hero .hero__images img {
  display: block;
}
.home .hero .hero__images .pcb {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.home .hero .hero__images .pcb img {
  max-width: 200px;
}
@media (max-width: 886px) {
  .home .hero .wrapper {
    align-items: center;
    justify-content: center;
  }
  .home .hero .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    inset: 0;
    padding: 60px 40px 40px;
    text-align: center;
    max-width: unset;
  }
  .home .hero .hero__content .hero__lead {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
  }
  .home .hero .hero__content .hero__actions {
    justify-content: center;
  }
  .home .hero .hero__content .hero__actions .btn {
    white-space: nowrap;
  }
  .home .hero .hero__images {
    opacity: 0.8;
  }
  .home .hero .hero__images img {
    width: 100%;
    max-width: 400px;
  }
  .home .hero .hero__images .pcb {
    width: 100%;
    justify-content: center;
  }
  .home .hero .hero__images .pcb img {
    width: 50%;
  }
}
@media (max-width: 440px) {
  .home .hero {
    min-height: 515px;
  }
}

.home .coming {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 40px;
  gap: 20px 10px;
}
.home .coming a {
  transition: filter 0.25s ease;
}
.home .coming a:hover {
  filter: brightness(1.1) saturate(1.2);
}
.home .coming img {
  display: block;
  max-width: 220px;
}
@media (max-width: 555px) {
  .home .coming {
    flex-direction: column;
  }
}
/* picoPods page - mobile hero adjustments */
@media (max-width: 768px) {
    .picopods .hero--fullscreen {
        padding-top: 160px;
    }
    
    .picopods .hero__title {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }
    
    .picopods .hero__lead {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .picopods .hero--fullscreen {
        padding-top: 120px;
    }
    
    .picopods .hero__title {
        font-size: 1.5rem;
    }
}
/* Kickstarter section - Home page */
.kickstarter {
    position: relative;
    padding: 4rem 0;
    background: rgba(22, 122, 198, 0.08);
    isolation: isolate;
    margin-top: 10px;
}

.kickstarter::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: url("/assets/images/heros/abstract-circuitry-2.png") center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}

/* ========================================
   KICKSTARTER PAGE STYLES
   Add to page-front.css
   ======================================== */

/* Kickstarter Content Section */
.kickstarter-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.kickstarter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Form Column */
.kickstarter-form-col {
    order: 1;
}

.form-container {
    background: #fff;
    border: 2px solid #167ac6;
    border-radius: 8px;
    overflow: hidden;
}

.form-body {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #000;
    font-size: 0.875rem;
}

.form-group .required {
    color: #167ac6;
}

.form-group .optional {
    color: #666;
    font-weight: 400;
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 2px solid #167ac6;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    color: #000;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #167ac6;
    box-shadow: 0 0 0 3px rgba(22, 122, 198, 0.2);
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: #ff0000;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 50px;
}

.error-message {
    color: #ff0000;
    font-size: 0.6875rem;
    margin-top: 0.2rem;
    display: none;
}

/* Country Autocomplete */
.country-autocomplete {
    position: relative;
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #167ac6;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 170px;
    overflow-y: auto;
    z-index: 10000;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.country-option {
    padding: 0.4rem 0.625rem;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.75rem;
}

.country-option:hover,
.country-option.highlighted {
    background: #e6f3ff;
}

.country-option:last-child {
    border-bottom: none;
}

.country-flag {
    margin-right: 0.4rem;
}

.country-english {
    font-weight: 500;
    color: #000;
}

.country-local {
    font-size: 0.75rem;
    color: #333;
    margin-left: 0.4rem;
    font-weight: 400;
}

/* Checkboxes */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
    transform: scale(1.1);
    accent-color: #167ac6;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #000;
}

.checkbox-label a {
    color: #167ac6;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.consent-label {
    color: #ff0000 !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.unsubscribe-note {
    font-weight: 600;
}

.confirmation-note {
    background: #fff;
    border: 1px solid #167ac6;
    border-radius: 4px;
    padding: 0.625rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: #000;
}

.submit-wrapper {
    background: #167ac6;
    border-radius: 6px;
    padding: 0.25rem 0.75rem;
}

.submit-btn {
    width: 100%;
    margin: 0;
    padding: 0.5rem 1rem;
}

/* Info Column */
.kickstarter-info-col {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-card,
.pricing-card,
.info-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefits-card h2,
.pricing-card h3,
.info-card h3 {
    margin: 0 0 1rem 0;
    color: #167ac6;
    font-size: 1.25rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    flex-shrink: 0;
    color: #167ac6;
    margin-top: 0.1rem;
}

/* Pricing Boxes */
.price-boxes {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-box {
    flex: 1;
    background: linear-gradient(135deg, #167ac6 0%, #1a5a9e 100%);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    color: #fff;
}

.price-label {
    display: block;
    font-size: 0.8125rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.price-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-note {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
    text-align: center;
}

/* Info Card */
.info-card p {
    margin: 0 0 1rem 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #333;
}

.info-card .btn {
    display: inline-block;
}

/* ========================================
   RESPONSIVE - KICKSTARTER PAGE
   ======================================== */

@media (max-width: 900px) {
    .kickstarter-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .kickstarter-form-col {
        order: 1;
    }
    
    .kickstarter-info-col {
        order: 2;
    }
}

@media (max-width: 600px) {
    .kickstarter-content {
        padding: 2rem 0;
    }
    
    .form-body {
        padding: 1rem;
    }
    
    .benefits-card,
    .pricing-card,
    .info-card {
        padding: 1rem;
    }
    
    .price-boxes {
        flex-direction: column;
    }
    
    .price-box {
        padding: 0.75rem;
    }
    
    .price-value {
        font-size: 1.25rem;
    }
}
/* Minimal fix for in-app browsers only */
.in-app-browser .home .hero .hero__content {
    padding-top: 100px;
}