/* Inter Font Import (supports all weights) */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

/* -----------------------------------
   GLOBAL THEME VARIABLES
----------------------------------- */
:root {
  --color-bg: #0b0b0a;
  --color-bg-light: #151515;
  --color-surface: #222222;

  --color-text: #ffffff;
  --color-text-muted: #9a9a9a;
  --color-accent: #fccf0b;

  --color-border: #3f3f3f;

  --font-primary: "Inter", sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --transition-fast: 0.22s ease;
}

/* -----------------------------------
   RESET / BODY
----------------------------------- */
body {
  background: var(--color-bg-light);
  color: var(--color-text);
  font-family: var(--font-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Remove ugly blue focus outlines but keep accessibility */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1280px;
}

.blob {
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(240, 185, 7, 0.06) 0%,
    rgba(240, 185, 7, 0) 100%
  );
  position: fixed;
  width: 1411px;
  height: 1411px;
  top: -350px;
  left: -520px;
  z-index: -1;
}
.blob-2 {
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(240, 185, 7, 0.06) 0%,
    rgba(240, 185, 7, 0) 100%
  );
  width: 1411px;
  height: 1411px;
  position: fixed;
  top: 425px;
  left: 522px;
  z-index: -1;
}

/* -----------------------------------
   NAVBAR
----------------------------------- */
.navbar {
  /* background: var(--color-bg-light) !important; */
  background: transparent !important;
}

.nav-link {
  color: var(--color-text-muted) !important;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-accent) !important;
}

/* -----------------------------------
   HERO
----------------------------------- */
/* ===== HERO (no new vars) ===== */
.hero {
  padding: 0 0 120px;
  overflow: hidden;
}

/* outer card */
.hero .container .hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  /* background: radial-gradient(1200px 600px at 70% 50%, #1b1c1e 0%, var(--color-bg) 60%, #0f1011 100%); */
  background-color: var(--color-bg);
  padding: 70px 60px 120px 60px;
  /* height: 570px; */
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  gap: 24px;
}

/* headline area (left) */
.hero-left {
  position: relative;
  z-index: 2;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(252, 208, 12, 0.179) 0%,
    rgba(252, 207, 12, 0) 100%
  );
}

/* top brands line */
.hero-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--color-accent);
  opacity: 0.95;
  margin-bottom: 10px;
}
.hero-topline .x {
  opacity: 0.6;
}
.hero-topline .partner {
  color: #78ff34;
}

/* main heading */
.hero-heading {
  font-weight: 900;
  line-height: 120px;
  letter-spacing: -2px;
  text-transform: uppercase;
  font-size: 120px;
  background: linear-gradient(98.5deg, #fccf0c 9.36%, #e09900 93.6%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEKAMO EDITION pill */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  margin-top: 18px;
  border-radius: 64px;

  background: rgba(34, 34, 34, 1);
}
.pill span {
  font-weight: 900;
/*   background: linear-gradient(90deg, #a7a7a7 0%, #575757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  font-size: 48px;
  leading-trim: NONE;
  line-height: 65px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}

/* product image on right */
.hero-product {
  width: 500px;
  mix-blend-mode: lighten;
  height: auto;
  object-fit: contain;
  z-index: 1;
}

/* bottom drop bar */
.dropbar {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -40px;
  margin: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(33, 33, 33, 0.5);
  padding: 22px 28px;
  max-width: 1040px;
  height: 98px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(25.899999618530273px);
}
.dropbar-left {
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  leading-trim: NONE;
  line-height: 26px;
  letter-spacing: 0%;
}
.dropbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 900;
  font-style: Black;
  font-size: 36px;
  leading-trim: NONE;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: right;
  text-transform: uppercase;
}
.dropbar-right .num {
  background: linear-gradient(98.5deg, #fccf0c 9.36%, #e09900 93.6%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dropbar-right .dot {
  color: rgba(63, 63, 63, 1);
  transform: translateY(-2px);
}

/* ---------------------------
Vibro Impact
--------------------------------- */
.vibro-impact {
  text-align: center;
}
.vibro-impact h2 {
  text-align: center;
}
.vibro-impact p {
  font-weight: 400;
  font-size: 36px;
  line-height: 65px;
  letter-spacing: 0%;
  text-align: center;
}
.vibro-impact .s-message {
  font-weight: 400;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
}

.form-feedback {
  min-height: 24px;
  font-size: 16px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.form-feedback.success {
  color: #72ff11;
}

.form-feedback.error {
  color: #ff6b6b;
}

#collab {
  background-color: var(--color-bg);
}

#collab h2 {
  margin-bottom: 20px;
}

#collab .text-content p:nth-child(1) {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 36px;
  leading-trim: NONE;
  line-height: 54px;
  letter-spacing: 0%;
}
#collab .text-content p:nth-child(2) {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 36px;
  letter-spacing: 0%;
  color: var(--color-text-muted);
}
#collab .text-content span {
  font-weight: 900;
}
#collab .text-content span:nth-child(1) {
  color: #72ff11;
}

#collab .text-content span:nth-child(2) {
  color: var(--color-accent);
}

.frame {
  position: relative;
  width: 100%;
  height: 537px;
  margin-top: 40px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 20px;
  padding-bottom: 80px;
  background: url("../img/collab-bg.jpg") no-repeat center 70%;
  background-size: cover;
  border-radius: var(--radius-lg);
  border: 4px solid rgba(255, 255, 255, 0.15);
}
.frame h3 {
  width: 60%;
  position: absolute;
  bottom: -25px;
  text-align: center;
  left: 50%;
  transform: translate(-50%);
  background: var(--color-bg);
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 54px;
  letter-spacing: 0%;
  color: var(--color-text);
}
.frame button {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  padding: 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: rgba(81, 81, 81, 0.2);
  color: var(--color-text);
}

/* what-it-does */

#what-it-does {
  background-color: var(--color-bg-light);
}

.swiper {
  overflow: visible; /* allow the peek */
  padding-right: 6vw; /* space to show the next slide peeking */
}

/* card styling reused from earlier */
.feature-card {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.34);
}
.bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: brightness(50%);
}
.content {
  position: relative;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.headline {
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 0%;

  background: linear-gradient(98.5deg, #fccf0c 9.36%, #e09900 93.6%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.subcopy {
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0%;
  margin-top: 8px;
}

/* soft buttons */
.btn-soft {
  border: 0;
  background: #1e1f22;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-soft:hover {
  background: rgba(61, 61, 61, 1);
}
.btn-soft:active {
  background: rgba(34, 34, 34, 1);
}
.btn-soft:disabled {
  background: rgba(34, 34, 34, 0.5);
  color: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
}
.carousel-outer-controls {
  gap: 1rem;
}

#specs {
  background-color: var(--color-bg-light);
  position: relative;
}
.bg-specs {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(252, 208, 12, 0.06) 0%,
    rgba(252, 207, 12, 0) 100%
  );
  opacity: 0.2;
}
#specs p {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--color-text-muted);
}
#specs p span {
  font-weight: 900;
  color: var(--color-text);
}
#specs ul {
  list-style: none;
}

#specs ul li {
  padding-left: 57px;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 24px;
  position: relative;
}

#specs ul li::before {
  content: "";
  position: absolute;
  left: 12px; /* place the icon a bit inward so there's a gap to the text */
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0ba42c
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(21, 21, 21, 1)' stroke='rgba(21, 21, 21, 1)' stroke-width='0.5'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E")
    center/14px no-repeat;
}

/* Media */

#media {
  background-color: var(--color-bg-light);
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-play svg {
  width: 70px;
  height: 70px;
  fill: white;
}

/* How it works */

#how-it-works {
  background-color: var(--color-bg);
}

.hiw-container{
  max-width: calc(1440px - 20px);
  margin: 0 auto;
  padding: 0 12px;
}

.card-wrapper {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.card-wrapper .hiw-card {
  padding: 40px 20px 20px 20px;
  flex: 1;
  border-radius: var(--radius-md);
  background: rgba(33, 33, 33, 0.5);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(25.899999618530273px);
}

.hiw-card h3 {
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 0%;
}

.hiw-card p {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0%;
}

/* Faq */

#faq {
  background-color: var(--color-bg-light);
}

.faq-item {
  background: rgba(33, 33, 33, 0.5);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(25.899999618530273px);
  border-radius: var(--radius-md);
  color: #fff;
  padding: 30px 34px;
  cursor: pointer;
  margin-bottom: 12px;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  line-height: 150%;
  user-select: none;
}

.faq-body {
  margin-top: 6px;
  opacity: 0.8;
  font-size: 18px;
  color: var(--color-text-muted);
}

.faq-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(47, 47, 47, 1);

  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.faq-btn i {
  font-size: 24px;
  color: #9b9b9b;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-btn {
  background: rgba(77, 77, 77, 1);
}

.faq-item.open .faq-btn i {
  transform: rotate(45deg); /* turns + into x */
}

/* Footer */
footer {
  background-color: var(--color-bg);
  height: 374px;
  position: relative;
  overflow: hidden;
}

footer h1 {
  font-weight: 900;
  font-size: 90px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: linear-gradient(98.5deg, #fccf0c 9.36%, #e09900 93.6%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
footer h1:nth-child(1) {
  padding-top: 80px;
}
footer h1:nth-child(2) {
  z-index: 2;
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer img {
  width: 585.4669721595662px;
  height: 241.71912824074553px;
  position: absolute;
  top: 25%;
  left: 25%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transform: rotate(-33.52deg);
  box-shadow: -35px 20px 14px 0px rgba(0, 0, 0, 0.43);
}

/* Form styling */

.success-popup {
  background: #0e0e0e;
  border-radius: 18px;
  border: 1px solid #2a2a2a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.success-popup h2 {
  font-weight: 800;
  font-size: 50px;
  line-height: 65px;
  letter-spacing: 0%;
  text-align: center;
}

.success-popup p {
font-weight: 400;
font-size: 24px;
line-height: 36px;
letter-spacing: 0%;
text-align: center;
color: var(--color-text-muted);
}

.check-circle {
  width: 60px;
  height: 60px;
  background: #0ba42c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-circle i {
  font-size: 32px;
  color: var(--color-text); /* green check */
}