@charset "UTF-8";

/* projects/website/src/styles.scss */
:root {
  --primary: #6C4DFF;
  --primary-600: #5A3CE6;
  --primary-100: #EDE8FF;
  --accent: #C026D3;
  --cyan: #22D3EE;
  --bg: #FFFFFF;
  --bg-soft: #F7F6FB;
  --bg-elev: #FFFFFF;
  --surface: rgba(255, 255, 255, 0.7);
  --text: #0F1024;
  --text-soft: #4A4D6B;
  --muted: #8A8FAE;
  --border: #ECEAF4;
  --shadow-sm: 0 1px 2px rgba(15, 16, 36, .06);
  --shadow-md: 0 10px 30px -12px rgba(108, 77, 255, .18);
  --shadow-lg: 0 30px 60px -20px rgba(15, 16, 36, .18);
  --grad-hero:
    radial-gradient(
      60% 60% at 20% 10%,
      rgba(108, 77, 255, .18),
      transparent 60%),
    radial-gradient(
      50% 50% at 90% 20%,
      rgba(192, 38, 211, .14),
      transparent 60%),
    radial-gradient(
      60% 40% at 70% 90%,
      rgba(34, 211, 238, .12),
      transparent 60%);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1200px;
  --font-display:
    "Plus Jakarta Sans",
    "Inter",
    system-ui,
    sans-serif;
  --font-body:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
}
[data-theme=dark] {
  --bg: #0B0B18;
  --bg-soft: #11122A;
  --bg-elev: #15163A;
  --surface: rgba(21, 22, 58, 0.6);
  --text: #F4F4FB;
  --text-soft: #C9CADD;
  --muted: #8489AD;
  --border: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-md: 0 10px 30px -12px rgba(108, 77, 255, .45);
  --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, .6);
  --primary-100: rgba(108, 77, 255, .18);
  --grad-hero:
    radial-gradient(
      60% 60% at 20% 10%,
      rgba(108, 77, 255, .35),
      transparent 60%),
    radial-gradient(
      50% 50% at 90% 20%,
      rgba(192, 38, 211, .25),
      transparent 60%),
    radial-gradient(
      60% 40% at 70% 90%,
      rgba(34, 211, 238, .18),
      transparent 60%);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.35s ease, color 0.35s ease;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
}
h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}
p {
  color: var(--text-soft);
  margin: 0 0 1em;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 88px 0;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-100);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background:
    linear-gradient(
      90deg,
      var(--primary),
      var(--accent));
  z-index: 1000;
  transition: width 0.1s linear;
}
.nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled {
  border-color: var(--border);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.newbrand img {
  height: 50px;
  width: 100%;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}
[data-theme=dark] .brand img {
  filter: brightness(0) invert(1) drop-shadow(0 0 0 transparent);
}
[data-theme=dark] .brand .logo-mark {
  filter: none;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      var(--primary),
      var(--accent));
  border-radius: 2px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  cursor: pointer;
  color: var(--text-soft);
}
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: transform 0.2s, border-color 0.2s;
}
.theme-toggle:hover {
  transform: rotate(15deg);
  border-color: var(--primary);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
}
.theme-toggle .icon-sun {
  display: none;
}
[data-theme=dark] .theme-toggle .icon-sun {
  display: block;
}
[data-theme=dark] .theme-toggle .icon-moon {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.25s ease,
    background 0.2s;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--accent));
  color: #fff;
  box-shadow: 0 10px 25px -10px rgba(108, 77, 255, 0.6);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(108, 77, 255, 0.7);
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary-100);
}
.btn-ghost {
  background: var(--bg-elev);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-lg {
  padding: 16px 28px;
  font-size: 15px;
}
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: transform 0.3s;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, top 0.3s;
}
.menu-toggle span::before {
  top: -6px;
}
.menu-toggle span::after {
  top: 6px;
}
.menu-open .menu-toggle span {
  background: transparent;
}
.menu-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
  background: var(--grad-hero), var(--bg);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  animation: float 14s ease-in-out infinite;
}
.blob.b1 {
  width: 380px;
  height: 380px;
  background: var(--primary);
  top: -80px;
  left: -80px;
}
.blob.b2 {
  width: 320px;
  height: 320px;
  background: var(--accent);
  top: 30%;
  right: -100px;
  animation-delay: -4s;
}
.blob.b3 {
  width: 280px;
  height: 280px;
  background: var(--cyan);
  bottom: -100px;
  left: 30%;
  animation-delay: -8s;
  opacity: 0.4;
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -25px) scale(1.05);
  }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 span.highlight {
  background:
    linear-gradient(
      120deg,
      var(--primary),
      var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-content p.lead {
  font-size: 1.1rem;
  max-width: 560px;
  margin-top: 18px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-trust {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.hero-trust strong {
  color: var(--text);
  display: block;
  font-size: 1.4rem;
  font-family: var(--font-display);
}
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
  justify-self: center;
  width: 100%;
}
.device {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    linear-gradient(
      160deg,
      var(--primary),
      var(--accent));
  border-radius: 36px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}
.device-screen {
  background: var(--bg-elev);
  border-radius: 26px;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.device-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background:
    linear-gradient(
      180deg,
      var(--primary-100),
      transparent);
}
.dev-row {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.dev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--accent));
}
.dev-line {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  flex: 1;
}
.dev-line.short {
  width: 60%;
  flex: none;
}
.dev-card {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  margin-top: auto;
}
.dev-card h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
}
.dev-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.float-card {
  position: absolute;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  animation: bob 5s ease-in-out infinite;
}
.float-card .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}
.float-card.fc1 {
  top: 8%;
  left: -30px;
}
.float-card.fc2 {
  bottom: 12%;
  right: -30px;
  animation-delay: -2s;
}
@keyframes bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.marquee {
  padding: 32px 0;
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--muted);
  opacity: 0.8;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.stat-bar {
  text-align: center;
  margin-top: 20px;
  font-size: 1rem;
  color: var(--text-soft);
}
.stat-bar strong {
  background:
    linear-gradient(
      90deg,
      var(--primary),
      var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-display);
  font-weight: 700;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head p {
  font-size: 1.05rem;
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-100);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card .icon-box svg {
  width: 22px;
  height: 22px;
}
.card h3 {
  margin: 0 0 8px;
}
.card p {
  margin: 0;
  font-size: 0.95rem;
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.story.reverse {
  direction: rtl;
}
.story.reverse > * {
  direction: ltr;
}
.story-art {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      135deg,
      var(--primary-100),
      color-mix(in oklab, var(--accent) 15%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary);
  border: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: var(--bg-elev);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.step .num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--accent));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 16px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.plan.featured {
  background:
    linear-gradient(
      160deg,
      var(--primary),
      var(--accent));
  color: #fff;
  border: none;
  transform: scale(1.03);
}
.plan.featured h3,
.plan.featured .price {
  color: #fff;
}
.plan.featured ul li {
  color: rgba(255, 255, 255, 0.9);
}
.plan.featured .btn-primary {
  background: #fff;
  color: var(--primary);
}
.plan .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.plan .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  margin: 8px 0;
}
.plan .price small {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.plan.featured .price small {
  color: rgba(255, 255, 255, 0.8);
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.plan ul li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan ul li::before {
  content: "\2713";
  color: var(--primary);
  font-weight: 700;
}
.plan.featured ul li::before {
  color: #fff;
}
.plan .btn {
  width: 100%;
  margin-top: 12px;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-family: var(--font-display);
}
.faq-q .chev {
  transition: transform 0.3s;
  color: var(--primary);
}
.faq-item.open .faq-q .chev {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}
.cta-banner {
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--accent));
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  color: #fff;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin: 0 auto 24px;
}
.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
}
.cta-banner .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.cta-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}
.footer {
  background: #0B0B1F;
  color: #C9CADD;
  padding: 72px 0 24px;
  margin-top: 80px;
}
[data-theme=dark] .footer {
  background: #060614;
}
.footer h4 {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer a {
  color: #C9CADD;
  font-size: 0.92rem;
}
.footer a:hover {
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid ul li {
  margin: 8px 0;
}
.footer-brand p {
  color: #9A9CB8;
  max-width: 320px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  color: #8489AD;
  flex-wrap: wrap;
  gap: 12px;
}
.whatsapp-pin {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s;
}
.whatsapp-pin:hover {
  transform: scale(1.08);
}
.whatsapp-pin svg {
  width: 28px;
  height: 28px;
}
.page-head {
  padding: 90px 0 60px;
  text-align: center;
  background: var(--grad-hero), var(--bg);
  position: relative;
  overflow: hidden;
}
.page-head .container {
  position: relative;
  z-index: 1;
}
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(20px);
}
.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 980px) {
  .hero-grid,
  .story,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story.reverse {
    direction: ltr;
  }
  .grid-3,
  .grid-4,
  .pricing-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .nav-links {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    box-shadow: var(--shadow-md);
  }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .menu-open .nav-links {
    transform: translateY(0);
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav-actions .lang {
    display: none;
  }
  .plan.featured {
    transform: none;
  }
  section {
    padding: 64px 0;
  }
  .cta-banner {
    padding: 36px 24px;
  }
}
@media (max-width: 560px) {
  .hero-ctas .btn {
    width: 100%;
  }
  .float-card {
    display: none;
  }
  .whatsapp-pin {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
