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

:root {
  --bg: #020617;
  --bg-elevated: #020617;
  --bg-card: #020617;
  --accent: #facc15;
  --accent-soft: #f97316;
  --accent-deep: #0ea5e9;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --text-soft: #6b7280;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.85);
}

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top, #0f172a 0, #020617 52%, #000000 100%);
  line-height: 1.6;
}

/* Global elements */

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 6, 23, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.95);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  height: 40px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--text-soft);
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.2rem;
  color: #cbd5f5;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width 0.16s ease-out;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Buttons */

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.7rem 1.5rem;
  font-size: 0.98rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #111827;
  box-shadow: 0 18px 38px rgba(251, 191, 36, 0.55);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(251, 191, 36, 0.7);
}

.btn.ghost {
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.85);
}

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

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

/* Hero */

.hero {
  padding: 4rem 0 3.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.1vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 36rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.35rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.hero-metrics dt {
  font-size: 1.2rem;
  font-weight: 650;
  color: #e5e7eb;
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-card {
  background: radial-gradient(circle at top left, #1d283a 0, #020617 60%, #000 100%);
  border-radius: 1.6rem;
  padding: 1.2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card-overlay {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  background: rgba(15, 23, 42, 0.86);
  border-radius: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.hero-card-overlay .badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.hero-card-overlay .big-number {
  font-size: 1.4rem;
  font-weight: 700;
}

.hero-card-overlay .small-label {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.hero-tags span {
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--text-soft);
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section-header {
  max-width: 42rem;
  margin-bottom: 2.25rem;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
}

/* Solutions */

.solutions {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
}

.card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1.4rem;
  padding: 1.7rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.85);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  background: radial-gradient(circle at top, rgba(250, 204, 21, 0.2), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(250, 204, 21, 0.5);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.card ul {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.card ul li::before {
  content: "• ";
  color: var(--accent-soft);
}

/* Bundles */

.bundles {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9) 0, #020617 55%, #000 100%);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.bundle {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1.6rem;
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--border-subtle);
}

.bundle-highlight {
  border-color: rgba(250, 204, 21, 0.6);
  box-shadow: 0 20px 50px rgba(250, 204, 21, 0.25);
}

.bundle-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.bundle h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.bundle-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.bundle-list {
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-bottom: 0.9rem;
}

.bundle-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.25rem;
}

.bundle-list li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-soft);
  left: 0;
  top: 0.55rem;
}

.bundle-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Process */

.process {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  font-size: 0.9rem;
}

.steps h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.steps p {
  color: var(--text-muted);
}

/* Stories */

.stories {
  background: radial-gradient(circle at top, #020617 0, #020617 55%, #000 100%);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.story {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1.4rem;
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.story-quote {
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.story-meta {
  color: var(--text-soft);
  font-size: 0.8rem;
}

/* Contact */

.contact {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-copy h2 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.contact-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-points {
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.contact-points li::before {
  content: "• ";
  color: var(--accent-soft);
}

.contact-meta {
  font-size: 0.86rem;
  color: var(--text-main);
}

/* Contact form */

.contact-form {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 1.4rem;
  padding: 1.7rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.9);
  display: grid;
  gap: 0.9rem;
  font-size: 0.86rem;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.55rem 0.7rem;
  background: #020617;
  color: var(--text-main);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent-soft);
  outline-offset: 1px;
}

.fine-print {
  font-size: 0.72rem;
  color: var(--text-soft);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  padding: 1.8rem 0 2.2rem;
  background: #020617;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) auto;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  height: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.footer-meta {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: #4b5563;
}

/* Responsive */

@media (max-width: 880px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-visual {
    order: -1;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 0.8rem;
  }

  .section {
    padding: 3rem 0;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-links {
    justify-content: flex-start;
  }
}
