:root {
  --bg-dark: #020617;
  --card-bg: rgba(15, 23, 42, 0.78);
  --text-main: #ffffff;
  --text-soft: #cbd5e1;
  --text-muted: #94a3b8;
  --primary: #38bdf8;
  --secondary: #8b5cf6;
  --success: #22c55e;
  --border: rgba(255, 255, 255, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.28), transparent 34%),
    radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.24), transparent 36%),
    linear-gradient(135deg, #020617 0%, #0f172a 50%, #020617 100%);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  overflow-x: hidden;
}

.page {
  width: 100%;
  max-width: 1100px;
  position: relative;
}

.container {
  width: 100%;
  border-radius: clamp(22px, 4vw, 34px);
  background: var(--card-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  padding: clamp(28px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 6vw, 64px);
  align-items: center;
  overflow: visible;
  position: relative;
}

.container::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.12;
  filter: blur(80px);
  border-radius: 50%;
  top: -80px;
  right: -80px;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(18px, 3vw, 26px);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: #7dd3fc;
  border: 1px solid rgba(125, 211, 252, 0.25);
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 700;
  letter-spacing: 0.3px;
  max-width: 100%;
  flex-wrap: wrap;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--success);
  flex: 0 0 auto;
}

.logo {
  font-size: clamp(46px, 10vw, 86px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: clamp(3px, 1vw, 8px);
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--primary), #a78bfa, var(--success));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  word-break: break-word;
}

.meaning {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 10px;
  line-height: 1.3;
}

.tagline {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--text-muted);
  margin-bottom: clamp(26px, 4vw, 38px);
  line-height: 1.6;
  max-width: 620px;
}

.title {
  font-size: clamp(30px, 6vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 720px;
}

.description {
  max-width: 680px;
  font-size: clamp(15px, 2.3vw, 18px);
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: clamp(28px, 4vw, 40px);
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.service {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: clamp(12px, 1.8vw, 14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.progress-box {
  width: 100%;
  max-width: 520px;
  margin-bottom: 26px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-soft);
  font-size: 14px;
  margin-bottom: 10px;
}

.progress-bar {
  height: 11px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.progress-fill {
  width: 72%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  animation: loading 2s infinite ease-in-out;
}

.contact {
  color: var(--text-muted);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  word-break: break-word;
}

.contact a {
  color: #7dd3fc;
  text-decoration: none;
  font-weight: 700;
}

.contact a:hover {
  text-decoration: underline;
}

.visual {
  position: relative;
  z-index: 2;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.orb {
  position: relative;
  z-index: 1;
  width: clamp(210px, 32vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), transparent 8%),
    radial-gradient(circle at 35% 35%, #38bdf8, transparent 28%),
    radial-gradient(circle at 65% 65%, #8b5cf6, transparent 36%),
    radial-gradient(circle at 50% 50%, #020617, #020617 58%, transparent 60%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 70px rgba(56, 189, 248, 0.28),
    inset 0 0 60px rgba(139, 92, 246, 0.2);
  animation: float 5s ease-in-out infinite;
}

.orb::before,
.orb::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -22px;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.24);
}

.orb::after {
  inset: -48px;
  border-color: rgba(167, 139, 250, 0.18);
}

.mini-card {
  position: absolute;
  z-index: 20;
  width: min(180px, 42vw);
  padding: 14px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.4;
}

.mini-card strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 4px;
}

.mini-card.one {
  top: 30px;
  left: 20px;
}

.mini-card.two {
  right: 20px;
  bottom: 35px;
}

.footer {
  text-align: center;
  margin-top: 22px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

@keyframes loading {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.55;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 900px) {
  body {
    align-items: flex-start;
  }

  .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tagline,
  .description,
  .progress-box {
    margin-left: auto;
    margin-right: auto;
  }

  .services {
    justify-content: center;
  }

  .visual {
    min-height: 320px;
    order: -1;
  }

  .mini-card.one {
    top: 20px;
    left: 12%;
  }

  .mini-card.two {
    right: 12%;
    bottom: 20px;
  }
}

@media (max-width: 600px) {
  body {
    padding: 14px;
  }

  .container {
    padding: 28px 20px;
  }

  .badge {
    justify-content: center;
  }

  .services {
    gap: 8px;
  }

  .service {
    white-space: normal;
  }

  .visual {
    min-height: 280px;
  }

  .orb {
    width: clamp(200px, 68vw, 280px);
  }

  .mini-card {
    width: 150px;
    padding: 12px;
    font-size: 12px;
  }

  .mini-card strong {
    font-size: 13px;
  }

  .mini-card.one {
    top: 0;
    left: 0;
  }

  .mini-card.two {
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 420px) {
  .container {
    border-radius: 22px;
    padding: 24px 16px;
  }

  .logo {
    letter-spacing: 3px;
  }

  .progress-label {
    font-size: 12px;
  }

  .visual {
    min-height: 250px;
  }

  .orb {
    width: 220px;
  }

  .mini-card {
    width: 135px;
    padding: 10px;
    font-size: 11px;
  }

  .mini-card.one {
    top: 5px;
    left: -4px;
  }

  .mini-card.two {
    right: -4px;
    bottom: 5px;
  }
}

@media (max-width: 340px) {
  .mini-card {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .progress-fill,
  .orb {
    animation: none;
  }
}