@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #070707;
  --surface: #101010;
  --surface-2: #151515;
  --text: #f7f7f7;
  --muted: #a6a6a6;
  --orange: #ff6a00;
  --orange-light: #ff9b52;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.12), transparent 31%),
    var(--bg);
  background-size: 48px 48px, 48px 48px, auto, auto;
  font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 58%, rgba(255, 106, 0, 0.025) 58% 59%, transparent 59% 100%);
}

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

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

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

.ambient {
  position: fixed;
  z-index: -3;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  background: rgba(255, 106, 0, 0.13);
}

.ambient-one {
  top: -180px;
  right: -100px;
}

.ambient-two {
  bottom: -240px;
  left: -180px;
  opacity: 0.55;
}

.site-header,
.hero,
.features,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.brand span {
  display: grid;
  line-height: 1;
  direction: ltr;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 6px;
  color: var(--orange);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-header nav a {
  position: relative;
  color: #c5c5c5;
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 180ms ease;
}

.site-header nav a:hover {
  color: #fff;
}

.site-header nav a:hover::after {
  width: 100%;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding-block: 76px 64px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: #ececec;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  backdrop-filter: blur(16px);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 106, 0, 0.13), 0 0 20px rgba(255, 106, 0, 0.75);
  animation: pulse 1.8s infinite;
}

.eyebrow {
  margin: 24px 0 14px;
  color: var(--orange-light);
  direction: ltr;
  text-align: right;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.3rem);
  line-height: 1.16;
  letter-spacing: -0.045em;
  font-weight: 900;
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #ffffff, var(--orange-light) 58%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-description {
  max-width: 650px;
  margin: 26px 0 0;
  color: #b9b9b9;
  font-size: 1.04rem;
  line-height: 2;
}

.hero-actions {
  margin-top: 31px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 23px;
  color: #111;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(255, 106, 0, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(255, 106, 0, 0.3);
}

.primary-button span {
  font-size: 1.25rem;
}

.launch-note {
  color: #8f8f8f;
  font-size: 0.82rem;
}

.progress-card {
  max-width: 650px;
  margin-top: 38px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.progress-heading,
.progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.progress-heading span {
  color: #8e8e8e;
  font-size: 0.78rem;
}

.progress-heading strong {
  font-size: 0.92rem;
}

.progress-track {
  height: 9px;
  margin: 18px 0 15px;
  overflow: hidden;
  background: #252525;
  border-radius: 999px;
}

.progress-track span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ffb168);
  box-shadow: 0 0 22px rgba(255, 106, 0, 0.65);
  animation: progress-in 1.3s cubic-bezier(.2,.8,.2,1) both;
}

.progress-meta {
  color: #777;
  font-size: 0.68rem;
}

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

.hero-visual::before {
  content: "";
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  z-index: -3;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.18), rgba(255, 106, 0, 0.03) 42%, transparent 68%);
  filter: blur(10px);
}

.logo-card {
  position: relative;
  width: min(100%, 570px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 106, 0, 0.16), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 126, 36, 0.24);
  box-shadow: inset 0 0 80px rgba(255, 106, 0, 0.06), 0 40px 100px rgba(0, 0, 0, 0.5);
}

.logo-card img {
  position: relative;
  z-index: 2;
  width: 94%;
  filter: drop-shadow(0 34px 40px rgba(0, 0, 0, 0.62));
  animation: float 5s ease-in-out infinite;
}

.logo-glow {
  position: absolute;
  inset: 20%;
  z-index: 0;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.2);
  filter: blur(70px);
}

.logo-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.orbit-one {
  width: 96%;
  aspect-ratio: 1;
  border-top-color: rgba(255, 106, 0, 0.75);
  animation: rotate 18s linear infinite;
}

.orbit-two {
  width: 76%;
  aspect-ratio: 1;
  border-bottom-color: rgba(255, 106, 0, 0.45);
  animation: rotate-reverse 12s linear infinite;
}

.server-tag {
  position: absolute;
  z-index: 5;
  padding: 9px 12px;
  direction: ltr;
  color: #d8d8d8;
  background: rgba(8, 8, 8, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
}

.tag-top {
  top: 18%;
  left: 2%;
}

.tag-bottom {
  right: 2%;
  bottom: 17%;
  color: var(--orange-light);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.features article {
  min-height: 220px;
  padding: 38px 32px;
  position: relative;
  transition: background 180ms ease;
}

.features article:not(:last-child) {
  border-left: 1px solid var(--line);
}

.features article:hover {
  background: rgba(255, 106, 0, 0.035);
}

.feature-number {
  display: inline-block;
  color: var(--orange);
  direction: ltr;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.features h2 {
  margin: 20px 0 10px;
  font-size: 1.1rem;
}

.features p {
  margin: 0;
  color: #929292;
  line-height: 1.85;
  font-size: 0.86rem;
}

.site-footer {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 42px;
}

.footer-copy strong {
  direction: ltr;
  display: inline-block;
  letter-spacing: 0.08em;
}

.footer-copy p {
  margin: 10px 0 0;
  color: #777;
  font-size: 0.8rem;
}

.license-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 18px 14px 14px;
  background: #fff;
  color: #111;
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.license-box > div {
  display: grid;
  gap: 5px;
}

.license-box strong {
  font-size: 0.88rem;
}

.license-box span {
  color: #666;
  font-size: 0.68rem;
}

.license-box a {
  flex: 0 0 auto;
}

.license-box img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.78); opacity: 0.65; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

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

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

@keyframes progress-in {
  from { width: 0; }
  to { width: 78%; }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
    padding-top: 56px;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
  }

  .eyebrow {
    text-align: center;
  }

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

  .progress-card {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 10px;
  }

  .logo-card {
    width: min(100%, 590px);
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .features,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    min-height: 76px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .site-header nav {
    gap: 18px;
  }

  .site-header nav a {
    font-size: 0.78rem;
  }

  .hero {
    min-height: 0;
    padding-block: 44px 34px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4.1rem);
  }

  .hero-description {
    font-size: 0.92rem;
    line-height: 1.9;
  }

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

  .primary-button {
    width: 100%;
  }

  .progress-card {
    padding: 18px;
  }

  .progress-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .progress-meta {
    font-size: 0.59rem;
  }

  .server-tag {
    display: none;
  }

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

  .features article {
    min-height: auto;
  }

  .features article:not(:last-child) {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .license-box {
    justify-content: space-between;
    text-align: right;
  }
}

@media (max-width: 430px) {
  .site-header nav a:first-child {
    display: none;
  }

  .status-pill {
    font-size: 0.72rem;
  }

  .eyebrow {
    font-size: 0.62rem;
  }

  .progress-meta {
    gap: 8px;
  }

  .license-box {
    gap: 10px;
    padding-right: 12px;
  }

  .license-box span {
    font-size: 0.6rem;
  }
}

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