:root {
  --bg: #0b0d10;
  --bg-soft: #12151a;
  --text: #f2f4f7;
  --text-muted: #9aa3af;
  --accent: #34d399;
  --accent-dark: #10b981;
  --border: #22262c;
  --radius: 14px;
  --max-width: 880px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.15) 0%, rgba(52, 211, 153, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.wrapper {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.hero {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 16, 0.5) 0%, rgba(11, 13, 16, 0.75) 65%, rgba(11, 13, 16, 0.97) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  max-width: 640px;
}

.badge {
  display: inline-block;
  padding: 12px 26px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: 999px;
  margin-bottom: 28px;
}

.domain {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.domain .dot {
  color: var(--accent);
}

.subtitle {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #0b0d10;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-full {
  width: 100%;
  border: none;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 0 80px;
  border-top: 1px solid var(--border);
}

.feature {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
}

.feature .icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact */
.contact {
  text-align: center;
  padding: 60px 0 100px;
  border-top: 1px solid var(--border);
}

.contact h2 {
  font-size: 1.8rem;
  margin: 0 0 12px;
}

.contact > p {
  color: var(--text-muted);
  margin: 0 0 36px;
}

.offer-form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 14px;
}

.form-row input {
  flex: 1;
}

input,
textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

.form-status {
  min-height: 20px;
  font-size: 0.9rem;
  color: var(--accent);
  margin: 0;
  text-align: center;
}

.direct-mail {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.direct-mail a {
  color: var(--accent);
  text-decoration: none;
}

.direct-mail a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  text-align: center;
  padding: 28px 0 40px;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 700px) {
  .features {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
  }
}
