@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Sora:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #060a14;
  --bg-card: #0c1424;
  --border: rgba(255, 255, 255, 0.08);
  --border-mid: rgba(255, 255, 255, 0.14);
  --red: #ff0f1d;
  --red-dim: rgba(255, 15, 29, 0.12);
  --blue: #0060ff;
  --blue-dim: rgba(0, 96, 255, 0.12);
  --white: #ffffff;
  --text: #eef2f8;
  --text-2: #94a3b8;
  --text-3: #4c5b73;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 32px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

header#mainHeader {
  position: relative;
  z-index: 10;
  padding: 28px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.brand-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.brand-name .white-part,
.brand-name .red-part,
.brand-name .gradient-part,
.brand-name .blue-part { display: inline; }

.brand-name .white-part { color: var(--white); }
.brand-name .red-part { color: var(--red); }
.brand-name .blue-part { color: var(--blue); }
.brand-name .gradient-part {
  color: transparent;
  background: linear-gradient(90deg, var(--red) 0%, #a80057 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all var(--transition);
}

.header-link:hover {
  color: var(--white);
  border-color: var(--border-mid);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  overflow: hidden;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-red {
  width: 620px;
  height: 480px;
  top: -180px;
  left: -220px;
  background: radial-gradient(ellipse, rgba(255, 15, 29, 0.18) 0%, transparent 70%);
}

.hero-glow-blue {
  width: 620px;
  height: 480px;
  bottom: -220px;
  right: -220px;
  background: radial-gradient(ellipse, rgba(0, 96, 255, 0.16) 0%, transparent 70%);
}

.hero-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.045);
  pointer-events: none;
  z-index: 0;
}

.hero-orbit-ring::before {
  content: '';
  position: absolute;
  inset: 90px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(255, 15, 29, 0.7);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-logo {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  margin-bottom: 28px;
  box-shadow: 0 0 60px rgba(0, 96, 255, 0.18), 0 0 60px rgba(255, 15, 29, 0.12);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero-title .white-part,
.hero-title .red-part,
.hero-title .gradient-part,
.hero-title .blue-part { display: inline; }

.hero-title .white-part { color: var(--white); }
.hero-title .red-part { color: var(--red); }
.hero-title .blue-part { color: var(--blue); }
.hero-title .gradient-part {
  color: transparent;
  background: linear-gradient(90deg, var(--red) 0%, #a80057 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
}

.tagline-white { color: var(--white); }
.tagline-blue { color: var(--blue); margin-left: 8px; }

.hero-sub {
  font-size: 1.02rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}

.hero-feature-list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.hero-feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
}

.hero-feature-list li i { color: var(--red); font-size: 0.8rem; }
.hero-feature-list li:nth-child(2) i { color: var(--blue); }
.hero-feature-list li:nth-child(3) i { color: var(--red); }

.integrations-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 36px;
  margin-top: 12px;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 440px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.6s forwards;
}

.integrations-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

.integrations-icons {
  display: flex;
  gap: 14px;
}

.integration-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 1rem;
  transition: all var(--transition);
}

.integration-icon:hover {
  color: var(--white);
  border-color: var(--border-mid);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-brand img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.footer-brand-name {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-brand-name .white-part,
.footer-brand-name .red-part,
.footer-brand-name .gradient-part,
.footer-brand-name .blue-part { display: inline; }

.footer-brand-name .white-part { color: var(--white); }
.footer-brand-name .red-part { color: var(--red); }
.footer-brand-name .blue-part { color: var(--blue); }
.footer-brand-name .gradient-part {
  color: transparent;
  background: linear-gradient(90deg, var(--red) 0%, #a80057 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-socials { display: flex; gap: 10px; }

.footer-social {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.footer-social:hover {
  border-color: var(--border-mid);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.footer-copy { font-size: 0.78rem; color: var(--text-3); }
.footer-copy a { color: var(--text-3); }
.footer-copy a:hover { color: var(--blue); }

@media (max-width: 620px) {
  .container { padding: 0 22px; }
  .header-inner { justify-content: center; text-align: center; }
  .header-right { justify-content: center; }
  .hero { padding: 40px 0 60px; }
  .hero-feature-list { gap: 18px; flex-wrap: wrap; justify-content: center; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .header-link span { display: none; }
}
