/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  background: #fff;
  color: #101114;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.cta-title {
  font-family: 'DM Sans', sans-serif;
}

/* Layout */
.container-x {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Full viewport sections */
.snap-section {
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}

:target {
  scroll-margin-top: 96px;
}

/* Background Effects */
.bg-grain {
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.06) 1px, transparent 0);
  background-size: 28px 28px;
}

.bg-gradient-fade {
  background: none;
}

/* Light Beam Effect */
.hero-light-beam {
  display: none;
}

/* Enhanced Shadows for Depth - layered for realism */
.shadow-cast {
  filter: none;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.5s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.5s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-slide-left.in-view,
.animate-slide-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ====================================
   Device Frame - Centered Group
   Customize screenshot alignment here:
   - width/height: screenshot size
   - transform: fine-tune positioning
   - border-radius: corner rounding
   ==================================== */

.device-frame {
  position: relative;
  display: inline-block;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

/* Frame PNG - Top Layer */
.device-frame>img:first-child {
  display: block;
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
}

/* Screenshot - Behind Frame */
.device-screen {
  position: absolute;
  /* Center the screenshot: (100-92)/2 = 4% */
  top: 4%;
  left: 4%;
  /* Adjust these values to fit your frame */
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: center;
  z-index: 1;
  /* Smaller radius to avoid corner clipping */
  border-radius: 10%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Buttons */
.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

/* Hide download images initially to prevent flicker before JS replaces them */
.btn-download img,
.header-btn img {
  visibility: hidden;
}

.btn-download:active {
  transform: scale(0.95);
}

/* Header */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

#site-header.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#header-blur {
  position: absolute;
  inset: 0;
  bottom: -3rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  position: relative;
  z-index: 10;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 0;
}

.header-logo img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-logo span {
  font-weight: 600;
  color: #17171c;
  font-size: 1.125rem;
}

/* Hide text on mobile, show only icon */
@media (max-width: 767px) {
  .header-logo span {
    display: none;
  }

  .header-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .container-x.header-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.header-btn {
  background: #17171c;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.header-btn:hover {
  background: #27272f;
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: visible;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
  height: calc(100vh - 6rem);
  padding: 1rem 0;
}



.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  order: 2;
  padding: 0.5rem;
  flex-shrink: 0;
}

.hero-title {
  /* Portrait / Base Mobile Size */
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #17171c;
  max-width: 28rem;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  text-align: center;
}

.hero-title .brand-text {
  background: linear-gradient(135deg, #005493 0%, #537FB4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
  padding-bottom: 0.2em;
}

.hero-download img {
  height: 2.5rem;
}

.hero-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
  padding: 0.5rem;
  min-height: 0;
  flex: 1;
}

/* Device Size Container */
.hero-phone-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: 0;
  /* Use vh for consistent sizing on mobile */
  height: 65vh;
  aspect-ratio: 9 / 19;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Safari iOS aspect-ratio fix */
@supports not (aspect-ratio: 9 / 19) {
  .hero-phone-wrapper {
    height: 65vh;
    width: calc(65vh * (9/19));
  }
}

.hero-phone-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: auto;
}

/* Frame PNG - Top Layer */
.hero-phone-frame>img:first-child {
  display: block;
  position: relative;
  z-index: 10;
  height: 100%;
  width: auto;
}

/* Landscape Mobile Fix: Text Left, Phone Right, Desktop-like feel */
@media (orientation: landscape) and (max-height: 600px) and (max-width: 1023px) {
  .hero {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    height: 100vh;
    padding: 0;
  }

  .hero-text {
    align-items: flex-end;
    /* Push text towards center (phone) or start? Desktop is start. */
    align-items: flex-start;
    text-align: left;
    order: 1;
    /* Text First */
    padding: 0 1rem;
  }

  .hero-title {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    max-width: none;
    line-height: 1.1;
  }

  .hero-phone {
    order: 2;
    /* Phone Second */
    padding: 0;
    justify-content: flex-start;
    /* Clean alignment next to text */
    height: 100vh;
  }

  .hero-phone-wrapper {
    /* Use vh to fit nicely */
    height: 85vh;
    width: auto;
    max-height: none;
    aspect-ratio: 9/19;
  }
}


/* How It Works Section */
.how-section {
  display: none;
  background: white;
  position: relative;
  overflow: hidden;
}

.how-accent-1,
.how-accent-2,
.how-accent-3 {
  display: none;
}

.how-content {
  position: relative;
  z-index: 10;
  padding: 2rem 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.how-timeline {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 8vh, 6rem);
  flex: 1;
  justify-content: center;
}

.how-step {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vmin, 5rem);
  padding: 0 clamp(1rem, 4vw, 3rem);
  border-bottom: none;
  min-height: 0;
}

.how-step:last-child {
  border-bottom: none;
}

/* Unified Alternating Layout */
.how-step-2 {
  flex-direction: row-reverse;
}

.how-step-2 .how-step-text {
  text-align: right;
}

.how-step-number {
  flex-shrink: 0;
  position: relative;
}

.how-step-number span {
  font-size: clamp(5rem, 16vmin, 12rem);
  font-weight: 900;
  line-height: 0.8;
  background: linear-gradient(to bottom, #d7d7dc 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
  transition: all 0.7s ease;
}

.how-step:hover .how-step-number span {
  background: linear-gradient(to bottom, rgba(47, 116, 255, 0.6) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.how-step-2:hover .how-step-number span {
  background: linear-gradient(to bottom, rgba(168, 85, 247, 0.6) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.how-step-3:hover .how-step-number span {
  background: linear-gradient(to bottom, rgba(6, 182, 212, 0.6) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.how-step-text {
  flex: 1;
  text-align: left;
}

.how-step h3 {
  font-size: clamp(1.5rem, 3.5vmin, 2.5rem);
  font-weight: 700;
  color: #17171c;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.how-step:hover h3 {
  color: #1f56e8;
}

.how-step-2:hover h3 {
  color: #a855f7;
}

.how-step-3:hover h3 {
  color: #06b6d4;
}

.how-step p {
  font-size: clamp(1rem, 1.8vmin, 1.35rem);
  color: #6a6a77;
  max-width: 35rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.how-step:hover p {
  color: #3b3b45;
}



/* Features Section */
.features-section {
  display: none;
  padding: 4rem 0;
  background: #f7f7f8;
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 100vh;
}

/* Decorative floating shapes */
.features-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
}

.features-decor-1,
.features-decor-2,
.features-decor-3 {
  display: none;
}

@keyframes float-1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -20px) scale(1.05);
  }
}

@keyframes float-2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-25px, 15px) scale(1.08);
  }
}

@keyframes float-3 {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -48%) scale(1.03);
  }
}

.features-content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-grid {
  --grid-size: min(100%, calc(100vh - 8rem));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
  grid-auto-flow: dense;
  width: var(--grid-size);
  height: var(--grid-size);
}

.feature-card {
  background: white;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

.feature-bento {
  padding: 2.5vmin;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Default desktop layout: 3 columns, large card spans 2x2 */
.feature-large {
  grid-column: span 2;
  grid-row: span 2;
}

.feature-small {
  grid-column: span 1;
  grid-row: span 1;
}

.feature-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.feature-tall {
  grid-column: span 1;
  grid-row: span 1;
}

/* Two-column layout for wide/tall cards */
.feature-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 100%;
  align-items: center;
}

.feature-art-col {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.feature-wide .feature-two-col {
  grid-template-columns: 1.2fr 0.8fr;
}

.feature-tall .feature-two-col {
  display: flex;
  flex-direction: column-reverse;
  /* Art on top (reverse because art is 2nd in DOM? No art is 1st in DOM? Check HTML) */
  /* HTML: feature-two-col > feature-art-col (1st), feature-bento-text (2nd) */
  /* If I want Art top, Text bottom. Flex-direction: column. Art is 1st. Text 2nd. */
  /* If I want Text top? Usually Feature cards have text top. */
  /* Let's try column-reverse to put text (2nd) on bottom? No, column puts 1st on top. */
  /* Let's stick to column (Art Top, Text Bottom) or column-reverse (Text Top, Art Bottom). */
  /* Most small cards are Text Top? feature-small has feature-tag top. */
  /* Let's use column-reverse to pull Text (index 1) to Top? No, Flex order. */
  /* Let's just use flex-direction: column. Art Top. Text Bottom. */
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
}

.feature-tall .feature-art-col {
  flex: 1;
  width: 100%;
}

.feature-tall .feature-bento-text {
  flex: 0 0 auto;
  width: 100%;
  padding-top: 0;
}

/* 2-column layout (tablet + mobile) */
@media (max-width: 1023px) {
  .features-section {
    height: auto;
    max-height: none;
    min-height: 100vh;
  }

  .features-content {
    display: block;
  }

  .features-grid {
    --grid-size: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 2;
    max-height: none;
  }

  .feature-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .feature-large-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .feature-large-right .device-frame {
    width: 80%;
    max-width: 180px;
  }

  .feature-large-left .feature-bento-device {
    display: none;
  }

  /* All other cards become 1x1 */
  .feature-small,
  .feature-wide,
  .feature-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .feature-wide .feature-two-col,
  .feature-tall .feature-two-col {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .feature-wide .feature-bento-text,
  .feature-tall .feature-bento-text {
    text-align: center;
  }
}

/* Small mobile adjustments */
@media (max-width: 600px) {
  .features-section {
    padding: 2rem 0;
  }

  .features-grid {
    gap: 0.75rem;
  }

  .feature-bento {
    padding: 1rem;
  }

  .feature-large-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }

  .feature-large-right .device-frame {
    width: 50%;
    max-width: 140px;
  }

  .feature-bento-text h3 {
    font-size: 1rem;
  }

  .feature-bento-text p {
    font-size: 0.8rem;
  }

  .feature-tag {
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
  }

  .feature-highlights {
    margin: 0.75rem 0;
    gap: 0.4rem;
  }

  .feature-highlights li {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
  }
}

.feature-bento-text h3 {
  font-weight: 700;
  font-size: clamp(1rem, 2.5vmin, 2rem);
  color: #17171c;
  margin-bottom: 0.75vmin;
  transition: color 0.3s ease;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.feature-bento-text p {
  color: #6a6a77;
  font-size: clamp(0.75rem, 1.75vmin, 1.25rem);
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.feature-text-bottom {
  margin-top: auto;
}

.feature-text-right {
  margin-left: auto;
  text-align: right;
}

/* Bento Device Container */
.feature-bento-device {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 20;
}

.feature-bento-device .device-frame {
  width: 28vmin;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 20;
}

/* Device Glow Effect */
.feature-device-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: -1;
}

.feature-card:hover .feature-device-glow {
  opacity: 0.6;
  transform: scale(1.1);
}

/* Base Feature Tag */
.feature-tag {
  display: inline-block;
  font-size: 1.25vmin;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5vmin 1.5vmin;
  border-radius: 9999px;
  margin-bottom: 1.5vmin;
  background: rgba(0, 0, 0, 0.05);
  color: #6a6a77;
  transition: all 0.3s ease;
}

/* Accent Colors */
.feature-accent-blue .feature-device-glow {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.feature-accent-blue .feature-tag {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.feature-accent-blue:hover .feature-bento-text h3 {
  color: #1d4ed8;
}

.feature-accent-purple .feature-device-glow {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.feature-accent-purple .feature-tag {
  background: rgba(168, 85, 247, 0.1);
  color: #9333ea;
}

.feature-accent-purple:hover .feature-bento-text h3 {
  color: #7c3aed;
}

.feature-accent-cyan .feature-device-glow {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.feature-accent-cyan .feature-tag {
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
}

.feature-accent-cyan:hover .feature-bento-text h3 {
  color: #0891b2;
}

.feature-accent-orange .feature-device-glow {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.feature-accent-orange .feature-tag {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
}

.feature-accent-orange:hover .feature-bento-text h3 {
  color: #ea580c;
}

.feature-accent-green .feature-device-glow {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.feature-accent-green .feature-tag {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.feature-accent-green:hover .feature-bento-text h3 {
  color: #16a34a;
}

/* Device Positioning - Offset to show half */
.feature-device-right {
  right: -15%;
  bottom: 10%;
  transform: rotate(-5deg);
}

.feature-card:hover .feature-device-right .device-frame {
  transform: rotate(2deg) translateX(-8px);
}

.feature-device-bottom-peek {
  bottom: -62%;
  left: 50%;
  transform: translateX(-50%);
}

.feature-card:hover .feature-device-bottom-peek .device-frame {
  transform: translateY(-24px);
}

.feature-device-top-peek {
  top: -62%;
  left: 50%;
  transform: translateX(-50%);
}

.feature-card:hover .feature-device-top-peek .device-frame {
  transform: translateY(24px);
}

.feature-device-tilted {
  right: -10%;
  bottom: -20%;
  transform: rotate(12deg);
}

.feature-card:hover .feature-device-tilted .device-frame {
  transform: rotate(-3deg) scale(1.02);
}

.feature-device-left {
  left: -15%;
  top: 50%;
  transform: translateY(-50%) rotate(5deg);
}

.feature-card:hover .feature-device-left .device-frame {
  transform: rotate(-2deg) translateX(8px);
}

/* Card-specific sizing */
.feature-large .feature-bento-device .device-frame {
  width: 220px;
}

.feature-small .feature-bento-device .device-frame {
  width: 160px;
}

.feature-wide .feature-bento-device .device-frame {
  width: 180px;
}

.feature-tall .feature-bento-device .device-frame {
  width: 200px;
}

/* Large Card Showcase Layout */
.feature-large-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  gap: 1rem;
}

.feature-large-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.feature-large-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-large-right .device-frame {
  width: 80%;
  max-width: 200px;
}

.feature-large-left .feature-bento-device {
  position: relative;
  margin-top: auto;
}

.feature-large-left .feature-bento-device .device-frame {
  width: 120px;
  margin-left: -20px;
  margin-bottom: -40px;
}

/* Feature Highlights List */
.feature-highlights {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.feature-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #374151;
  padding: 0.625rem 0.875rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.04) 0%, rgba(34, 197, 94, 0.02) 100%);
  border-radius: 0.625rem;
  border-left: 3px solid rgba(34, 197, 94, 0.4);
  transition: all 0.3s ease;
}

.feature-highlights li:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.04) 100%);
  border-left-color: #22c55e;
  transform: translateX(4px);
}

.feature-highlights svg {
  width: 1.125rem;
  height: 1.125rem;
  padding: 0.125rem;
  color: white;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(34, 197, 94, 0.3);
}

.feature-highlights span {
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Format Grid */
.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.format-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(59, 130, 246, 0.02) 100%);
  border-radius: 0.625rem;
  border: 1px solid rgba(59, 130, 246, 0.12);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.format-item:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.06) 100%);
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.format-icon {
  font-size: 0.5rem;
  color: white;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.format-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e40af;
  letter-spacing: -0.01em;
}

.feature-card:hover .format-item {
  transform: translateY(-2px);
}

/* Large Card Device Position */
.feature-device-right-large {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
}

.feature-device-right-large .device-frame {
  width: 180px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .feature-device-right-large .device-frame {
  transform: rotate(-3deg) scale(1.02);
}

.feature-device-right-large .feature-device-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  filter: blur(50px);
  opacity: 1;
  z-index: -1;
}

/* Cast Icons (Universal Remote Card) */
.feature-cast-icons {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 5;
}

.cast-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.cast-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 12px;
  color: #9333ea;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cast-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-card:hover .cast-icon {
  transform: scale(1.1) translateY(-4px);
  background: rgba(168, 85, 247, 0.15);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.2);
}

.feature-card:hover .airplay-icon {
  transform: scale(1.1) translateY(-4px) rotate(-5deg);
}

.feature-card:hover .chromecast-icon {
  transform: scale(1.1) translateY(-4px) rotate(5deg);
}

/* Playback Icons (Wide Card) */
.feature-playback-icons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 5;
}

.playback-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250%;
  height: 250%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, rgba(251, 146, 60, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(25px);
  pointer-events: none;
  transition: all 0.4s ease;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.playback-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: 50%;
  color: #f97316;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(4px);
}

.playback-icon svg {
  width: 1rem;
  height: 1rem;
}

.playback-icon.icon-play {
  width: 3.25rem;
  height: 3.25rem;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
  border: none;
  color: white;
  box-shadow:
    0 4px 12px rgba(249, 115, 22, 0.3),
    0 8px 24px rgba(249, 115, 22, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: pulse-play 2s ease-in-out infinite;
}

@keyframes pulse-play {

  0%,
  100% {
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3), 0 8px 24px rgba(249, 115, 22, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4), 0 12px 32px rgba(249, 115, 22, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

.playback-icon.icon-play svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 2px;
}

.playback-icon.icon-small {
  width: 1.75rem;
  height: 1.75rem;
  background: rgba(249, 115, 22, 0.06);
}

.playback-icon.icon-small svg {
  width: 0.75rem;
  height: 0.75rem;
}

.feature-card:hover .playback-icon {
  transform: scale(1.1);
}

.feature-card:hover .playback-icon-glow {
  opacity: 1;
  filter: blur(30px);
}

.feature-card:hover .icon-play {
  transform: scale(1.15);
  animation: none;
  box-shadow:
    0 6px 20px rgba(249, 115, 22, 0.4),
    0 16px 40px rgba(249, 115, 22, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-card:hover .icon-rewind {
  transform: translateX(-3px) scale(1.1);
}

.feature-card:hover .icon-forward {
  transform: translateX(3px) scale(1.1);
}

/* Animated Cursor Design (Tall Card) */
.feature-cursor-design {
  position: relative;
  width: 100px;
  height: 100px;
  z-index: 5;
}

.cursor-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, rgba(74, 222, 128, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
  animation: cursor-glow-pulse 3s ease-in-out infinite;
}

@keyframes cursor-glow-pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

.cursor-pointer {
  position: absolute;
  top: 20%;
  left: 25%;
  width: 32px;
  height: 32px;
  color: #16a34a;
  filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.4));
  animation: cursor-move 4s ease-in-out infinite;
  z-index: 10;
}

.cursor-pointer svg {
  width: 100%;
  height: 100%;
}

@keyframes cursor-move {
  0% {
    transform: translate(0, 0) scale(1);
  }

  10% {
    transform: translate(0, 0) scale(0.85);
  }

  15% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(20px, 15px) scale(1);
  }

  35% {
    transform: translate(20px, 15px) scale(0.85);
  }

  40% {
    transform: translate(20px, 15px) scale(1);
  }

  50% {
    transform: translate(35px, 5px) scale(1);
  }

  60% {
    transform: translate(35px, 5px) scale(0.85);
  }

  65% {
    transform: translate(35px, 5px) scale(1);
  }

  75% {
    transform: translate(15px, 25px) scale(1);
  }

  85% {
    transform: translate(15px, 25px) scale(0.85);
  }

  90% {
    transform: translate(15px, 25px) scale(1);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

.cursor-trail {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.6) 0%, rgba(34, 197, 94, 0.3) 100%);
  animation: trail-fade 4s ease-in-out infinite;
}

.trail-1 {
  width: 12px;
  height: 12px;
  top: 35%;
  left: 40%;
  animation-delay: -0.15s;
}

.trail-2 {
  width: 8px;
  height: 8px;
  top: 45%;
  left: 55%;
  opacity: 0.6;
  animation-delay: -0.3s;
}

.trail-3 {
  width: 5px;
  height: 5px;
  top: 40%;
  left: 68%;
  opacity: 0.4;
  animation-delay: -0.45s;
}

@keyframes trail-fade {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }

  25% {
    transform: translate(20px, 15px) scale(0.9);
    opacity: 0.4;
  }

  50% {
    transform: translate(35px, 5px) scale(0.8);
    opacity: 0.3;
  }

  75% {
    transform: translate(15px, 25px) scale(0.85);
    opacity: 0.5;
  }
}

.cursor-ripple {
  position: absolute;
  top: 18%;
  left: 22%;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(34, 197, 94, 0.5);
  border-radius: 50%;
  animation: ripple-tap 4s ease-out infinite;
  pointer-events: none;
  transform-origin: top left;
}

.cursor-ripple::before,
.cursor-ripple::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(34, 197, 94, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}

.cursor-ripple::before {
  animation: ripple-tap 4s ease-out infinite;
  animation-delay: 1s;
}

.cursor-ripple::after {
  animation: ripple-tap 4s ease-out infinite;
  animation-delay: 2s;
}

@keyframes ripple-tap {

  0%,
  9% {
    transform: translate(0, 0) scale(0);
    opacity: 0;
  }

  10% {
    transform: translate(0, 0) scale(0.3);
    opacity: 0.8;
  }

  20% {
    transform: translate(0, 0) scale(1.5);
    opacity: 0;
  }

  25%,
  34% {
    transform: translate(20px, 15px) scale(0);
    opacity: 0;
  }

  35% {
    transform: translate(20px, 15px) scale(0.3);
    opacity: 0.8;
  }

  45% {
    transform: translate(20px, 15px) scale(1.5);
    opacity: 0;
  }

  50%,
  59% {
    transform: translate(35px, 5px) scale(0);
    opacity: 0;
  }

  60% {
    transform: translate(35px, 5px) scale(0.3);
    opacity: 0.8;
  }

  70% {
    transform: translate(35px, 5px) scale(1.5);
    opacity: 0;
  }

  75%,
  84% {
    transform: translate(15px, 25px) scale(0);
    opacity: 0;
  }

  85% {
    transform: translate(15px, 25px) scale(0.3);
    opacity: 0.8;
  }

  95%,
  100% {
    transform: translate(15px, 25px) scale(1.5);
    opacity: 0;
  }
}

.feature-card:hover .cursor-pointer {
  animation: none;
  transform: translate(30px, 10px) scale(1.1);
  color: #22c55e;
}

.feature-card:hover .cursor-trail {
  animation: none;
  opacity: 0;
}

.feature-card:hover .cursor-ripple {
  animation: ripple-expand 1s ease-out infinite;
  animation-delay: 0s;
}

.feature-card:hover .cursor-glow {
  opacity: 1;
  filter: blur(25px);
}

/* Responsive adjustments for new elements */
@media (min-width: 768px) {
  .playback-icon {
    width: 3rem;
    height: 3rem;
  }

  .playback-icon.icon-play {
    width: 4rem;
    height: 4rem;
  }

  .playback-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .playback-icon.icon-play svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .feature-cursor-design {
    width: 120px;
    height: 120px;
    left: 1.5rem;
  }

  .cursor-pointer {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 1024px) {
  .feature-playback-icons {
    gap: 1rem;
    right: 2rem;
  }

  .playback-icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .playback-icon.icon-play {
    width: 5rem;
    height: 5rem;
  }

  .playback-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .playback-icon.icon-play svg {
    width: 2rem;
    height: 2rem;
  }

  .feature-cursor-design {
    width: 140px;
    height: 140px;
    left: 2rem;
  }

  .cursor-pointer {
    width: 40px;
    height: 40px;
  }

  .trail-1 {
    width: 14px;
    height: 14px;
  }

  .trail-2 {
    width: 10px;
    height: 10px;
  }
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Pulse Signal Container */
.cta-signal-container {
  position: relative;
  width: 10rem;
  height: 10rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Signal Pulse Rings */
.cta-signal-pulse {
  position: absolute;
  /* Explicit centering for Safari */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 1px solid rgba(83, 127, 180, 0.4);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  will-change: transform, opacity;
}

.pulse-1 {
  animation: cta-pulse 6s ease-out infinite;
  animation-delay: 0s;
}

.pulse-2 {
  animation: cta-pulse 6s ease-out infinite;
  animation-delay: 1.5s;
}

.pulse-3 {
  animation: cta-pulse 6s ease-out infinite;
  animation-delay: 3s;
}

.pulse-4 {
  animation: cta-pulse 6s ease-out infinite;
  animation-delay: 4.5s;
}

@keyframes cta-pulse {
  0% {
    opacity: 0.5;
    transform: scale(0.4);
  }

  100% {
    opacity: 0;
    transform: scale(5.5);
  }
}

/* App Icon in CTA */
.cta-app-icon {
  position: relative;
  z-index: 10;
  width: 8rem;
  height: 8rem;
  flex-shrink: 0;
  border-radius: 2rem;
  box-shadow: 0 12px 40px rgba(31, 86, 232, 0.25);
}

.cta-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Match hero title size */
.cta-title {
  position: relative;
  z-index: 5;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: black;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: #6a6a77;
  margin-bottom: 2.5rem;
  max-width: 28rem;
}

.cta-buttons {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.cta-btn {
  background: transparent;
  border-radius: 0.75rem;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: none;
  position: relative;
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Match hero button size */
.cta-btn img {
  height: 3rem;
  display: block;
}

/* Footer */
#site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

#site-footer.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#footer-blur {
  position: absolute;
  inset: 0;
  top: -3rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
}

.footer-content {
  padding: 1.25rem 0;
  position: relative;
  z-index: 10;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: #6a6a77;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #17171c;
}

.footer-divider {
  color: #c4c4cc;
  font-size: 0.75rem;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .cta-title {
    font-size: 2.25rem;
  }

  .cta-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .feature-bento-text h3 {
    font-size: 1.25rem;
  }

  .feature-large .feature-bento-device .device-frame {
    width: 280px;
  }

  .feature-device-right {
    right: -8%;
    bottom: 5%;
  }

  .feature-device-tilted {
    right: 5%;
    bottom: -25%;
  }

  /* Large card showcase - tablet */
  .feature-showcase {
    flex-direction: row;
    gap: 0;
  }

  .showcase-left {
    flex: 0 0 var(--showcase-split);
    justify-content: center;
    padding-right: 1.5rem;
  }

  .showcase-right {
    position: absolute;
    top: 0;
    bottom: 0;
    min-height: auto;
    left: var(--showcase-split);
    width: calc(100% - var(--showcase-split));
    justify-content: flex-end;
    padding: 1.5rem;
    transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
      width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
      box-shadow 0.4s ease;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 246, 255, 0.92) 100%);
  }

  .feature-showcase:hover .showcase-right {
    left: 0;
    width: 100%;
  }

  .feature-showcase:hover .showcase-left {
    opacity: 0.12;
    transform: translateX(-8px);
  }

  .showcase-hidden {
    justify-content: flex-end;
    align-content: center;
    padding: 1.5rem 1.5rem 1.5rem 40%;
  }

  .showcase-device .device-frame {
    width: 200px;
  }

  .diagram-icon {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

  .hero-text {
    align-items: flex-start;
    order: 1;
    padding: 2rem;
  }

  .hero-title {
    font-size: 3.75rem;
    margin-bottom: 2rem;
    text-align: left;
  }

  .hero-download img {
    height: 3.5rem;
  }

  .hero-phone {
    order: 2;
    padding: 2rem;
  }

  .hero-phone-wrapper {
    /* Reset max constraints to let height-based scaling work */
    max-width: none;
    max-height: none;
    height: 90%;
    /* Increase relative height for larger screens */
  }

  .how-step h3 {
    font-size: 2.25rem;
  }

  /* Bento desktop sizing - Use VMIN to scale */
  .feature-bento {
    padding: 2.5vmin;
  }

  .feature-bento-text h3 {
    font-size: 2.5vmin;
    margin-bottom: 0.75vmin;
  }

  .feature-bento-text p {
    font-size: 1.75vmin;
  }

  .feature-tag {
    font-size: 1.25vmin;
    padding: 0.5vmin 1.25vmin;
  }

  /* Ensure card-specific device sizes use VMIN */
  .feature-large .feature-bento-device .device-frame {
    width: 32vmin;
  }

  .feature-small .feature-bento-device .device-frame {
    width: 28vmin;
  }

  .feature-wide .feature-bento-device .device-frame {
    width: 30vmin;
  }

  .feature-tall .feature-bento-device .device-frame {
    width: 32vmin;
  }

  .feature-device-right {
    right: -5%;
    bottom: 0;
  }

  .feature-device-left {
    left: -10%;
  }

  .feature-device-tilted {
    right: 8%;
    bottom: -20%;
  }

  /* Large card showcase - desktop */
  .showcase-device .device-frame {
    width: 260px;
  }

  .showcase-diagram {
    gap: 0.75rem;
  }

  .diagram-icon {
    font-size: 1.75rem;
    width: 3.5rem;
    height: 3.5rem;
  }

  .diagram-step span {
    font-size: 0.7rem;
  }

  .format-pill {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  .animate-on-scroll,
  .animate-scale,
  .animate-slide-left,
  .animate-slide-right {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Coming Soon State */
.btn-coming-soon {
  background: #000 !important;
  color: #fff !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 40px;
  text-decoration: none !important;
  cursor: default !important;
  pointer-events: none;
}

.btn-coming-soon-small {
  background: #000 !important;
  color: #fff !important;
  padding: 0.5rem 1rem !important;
  border-radius: 0.375rem !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  text-decoration: none !important;
  cursor: default !important;
  pointer-events: none;
  border: none !important;
}