:root {
  --bg: #09090f;
  --panel: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f5f7fb;
  --muted: #aab0c0;
  --purple: #8b5cf6;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  background: #09090f;
  scroll-behavior: smooth;
}

html {
  background: #09090f;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.22), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.2), transparent 25%),
    linear-gradient(180deg, #07070d 0%, #0c0d14 55%, #09090f 100%);
  color: var(--text);
}


a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  overflow: visible;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  background: linear-gradient(
    120deg,
    #09090f,
    #140f1f,
    rgba(139, 92, 246, 0.1),
    rgba(59, 130, 246, 0.08),
    #09090f
  );
  background-size: 220% 220%;
  animation: headerGradientFlow 18s ease infinite;
}

@keyframes headerGradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
.mobile-contact-link {
  display: none;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-tagline {
  margin-top: 4px;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aab0c0;
}

.smalllogo {
  max-width: 50%;
}

.nav {
  display: inline-flex;
  gap: 26px;
  margin-left: auto;
  color: #fff;
}

.nav a {
  transition: all 0.25s ease;
}

.nav a:hover {
  color: #fff;
  transform: translateY(-1px);

  text-shadow:
    0 0 6px rgba(168, 85, 247, 0.6),
    0 0 14px rgba(168, 85, 247, 0.5);
}
/* === MOBILE MENU BUTTON === */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  transition: all 0.25s ease;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: all 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.4);
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 12px 40px rgba(91, 87, 255, 0.35);
}

.btn-outline {
  border: 1px solid rgba(168, 85, 247, 0.5);
  color: #a855f7;
  background: transparent;
}

.btn.btn-outline:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  box-shadow:
    0 10px 25px rgba(124, 58, 237, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.4);
}

.site-main {
  flex: 1;
  padding: 14px 0 0;
}

.logo {
  display: block;
  margin: 0 auto 28px;
}

.hero {
  display: grid;
  grid-template-columns: 2.05fr 0.95fr;
  align-items: start;
  justify-items: start;
  gap: 48px;
  padding: 40px 0 56px;
}

.hero-visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}

#appImage {
  width: 70%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

#appImage.fade-out {
  transform: scale(0.98);
}

#appImage.fade-in {
  transform: scale(1);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d3d8e7;
}

.hero h1,
.section-heading h2,
.cta h2 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 3.5rem);
}

.hero-title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-wrap: balance;
}

.hero-text,
.section-heading p,
.timeline-item p,
.card p,
.cta p,
.footer-inner p {
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 36px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-stats div {
  min-width: 120px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.hero-stats span {
  font-size: 0.95rem;
  color: var(--muted);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 12px 0 26px;
  padding: 18px 24px;
  color: #cbd2e4;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.section {
  padding: 90px 0;
}

.section.alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 34px;
}

.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.cards {
  display: grid;
  gap: 22px;
}

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

.card,
.timeline-item,
.cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.card {
  padding: 28px;
}

.card h3,
.timeline-item h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

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

.app-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.app-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(139, 92, 246, 0.08);
}

.app-card-top {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.card-blue .app-card-top {
  background: linear-gradient(135deg, #3b82f6, #0891b2);
}

.card-purple .app-card-top {
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
}

.card-orange .app-card-top {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.card-dark .app-card-top {
  background: linear-gradient(135deg, #1f2937, #111827);
}

.card-pink .app-card-top {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.card-red .app-card-top {
  background: linear-gradient(135deg, #050507, #1a0b0b);
}

.card-lightpurple .app-card-top {
  background: linear-gradient(135deg, #d1a4f0, #6a1b9a);
}

.card-green .app-card-top {
  background: linear-gradient(135deg, #3ad66d, #38a35b);
}

.card-darkblue .app-card-top {
  background: linear-gradient(135deg, #0b1735, #397fb1);
}

.app-card:hover .app-card-top {
  opacity: 1;
}

.app-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.app-card:hover .app-card-overlay {
  background: rgba(0, 0, 0, 0);
}

.app-card-emoji {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-card-emoji img {
  height: auto;
  display: block;
}

.app-card-body {
  padding: 24px 24px 18px;
}

.app-card-title {
  margin: 0 0 12px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.app-card-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.app-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 24px 24px;
}

.app-tag {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 600;
}

.app-card-footer {
  margin-top: auto;
  padding: 0 24px 24px;
  display: flex;
  justify-content: flex-end;
}

.project-badge {
  position: absolute;
  top: 20px;
  left: 16px;
  z-index: 3;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid #a855f7;
  border-radius: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
}

.appstore-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(139, 92, 246, 0.2);
}

.appstore-btn:active {
  transform: scale(0.97);
}

.appstore-btn svg {
  margin-right: 6px;
  opacity: 0.9;
  color: #a855f7;
  transition: all 0.25s ease;
}

.appstore-btn:hover svg {
  color: #c084fc;
  transform: translateX(4px);
}

.appstore-icon {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.chevron-icon {
  width: 36px;
  height: 36px;
  display: inline-block;
  flex-shrink: 0;
  fill: currentColor;
  color: #a855f7;
}

.appstore-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.appstore-text .small {
  font-size: 12px;
}

.appstore-text .big {
  font-size: 14px;
  font-weight: 600;
}

.appstore-single {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  padding: 24px;
}

.timeline-item span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.18));
  font-weight: 800;
}

.cta {
  margin-bottom: 90px;
  padding: 42px;
  text-align: center;
}

.cta h2 {
  max-width: 14ch;
  margin: 0 auto 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.cta p {
  max-width: 650px;
  margin: 0 auto 24px;
}

.special-features {
  padding: 80px 0;
}

.features-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.features-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
}

.features-heading p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  height: 100%;
}


.feature-card-inner {
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.feature-card-inner:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(139, 92, 246, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 16px;
  opacity: 0.92;
}

.feature-icon-purple {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.feature-icon-orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.feature-icon-cyan {
  background: linear-gradient(135deg, #14b8a6, #06b6d4);
}

.feature-icon-blue {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.feature-icon-green {
  background: linear-gradient(135deg, #22c55e, #10b981);
}
.feature-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.feature-svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1; /* <-- key fix */
  display: flex;
  align-items: center; 
}

.feature-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.contact-card h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7c3aed;
  background: rgba(255, 255, 255, 0.08);
}

.form-success,
.form-error {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.form-success {
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.form-error {
  border: 1px solid rgba(239, 68, 68, 0.28);
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  white-space: pre-wrap;
}

.form-success.show,
.form-error.show {
  display: block;
}

#sendBtn.loading {
  opacity: 0.6;
  pointer-events: none;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.2);
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer {
  margin-top: auto;
  padding-top: 20px;
  padding-bottom:20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-inner p {
  font-size: 0.85rem;
}

.footer-center p {
  margin: 0;
  font-size: 0.85rem;
  text-align: center;
  color: #aab0c0;
}
.footer-right {
  text-align: right;
}

.footer-right p {
  font-size: 0.85rem;
  color: #aab0c0;
}
#backToTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  box-shadow:
    0 10px 25px rgba(124, 58, 237, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#backToTop:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 30px rgba(124, 58, 237, 0.6),
    0 6px 14px rgba(0, 0, 0, 0.5);
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 34px 0 48px;
  }

  .hero-copy,
  .hero-visual,
  .section-heading,
  .split-heading {
    text-align: center;
  }

  .split-heading {
    display: block;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .three-up,
  .project-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .hero-visual {
    min-height: 440px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .topbar {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;       
  justify-content: space-between;
  gap: 14px;
  }
  .brand {
      display: flex;
      align-items: center;   
  }
  .smalllogo {
  display: block;        
  height: 36px;        
  width: auto;
  }
  .logo {
  max-width: 180px;
  margin: 0 auto 20px;
  }
  .menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  flex-shrink: 0;
  }
  .hero h1,
  .hero-title {
  max-width: 100%;
  font-size: 1.9rem;
  line-height: 1.15;
  }
  .desktop-contact-btn {
    display: none;
  }
  .project-grid,
  .three-up,
  .features-grid,
 .logo-strip {
  grid-template-columns: 1fr;
  }
  .cards {
  gap: 18px;
  }
  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    z-index: 40;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    margin: 0;

    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(9, 9, 15, 0.96);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
      0 20px 50px rgba(0,0,0,0.45),
      0 0 0 1px rgba(255,255,255,0.02) inset;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);

    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .menu-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    text-align: left;
    color: #fff;
  }

  .nav a:hover {
    background: rgba(255,255,255,0.05);
    transform: none;
    text-shadow: none;
  }

  .mobile-contact-link {
  display: block;
  margin-top: 6px;
  padding: 14px 16px;
  border-radius: 12px;
  color: #fff !important;
  text-align: left;
}
.footer-right {
  margin: 0;
  font-size: 0.85rem;
  text-align: center;
  color: #aab0c0;
}
}