:root {
  --primary-navy: #0B1F3A;
  --deep-blue: #123A73;
  --tasker-blue: #1E63D6;
  --cyan: #22D3EE;
  --soft-sky: #EAF6FF;
  --white: #FFFFFF;
  --slate: #334155;
  --success: #16A34A;
  --muted: #AFC1D8;
  --card: rgba(255, 255, 255, 0.86);
  --glass: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.24);
  --shadow: 0 28px 80px rgba(5, 18, 38, 0.26);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: "Public Sans", "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.2), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(30, 99, 214, 0.3), transparent 28rem),
    linear-gradient(135deg, #071831 0%, var(--primary-navy) 47%, #092650 100%);
  overflow-x: hidden;
}

body::selection {
  background: rgba(34, 211, 238, 0.35);
  color: var(--white);
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 70px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 50;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--white);
  color: var(--primary-navy);
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.mesh-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 76%);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.78;
}

.orb-one {
  width: 440px;
  height: 440px;
  left: -150px;
  top: 140px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.25), transparent 62%);
}

.orb-two {
  width: 420px;
  height: 420px;
  right: -140px;
  top: 80px;
  background: radial-gradient(circle, rgba(30, 99, 214, 0.35), transparent 66%);
}

.orb-three {
  width: 320px;
  height: 320px;
  right: 24%;
  bottom: -120px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.14), transparent 66%);
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.7);
  animation: floatParticle var(--duration, 10s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes floatParticle {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.18; }
  50% { transform: translate3d(22px, -38px, 0); opacity: 0.8; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(6, 20, 42, 0.88), rgba(6, 20, 42, 0.48));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--white);
  text-decoration: none;
}

.brand-logo-wrap {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  letter-spacing: -0.03em;
  font-weight: 900;
  font-size: clamp(1.28rem, 2vw, 1.55rem);
  line-height: 1;
}

.brand-name span {
  color: var(--white);
}

.brand-name strong {
  color: var(--cyan);
  font-size: 1.14em;
  text-shadow: 0 0 24px rgba(34, 211, 238, 0.35);
}

.brand-line {
  color: rgba(234, 246, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.35;
}

.coming-badge,
.status-pill,
.eyebrow,
.micro-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  font-size: 0.8rem;
  font-weight: 800;
}

.coming-badge {
  padding: 11px 16px;
  color: var(--soft-sky);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.coming-badge span,
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 8px rgba(22, 163, 74, 0.15), 0 0 24px rgba(22, 163, 74, 0.9);
}

.hero {
  padding-top: 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  padding: 10px 15px;
  color: #DFF9FF;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.hero h1::after {
  content: ".";
  color: var(--cyan);
  text-shadow: 0 0 36px rgba(34, 211, 238, 0.7);
}

.hero h2 {
  max-width: 720px;
  margin: 20px 0 0;
  font-family: "Hind Siliguri", "Public Sans", system-ui, sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 3.1rem);
  line-height: 1.14;
  color: var(--soft-sky);
}

.hero-text {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(234, 246, 255, 0.78);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.75;
}

.hero-text.bn {
  margin-top: 8px;
  font-family: "Hind Siliguri", "Public Sans", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  color: rgba(234, 246, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.75);
  outline-offset: 4px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #051326;
  background: linear-gradient(135deg, var(--cyan), #7DEFFF);
  box-shadow: 0 22px 54px rgba(34, 211, 238, 0.25);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  gap: 12px;
  width: min(100%, 620px);
  margin-top: 34px;
}

.countdown-card {
  min-height: 112px;
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 14px 40px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(18px);
  text-align: center;
}

.countdown-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.countdown-card span {
  display: block;
  margin-top: 8px;
  color: rgba(234, 246, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.launch-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 30px);
  background:
    radial-gradient(circle at 16% 8%, rgba(34, 211, 238, 0.22), transparent 30%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
}

.launch-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.36), transparent 34%, rgba(255, 255, 255, 0.14));
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.launch-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.micro-label {
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.launch-card h3,
.section-heading h2,
.contact-card h2 {
  margin: 8px 0 0;
  color: var(--white);
  letter-spacing: -0.045em;
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
  line-height: 1.08;
}

.status-pill {
  flex: 0 0 auto;
  padding: 8px 11px;
  color: #BFF7CE;
  background: rgba(22, 163, 74, 0.13);
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.notify-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.notify-form label {
  color: rgba(234, 246, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(5, 19, 38, 0.45);
}

.input-row input {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0 14px;
  color: var(--white);
  background: transparent;
  border: 0;
}

.input-row input::placeholder {
  color: rgba(234, 246, 255, 0.5);
}

.btn-form {
  position: relative;
  min-height: 50px;
  color: #071831;
  background: var(--white);
  overflow: hidden;
}

.btn-form.is-loading .button-text {
  opacity: 0;
}

.button-loader {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(7, 24, 49, 0.25);
  border-top-color: #071831;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.85);
  animation: spin 0.8s linear infinite;
}

.btn-form.is-loading .button-loader {
  opacity: 1;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: rgba(234, 246, 255, 0.76);
  font-size: 0.9rem;
}

.form-message.success {
  color: #BFF7CE;
}

.form-message.error {
  color: #FFD2D2;
}

.phone-preview {
  position: relative;
  z-index: 1;
  margin: 28px auto 0;
  width: min(100%, 310px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(234, 246, 255, 0.9));
  color: var(--primary-navy);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.25);
}

.phone-top {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.phone-top span {
  width: 62px;
  height: 5px;
  border-radius: 999px;
  background: rgba(11, 31, 58, 0.15);
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 58, 115, 0.1);
}

.phone-brand img {
  flex: 0 0 auto;
}

.phone-brand strong,
.phone-brand small {
  display: block;
}

.phone-brand strong {
  color: var(--deep-blue);
  line-height: 1;
}

.phone-brand small {
  margin-top: 3px;
  color: #64748B;
  font-size: 0.75rem;
}

.search-preview {
  margin-top: 14px;
  padding: 13px 14px;
  border-radius: 16px;
  color: #64748B;
  background: #F3F8FF;
  font-size: 0.84rem;
  font-weight: 700;
}

.mini-stats,
.app-list {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.mini-stats {
  grid-template-columns: repeat(3, 1fr);
}

.mini-stats span,
.app-list span {
  border-radius: 14px;
  background: #EFF7FF;
  color: var(--deep-blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.mini-stats span {
  padding: 12px 6px;
  text-align: center;
}

.app-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
}

.app-list b {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tasker-blue), var(--cyan));
}

.section-heading {
  max-width: 770px;
  margin-bottom: 28px;
}

.section-heading h2[lang="bn"] {
  font-family: "Hind Siliguri", "Public Sans", system-ui, sans-serif;
  letter-spacing: -0.025em;
}

.section-heading p,
.contact-card p {
  margin: 12px 0 0;
  color: rgba(234, 246, 255, 0.72);
  line-height: 1.72;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 48px rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(18px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.34);
  background: rgba(255, 255, 255, 0.11);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(30, 99, 214, 0.18));
  border: 1px solid rgba(34, 211, 238, 0.22);
}

.feature-icon svg,
.service-chip svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.feature-icon svg {
  color: var(--cyan);
}

.feature-card h3 {
  min-height: 68px;
  margin: 20px 0 10px;
  font-family: "Hind Siliguri", "Public Sans", system-ui, sans-serif;
  font-size: 1.33rem;
  line-height: 1.25;
  color: var(--white);
}

.feature-card p {
  margin: 0;
  color: rgba(234, 246, 255, 0.68);
  line-height: 1.7;
}

.services-inner,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.services-inner {
  padding: clamp(24px, 4vw, 44px);
}

.section-heading.compact {
  margin-bottom: 22px;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 11px 15px;
  color: var(--soft-sky);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  font-size: 0.93rem;
}

.service-chip svg {
  width: 20px;
  height: 20px;
  color: var(--cyan);
  flex: 0 0 auto;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.info-list dt {
  color: rgba(234, 246, 255, 0.62);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  min-width: 0;
  color: var(--white);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.info-list a {
  color: var(--white);
  text-decoration-color: rgba(34, 211, 238, 0.55);
  text-underline-offset: 4px;
}

.site-footer {
  padding: 24px 0 34px;
  color: rgba(234, 246, 255, 0.72);
}

.site-footer p {
  margin: 0;
}

.site-footer strong {
  color: var(--white);
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: none;
  }

  .launch-card {
    max-width: 680px;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 44px 0;
  }

  .site-header {
    padding: 12px 0;
  }

  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .coming-badge {
    padding: 9px 13px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 16vw, 4.5rem);
  }

  .hero-actions,
  .input-row,
  .countdown {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .input-row {
    padding: 10px;
  }

  .btn-form {
    width: 100%;
  }

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

  .feature-card {
    min-height: auto;
  }

  .feature-card h3 {
    min-height: auto;
  }

  .service-chip {
    width: 100%;
    justify-content: flex-start;
    border-radius: 18px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
