body {
  width: 100%;
  height: 100%;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: white;
  background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #16213e 100%);
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

body.loaded {
  opacity: 1;
}

/* Add subtle animation to background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/water6.jpg) no-repeat center center;
  background-size: cover;
  opacity: 0.3;
  z-index: -1;
  animation: subtleMove 20s ease-in-out infinite alternate;
}

@keyframes subtleMove {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.05) rotate(0.5deg); }
}

/* Floating particles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(66, 220, 163, 0.6);
  border-radius: 50%;
  pointer-events: none;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(0);
    opacity: 0;
  }
}
html {
  width: 100%;
  height: 100%;
}
.error
{
  color: rgb(243, 69, 65);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 35px;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}
p {
  margin: 0 0 25px;
  font-size: 18px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  p {
    margin: 0 0 35px;
    font-size: 20px;
    line-height: 1.5;
  }
}

b{
    color: rgb(243, 69, 65);
}
.red_color{
  color: rgb(243, 69, 65);
}
.green_color{
  color: rgb(0, 255, 0);
}
.subscription {
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 40px;
    border-radius: 20px;  
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Enhanced hero content styling */
.hero-content {
    position: relative;
}

.brand-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #fff, #42DCA3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 5px rgba(66, 220, 163, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(66, 220, 163, 0.6)); }
}

.tagline {
    margin: 30px 0;
}

.tagline .intro-text {
      font-size: 1.25rem; /* larger for desktop */
      line-height: 1.9;
      font-weight: 400;
      color: rgba(255,255,255,0.96);
  }

  @media (max-width: 520px) {
    .description .intro-text-disclaimer {
      font-size: 1.0rem; /* compact on small screens */
      line-height: 1.6;
    }
  }

.description {
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.description .intro-text-disclaimer {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Launch info styling */
.launch-info {
    margin: 50px 0;
    padding: 30px;
    background: rgba(66, 220, 163, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(66, 220, 163, 0.3);
}

.year-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.year-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #42DCA3;
    text-shadow: 0 0 20px rgba(66, 220, 163, 0.5);
}

/* Social links */
.social-links {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(66, 220, 163, 0.2);
    border-color: #42DCA3;
    color: #42DCA3;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(66, 220, 163, 0.3);
    text-decoration: none;
}

.social-link i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 2.5rem;
    }
    
    .subscription {
        padding: 40px 20px;
        margin: 20px;
    }
    
    .tagline .intro-text {
        font-size: 1.2rem;
    }
    
    .year-value {
        font-size: 2rem;
    }
}

/* Contact CTA styling (simple and elegant) */
.contact-cta {
  margin-top: 30px;
}
.contact-cta a {
  color: #e6fff6;
  background: rgba(66, 220, 163, 0.08);
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(66,220,163,0.18);
  transition: all 180ms ease-in-out;
}
.contact-cta a:hover {
  background: rgba(66, 220, 163, 0.18);
  color: #00110a;
  transform: translateY(-2px);
}

/* Small footer text */
.subscription + footer {
  margin-top: 30px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}
.subscribe-btn{
    height: 50px;
    padding: 0 20px;
    vertical-align: middle;
    background: rgb(243, 69, 65);
    border: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 50px;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    text-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
    border-radius: 6px;  
}
.subscribe-input{
    height: 50px;
    padding: 0 20px;
    vertical-align: middle;
    border: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 50px;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}
a {
  color: #42DCA3;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #1d9b6c;
}
.light {
  font-weight: 400;
}
.navbar-custom {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: black;
}
.navbar-custom .navbar-toggle {
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}
.navbar-custom .navbar-toggle:focus,
.navbar-custom .navbar-toggle:active {
  outline: none;
}
.navbar-custom .navbar-brand {
  font-weight: 700;
}
.navbar-custom .navbar-brand:focus {
  outline: none;
}
.navbar-custom a {
  color: white;
}
.navbar-custom .nav li a {
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.navbar-custom .nav li a:hover {
  color: rgba(255, 255, 255, 0.8);
  outline: none;
  background-color: transparent;
}
.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
  outline: none;
  background-color: transparent;
}
.navbar-custom .nav li.active {
  outline: none;
}
.navbar-custom .nav li.active a {
  background-color: rgba(255, 255, 255, 0.3);
}
.navbar-custom .nav li.active a:hover {
  color: white;
}
@media (min-width: 768px) {
  .navbar-custom {
    padding: 20px 0;
    border-bottom: none;
    letter-spacing: 1px;
    background: transparent;
    -webkit-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
    -moz-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
    transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  }
  .navbar-custom.top-nav-collapse {
    padding: 0;
    background: black;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.intro {
  display: table;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 100px 0;
  text-align: center;
  color: white;
  /* reduced dark overlay so the background photo reads through more strongly */
  background: linear-gradient(rgba(0,0,0,0.06), rgba(0,0,0,0.28)), url(../img/water6.jpg) no-repeat center center scroll;
  background-color: black;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  position: relative;
  overflow: hidden;
}

.intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 25%, rgba(66, 220, 163, 0.52) 50%, transparent 75%);
  animation: shimmer 10s ease-in-out infinite;
}

@keyframes shimmer {
  0% { opacity: 0.12; }
  50% { opacity: 0.78; }
  100% { opacity: 0.12; }
}
.intro .intro-body {
  display: table-cell;
  vertical-align: middle;
}
.intro .intro-body .brand-heading {
  font-size: 30px;
}
.intro .intro-body .intro-text {
  font-size: 18px;
}
.intro .intro-body .intro-text-disclaimer {
  font-size: 10px;
}
@media (min-width: 768px) {
  .intro {
    height: 100%;
    padding: 0;
  }
  .intro .intro-body .brand-heading {
    font-size: 70px;
  }
  .intro .intro-body .intro-text {
    font-size: 26px;
  }
  .intro .intro-body .intro-text-disclaimer {
    font-size: 10px;
  }
}
.btn-circle {
  width: 70px;
  height: 70px;
  margin-top: 15px;
  padding: 7px 16px;
  border: 2px solid white;
  border-radius: 100% !important;
  font-size: 40px;
  color: white;
  background: transparent;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.btn-circle:hover,
.btn-circle:focus {
  outline: none;
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
.btn-circle i.animated {
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 1s;
  -moz-transition-property: -moz-transform;
  -moz-transition-duration: 1s;
}
.btn-circle:hover i.animated {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
.content-section {
  padding-top: 100px;
}
.download-section {
  width: 100%;
  padding: 50px 0;
  color: white;
  background: url(../img/downloads-bg.jpg) no-repeat center center scroll;
  background-color: black;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
#map {
  width: 100%;
  height: 200px;
  margin-top: 100px;
}
@media (min-width: 767px) {
  .content-section {
    padding-top: 250px;
  }
  .download-section {
    padding: 100px 0;
  }
  #map {
    height: 768px;
    margin-top: 250px;
  }
}
.btn {
  text-transform: uppercase;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
}
.btn-default {
  border: 1px solid #42DCA3;
  color: #42DCA3;
  background-color: transparent;
}
.btn-default:hover,
.btn-default:focus {
  border: 1px solid #42DCA3;
  outline: none;
  color: black;
  background-color: #42DCA3;
}
ul.banner-social-buttons {
  margin-top: 0;
}
@media (max-width: 1199px) {
  ul.banner-social-buttons {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  ul.banner-social-buttons li {
    display: block;
    margin-bottom: 20px;
    padding: 0;
  }
  ul.banner-social-buttons li:last-child {
    margin-bottom: 0;
  }
}
footer {
  padding: 50px 0;
}
footer p {
  margin: 0;
}
::-moz-selection {
  text-shadow: none;
  background: #fcfcfc;
  background: rgba(255, 255, 255, 0.2);
}
::selection {
  text-shadow: none;
  background: #fcfcfc;
  background: rgba(255, 255, 255, 0.2);
}
img::selection {
  background: transparent;
}
img::-moz-selection {
  background: transparent;
}
body {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
}

/* ---------- Visual overhaul: stunning hero effects (CSS only) ---------- */
/* Soft floating gradient shapes behind the hero */
.intro::after {
  content: '';
  position: absolute;
  width: 1200px;
  height: 1200px;
  right: -20%;
  top: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(66,220,163,0.18) 0%, rgba(66,220,163,0.06) 20%, transparent 40%),
              radial-gradient(circle at 70% 70%, rgba(154,246,217,0.12) 0%, rgba(154,246,217,0.04) 25%, transparent 50%);
  transform: rotate(15deg);
  filter: blur(60px) saturate(110%);
  pointer-events: none;
  animation: floatShapes 14s ease-in-out infinite;
  z-index: 0;
  opacity: 0.95;
}

@keyframes floatShapes {
  0%   { transform: translateY(0) rotate(12deg) scale(1); }
  50%  { transform: translateY(-80px) rotate(8deg) scale(1.06); }
  100% { transform: translateY(0) rotate(12deg) scale(1); }
}

/* Ensure the subscription card sits above decorative shapes */
.subscription {
  position: relative;
  z-index: 2;
}

/* Hero entrance: stronger pop (scale + fade) for .hero-animate */
.hero-animate {
  /* start in a softer, slightly smaller state; JS/animate.css may also apply */
  opacity: 0;
  transform: translateY(28px) scale(0.92);
  will-change: transform, opacity, filter;
  animation-name: heroPop;
  animation-duration: 680ms;
  animation-timing-function: cubic-bezier(.16,.9,.24,1);
  animation-fill-mode: both;
}

@keyframes heroPop {
  0% {
    opacity: 0;
    transform: translateY(36px) scale(0.88);
    filter: blur(8px) saturate(85%);
  }
  55% {
    opacity: 1;
    transform: translateY(-10px) scale(1.08);
    filter: blur(0) saturate(140%);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
  }
}

/* Glass sheen overlay on the card */
.subscription::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 20px;
  mix-blend-mode: overlay;
}

/* Subtle hover lift for the card on capable devices */
@media (hover: hover) and (pointer: fine) {
  .subscription:hover {
    transform: translateY(-10px) scale(1.005);
    transition: transform 260ms cubic-bezier(.2,.9,.2,1);
    box-shadow: 0 40px 80px rgba(6,14,18,0.6);
  }
}

/* Improve brand title animation: slow gradient shift */
.brand-title {
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShift 8s linear infinite;
}

@keyframes titleShift {
  0%   { background-position: 0% 50%; transform: translateZ(0); }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Particle tuning: larger, softer, and additive blend for glow */
.particle {
  position: absolute; /* positioned inside .intro container */
  bottom: 0; /* start near bottom; JS overrides for exact placement */
  width: 6px;
  height: 6px;
  background: rgba(154,246,217,0.98);
  border-radius: 50%;
  /* stronger blur + saturation for a softer, brighter glow */
  filter: blur(4px) saturate(180%);
  mix-blend-mode: screen;
  animation-timing-function: linear;
  /* stronger glow for better visibility */
  box-shadow: 0 0 20px rgba(154,246,217,0.95), 0 0 48px rgba(66,220,163,0.28);
  will-change: transform, opacity;
  transform: translateY(0) translateX(0);
  pointer-events: none;
  animation-fill-mode: forwards;
}

/* Wave-style float: vertical rise + horizontal oscillation (approximate sine via keyframes) */
@keyframes waveFloat {
  0% {
    transform: translateY(0) translateX(0) scale(0.6);
    opacity: 0;
  }
  8% {
    opacity: 0.6;
    transform: translateY(-6%) translateX(0) scale(0.9);
  }
  25% {
    transform: translateY(-25%) translateX(var(--wave-amp)) scale(1);
  }
  50% {
    transform: translateY(-50%) translateX(0) scale(1);
  }
  75% {
    transform: translateY(-75%) translateX(calc(var(--wave-amp) * -1)) scale(0.95);
  }
  92% {
    opacity: 0.6;
    transform: translateY(-95%) translateX(0) scale(0.85);
  }
  100% {
    transform: translateY(-110%) translateX(0) scale(0.6);
    opacity: 0;
  }
}

/* wave variant uses the waveFloat keyframes; JS sets --wave-amp, animation-duration and delay */
.particle.wave {
  animation-name: waveFloat;
  animation-timing-function: ease-in-out;
  /* slightly more visible by default; JS randomizes opacity too */
  opacity: 0.98;
  filter: blur(2px) saturate(200%);
}

/* Reduce motion if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .intro::after,
  .brand-title,
  .particle,
  .subscription::before,
  .cta-button {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* Slight vignette for depth */
.intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Tweak CTA emphasis without changing text */
.cta-button {
  transform: translateZ(0);
  will-change: transform;
}

/* Final responsive tweaks */
@media (max-width: 520px) {
  .brand-badge { width: 52px; height: 52px; line-height: 52px; font-size: 28px; }
  .brand-title { font-size: 1.9rem; }
  .subscription { padding: 28px 18px; border-radius: 14px; }
}

/* End visual overhaul */

/* ---------- New visual restyle (CSS only) ---------- */
/* Deep, modern color palette + refined glass card */
body {
  background: radial-gradient(1200px 600px at 10% 20%, rgba(48,18,71,0.6), transparent 10%),
              radial-gradient(1000px 500px at 85% 80%, rgba(7,61,80,0.6), transparent 10%),
              linear-gradient(180deg, #070617 0%, #0b1020 60%, #0b1226 100%);
}

body::before {
  /* use the image directly and boost visible brightness/saturation so the photo is more prominent */
  background: url(../img/water6.jpg) no-repeat center center;
  background-size: cover;
  opacity: 1;
  transform-origin: center;
  filter: brightness(1.12) contrast(1.06) saturate(1.15);
  /* subtle slow zoom + pan to make background motion more visible */
  animation: bgZoomPan 26s ease-in-out infinite;
  will-change: transform, opacity, background-position, filter;
}

@keyframes bgZoomPan {
  0% {
    transform: scale(1) translateZ(0);
    background-position: 50% 50%;
    opacity: 0.44;
  }
  40% {
    transform: scale(1.06) translateZ(0);
    background-position: 48% 52%;
    opacity: 0.5;
  }
  70% {
    transform: scale(1.03) translateZ(0);
    background-position: 52% 48%;
    opacity: 0.48;
  }
  100% {
    transform: scale(1) translateZ(0);
    background-position: 50% 50%;
    opacity: 0.44;
  }
}

/* stronger glass card with subtle border gradient */
.subscription {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 30px 80px rgba(4,8,16,0.7), 0 6px 18px rgba(66,220,163,0.04) inset;
  backdrop-filter: blur(14px) saturate(120%);
}

/* give the hero a modern condensed look */
.brand-badge{ background: linear-gradient(180deg,#fff,#e6fff6); color:#04221a; box-shadow: 0 8px 24px rgba(2,8,12,0.5); }
.brand-title{ font-size:4.8rem; letter-spacing:1px; }
.lead{ font-size:1.15rem; color: rgba(220,240,235,0.95); }

/* accent line under the title */
.brand-title + .lead::before{
  content: '';
  display: block;
  width: 84px;
  height: 4px;
  border-radius: 4px;
  margin: 18px auto 12px auto;
  background: linear-gradient(90deg,#42DCA3,#9af6d9);
  box-shadow: 0 6px 16px rgba(66,220,163,0.12);
}

/* CTA: solid, slightly elevated */
.cta-button{ background: linear-gradient(90deg,#2bd09b,#42DCA3); color:#00110a; box-shadow: 0 18px 40px rgba(66,220,163,0.12); }

/* adjust launch info look */
.launch-info{ background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.03); }

/* particles: JS controls size/opacity; keep CSS defaults above. */

@media (max-width: 900px){
  .brand-title{ font-size:3.2rem; }
  .subscription{ padding:42px 26px; }
}

@media (max-width: 520px){
  .brand-title{ font-size:2rem; }
  .brand-badge{ width:48px; height:48px; line-height:48px; }
}

/* End new visual restyle */

/* ---------- Hero / Brand overrides (added) ---------- */
/* These rules override earlier defaults to provide a cleaner, modern hero */
.brand-badge{
  font-size: 36px;
  width: 64px;
  height: 64px;
  line-height: 64px;
  display: inline-block;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  margin-bottom: 8px;
}
.brand-title{
  font-size: 4.2rem;
  font-weight: 800;
  margin: 10px 0 18px 0;
  line-height: 1;
  text-transform: lowercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ffffff, #9af6d9 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead{
  font-size: 1.2rem;
  margin: 6px 0 16px 0;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
}
.tagline .intro-text{ 
  font-size: 1.1rem;
  margin: 6px 0;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.9);
}
.description{ 
  margin: 18px auto 28px auto;
  max-width: 640px;
  padding: 0 10px;
}
.description .intro-text-disclaimer{
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  font-weight: 300;
}
.launch-info{
  margin: 24px 0 8px 0;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(66,220,163,0.02));
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
}
.year-value{
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #9af6d9;
  text-shadow: 0 6px 18px rgba(9,18,23,0.45);
}
.cta-button{
  display: inline-block;
  color: #04221a;
  background: linear-gradient(90deg,#42DCA3,#9af6d9);
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  box-shadow: 0 10px 24px rgba(66,220,163,0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}
.cta-button:hover{ 
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 38px rgba(66,220,163,0.18);
}

@media (max-width: 768px){
  .brand-title{ font-size: 2.2rem; }
  .lead{ font-size: 1rem; }
  .year-value{ font-size: 1.7rem; }
}

/* end hero overrides */

/* ---------- Extra visual polish (no text changes) ---------- */
/* Animated underlying gradient layer for subtle motion */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  /* lighter animated gradient layer so it doesn't darken the photo too much */
  background: linear-gradient(120deg, rgba(10,20,30,0.48), rgba(20,30,50,0.42), rgba(10,18,30,0.4));
  mix-blend-mode: overlay;
  pointer-events: none;
  animation: bgFlow 20s ease-in-out infinite;
  will-change: filter, opacity;
  opacity: 1;
}

@keyframes bgFlow {
  0% { filter: hue-rotate(0deg) saturate(100%); }
  50% { filter: hue-rotate(24deg) saturate(120%); }
  100% { filter: hue-rotate(0deg) saturate(100%); }
}

/* Title glow behind text for depth (no text change) */
.brand-title{ position: relative; z-index: 3; }
.brand-title::after{
  content: '';
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%,-50%);
  width: 520px;
  height: 260px;
  background: radial-gradient(circle at 50% 40%, rgba(154,246,217,0.22) 0%, rgba(66,220,163,0.06) 30%, transparent 60%);
  filter: blur(28px) saturate(120%);
  pointer-events: none;
  z-index: 2;
  opacity: 0.95;
  animation: titleGlow 6s ease-in-out infinite;
}

@keyframes titleGlow{
  0% { transform: translate(-50%,-50%) scale(0.98); opacity: 0.9; }
  50% { transform: translate(-50%,-56%) scale(1.02); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(0.98); opacity: 0.9; }
}

/* Sheen sweep across the card */
.subscription::before{
  content: '';
  position: absolute;
  left: -40%;
  top: -40%;
  width: 180%;
  height: 180%;
  background: linear-gradient(120deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.02) 100%);
  transform: rotate(-18deg) translateX(-20%);
  filter: blur(40px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
  animation: sheen 6s linear infinite;
}

@keyframes sheen{
  0% { transform: rotate(-18deg) translateX(-40%); opacity: 0.44; }
  50% { transform: rotate(-18deg) translateX(20%); opacity: 0.46; }
  100% { transform: rotate(-18deg) translateX(60%); opacity: 0.44; }
}

/* CTA micro-interaction: soft breathing glow */
.cta-button{
  box-shadow: 0 10px 24px rgba(66,220,163,0.10), inset 0 -6px 18px rgba(0,0,0,0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 120ms ease;
}
.cta-button:active{ transform: translateY(1px) scale(0.998); }
.cta-button{ animation: ctaPulse 4.6s ease-in-out infinite; }
@keyframes ctaPulse{
  0% { box-shadow: 0 10px 24px rgba(66,220,163,0.10); }
  50% { box-shadow: 0 18px 48px rgba(66,220,163,0.16); }
  100% { box-shadow: 0 10px 24px rgba(66,220,163,0.10); }
}

/* Ensure overlays don't obscure text on small screens */
@media (max-width: 520px) {
  .brand-title::after{ width: 320px; height: 160px; filter: blur(22px); }
  .subscription::before{ display: none; }
  .intro::after{ display: none; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  body::after, .brand-title::after, .subscription::before, .cta-button, .hero-animate, .particle { animation: none !important; transition: none !important; transform: none !important; }
}

/* ---------- End extra polish ---------- */

/* Strong override: make the description significantly larger for readability (CSS-only) */
.description .intro-text-disclaimer {
  font-size: 1.9rem !important; /* large, desktop-first */
  line-height: 2.0 !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.96) !important;
  letter-spacing: 0.2px !important;
}

@media (max-width: 520px) {
  .description .intro-text-disclaimer {
    font-size: 1.05rem !important; /* compact mobile */
    line-height: 1.6 !important;
    font-weight: 400 !important;
  }
}

