:root {
  --bg: #081019;
  --bg-soft: #0d1522;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #eef4ff;
  --muted: #9eb0cb;
  --line: rgba(255, 255, 255, 0.09);
  --primary: #8c7bff;
  --primary-2: #5de4c7;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(140, 123, 255, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(93, 228, 199, 0.16), transparent 25%),
    linear-gradient(180deg, #081019 0%, #09121d 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(8, 16, 25, 0.72);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.hero {
  padding: 88px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.badge,
.eyebrow,
.mini-badge,
.featured-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #c8d4f4;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.84rem;
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -1.7px;
}

.hero-copy p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span,
.styles-grid span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 9px 13px;
  color: #d5dff5;
  font-size: 0.92rem;
}

.glass-card,
.step,
.use-card,
.deliverable,
.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.glass-card {
  padding: 28px;
}

.card-head h3 {
  margin: 14px 0 8px;
  font-size: 1.4rem;
}

.card-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.card-item strong {
  display: block;
  margin-bottom: 6px;
}

.card-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: 76px 0;
}

.section.alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.section-head {
  text-align: center;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  letter-spacing: -1px;
}

.section-head p {
  margin: 0 auto;
  max-width: 780px;
  color: var(--muted);
  line-height: 1.75;
}

.steps,
.uses-grid,
.deliverables {
  display: grid;
  gap: 20px;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.uses-grid,
.deliverables {
  grid-template-columns: repeat(3, 1fr);
}

.step,
.use-card,
.deliverable {
  padding: 24px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #081019;
  margin-bottom: 14px;
}

.step p,
.use-card p,
.deliverable ul {
  color: var(--muted);
  line-height: 1.7;
}

.styles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.deliverable {
  position: relative;
}

.deliverable.featured {
  transform: translateY(-4px);
  border-color: rgba(140, 123, 255, 0.35);
}

.featured-badge {
  position: absolute;
  right: 18px;
  top: 18px;
}

.deliverable-price {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 12px 0 20px;
  background: linear-gradient(135deg, #fff 0%, #c8d4f4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.deliverable.featured .deliverable-price {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.deliverable ul {
  padding-left: 18px;
}

.contact-box {
  padding: 30px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  color: #808081;
}

label {
  color: #c6d3ee;
  font-size: 0.93rem;
}

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

input::placeholder,
textarea::placeholder {
  color: #7f93b2;
}

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

.btn {
  min-height: 50px;
  border-radius: 14px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #081019;
}

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

.footer {
  padding: 28px 0 42px;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

@media (max-width: 980px) {

  .hero-grid,
  .steps,
  .uses-grid,
  .deliverables,
  .contact-box,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }
}