/* styles.css */
:root {
    --bg: #0f0f0f;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-1: #007cf0;
    --muted: #ccc;
    --muted-2: #888;
    --accent-2: #00dfd8;
    --accent-3: #9b7cff;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

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

ul, ol {
    padding-left: 0px;
    list-style-position: inside;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 24px;
}
subheading h2 {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: rgb(255, 255, 255);
}

.back-button {
    font-size: 16px;
    color: rgb(204, 204, 204);
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    transition: background 0.2s;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-4px);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-description {
    font-size: 16px;
    color: rgb(204, 204, 204);
    margin-bottom: 0px;
}

.card-updated {
    font-size: 12px;
    color: rgb(136, 136, 136);
}

.card-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.container {
    max-width: 1200px;
    margin: 0px auto;
    position: relative;
    z-index: 1;
}

.container-narrow {
    max-width: 1200px;
    margin: 28px auto;
}

.glass-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.description {
    font-size: 18px;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    color: rgb(255, 255, 255);
    margin-bottom: 40px;
}

pre {
    font-size: 160px;
    font-weight: 400;
    letter-spacing: 5px;
    color: rgb(255, 255, 255);
    white-space: pre-wrap;
    text-align: center;
    font-family: 'Bricolage Grotesque', sans-serif;
}

/* Fade-up animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding-top: 12.5px;
    padding-bottom: 12.5px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 35px;
    font-weight: 600;
    font-size: 18px;              /* bigger font */
    text-decoration: none;
    margin-right: 12px;
    animation: fadeUp 0.65s ease-out both;
    min-height: 40px;             /* added min-height */
}

/* Apple blue #007AFF */
.btn.primary {
    background: #007AFF;
    color: #fff;
    box-shadow: rgba(0, 122, 255, 0.25) 0px 8px 30px;
}

/* Ghost button */
.btn.ghost {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    background: var(--glass-bg);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.btn.ghost:hover {
    background: rgba(255,255,255,0.15);
}


.error-label {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
}

.scroll-arrow-wrap {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    pointer-events: none;
    transition: opacity 0.4s, transform 0.4s;
}

.scroll-arrow-wrap.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

.scroll-arrow {
    width: 40px;
    height: auto;
    animation: 4.4s ease-in-out infinite push-pull;
    filter: drop-shadow(rgba(0, 0, 0, 0.6) 0px 4px 6px);
}

@keyframes push-pull {
    0% {
        transform: translateY(0px) scale(1);
    }

    20% {
        transform: translateY(50px) scale(0.97);
    }

    60% {
        transform: translateY(10px) scale(1.015);
    }

    80% {
        transform: translateY(5px) scale(0.998);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

.scroll-arrow path {
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gradient-header {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 420px;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: linear-gradient( 154deg, var(--grad-color-1, #007cf0), var(--grad-color-2, #00dfd8), var(--grad-color-3, #ff6ec4)
    );
    mask-image: linear-gradient(black 60%, transparent 110%);
}

.gradient-header-home {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 750px;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: linear-gradient( 154deg, var(--grad-color-1, #007cf0), var(--grad-color-2, #00dfd8), var(--grad-color-3, #ff6ec4)
    );
    mask-image: linear-gradient(black 60%, transparent 110%);
}
}


#dotsCanvas {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 420px;
    z-index: 0;
    pointer-events: none;
}

#homeHeaderCanvas {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 750px;
    z-index: 0;
    pointer-events: none;
}

.gradient-header-home {
    animation: 5s infinite gradientShift;
    background-size: 400% 400%;
}

.gradient-header {
    animation: 5s infinite gradientShift;
    background-size: 400% 400%;
}
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
}

.logo {
    max-height: 40px;
    width: auto;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 30px;
    border-radius: 9999px;
    max-width: max-content;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 18px;
}

.nav-list a {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.94);
    padding: 8px 10px;
    border-radius: 9999px;
    transition: background 180ms, color 180ms;
}

.nav-list a:hover, .nav-list a:focus {
    background: rgba(255, 255, 255, 0.04);
    color: rgb(255, 255, 255);
    outline: currentcolor;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px;
    border-radius: 9999px;
    color: inherit;
}

.hamburger {
    display: inline-block;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: currentcolor;
    margin: 4px 0px;
    border-radius: 3px;
}

.nav-list.open {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    top: 68px;
    right: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}


.hero {
    margin-top: 110px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.hero-inner {
    max-width: 780px;
    margin-left: 0px;
    padding: 36px;
    color: rgb(255, 255, 255);
}

.hero-title {
    font-size: 80px;
    line-height: 1.02;
    margin-bottom: 12px;
    font-weight: 600;
    text-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
}

.hero-sub {
    color: var(--hero-sub-color, #ffffff);
    font-size: 20px;
    margin-bottom: 20px;
}

body {
    position: relative;
    font-family: Manrope, sans-serif;
    background-color: rgb(15, 15, 15);
    color: rgb(255, 255, 255);
    line-height: 1.6;
    padding: 40px 20px;
    z-index: 1;
}

.page-content {
    padding: 20px;
}

.card-content {
    padding: 24px;
    flex: 1 1 0%;
}

.glass-container section {
    margin-bottom: 20px;
}

.image-gallery {
    display: flex;
    gap: 10px;
}

.footer-logo-vertical {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer-logo-vertical img {
    writing-mode: vertical-lr;
    transform: rotate(90deg);
    height: 100%;
    object-fit: contain;
}

.site-footer {
    background-color: rgb(15, 15, 15);
    color: rgb(219, 219, 219);
    padding: 60px 0px 30px;
    font-family: Manrope, sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    max-width: 1200px;
    margin: 0px auto;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(68, 68, 68);
}

@media (max-width: 768px) {
    .footer-columns .footer-column:nth-child(1), .footer-columns .footer-column:nth-child(3), .footer-columns .footer-column:nth-child(4) {
        display: none;
    }

    .footer-badges .badge:nth-child(2), .footer-badges .badge:nth-child(3) {
        display: none;
    }

    .footer-columns {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom .footer-left {
        margin-bottom: 10px;
    }
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.badge {
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0.6;
}

.badge img {
    width: 80px;
    height: auto;
}

.badge p {
    font-size: 12px;
    font-weight: 400;
    color: rgb(119, 122, 138);
}

.footer-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 160px;
    flex: 1 1 0%;
}

.footer-column h4 {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: rgb(255, 255, 255);
}

.footer-column ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footer-column ul li, .footer-column ul li a {
    color: rgb(219, 219, 219);
    font-weight: 400;
    line-height: 1.8;
    font-size: 13px;
    text-decoration: none;
    cursor: default;
}

.footer-column ul li a:hover {
    text-decoration: underline;
    color: rgb(255, 255, 255);
}

.footer-column ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    max-width: 1200px;
    margin: 20px auto 0px;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgb(255, 255, 255);
}

.footer-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links .dot {
    color: var(--muted-2);
    font-size: 0.9em;
}

.social-icons a {
    margin-left: 16px;
    display: inline-block;
    filter: brightness(0.7);
    transition: filter 0.3s;
}

.social-icons a:hover {
    filter: brightness(1);
}

.social-icons img {
    width: 24px;
    height: 24px;
    display: block;
}

.container-narrow {
    padding-left: 0px;
    padding-right: 0px;
}

.image-gallery img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
}

.relative-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    margin-top: 8px;
}

.rel-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 180ms, transform 160ms, box-shadow 180ms;
    outline: currentcolor;
    background: none;
}

.rel-link-text {
    display: inline-block;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: rgb(255, 255, 255);
}

.rel-link-icon {
    min-width: 36px;
    min-height: 36px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #007AFF;
    border: 1px solid #007AFF;
    box-shadow: #007AFF 0px 2px 8px inset;
    transition: background 160ms, transform 160ms, color 160ms, box-shadow 160ms;
    color: #fff;
}

.rel-link:hover, .rel-link:focus {
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-2px);
}

.rel-link:hover .rel-link-icon, .rel-link:focus .rel-link-icon {
    background: #007AFF;
    color: rgb(6, 21, 35);
    box-shadow: #007AFF;
    transform: scale(1.04);
}

.rel-link:focus-visible {
    box-shadow: #007AFF;
    border-radius: 10px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    background: none;
    border: medium;
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-size: 25px;
    text-align: left;
    padding: 14px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s;
}

.accordion-header:hover {
    color: var(--accent-1);
}

.accordion-icon {
    font-size: 30px;
    font-weight: 300;
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.4s, padding 0.3s;
    padding: 0px;
    color: rgb(204, 204, 204);
    font-size: 16px;
    line-height: 1.5;
}

.accordion-content ul {
    padding-left: 20px;
    margin: 10px 0px;
}

.accordion-content li {
    margin-bottom: 6px;
}

.accordion-item.open .accordion-content {
    max-height: 800px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.accordion-item.open .accordion-icon {
    transform: rotate(45deg);
}

@media (max-width: 520px) {
    .rel-link {
        padding: 10px 12px;
    }

    .rel-link-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }

    .rel-link-text {
        font-size: 15px;
    }
}

@media (max-width: 900px) {
    .nav-list {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-inner {
        padding: 22px;
    }

    .gradient-header {
        height: 580px;
    }

    #dotsCanvas {
        height: 100%;
    }

    .container {
        padding: 20px;
    }
}

@media (max-width: 520px) {
    .logo {
        width: 150px;
        height: auto;
    }

    .brand-title {
        display: none;
    }

    .hero {
        min-height: 260px;
    }

    .hero-title-carousel {
        font-size: 36px;
    }
    .data-privacy-section00012 {
        margin-top: 15rem;   /* ≈ 4 breaks */
    }
    .hero-sub {
        font-size: 20px;
    }

    .nav-list.open {
        right: 14px;
        top: 64px;
    }

    .container {
        padding: 18px;
    }
}
/* ===========================
   Section Template Styles
   =========================== */
.info-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    margin: 60px auto;
    max-width: 1200px; /* keeps it from stretching edge-to-edge */
    flex-wrap: nowrap; /* force side-by-side unless media query overrides */
}

.info-image {
    flex: 0 0 400px; /* reserve up to 400px for image */
    max-width: 100%;
}


.info-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    object-fit: cover;
    display: block;
}

.info-text {
    flex: 1;
    max-width: 600px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
}
.info-section .info-image,
.info-section-reverse .info-image {
  flex: 1;
}

.info-section .info-text,
.info-section-reverse .info-text {
  flex: 1;
}

.info-section-reverse {
  flex-direction: row-reverse;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  margin: 60px auto;
  max-width: 1200px; /* keeps it from stretching edge-to-edge */
  flex-wrap: nowrap;
}

@media (max-width: 900px) {
    .info-section,
    .info-section-reverse {
        gap: 2.5rem;
        flex-direction: column;
        text-align: left;
        flex-wrap: wrap;
    }

    .info-image,
    .info-text {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-description {
        font-size: 1rem;
    }
}

/* ===========================
    SPACERS
=========================== */
    /* Spacer utility classes */
    /* Flexible spacer */
    .spacer {
      width: 100%;
      flex-shrink: 0;
      height: var(--spacer-size, 4rem); /* default = 64px */
    }
    /* Predefined sizes */

    .spacer-sm {
      height: 2rem; /* Small: 32px */
    }

    .spacer-lg {
      height: 6rem; /* Large: 96px */
    }

    .spacer-xl {
      height: 10rem; /* Extra large: 160px */
    }

    /* Optional responsive adjustments */
    @media (max-width: 768px) {
      .spacer-xl {
        height: 6rem;
      }
    }

/* ===========================
    CHIPS STYLES
 =========================== */
    .chips {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 15px 0 20px 0;
    }
    
    .chip {
        font-size: 14px;
        padding: 6px 14px;
        border-radius: 9999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #fff;
        font-weight: 500;
        backdrop-filter: blur(8px);
        transition: background 0.2s, transform 0.2s;
        cursor: default;
    }
    
    .chip:hover {
        background: rgba(255, 255, 255, 0.18);
        transform: translateY(-2px);
    }
    
/* ===========================
 PAGE SPECIFIC STYLES
 =========================== */

/* Data Privacy Section */
.data-privacy-section00012 {
  margin-bottom: 6rem; /* ≈ 6 breaks */
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* INDEX | HOMEPAGE */
.section {
  margin: 80px auto;
  text-align: center;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.carousel-section {
  position: relative;
  overflow: hidden;
}

.carousel {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  animation: slide 18s infinite;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

@keyframes slide {
  0%, 20% { transform: translateX(0); }
  25%, 45% { transform: translateX(-100%); }
  50%, 70% { transform: translateX(-200%); }
  75%, 100% { transform: translateX(0); }
}

.testimonials {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
  border-radius: 16px;
  font-style: italic;
}

.testimonial footer {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}

.final-cta {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  padding: 80px 20px;
  border-radius: 24px;
  color: white;
}


