:root {
  --bg: #050505;
  --bg-soft: #111111;
  --card: #171717;
  --card-2: #202020;
  --text: #f8f8f8;
  --muted: #b8b8b8;
  --accent: #ffb000;
  --accent-2: #ff7a00;
  --accent-3: #ffd36a;
  --border: rgba(255, 176, 0, 0.22);
  --shadow: 0 24px 80px rgba(255, 122, 0, 0.14);
  --mouse-x: 50%;
  --mouse-y: 50%;
}

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

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255, 176, 0, 0.12), transparent 18rem),
    radial-gradient(circle at top right, rgba(255, 176, 0, 0.18), transparent 34rem),
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 176, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 176, 0, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  animation: gridDrift 18s linear infinite;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  left: var(--mouse-x);
  top: var(--mouse-y);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 176, 0, 0.13), transparent 64%);
  pointer-events: none;
  z-index: -1;
  transition: width 0.25s ease, height 0.25s ease;
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 52px 52px, 52px 52px; }
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 28px rgba(255, 176, 0, 0.28); }
  50% { box-shadow: 0 0 56px rgba(255, 122, 0, 0.48); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes scanLine {
  from { transform: translateY(-100%); opacity: 0; }
  30% { opacity: 0.8; }
  to { transform: translateY(360%); opacity: 0; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(26px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.2rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #080808;
  display: grid;
  place-items: center;
  box-shadow: 0 0 32px rgba(255, 176, 0, 0.38);
  animation: pulseGlow 2.8s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.logo:hover .logo-mark {
  transform: rotate(-10deg) scale(1.08);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  position: relative;
  transition: color 0.2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

nav a:hover {
  color: var(--accent);
}

nav a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.42), transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  background-size: 220% 220%;
  color: #080808;
  box-shadow: 0 16px 36px rgba(255, 122, 0, 0.22);
  animation: gradientShift 5s ease infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(255, 122, 0, 0.32);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(255, 176, 0, 0.08);
}

.hero {
  padding: 92px 0 70px;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.8;
  pointer-events: none;
}

.hero::before {
  width: 140px;
  height: 140px;
  right: 7%;
  top: 16%;
  border: 1px solid rgba(255, 176, 0, 0.18);
  animation: floatUp 7s ease-in-out infinite;
}

.hero::after {
  width: 72px;
  height: 72px;
  left: 5%;
  bottom: 12%;
  background: rgba(255, 122, 0, 0.1);
  animation: floatUp 5.5s ease-in-out infinite reverse;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 176, 0, 0.08);
  color: #ffd98a;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 22px;
  box-shadow: inset 0 0 20px rgba(255, 176, 0, 0.04);
  animation: fadeSlideUp 0.8s ease both;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  max-width: 760px;
  animation: fadeSlideUp 0.95s ease 0.08s both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
  background-size: 280% 280%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 4s ease infinite;
  filter: drop-shadow(0 0 18px rgba(255, 176, 0, 0.2));
}

.hero p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 620px;
  animation: fadeSlideUp 0.95s ease 0.16s both;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeSlideUp 0.95s ease 0.24s both;
}

.hero-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 176, 0, 0.1), rgba(255, 255, 255, 0.04));
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  animation: fadeSlideUp 0.95s ease 0.28s both, floatUp 7.5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-card:hover {
  border-color: rgba(255, 176, 0, 0.55);
  box-shadow: 0 30px 90px rgba(255, 122, 0, 0.22);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 176, 0, 0.2);
  filter: blur(10px);
}

.terminal {
  background: #090909;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.terminal::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 70px;
  background: linear-gradient(180deg, rgba(255, 176, 0, 0.12), transparent);
  animation: scanLine 3.4s linear infinite;
  pointer-events: none;
}

.terminal-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: #151515;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-2);
}

.dot:nth-child(2) { background: var(--accent); }
.dot:nth-child(3) { background: #555; }

.terminal-body {
  padding: 22px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.9rem;
  color: #d7d7d7;
}

.line {
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeSlideUp 0.5s ease both;
}

.line:nth-child(1) { animation-delay: 0.35s; }
.line:nth-child(2) { animation-delay: 0.55s; }
.line:nth-child(3) { animation-delay: 0.75s; }
.line:nth-child(4) { animation-delay: 0.95s; }
.line:nth-child(5) { animation-delay: 1.15s; }

.prompt { color: var(--accent); }
.ok { color: #ffd98a; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.stat:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: var(--border);
  background: rgba(255, 176, 0, 0.08);
}

.stat strong {
  display: block;
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.85rem;
}

section {
  padding: 72px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  max-width: 640px;
}

.section-head p {
  color: var(--muted);
  max-width: 440px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: linear-gradient(180deg, var(--card), rgba(23, 23, 23, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255, 176, 0, 0.18), transparent 34%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  border-color: var(--border);
  box-shadow: 0 24px 70px rgba(255, 122, 0, 0.16);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 176, 0, 0.1);
  color: var(--accent);
  border: 1px solid var(--border);
  margin-bottom: 18px;
  font-size: 1.35rem;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.card:hover .icon {
  transform: rotate(-8deg) scale(1.12);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #080808;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.features {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 176, 0, 0.09), rgba(255, 122, 0, 0.04));
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 28px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: rgba(5, 5, 5, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  border-color: var(--border);
  background: rgba(255, 176, 0, 0.07);
}

.check {
  color: var(--accent);
  font-weight: 900;
}

.showcase {
  min-height: 360px;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255, 176, 0, 0.2), transparent 20rem),
    linear-gradient(135deg, rgba(255, 176, 0, 0.18), transparent),
    #0b0b0b;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  display: grid;
  align-content: end;
  box-shadow: inset 0 0 80px rgba(255, 122, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.showcase::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, transparent, rgba(255,176,0,0.15), transparent, rgba(255,122,0,0.12), transparent);
  animation: spin 12s linear infinite;
}

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

.showcase-panel {
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(14px);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  color: #ffd98a;
  border: 1px solid var(--border);
  background: rgba(255, 176, 0, 0.08);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.tag:hover {
  transform: translateY(-4px);
  background: rgba(255, 176, 0, 0.16);
}

.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.price {
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 900;
  margin: 12px 0;
  letter-spacing: -0.05em;
}

.list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  margin: 20px 0 24px;
}

.list li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 8px;
  font-weight: 900;
}

.cta {
  text-align: center;
  padding: 58px 24px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(255, 176, 0, 0.26), transparent 25rem),
    linear-gradient(135deg, #151515, #080808);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cta h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 16px;
}

.cta p {
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto 28px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

form {
  display: grid;
  gap: 12px;
}

input, textarea {
  width: 100%;
  background: #0f0f0f;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 176, 0, 0.08), 0 12px 32px rgba(255, 122, 0, 0.08);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px 0;
  color: var(--muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  nav ul { display: none; }
  .hero-grid,
  .features,
  .contact {
    grid-template-columns: 1fr;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 14px;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
}
  @media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
