/*================================  */
/*================================  */
/* ====== CORE VARIABLES ========= */
/*================================  */
/*================================ */
:root {
  --primary: #0032e8;
  --primary-dim: rgb(35, 90, 240);
  --gradient: linear-gradient(
    90deg,
    var(--primary) 0%,
    #1f4dff 50%,
    var(--primary-dim) 100%
  );
  --background-1: rgb(248, 248, 255);
  --background-2: rgb(236, 236, 236);
  --border-1: #cdcdcd;
  --border-2: #616161;
  --white: #ffffff;
  --black: #000000;
  --badge-bg: rgba(46, 91, 255, 0.3);

  --font-header: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --header-height: 72px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/*================================  */
/*================================  */
/* ====== RESET & BASE =========== */
/*================================  */
/*================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--background);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  /* background-image:
    linear-gradient(rgba(46, 91, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 91, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(46, 91, 255, 0.01) 2px, transparent 2px),
    linear-gradient(90deg, rgba(46, 91, 255, 0.01) 2px, transparent 2px);
  background-size:
    40px 40px,
    40px 40px,
    200px 200px,
    200px 200px; */
}

section {
  padding: 100px 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
}

.relative {
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/*================================  */
/*================================  */
/* ====== SCROLL BAR ============= */
/*================================  */
/*================================ */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--background-2);
}

::-webkit-scrollbar-thumb {
  background: var(--border-1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-2);
}

/*================================  */
/*================================  */
/* ====== TYPOGRAPHY ============= */
/*================================  */
/*================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-header);
  line-height: 1.1;
  text-transform: uppercase;
}

.text-mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.bold {
  font-weight: 800;
}

/*================================  */
/*================================  */
/* ====== HEADER ================= */
/*================================  */
/*================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.header.scrolled {
  height: 64px;
  background: rgb(248, 248, 255);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid var(--border-1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo {
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.05em;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .logo {
    font-size: 24px;
  }
}

.nav-header {
  display: none;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--border-2);
  transition: var(--transition);
  padding: 8px 12px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.cta-button {
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
  display: none; /* Hidden on mobile */
}

@media (min-width: 480px) {
  .cta-button {
    display: block;
  }
}

.cta-button:hover {
  background: var(--primary-dim);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--black);
  z-index: 1100;
  padding: 4px;
}

@media (max-width: 767px) {
  .nav {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -90%; /* Slide out from right */
    width: 90%;
    height: 100vh;
    background: var(--background);
    padding: 40px;
    z-index: 1050;
    gap: 24px;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1);
    border-left: 1px solid var(--border-1);
  }

  .nav.active {
    right: 0; /* Slide in from right */
    left: auto;
  }

  .nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-1);
  }

  .nav-header .logo {
    font-size: 1.25rem;
  }

  .nav-close {
    font-size: 2rem;
    color: var(--black);
    padding: 4px;
  }

  .nav .nav-link {
    font-size: 24px;
    font-weight: 800;
    opacity: 0;
    transform: translateX(20px); /* Slide from right */
    transition: all 0.4s ease;
    transition-delay: 0s;
  }

  .nav.active .nav-link {
    opacity: 1;
    transform: translateX(0);
  }

  .nav.active .nav-link:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav.active .nav-link:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav.active .nav-link:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav.active .nav-link:nth-child(4) {
    transition-delay: 0.4s;
  }
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/*================================  */
/*================================  */
/* ====== HERO SECTION =========== */
/*================================  */
/*================================ */
.hero {
  height: 700px;

  padding-top: 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--background-2);
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  width: fit-content;
  background: var(--badge-bg);
  color: var(--primary);
  padding: 4px 12px;
  margin-bottom: 16px;
  border: 1px solid var(--primary);
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-badge::after,
.section-tag::after,
.status-title::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background-image:
    linear-gradient(var(--primary), var(--primary)),
    linear-gradient(var(--primary), var(--primary)),
    linear-gradient(var(--primary), var(--primary)),
    linear-gradient(var(--primary), var(--primary));
  background-size: 6px 6px;
  background-position:
    0 0,
    100% 0,
    0 100%,
    100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero-title {
  font-size: clamp(40px, 10vw, 80px);
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.hero-title span {
  color: var(--primary);
}

.hero-description {
  font-size: 16px;
  color: var(--border-2);
  max-width: 500px;
  margin-bottom: 40px;
  border-left: 4px solid var(--primary);
  padding-left: 16px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 752px) {
  .hero-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  width: 280px;
  height: 56px;
  font-weight: 900;
  font-family: var(--font-header);
  font-size: 18px;
}

.btn-outline {
  border: 1px solid var(--border-1);
  color: var(--black);
  width: 280px;
  height: 56px;
  font-weight: 900;
  font-family: var(--font-header);
  font-size: 18px;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--background-2);
}
.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  height: auto;
  z-index: 1;
  opacity: 0.1;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
@media (min-width: 780px) {
  .hero {
    height: 100vh;
    height: 100dvh;
  }
}

.icon-giant {
  font-size: clamp(320px, 40vw, 640px) !important;
}

.hero-stats {
  display: none;
}
@media (min-width: 680px) {
  .hero-stats {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--background-1);
    border: 1px solid var(--border-1);
    border-right: none;
    border-bottom: none;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    z-index: 99;
  }

  .hero-stats::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 100%;
    width: 200vw;
    height: 1px;
    background: var(--border-1);
    pointer-events: none;
  }

  .stat-item {
    padding: 24px;
    border-bottom: 1px solid var(--border-1);
    transition: var(--transition);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-label {
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 11px;
    margin-bottom: 8px;
  }

  .stat-value {
    font-family: var(--font-header);
    font-size: 28px;
    font-weight: 900;
  }
}

@media (min-width: 1080px) {
  .hero-stats {
    flex-direction: row;
    border: none;
    border-top: 1px solid var(--border-1);
  }

  .stat-item {
    padding: 32px 24px;
    border-left: 1px solid var(--border-1);
    border-bottom: 1px solid var(--background-1);
  }

  .stat-value {
    font-size: 32px;
  }
}

/*================================ */
/*================================  */
/*================================  */
/* ====== services (BENTO) ======== */
/*================================  */
/*================================ */
.services {
  background-color: var(--background-1);
  /* Full border-top removed to use the specific stats-aligned line instead */
  position: relative;
  z-index: 99;
  border-bottom: 1px solid var(--border-1);
}
.services-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  width: fit-content;
  color: var(--primary);
  background: var(--badge-bg);
  padding: 4px 12px;
  margin-bottom: 16px;
  border: 1px solid var(--primary);
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 12px;
}
@media (min-width: 780px) {
  .section-title {
    font-size: 48px;
  }
}

.section-description {
  max-width: 500px;
  color: var(--border-2);
  font-family: var(--font-mono);
  font-size: 14px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.bento-card {
  border: 1px solid var(--border-1);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.bento-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(46, 91, 255, 0.08);
  transform: translateY(-5px);
}

.bento-card.blue {
  background: var(--primary);
  color: var(--white);
}

.card-special {
  background: var(--background-2);
}

.card-special-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.title-extra {
  font-size: 48px;
}

.btn-sm {
  margin-top: 24px;
  font-size: 18px;
  padding: 12px;
}

.card-icon {
  font-size: 48px;
  margin-bottom: 24px;
  color: var(--primary);
}

.blue .card-icon {
  color: var(--white);
}

.card-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.card-text {
  color: var(--border-2);
}

.blue .card-text {
  color: rgba(255, 255, 255, 0.8);
}

/*================================  */
/*================================  */
/* ====== PROTOCOL SECTION ======= */
/*================================  */
/*================================ */
.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  font-style: italic;
}
.italic {
  font-style: italic;
}
.protocol {
  background-color: var(--background-2);
}
.protocol-header {
  margin-bottom: 60px;
  position: relative;
}

.protocol-header-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  opacity: 0.05;
  color: var(--black);
  pointer-events: none;
  z-index: 0;
  transition: var(--transition);
}

@media (min-width: 991px) {
  .protocol-header-icon {
    opacity: 0.08;
    width: 400px;
    height: 400px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.title-giant {
  font-size: clamp(36px, 8vw, 72px);
}

.description-clean {
  border: none !important;
  padding: 0 !important;
}

.protocol-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
}

@media (min-width: 768px) {
  .protocol-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.protocol-card {
  position: relative;
  overflow: hidden;
  background: var(--background-1);
  padding: 32px 20px;
  transition: var(--transition);
  border: 1px solid var(--border-1);
}

.protocol-card:hover {
  border: 1px solid var(--primary);
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.protocol-card:hover .step-number {
  color: var(--primary);
  opacity: 0.2;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 64px;
  font-weight: 900;
  color: var(--border-1);
  margin-bottom: 24px;
}

.protocol-card h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  margin-bottom: 24px;
}

.protocol-card h4 .icon {
  color: var(--primary);
}

.protocol-list {
  list-style: none;
  margin-top: 32px;
}

.protocol-list li {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}

/*================================  */
/*================================  */
/* ====== ABOUT SECTION ======= */
/*================================  */
/*================================ */
.about {
  padding: 100px 0;
  background-color: var(--background-1);
  color: var(--black);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}

.about-description {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--border-2);
}
.about-description p {
  margin-bottom: 8px;
}
.about-description p:last-child {
  margin-bottom: 20px;
}
.about-media {
  position: relative;
  height: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(10, 40px);
  gap: 12px;
  height: 100%;
}

@media (min-width: 992px) {
  .about-container {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }

  .about-grid {
    grid-template-rows: repeat(10, 1fr);
  }
}

.about-img {
  background-color: var(--background-2);
  opacity: 0.8;
  border: 1px solid var(--border-1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-img::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--border-1);
  border-left: 1px solid var(--border-1);
}

.about-img:hover {
  opacity: 1;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-img.item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 8;
}

.about-img.item-2 {
  grid-column: 1 / 2;
  grid-row: 8 / 11;
}

.about-img.item-3 {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
}

.about-img.item-4 {
  grid-column: 2 / 3;
  grid-row: 4 / 11;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-rows: repeat(10, 25px);
    gap: 8px;
  }
}

/*================================  */
/*================================  */
/* ====== DIFERENTIALS SECTION ======= */
/*================================  */
/*================================ */
.diferentials {
  padding: 100px 0;
  background-color: var(--background-2);
}

.diferentials-header {
  margin-bottom: 64px;
}

.diferentials-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .diferentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .diferentials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.diferential-card {
  padding: 48px 32px;
  background: var(--background-1);
  border: 1px solid var(--border-1);
  margin: -0.5px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.diferential-card:hover {
  background: var(--background-1);
  box-shadow: inset 0 0 0 1px var(--primary);
  z-index: 2;
}

.diferential-card .icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 24px;
  display: block;
}

.diferential-title {
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  color: var(--black);
}

.diferential-text {
  font-size: 14px;
  color: var(--border-2);
  line-height: 1.6;
}
/*================================  */
/*================================  */
/* ====== REVIEWS SECTION ======== */
/*================================  */
/*================================ */
.reviews {
  background: var(--background-2);
  padding: 100px 0;
}

.reviews-header {
  margin-bottom: 64px;
  text-align: left;
}

.reviews-swiper {
  padding-bottom: 24px;
}

.swiper-slide {
  height: auto;
}

/* Custom Swiper Controls */
.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.swiper-pagination {
  position: static !important;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: auto !important;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  border-radius: 0 !important; /* Square bullet */
  background: var(--border-1) !important;
  opacity: 1 !important;
  transition: var(--transition) !important;
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
  transform: scale(1.2);
}

.swiper-nav-buttons {
  display: flex;
  gap: 12px;
}

.swiper-button-next,
.swiper-button-prev {
  position: static !important;
  width: 48px !important;
  height: 48px !important;
  background: var(--white);
  border: 1px solid var(--border-1);
  color: var(--black) !important;
  margin: 0 !important;
  transition: var(--transition);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: 900;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary);
  color: var(--background-1) !important;
  border-color: var(--primary);
}

.review-card {
  background: var(--background-1);
  border: 1px solid var(--border-1);
  padding: 40px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card:hover {
  box-shadow: 0 20px 40px rgba(0, 50, 232, 0.05);
  border-color: var(--primary);
  cursor: grab;
}

.highlight-card:hover {
  box-shadow: 0 20px 40px rgba(0, 50, 232, 0.1);
}

.review-rating {
  color: var(--primary);
  display: flex;
  margin-bottom: 24px;
  gap: 4px;
}

.review-rating .material-symbols-outlined {
  font-size: 20px;
  font-variation-settings: "FILL" 1;
}

.review-text {
  font-size: 16px;
  line-height: 1.8;
  color: #868686;
  margin-bottom: 32px;
  flex-grow: 1;
  font-weight: 400;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-1);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--background-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 800;
  border: 1px solid var(--border-1);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 4px;
}

.author-role {
  font-size: 10px;
  color: var(--border-2);
}
/*================================  */
/*================================  */
/* ====== CTA SECTION ============ */
/*================================  */
/*================================ */
.cta-section {
  padding: 50px 0;
  background: var(--background-2);
}

.cta-card {
  background: var(--primary);
  border-radius: 0;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .cta-card {
    padding: 100px;
  }
}

.cta-watermark {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: clamp(80px, 15vw, 200px);
  font-family: var(--font-header);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05); /* faint white */
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--white);
}

.badge-white::after {
  background-image:
    linear-gradient(var(--white), var(--white)),
    linear-gradient(var(--white), var(--white)),
    linear-gradient(var(--white), var(--white)),
    linear-gradient(var(--white), var(--white));
}

.cta-title {
  color: var(--white);
  font-size: clamp(36px, 8vw, 64px);
  margin-bottom: 24px;
}

.cta-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.cta-actions button {
  width: 100%;
  max-width: 280px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 900;
  font-family: var(--font-header);
  font-size: 14px;
  padding: 16px 32px;
  border: 1px solid var(--white);
  transition: var(--transition);
}

.btn-white:hover {
  background: var(--background-1);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-weight: 900;
  font-family: var(--font-header);
  font-size: 14px;
  padding: 16px 32px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/*================================  */
/*================================  */
/* ====== FOOTER ================= */
/*================================  */
/*================================ */
.footer {
  background: var(--background-1);
  padding: 80px 0 20px;
  border-top: 1px solid var(--border-1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  margin-bottom: 60px;
}
.footer-brand {
  margin-right: 16px;
}
.footer-logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 12px;
}

.footer-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--border-2);
  max-width: 300px;
}

.footer-links h5 {
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--border-2);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.terminal-window {
  width: 100%;
  max-width: 600px;
  background: var(--background-1);
  border: 1px solid var(--border-1);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: 16px;
}

.terminal-header {
  background: var(--background-2);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--border-1);
}

.terminal-buttons {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.close {
  background: #ff5f56;
}
.dot.minimize {
  background: #ffbd2e;
}
.dot.maximize {
  background: #27c93f;
}

.terminal-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--border-2);
  margin-left: auto;
}

.terminal-body {
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.8;
}

.terminal-line {
  margin-bottom: 6px;
  color: var(--border-2);
}

.prompt {
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
}

.status-tag {
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  margin-left: 4px;
}

.status-tag.success {
  background: rgba(39, 201, 63, 0.1);
  color: #27c93f;
}

.status-tag.active {
  background: var(--badge-bg);
  color: var(--primary);
}

.terminal-progress-wrapper {
  margin-top: 16px;
  width: 100%;
  height: 4px;
  background: var(--background-2);
  border-radius: 2px;
  overflow: hidden;
}

.terminal-progress-fill {
  width: 75%;
  height: 100%;
  background: var(--primary);
  animation: progressPulse 2s infinite ease-in-out;
}

.terminal-status-footer {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--border-1);
  font-size: 10px;
}

.cursor {
  color: var(--primary);
  animation: cursorBlink 1s infinite step-end;
}

@keyframes progressPulse {
  0% {
    opacity: 0.5;
    width: 70%;
  }
  50% {
    opacity: 1;
    width: 85%;
  }
  100% {
    opacity: 0.5;
    width: 70%;
  }
}

@keyframes cursorBlink {
  50% {
    opacity: 0;
  }
}

.footer-links-container {
  display: flex;
  gap: 40px;
}

.text-tiny {
  font-size: 0.6rem !important;
}

.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-1);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--border-2);
  letter-spacing: 0.2em;
}

/*================================  */
/*================================  */
/* ====== BRANDS STRIP ======= */
/*================================  */
/*================================ */

.brands {
  background: var(--background-1);
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  border-bottom: 1px solid var(--border-1);
  border-top: 1px solid var(--border-1);
}

.brands::before,
.brands::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15vw;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brands::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--background-1) 0%,
    transparent 100%
  );
}

.brands::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--background-1) 0%,
    transparent 100%
  );
}

.brands-strip-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: max-content;
  animation: scroll-brands 40s linear infinite;
  animation-play-state: running;
}

.brands:hover .brands-strip-content {
  animation-play-state: paused;
}

@keyframes scroll-brands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brands-item {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
}

.brand-logo {
  height: 48px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition);
  object-fit: contain;
}

.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .brands-item {
    gap: 40px;
    padding-right: 40px;
  }
  .brand-logo {
    height: 32px;
  }
}

/*================================  */
/*================================  */
/* ====== RESPONSIVE ============= */
/*================================  */
/*================================ */
@media (min-width: 760px) {
  .nav {
    display: flex;
    gap: 24px;
  }

  .mobile-menu-btn {
    display: none;
  }

  .bento-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .bento-card:nth-child(1) {
    grid-column: span 8;
  }
  .bento-card:nth-child(2) {
    grid-column: span 4;
  }
  .bento-card:nth-child(3) {
    grid-column: span 4;
  }
  .bento-card:nth-child(4) {
    grid-column: span 8;
  }

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

  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 0px;
  }

  .hero-image {
    opacity: 0.4;
    right: 0;
  }
}
.about-terminal {
  margin: 16px 0 8px;
  max-width: 1080px;
}
@media (min-width: 760px) {
  .about-terminal {
    margin: 16px 0 0;
  }
}
