/* =========================
   RESET & BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: system-ui, Arial, sans-serif;
  overflow-x: hidden;
  color: white;
}
/* =========================
   HOME PAGE 
========================= */

.home-shell {
  margin-top: 0px;  
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 300px 2rem 4rem; 
}

.home-hero {
  width: 100%;
  max-width: 920px;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-kicker {
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.82);
}

.build-mode {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.92);

  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  cursor: pointer;

  box-shadow:
    0 0 12px rgba(0, 245, 255, 0.14),
    0 0 14px rgba(168, 85, 247, 0.10);

  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.build-mode:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    0 0 18px rgba(0, 245, 255, 0.28),
    0 0 18px rgba(168, 85, 247, 0.18);
}

.home-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0.5px;
}

.hero-accent {
  text-shadow:
    0 0 16px rgba(0, 245, 255, 0.35),
    0 0 18px rgba(168, 85, 247, 0.18);
}

.hero-sub {
  margin: 0 0 1.6rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  max-width: 70ch;
}

.hero-wink {
  display: inline-block;
  margin-left: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow:
    0 0 16px rgba(0, 245, 255, 0.16),
    0 0 18px rgba(168, 85, 247, 0.12);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 0 22px rgba(0, 245, 255, 0.30),
    0 0 22px rgba(168, 85, 247, 0.20);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}


.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.25rem;
}

.proof-item {
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}

.proof-number {
  display: block;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 0 12px rgba(0, 245, 255, 0.22);
}

.proof-label {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}


.home-section {
  width: 100%;
  max-width: 920px;
}

.section-sub {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.84);
  max-width: 75ch;
}


.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

.service-card {
  border-radius: 18px;
  padding: 1.1rem 1.2rem;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);

  overflow: hidden;
  max-height: 92px; /* collapsed */
  transition: max-height 260ms ease, transform 220ms ease, border-color 220ms ease, background 220ms ease;
  position: relative;
  cursor: default;
}

.service-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.service-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);

  box-shadow:
    0 0 14px rgba(0, 245, 255, 0.18),
    0 0 18px rgba(168, 85, 247, 0.12);

  flex-shrink: 0;
}

.service-icon svg {
  width: 18px;
  height: 18px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.96);
}

.service-teaser {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.service-more {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 200ms ease, transform 200ms ease;
}

/* Hover reveal */
.service-card:hover {
  max-height: 200px;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.service-card:hover .service-more {
  opacity: 1;
  transform: translateY(0);
}

/* Story */
.home-story h2,
.home-cta h2 {
  margin: 0 0 0.9rem;
}

.story-lines p {
  margin: 0.55rem 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.story-lines span {
  display: inline-block;
  width: 2rem;
  color: rgba(0, 245, 255, 0.8);
  font-weight: 700;
}

.story-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

/* CTA */
.home-cta p {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
  max-width: 75ch;
}

/* Build Mode (body class toggle) */
body.build-mode-on .bg-overlay {
  background: rgba(0, 0, 0, 0.55); /* darker = more neon pop */
}

body.build-mode-on .glass-card,
body.build-mode-on .service-card,
body.build-mode-on .proof-item {
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.46),
    0 0 22px rgba(0, 245, 255, 0.16),
    0 0 18px rgba(168, 85, 247, 0.12);
}

/* Responsive */
@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .home-shell {
    padding: 170px 1.25rem 3rem;
  }

  .hero-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }
}
/* =========================
   FEATURED WORK 
========================= */

.featured-shell {
  margin-top: 0px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
  padding: 220px 2rem 4rem;
}

/* Intro card sizing */
.featured-hero,
.featured-positioning {
  width: 100%;
  max-width: 920px;
}

.featured-hero h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.featured-hero p {
  margin: 0.7rem 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
}

.featured-wink {
  color: rgba(255, 255, 255, 0.78);
}

/* Grid */
.featured-grid {
  width: 100%;
  max-width: 920px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* Feature cards */
.feature-card {
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

/* Neon sheen overlay */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 245, 255, 0.18), transparent 45%),
    radial-gradient(circle at 80% 90%, rgba(168, 85, 247, 0.16), transparent 50%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

/* Hover glow */
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.46),
    0 0 22px rgba(0, 245, 255, 0.18),
    0 0 18px rgba(168, 85, 247, 0.14);
}

.feature-card:hover::before {
  opacity: 0.55;
}

/* Headings & notes */
.feature-card h2 {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0.7rem 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
}

.feature-note {
  color: rgba(255, 255, 255, 0.78);
}

/*  Tech tags  */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;

  font-size: 0.85rem;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.88);

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);

  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.22),
    0 0 10px rgba(0, 245, 255, 0.08);

  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

/* Make tags react slightly on hover */
.feature-card:hover .tag {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.26),
    0 0 14px rgba(0, 245, 255, 0.14),
    0 0 12px rgba(168, 85, 247, 0.10);
  transform: translateY(-1px);
}

/* columns on desktop */
@media (min-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile spacing */
@media (max-width: 768px) {
  .featured-shell {
    padding: 170px 1.25rem 3rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .feature-card::before,
  .tag {
    transition: none !important;
  }
}
/* ===== Bottom Logo Ticker (Right -> Left) ===== */
.logo-ticker {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900; /* below sticky header */

  padding: 0.65rem 0;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 -12px 34px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(0, 245, 255, 0.10),
    0 0 14px rgba(168, 85, 247, 0.08);
}

/* Fade edges so the loop looks premium */
.logo-ticker__mask {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* The scrolling strip */
.logo-ticker__track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;

  animation: ticker-scroll 26s linear infinite;
}

/* Logos */
.ticker-logo {
  height: 26px;
  width: auto;
  opacity: 0.86;
  filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.10));
  transition: opacity 180ms ease, transform 180ms ease;
}

.ticker-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Pause animation on hover (nice UX) */
.logo-ticker:hover .logo-ticker__track {
  animation-play-state: paused;
}

/* Right -> Left animation */
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Make sure your page content doesn't hide behind the ticker */
.page-shell {
  padding-bottom: 90px; /* adjust if you change ticker height */
}

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .logo-ticker__track {
    animation: none;
  }
}


/* =========================
   CONTACT PAGE 
========================= */

.contact-shell {
   margin-top: 0px; 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
  padding: 220px 2rem 4rem; 
}

.contact-hero {
  width: 100%;
  max-width: 920px;
}

.contact-hero h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: 0.4px;
}

.contact-sub {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
  max-width: 75ch;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Details row */
.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.detail {
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}

.detail-label {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0.25rem;
}

.detail-value {
  display: inline-block;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
}

.detail-value:hover {
  text-decoration: underline;
}

/* Fun card */
.contact-fun {
  width: 100%;
  max-width: 920px;
}

.contact-fun h2,
.contact-prompt h2 {
  margin: 0 0 0.9rem;
}

.fun-list {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
}

.fun-list li {
  margin: 0.4rem 0;
}

.fun-foot {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}

/* Prompt card */
.contact-prompt {
  width: 100%;
  max-width: 920px;
}

.prompt-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.75rem 0 1.25rem;
}

.prompt-chip {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 22px rgba(0,0,0,0.22);
  user-select: none;
}

.prompt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Make details 3-up on larger screens */
@media (min-width: 900px) {
  .contact-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-shell {
    padding: 170px 1.25rem 3rem;
  }
}
/* =========================
   VIDEO BACKGROUND
========================= */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: -2;
}


/* =========================
   HEADER + CENTERED NAV
========================= */
/* Sticky nav with smooth fade */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: opacity 300ms ease, transform 300ms ease;
}

/* Hidden state (toggled by JS) */
.site-header.nav-hidden {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

/* Glass container */
.glass-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  padding: 18px 36px;

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Brand link wrapper */
.brand {
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Logo image */
.logo {
  height: 100px;
  opacity: 0.6;
  width: auto;
  display: block;
  transition: 0.3s ease; 
}

/* Glow on hover */
.brand:hover .logo {
  filter:
    drop-shadow(0 0 6px #00eaff)
    drop-shadow(0 0 12px #00eaff)
    drop-shadow(0 0 18px #ff00ff);
}


/* =========================
   NAV LINKS
========================= */
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 12px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.18);
  filter:
    drop-shadow(0 0 6px #00eaff)
    drop-shadow(0 0 12px #00eaff)
    drop-shadow(0 0 18px #ff00ff);
}

.nav-links a.active {
  background: rgba(255,255,255,0.28);
  border: 1px solid rgba(255,255,255,0.3);
}


/* =========================
   PAGE CONTENT SPACING
========================= */
.page-shell {
  min-height: 100vh;
  padding-top: 130px; 
}


/* =========================
   MOBILE NAV TOGGLE BUTTON
========================= */
.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.10);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 7px 10px;
  background: white;
  border-radius: 2px;
}
/* =========================
   ABOUT PAGE (FUTURISTIC GLASS)
========================= */

/* Layout: stack sections, center, clear navbar */
.about-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
  padding: 200px 2rem 4rem;
}

/* Base glass surface */
.glass-card {
  width: 100%;
  max-width: 820px;
  padding: 3rem 3rem;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;

  color: #ffffff;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Futuristic subtle sheen + neon edge glow */
.glass-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 20% 10%, rgba(0, 245, 255, 0.18), transparent 45%),
              radial-gradient(circle at 80% 90%, rgba(168, 85, 247, 0.16), transparent 50%);
  pointer-events: none;
  opacity: 0.9;
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
  box-shadow:
    0 0 22px rgba(0, 245, 255, 0.10),
    0 0 30px rgba(168, 85, 247, 0.08);
  opacity: 0.9;
}

.about-card h1 {
  font-size: 1.9rem;
  letter-spacing: 3px;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
}

.about-card p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.86);
}

/* ===== OUR VALUES SECTION ===== */
.values-section {
  width: 100%;
  max-width: 820px;
}

.section-title {
  margin: 0 0 1.1rem;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 0 14px rgba(0, 245, 255, 0.18);
}

/* Grid layout */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

/* ===== VALUE CARDS (accordion + futuristic glass) ===== */
.value-card {
  width: 100%;
  border-radius: 18px;
  padding: 1rem 1.2rem;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;

  overflow: hidden;
  max-height: 62px; /* collapsed */
  transition: max-height 260ms ease, transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
  position: relative;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.12), rgba(168, 85, 247, 0.10));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

/* Header (icon + title) */
.value-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Futuristic icon container */
.value-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 14px rgba(0, 245, 255, 0.22),
    0 0 22px rgba(168, 85, 247, 0.16);

  flex-shrink: 0;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.value-icon svg {
  width: 18px;
  height: 18px;
}

/* Title */
.value-card h3 {
  margin: 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.96);
}

/* Body text hidden by default */
.value-card p {
  margin: 0.85rem 0 0;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);

  opacity: 0;
  transform: translateY(6px);
  transition: opacity 200ms ease, transform 200ms ease;
}

/* Hover = subtle lift/glow (still nice on desktop) */
.value-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.38),
    0 0 18px rgba(0, 245, 255, 0.12),
    0 0 16px rgba(168, 85, 247, 0.10);
}

.value-card:hover::before {
  opacity: 0.35;
}

.value-card:hover .value-icon {
  transform: scale(1.06);
  box-shadow:
    0 0 20px rgba(0, 245, 255, 0.45),
    0 0 28px rgba(168, 85, 247, 0.30);
}

/* Accordion open state (JS toggles .is-open) */
.value-card.is-open {
  max-height: 240px; /* allows longer text */
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.42),
    0 0 22px rgba(0, 245, 255, 0.14),
    0 0 18px rgba(168, 85, 247, 0.12);
}

.value-card.is-open::before {
  opacity: 0.45;
}

.value-card.is-open p {
  opacity: 1;
  transform: translateY(0);
}

.value-card.is-open .value-icon {
  transform: scale(1.08);
  box-shadow:
    0 0 22px rgba(0, 245, 255, 0.55),
    0 0 30px rgba(168, 85, 247, 0.34);
}

.value-card.is-open h3 {
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.45);
}

/* Focus styles (keyboard) */
.value-card:focus-visible {
  outline: 2px solid rgba(0, 245, 255, 0.35);
  outline-offset: 4px;
}

/* 2 columns on wider screens */
@media (min-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Responsive padding */
@media (max-width: 768px) {
  .glass-card {
    padding: 2rem;
  }

  .about-card h1 {
    font-size: 1.55rem;
  }

  .about-shell {
    padding: 170px 1.25rem 3rem;
  }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  .value-card,
  .value-card p,
  .value-icon {
    transition: none !important;
  }
}
/* Hover preview: expand + reveal description */
.value-card:hover {
  max-height: 240px;
}

.value-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE MOBILE MENU
========================= */
@media (max-width: 760px) {

  .nav-toggle {
    display: block;
  }

  .glass-nav {
    width: 90%;
    padding: 16px 18px;
  }

  /* slightly smaller logo on mobile */
  .logo {
    height: 56px;
    opacity: 0.8;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 8px;
    gap: 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }

  
}