/*
Theme Name: BraiNews
Theme URI: https://www.ibrainews.com
Description: Dark tech theme for BraiNews Store
Version: 1.0
Text Domain: brainews
*/


/* ============================================
   BRAINEWS FORGE DESIGN SYSTEM
   ============================================ */

:root {
  /* Background */
  --color-bg: #0E0C0D;
  
  /* Violet / Purple Scale */
  --violet-90: #281661;
  --violet-80: #39238F;
  --violet-70: #5432CD;
  --violet-60: #6B50FF;
  --violet-50: #8B7CFF;
  --violet-40: #A69DFF;
  --violet-30: #C5C0FF;
  --violet-20: #DFDCFF;
  
  /* Gray Scale */
  --gray-100: #161616;
  --gray-90: #262626;
  --gray-80: #393939;
  --gray-70: #525252;
  --gray-60: #6F6F6F;
  --gray-50: #8D8D8D;
  --gray-40: #A8A8A8;
  --gray-30: #C6C6C6;
  --gray-20: #E0E0E0;
  --gray-10: #F4F4F4;
  
  /* Utility */
  --white: #FFFFFF;
  --black: #000000;
  --green-40: #34C06A;
  --border-subtle: rgba(255,255,255,0.15);
  --border-card: rgba(255,255,255,0.1);
  
  /* Typography */
  --font-primary: 'IBM Plex Serif', Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing (1rem = 10px) */
  --radius-sm: 4px;
  --radius-md: 8px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--gray-30);
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 {
  color: var(--white);
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

h2 {
  color: var(--white);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.16;
  text-transform: uppercase;
}

h3 {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

h4 {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
}

h6 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================
   LAYOUT
   ============================================ */
.container-large {
  width: 100%;
  max-width: 129rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.container-medium {
  width: 100%;
  max-width: 107rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.container-small {
  width: 100%;
  max-width: 85rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  padding: 1.2rem 2.8rem;
  background-color: var(--violet-60);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid var(--violet-60);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: var(--violet-70);
  border-color: var(--violet-70);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(107, 80, 255, 0.3);
}

.button--outline {
  background-color: transparent;
  border-color: var(--violet-60);
  color: var(--violet-60);
}

.button--outline:hover {
  background-color: var(--violet-70);
  border-color: var(--violet-70);
  color: var(--white);
}

.button--white {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.button--white:hover {
  background-color: var(--gray-20);
  border-color: var(--gray-20);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}

.button--small {
  padding: 0.8rem 2rem;
  font-size: 1.4rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 3.2rem;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.nav--scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10rem);
  -webkit-backdrop-filter: blur(10rem);
  border-bottom: 1px solid var(--border-subtle);
}

.nav__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 129rem;
  margin: 0 auto;
  height: 7.2rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  gap: 0.8rem;
}

.nav__brand svg {
  height: 2rem;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  list-style: none;
}

.nav__link {
  color: var(--gray-30);
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-30);
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.2s ease;
  background: none;
  border: none;
}

.nav__dropdown-toggle:hover {
  color: var(--white);
}

.nav__dropdown-toggle svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.nav__dropdown:hover .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1.6rem;
  min-width: 22rem;
  background-color: var(--gray-100);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.8rem);
  transition: all 0.2s ease;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: var(--gray-30);
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav__dropdown-item:hover {
  background-color: var(--gray-90);
  color: var(--white);
}

.nav__dropdown-item svg {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}

/* Hamburger (mobile) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.4rem;
}

.nav__hamburger span {
  display: block;
  width: 2.4rem;
  height: 0.2rem;
  background-color: var(--white);
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 16rem 3.2rem 36rem;
  text-align: center;
  overflow: hidden;
}

/* Hero Background SVG / Circuit Grid */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg svg {
  width: 100%;
  max-width: 192rem;
  height: auto;
  opacity: 0.6;
}

/* Purple Blur */
.hero__blur {
  position: absolute;
  z-index: 0;
  width: 134rem;
  height: 108rem;
  background: radial-gradient(circle, rgba(107, 80, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(6rem);
}

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 80rem;
}

.hero__tag {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  margin-bottom: 2.4rem;
  background: linear-gradient(140deg, rgba(197, 192, 255, 0) 0%, rgba(197, 192, 255, 0.15) 100%);
  border: 1px solid var(--violet-30);
  border-radius: var(--radius-sm);
  color: var(--violet-30);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__title {
  margin-bottom: 2.4rem;
}

.hero__desc {
  color: var(--gray-40);
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 4rem;
}

/* Animated circuit lines */
.hero__lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.circuit-node {
  fill: none;
}

.circuit-line {
  stroke: var(--violet-60);
  fill: none;
  stroke-width: 1;
}

.circuit-line--dim {
  opacity: 0.1;
}

.circuit-line--medium {
  opacity: 0.3;
}

.circuit-line--bright {
  opacity: 0.79;
}

.circuit-dot {
  fill: var(--violet-60);
}

.circuit-pulse {
  fill: var(--violet-60);
  opacity: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0; r: 3; }
  50% { opacity: 0.7; r: 8; }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  position: relative;
  z-index: 2;
  padding: 12rem 0;
}

.section__label {
  display: inline-block;
  color: var(--violet-50);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.6rem;
}

.section__title {
  margin-bottom: 2.4rem;
}

.section__desc {
  color: var(--gray-40);
  font-size: 1.8rem;
  max-width: 48rem;
  margin-bottom: 6.4rem;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  background-color: var(--gray-100);
  position: relative;
  z-index: 2;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.2rem;
  border-right: 1px solid var(--border-subtle);
  color: var(--gray-30);
  font-size: 1.4rem;
  line-height: 1.6;
  min-height: 32rem;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.product-card:last-child {
  border-right: none;
}

.product-card:hover {
  background-color: var(--gray-90);
  color: var(--white);
}

.product-card__tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-card__tag--new {
  background-color: rgba(52, 192, 106, 0.15);
  border-color: var(--green-40);
  color: var(--green-40);
}

.product-card__tag--sold {
  background-color: rgba(197, 192, 255, 0.1);
  border-color: var(--violet-30);
  color: var(--violet-30);
}

.product-card__name {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.product-card__desc {
  color: var(--gray-50);
  margin-bottom: 2.4rem;
}

.product-card__link {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--violet-50);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: gap 0.2s ease;
}

.product-card:hover .product-card__link {
  gap: 1.2rem;
  color: var(--violet-40);
}

/* ============================================
   BONDS SECTION
   ============================================ */
.bonds {
  padding-top: 24rem;
  padding-bottom: 8rem;
}

.bonds__header {
  text-align: center;
  margin-bottom: 6rem;
}

.bonds__box {
  background-color: var(--color-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 6.4rem 9.8rem;
  position: relative;
  overflow: hidden;
}

.bonds__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.bonds__stat {
  text-align: center;
}

.bonds__stat-value {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.bonds__stat-label {
  font-size: 1.4rem;
  color: var(--gray-40);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bonds__divider {
  width: 1px;
  height: 8rem;
  background-color: var(--border-subtle);
}

.bonds__status {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.6rem;
  background-color: rgba(52, 192, 106, 0.1);
  border: 1px solid rgba(52, 192, 106, 0.3);
  border-radius: var(--radius-sm);
  color: var(--green-40);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bonds__status-dot {
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--green-40);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================
   CAPABILITIES SECTION
   ============================================ */
.capabilities {
  padding-top: 6.4rem;
  padding-bottom: 6rem;
}

.capabilities__header {
  text-align: center;
  margin-bottom: 6rem;
}

.capabilities__content {
  background-color: var(--color-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 7.2rem 10rem;
  display: flex;
  justify-content: center;
  gap: 8rem;
  position: relative;
  overflow: hidden;
}

.capability-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 21rem;
  gap: 2.4rem;
}

.capability-item__icon {
  width: 6.4rem;
  height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(197, 192, 255, 0) 0%, rgba(197, 192, 255, 0.1) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.capability-item__icon svg {
  width: 3.2rem;
  height: 3.2rem;
  color: var(--violet-50);
}

.capability-item__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-sans);
}

.capability-item__desc {
  font-size: 1.4rem;
  color: var(--gray-50);
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding-top: 18.7rem;
  padding-bottom: 31rem;
}

.contact__wrap {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
}

.contact__content {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  max-width: 53rem;
}

.contact__info {
  display: flex;
  justify-content: space-between;
  gap: 3.2rem;
}

.contact__info-col h6 {
  margin-bottom: 1.6rem;
}

.contact__info-col p,
.contact__info-col a {
  font-size: 1.4rem;
  color: var(--gray-40);
  line-height: 1.8;
  display: block;
}

.contact__info-col a:hover {
  color: var(--white);
}

/* Form */
.contact__form {
  flex: 1;
  max-width: 50rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form__field {
  display: flex;
  flex-direction: column;
}

.form__label {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gray-30);
  margin-bottom: 0.8rem;
  font-family: var(--font-sans);
}

.form__input,
.form__textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-70);
  padding: 1.2rem 0;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1.6rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
  border-bottom-color: var(--violet-60);
}

.form__textarea {
  min-height: 12rem;
  resize: vertical;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gray-60);
}

.form__button-wrap {
  margin-top: 1.6rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 4rem 0;
  border-top: 1px solid var(--border-subtle);
}

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

.footer__copyright {
  font-size: 1.3rem;
  color: var(--gray-60);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  html { font-size: 55%; }
  
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-card:nth-child(2) {
    border-right: none;
  }
  
  .bonds__box {
    padding: 4rem 4.8rem;
  }
  
  .capabilities__content {
    flex-direction: column;
    align-items: center;
    padding: 4.8rem 4rem;
    gap: 4.8rem;
  }
  
  .contact__wrap {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  html { font-size: 2.4vw; }
  
  h1 { font-size: 4rem; }
  h2 { font-size: 2.8rem; }
  
  .nav__menu {
    display: none;
  }
  
  .nav__hamburger {
    display: flex;
  }
  
  .products__grid {
    grid-template-columns: 1fr;
  }
  
  .product-card {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    min-height: auto;
  }
  
  .product-card:last-child {
    border-bottom: none;
  }
  
  .bonds__inner {
    flex-direction: column;
    gap: 3.2rem;
  }
  
  .bonds__divider {
    width: 80%;
    height: 1px;
  }
  
  .hero {
    min-height: 80vh;
    padding: 12rem 2rem 24rem;
  }
  
  .contact__info {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.4rem; }
  
  .section {
    padding: 6rem 0;
  }
  
  .bonds {
    padding-top: 12rem;
    padding-bottom: 4rem;
  }
  
  .contact {
    padding-top: 12rem;
    padding-bottom: 16rem;
  }
  
  .capabilities__content {
    padding: 3.2rem 2rem;
  }
}

/* Hero blur image */
.hero__blur-img {
  z-index: 0;
  object-fit: contain;
  border-radius: 100%;
  align-self: center;
  width: 134rem;
  height: 108rem;
  position: absolute;
}

/* Contact layout fixes */
.contact__map {
  flex-shrink: 0;
}

.capability-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Bonds see more */
.bonds__action {
  text-align: center;
  margin-top: 3rem;
}


/* ============================================
   PRODUCT CARD IMAGES
   ============================================ */
.product-card__img-wrap {
  width: 100%;
  height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 2rem;
  background: radial-gradient(circle at center, rgba(107,80,255,0.08) 0%, transparent 70%);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__subtitle {
  color: var(--gray-50);
  font-size: 1.2rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
}

/* ============================================
   BONDS BACKGROUND
   ============================================ */
.bonds__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
  border-radius: var(--radius-md);
}

/* ============================================
   CONTACT MAP & FORM OVERLAY
   ============================================ */
.contact__map-img {
  width: 100%;
  max-width: 30rem;
  opacity: 0.2;
  margin-bottom: 3.2rem;
}

.form__shape {
  position: absolute;
  right: -9rem;
  top: 0;
  z-index: 0;
  pointer-events: none;
  filter: blur(3rem);
  width: 80rem;
  height: 90rem;
  max-width: none;
  border-radius: 100%;
  object-fit: cover;
}

/* ============================================
   NAV LOGO
   ============================================ */
.nav__logo-img {
  height: 2.4rem;
  width: auto;
}

/* ============================================
   PRODUCT CARD HOVER REFINEMENT
   ============================================ */
.product-card {
  cursor: pointer;
  min-height: 38rem;
}


/* Logo text */
.nav__brand {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ============================================
   DECK HERO
   ============================================ */
.deck-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-bg);
}
.deck-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.deck-hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 12rem 0 8rem;
  background: linear-gradient(to top, var(--color-bg) 0%, transparent 60%);
}
.deck-hero__title {
  font-size: 5.6rem;
  font-weight: 700;
  color: var(--white);
  max-width: 60rem;
  margin-bottom: 3.2rem;
  line-height: 1.15;
}
.deck-hero__cta {
  display: flex;
  gap: 1.6rem;
}

/* ============================================
   DECK CLOCK STYLES
   ============================================ */
.deck-clock-tabs {
  display: flex;
  gap: 1.6rem;
  margin-bottom: 3.2rem;
}
.deck-clock-tab {
  background: none;
  border: 2px solid rgba(197, 192, 255, 0);
  color: var(--gray-40);
  padding: 1.6rem;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.35s ease;
  font-family: var(--font-sans);
}
.deck-clock-tab:hover,
.deck-clock-tab.active {
  color: var(--white);
  border-color: var(--violet-30);
  background: linear-gradient(140deg, rgba(197, 192, 255, 0) 0%, rgba(197, 192, 255, 0.15) 100%);
}
.deck-clock-display {
  position: relative;
  margin-bottom: 3.2rem;
}
.deck-clock-img {
  width: 100%;
  max-width: 80rem;
  display: none;
  border-radius: var(--radius-sm);
}
.deck-clock-img.active { display: block; }
.deck-clock-desc {
  color: var(--gray-40);
  font-size: 1.8rem;
  max-width: 54rem;
}

/* ============================================
   DECK LIFESTYLE
   ============================================ */
.deck-lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}
.deck-lifestyle-item {
  text-align: left;
}
.deck-lifestyle-img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
}
.deck-lifestyle-item h5 {
  margin-bottom: 1rem;
}
.deck-lifestyle-item p {
  color: var(--gray-40);
  font-size: 1.4rem;
}

/* ============================================
   DECK SIGNALS
   ============================================ */
.deck-signals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
  margin-top: 4rem;
  margin-bottom: 6rem;
}
.deck-signal-card {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.deck-signal-card img {
  width: 100%;
  display: block;
}
.deck-signal-card h5,
.deck-signal-card p {
  padding: 1.2rem 2rem;
}
.deck-signal-card h5 { padding-bottom: 0; }
.deck-signal-card p { color: var(--gray-40); font-size: 1.4rem; padding-top: 0.4rem; }

.deck-trading-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.deck-trading-text h3 { margin-bottom: 1.6rem; font-weight: 400; }
.deck-trading-text h3 strong { font-weight: 700; }
.deck-trading-text p { color: var(--gray-40); }
.deck-trading-cards {
  display: grid;
  gap: 2rem;
}
.deck-trading-card {
  background: var(--gray-100);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 2.4rem;
}
.deck-trading-card h5 { margin-bottom: 0.8rem; }
.deck-trading-card p { color: var(--gray-40); font-size: 1.4rem; }

/* ============================================
   DECK BLOCKCHAIN
   ============================================ */
.deck-blockchain-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}
.deck-blockchain-stats {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.deck-stat h4 { margin-bottom: 1rem; }
.deck-stat p { color: var(--gray-40); font-size: 1.6rem; }
.deck-blockchain-img { width: 100%; border-radius: var(--radius-sm); }

/* ============================================
   DECK PERFORMANCE
   ============================================ */
.deck-performance { text-align: center; }
.deck-performance-img {
  width: 100%;
  max-width: 80rem;
  margin-top: 3.2rem;
  border-radius: var(--radius-sm);
}

/* ============================================
   DECK PRICING
   ============================================ */
.deck-pricing-grid {
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  margin-bottom: 2rem;
}
.deck-pricing-card {
  background: var(--gray-100);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 3.2rem 4.8rem;
  text-align: center;
}
.deck-pricing-flag {
  color: var(--violet-40);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.6rem;
}
.deck-pricing-price {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--white);
}
.deck-pricing-orig {
  color: var(--gray-40);
  text-decoration: line-through;
  margin-bottom: 2rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 600;
  font-family: var(--font-sans);
  padding: 2.4rem 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-icon {
  font-size: 2.4rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 20rem; }
.faq-answer p {
  color: var(--gray-40);
  font-size: 1.5rem;
  padding-bottom: 2.4rem;
}

/* ============================================
   RESPONSIVE DECK
   ============================================ */
@media (max-width: 768px) {
  .deck-hero__title { font-size: 3.2rem; }
  .deck-lifestyle-grid,
  .deck-signals-grid,
  .deck-trading-row,
  .deck-blockchain-content { grid-template-columns: 1fr; }
  .deck-pricing-grid { flex-direction: column; align-items: center; }
}

