:root {
  --bg: #0b0f14;
  --text: #ffffff;
  --muted: #a8b3c2;
  --accent: #c98b5d;
  --line: rgba(255,255,255,0.08);
  --container: 1200px;
}

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

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0a0e13, #111925);
  color: var(--text);
}

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

.header {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo {
  font-weight: bold;
}

.btn {
  padding: 10px 16px;
  border-radius: 8px;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-secondary {
  border: 1px solid var(--line);
}

.hero {
  padding: 100px 0;
position: relative;
z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 10px;
}

.hero-card {
  display: flex;
  justify-content: flex-end;
}

.card {
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
}

.step {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.step span {
  background: var(--accent);
  padding: 5px 10px;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 120px 0 140px;
}

.hero h1 {
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.btn {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #d59668 0%, #b87849 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(201,139,93,0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(201,139,93,0.35);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}
	  
	  
.nav a {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  transition: 0.2s;
}

.nav a:hover {
  color: white;
}
	  
.hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,139,93,0.15), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}