:root {
  --green: #34c77b;
  --green2: #12b76a;
  --deep: #08704f;
  --ink: #17201c;
  --muted: #65736c;
  --bg: #f7fbf9;
}
* {
  box-sizing: border-box;
}
html {
  min-height: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: Vazirmatn, Tahoma, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(52, 199, 123, 0.2),
      transparent 27rem
    ),
    radial-gradient(
      circle at 93% 90%,
      rgba(125, 221, 176, 0.22),
      transparent 30rem
    ),
    linear-gradient(135deg, #fbfdfc 0%, #f2f9f5 50%, #f9fcfa 100%);
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(8, 112, 79, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 112, 79, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}
.orb.a {
  width: 230px;
  height: 230px;
  left: -110px;
  top: 4%;
  background: rgba(52, 199, 123, 0.14);
}
.orb.b {
  width: 300px;
  height: 300px;
  right: -150px;
  bottom: 4%;
  background: rgba(18, 183, 106, 0.09);
}
.wrap {
  width: min(980px, calc(100% - 28px));
  min-height: 100vh;
  margin: auto;
  display: grid;
  place-items: center;
  padding: 28px 0;
  position: relative;
}
.glass {
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 34px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.74),
    rgba(255, 255, 255, 0.4)
  );
  box-shadow:
    0 30px 90px rgba(8, 112, 79, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(26px) saturate(145%);
  -webkit-backdrop-filter: blur(26px) saturate(145%);
  padding: 58px;
}
.glass:before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -160px;
  top: -320px;
  border-radius: 50%;
  background: rgba(52, 199, 123, 0.13);
  filter: blur(12px);
}
.glass:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.5),
    transparent 31%,
    transparent 73%,
    rgba(255, 255, 255, 0.24)
  );
}
.content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.brand {
  display: inline-block;
  width: 190px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 12px 22px rgba(8, 112, 79, 0.08));
}
.brand svg {
  display: block;
  width: 100%;
  height: auto;
}
.eyebrow {
  width: max-content;
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid rgba(52, 199, 123, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 30px rgba(8, 112, 79, 0.05);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    0 0 0 5px rgba(52, 199, 123, 0.1),
    0 0 18px rgba(52, 199, 123, 0.55);
}
h1 {
  margin: 21px 0 0;
  font-size: clamp(40px, 7vw, 70px);
  line-height: 1.12;
  letter-spacing: -2px;
  font-weight: 900;
  background: linear-gradient(135deg, #17201c 15%, #08704f 70%, #12b76a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  max-width: 690px;
  margin: 19px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 2.15;
  font-weight: 500;
}
.terminal {
  max-width: 700px;
  margin: 32px auto 26px;
  padding: 17px 19px;
  border-radius: 19px;
  border: 1px solid rgba(8, 112, 79, 0.1);
  background: rgba(255, 255, 255, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 45px rgba(8, 112, 79, 0.06);
  font:
    12px/1.9 ui-monospace,
    SFMono-Regular,
    Menlo,
    Consolas,
    monospace;
  color: #4c5b54;
  text-align: left;
  direction: ltr;
}
.prompt {
  color: var(--green2);
  font-weight: 800;
}
.cmd {
  color: var(--deep);
  font-weight: 700;
}
.cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  margin-left: 4px;
  vertical-align: -2px;
  background: var(--green);
  animation: blink 1s infinite;
}
@keyframes blink {
  50% {
    opacity: 0.12;
  }
}
.message {
  max-width: 700px;
  margin: 0 auto;
  color: #4b5852;
  font-size: 15px;
  line-height: 2.1;
}
.message strong {
  color: var(--deep);
}
.links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.link {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(8, 112, 79, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 32px rgba(8, 112, 79, 0.045);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}
.link:hover {
  transform: translateY(-5px);
  border-color: rgba(52, 199, 123, 0.35);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 42px rgba(8, 112, 79, 0.11);
}
.title {
  font-size: 15px;
  font-weight: 800;
  color: var(--deep);
}
.url {
  direction: ltr;
  font:
    11px ui-monospace,
    SFMono-Regular,
    Menlo,
    Consolas,
    monospace;
  color: #7b8882;
}
footer {
  margin-top: 34px;
  color: #8a9690;
  font-size: 11px;
}
footer b {
  color: var(--deep);
}
@media (max-width: 720px) {
  .wrap {
    width: min(100% - 16px, 980px);
    padding: 16px 0;
  }
  .glass {
    padding: 40px 18px 28px;
    border-radius: 27px;
  }
  .brand {
    width: 165px;
  }
  .links {
    grid-template-columns: 1fr;
  }
  .link {
    min-height: 76px;
  }
  .terminal {
    overflow: hidden;
    white-space: nowrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .cursor {
    animation: none;
  }
  .link {
    transition: none;
  }
}
