/* ==========================================================================
   TapVision Studios - Futuristic Charcoal & Glassmorphism Design System
   Inspired by High-End Luxury Tech & Aerium UI/UX
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@1&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Ultra-Premium Graphite & Ambient Dark Palette */
  --bg-primary: #0b0c10;
  /* Deep Charcoal Black */
  --bg-secondary: #12131a;
  /* Dark Slate Graphite */
  --bg-tertiary: #191b24;
  /* Layered Charcoal */

  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);
  --bg-glass-card: rgba(18, 19, 26, 0.7);

  --accent-white: #ffffff;
  --accent-muted: #9499ab;
  --accent-subtle: #7a8094;
  --border-light: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(255, 255, 255, 0.25);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  /* Ambient Lighting Gradients */
  --grad-hero-spotlight: radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.15) 0%, rgba(11, 12, 16, 0) 65%);
  --grad-card-glow: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);

  /* Shadows & Glassmorphism Effects */
  --glass-backdrop: blur(20px) saturate(190%);
  --shadow-floating: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.05);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.5);

  /* Radius */
  --radius-pill: 9999px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

/* Reset & Global Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #2b2e3a 0%, #161822 30%, #0d0e14 100%);
  background-size: 60px 60px, 60px 60px, 100% 100%;
  background-attachment: fixed;
  color: var(--accent-white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Ambient Radial Glow */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 900px;
  background: radial-gradient(ellipse at 50% 22%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(13, 14, 20, 0) 75%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Typography Styles */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--accent-white);
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  opacity: 0.95;
  letter-spacing: -0.01em;
}

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

/* --------------------------------------------------------------------------
   Floating Glass Navigation Bar (Pill Shape)
   -------------------------------------------------------------------------- */
.header-wrapper {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.header-glass-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  height: 64px;
  padding: 0 24px;
  background: rgba(18, 19, 26, 0.65);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease;
}

.header-glass-pill:hover {
  border-color: var(--border-glow);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.logo-symbol {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-white);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-muted);
  letter-spacing: 0.02em;
}

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

.btn-pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--accent-white);
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-pill-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-pill-cta .arrow-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Hero Section Layout
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 150px;
  padding-bottom: 90px;
  text-align: center;
  position: relative;
}

.hero-header-group {
  max-width: 780px;
  margin: 0 auto 40px;
}

.hero-main-title {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--accent-muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 36px;
  font-weight: 400;
}

/* Community Email Input Capsule */
.community-input-box {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 6px 8px 6px 20px;
  backdrop-filter: var(--glass-backdrop);
  margin-bottom: 24px;
}

.community-input-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  width: 200px;
}

.community-input-box input::placeholder {
  color: rgba(255, 255, 255, 0.65);
  opacity: 1;
}

.community-input-box button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent-white);
  color: #000;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.community-input-box button:hover {
  transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   Form Controls & Input Styling
   -------------------------------------------------------------------------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  width: 100%;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  outline: none;
  transition: all 0.25s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  opacity: 1;
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.community-avatars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--accent-muted);
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  margin-left: -8px;
  background: #333;
}

.avatar-img:first-child {
  margin-left: 0;
}

/* --------------------------------------------------------------------------
   Hero Single Main Showcase Image Container (No Background, No Border)
   -------------------------------------------------------------------------- */
.hero-single-image-container {
  position: relative;
  max-width: 960px;
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-card {
  width: 100%;
  max-width: 840px;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}

.hero-single-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
}

.dual-phones-container {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.phone-wrapper-left {
  position: absolute;
  left: 14%;
  top: 10px;
  transform: perspective(1000px) rotateY(18deg) rotateX(8deg) scale(0.95);
  z-index: 2;
  transition: transform 0.5s ease;
}

.phone-wrapper-right {
  position: absolute;
  right: 14%;
  top: 10px;
  transform: perspective(1000px) rotateY(-18deg) rotateX(8deg) scale(0.95);
  z-index: 2;
  transition: transform 0.5s ease;
}

.phone-wrapper-left:hover {
  transform: perspective(1000px) rotateY(5deg) scale(1);
  z-index: 10;
}

.phone-wrapper-right:hover {
  transform: perspective(1000px) rotateY(-5deg) scale(1);
  z-index: 10;
}

.phone-frame-3d {
  width: 290px;
  height: 560px;
  background: #000;
  border-radius: 44px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-floating);
  overflow: hidden;
  position: relative;
}

.phone-notch-bar {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #12131a;
  border-radius: 16px;
  z-index: 10;
}

.phone-screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Frosted Glass Control Widgets */
.glass-widget {
  position: absolute;
  background: rgba(18, 19, 26, 0.85);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-align: left;
  animation: widgetFloat 7s ease-in-out infinite;
}

.widget-left-top {
  top: 60px;
  left: 2%;
  animation-delay: 0s;
}

.widget-center-mid {
  top: 220px;
  left: 36%;
  animation-delay: 2.5s;
}

.widget-right-top {
  top: 80px;
  right: 2%;
  animation-delay: 4.5s;
}

.widget-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.widget-title {
  font-size: 0.85rem;
  font-weight: 600;
}

.widget-value {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.widget-status-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 6px;
}

@keyframes widgetFloat {

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

  50% {
    transform: translateY(-10px);
  }
}

/* --------------------------------------------------------------------------
   Metrics & Stats Bar (Divided Grid - Aerium Style)
   -------------------------------------------------------------------------- */
.metrics-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-secondary);
}

.metrics-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

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

.metric-col {
  padding: 0 32px;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-col:last-child {
  border-right: none;
}

.metric-sub-desc {
  font-size: 0.875rem;
  color: var(--accent-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.metric-huge-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--accent-white);
}

/* --------------------------------------------------------------------------
   App Showcase Cards Grid
   -------------------------------------------------------------------------- */
.apps-showcase-section {
  padding: 100px 0;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.app-card {
  background: var(--bg-glass-card);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.app-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  background: rgba(25, 27, 36, 0.85);
}

.app-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.app-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid var(--border-light);
}

.app-card-title-group h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.app-category {
  font-size: 0.8rem;
  color: var(--accent-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.app-card-desc {
  color: var(--accent-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.app-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.meta-pill {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  color: var(--accent-muted);
  border: 1px solid var(--border-light);
}

.app-card-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

.store-buttons-group {
  display: flex;
  gap: 10px;
  width: 100%;
}

.btn-store {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-store:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.store-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-explore-link:hover {
  color: #ffffff;
}

/* Feature Spotlight Tabs */
.feature-spotlight-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--accent-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--accent-white);
  border-color: var(--accent-white);
  color: #000;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
}

.tab-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.tab-content.active {
  display: grid;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 32px;
}

.feature-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   Giant Typography Banner Footer (Matching Aerium Reference)
   -------------------------------------------------------------------------- */
.footer-giant-section {
  padding: 100px 0 40px;
  background: #07080a;
  border-top: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.footer-giant-section ul,
.footer-giant-section li {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.footer-logo-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.footer-links-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-muted);
  margin-bottom: 20px;
}

.footer-links-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-links-col a {
  color: var(--accent-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links-col a:hover {
  color: #fff;
}

.giant-watermark-text {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 12vw, 12rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: clamp(0.02em, 2vw, 0.12em);
  text-align: center;
  line-height: 0.9;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
  margin-top: 40px;
  max-width: 100%;
  overflow: hidden;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  color: var(--accent-subtle);
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   Grid Layout Classes
   -------------------------------------------------------------------------- */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.app-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* --------------------------------------------------------------------------
   Responsive Media Breakpoints (Web, iPad & Mobile)
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Responsive Media Breakpoints (Web, iPad & Mobile)
   -------------------------------------------------------------------------- */

/* iPad & Mobile Screens (1024px and below) */
@media (max-width: 1024px) {
  /* Container Padding */
  .container {
    padding: 0 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Header Pill & Navigation */
  .header-wrapper {
    top: 12px !important;
    padding: 0 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .header-glass-pill {
    height: 56px !important;
    padding: 0 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    justify-content: space-between !important;
  }

  /* Hide desktop inline links & CTA inside header pill */
  .nav-links {
    display: none !important;
  }

  .header-actions .btn-pill-cta {
    display: none !important;
  }

  .mobile-menu-btn {
    display: block !important;
    font-size: 1.4rem !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    cursor: pointer !important;
    padding: 4px 8px !important;
  }

  .nav-links.open {
    display: flex !important;
    position: fixed !important;
    top: 76px !important;
    left: 16px !important;
    right: 16px !important;
    background: rgba(12, 13, 18, 0.98) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 20px !important;
    padding: 24px !important;
    flex-direction: column !important;
    gap: 16px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95) !important;
    z-index: 99999 !important;
  }

  .nav-link {
    font-size: 1.1rem !important;
    padding: 10px 12px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
  }

  /* Hero Section */
  .hero-section {
    padding-top: 110px !important;
    padding-bottom: 50px !important;
  }

  .hero-main-title {
    font-size: clamp(1.8rem, 6.5vw, 3rem) !important;
    line-height: 1.18 !important;
  }

  .hero-subtext {
    font-size: 0.95rem !important;
    padding: 0 8px !important;
  }

  .community-input-box {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 10px !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.04) !important;
  }

  .community-input-box input {
    width: 100% !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 40px !important;
    padding: 12px 16px !important;
    box-sizing: border-box !important;
  }

  .community-input-box button {
    width: 100% !important;
    justify-content: center !important;
    border-radius: 40px !important;
    padding: 12px 20px !important;
  }

  .community-avatars-row {
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
    font-size: 0.8rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .community-avatars-row span {
    display: block !important;
    max-width: 290px !important;
    margin: 0 auto !important;
  }

  .hero-single-image-container {
    max-width: 100% !important;
    margin-top: 30px !important;
  }

  /* Metrics Section ("Designed for Scale. Trusted in Real Spaces.") */
  .metrics-section {
    padding: 50px 0 !important;
  }

  .metrics-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 100% !important;
  }

  .metric-col {
    width: 100% !important;
    box-sizing: border-box !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border-light) !important;
    padding: 20px 0 !important;
    text-align: center !important;
  }

  .metric-col:last-child {
    border-bottom: none !important;
  }

  .metric-sub-desc {
    font-size: 0.875rem !important;
    margin-bottom: 12px !important;
    max-width: 300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .metric-huge-number {
    font-size: 3rem !important;
  }

  /* Apps Showcase Grid & Cards */
  .apps-showcase-section {
    padding: 50px 0 !important;
  }

  .apps-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 100% !important;
  }

  .app-card {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 24px 18px !important;
  }

  .store-buttons-group {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .btn-store {
    padding: 10px !important;
    font-size: 0.8rem !important;
  }

  /* Feature Spotlight Tabs */
  .feature-spotlight-section {
    padding: 50px 0 !important;
  }

  .tab-nav {
    flex-direction: column !important;
    width: 100% !important;
    gap: 8px !important;
  }

  .tab-btn {
    width: 100% !important;
    text-align: center !important;
  }

  .tab-content {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 24px !important;
  }

  .tab-content img {
    max-width: 240px !important;
    margin: 0 auto !important;
  }

  .feature-check-list {
    text-align: left !important;
    display: inline-block !important;
  }

  /* Content Grids */
  .two-col-grid,
  .contact-grid,
  .app-detail-grid,
  #app-detail-container > div {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .phone-frame-3d {
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    aspect-ratio: 9 / 18 !important;
  }

  /* Footer */
  .footer-giant-section {
    padding: 60px 0 30px !important;
  }

  .footer-top-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    text-align: center !important;
  }

  .footer-logo-box p {
    margin: 0 auto !important;
  }

  .footer-links-col {
    text-align: center !important;
  }

  .giant-watermark-text {
    font-size: clamp(1.8rem, 8vw, 3.5rem) !important;
    letter-spacing: 0.02em !important;
    margin-top: 24px !important;
  }

  .footer-bottom-bar {
    flex-direction: column !important;
    gap: 14px !important;
    text-align: center !important;
    padding-top: 20px !important;
    font-size: 0.8rem !important;
  }

  .footer-legal-links {
    justify-content: center !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
  }
}