@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #0b1220;
  --panel: #111a2d;
  --accent: #f7b538;
  --accent-2: #5bd3c7;
  --text: #f4f7fb;
  --muted: #9fb3d2;
  --border: #23324f;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  --radius: 16px;
  --max-width: 1180px;
}

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

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  background: radial-gradient(120% 120% at 20% 20%, rgba(91, 211, 199, 0.08), transparent),
              radial-gradient(80% 80% at 80% 0%, rgba(247, 181, 56, 0.1), transparent),
              var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 18, 32, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(247, 181, 56, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  padding: 8px 10px;
  color: var(--muted);
  font-weight: 500;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(91, 211, 199, 0.1);
  outline: none;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), #ffcc6f);
  color: #0b1220;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(247, 181, 56, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta.secondary {
  background: rgba(91, 211, 199, 0.12);
  color: var(--text);
  box-shadow: none;
  border: 1px solid rgba(91, 211, 199, 0.35);
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(247, 181, 56, 0.45);
  outline: none;
}

.cta.secondary:hover,
.cta.secondary:focus-visible {
  box-shadow: 0 12px 28px rgba(91, 211, 199, 0.2);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 14px;
}

main {
  flex: 1;
  padding: 48px 0 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: center;
  padding: 24px 0 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91, 211, 199, 0.12);
  color: var(--accent-2);
  border: 1px solid rgba(91, 211, 199, 0.35);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 12px 0 10px;
  letter-spacing: -0.02em;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 38ch;
}

.hero-visual {
  background: linear-gradient(145deg, rgba(247, 181, 56, 0.12), rgba(91, 211, 199, 0.1));
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.3);
  padding: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: -40% auto auto 60%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(247, 181, 56, 0.25), transparent 60%);
  transform: rotate(30deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}

.hero-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(11, 18, 32, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.hero-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

section {
  margin-top: 52px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-header h2 {
  margin: 0;
  font-size: 26px;
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.list {
  padding-left: 18px;
  color: var(--muted);
}

.list li {
  margin-bottom: 6px;
}

.brand-card {
  display: grid;
  gap: 12px;
  align-content: space-between;
}

.brand-card .meta {
  color: var(--muted);
  font-size: 14px;
}

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.process-step {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.proof-card {
  background: linear-gradient(160deg, rgba(247, 181, 56, 0.12), rgba(91, 211, 199, 0.12));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.inline-stat {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.form-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  align-items: start;
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  background: #0f192e;
  border: 1px solid #33476a;
  border-radius: 12px;
  padding: 12px;
  color: var(--text);
  font-size: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(91, 211, 199, 0.6);
  border-color: rgba(91, 211, 199, 0.6);
  box-shadow: 0 0 0 2px rgba(91, 211, 199, 0.15);
}

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

.helper {
  color: var(--muted);
  font-size: 13px;
}

.muted {
  color: var(--muted);
}

.footer {
  background: rgba(11, 18, 32, 0.92);
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.footer a {
  color: var(--accent-2);
}

.status {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(91, 211, 199, 0.12);
  border: 1px solid rgba(91, 211, 199, 0.35);
  color: var(--text);
}

.hidden {
  display: none !important;
}

.status.error {
  background: rgba(255, 99, 132, 0.12);
  border-color: rgba(255, 99, 132, 0.4);
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}

.page-title {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 32px;
}

.content-block {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.table {
  width: 100%;
  border-collapse: collapse;
  color: var(--muted);
}

.table td,
.table th {
  border-bottom: 1px solid var(--border);
  padding: 10px 6px;
  text-align: left;
}

.table th {
  color: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 820px) {
  .nav-links {
    position: static;
    background: transparent;
    border: 0;
    padding: 8px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    display: flex;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    overflow-x: auto;
  }

  .nav-links a {
    padding: 8px 12px;
    background: rgba(91, 211, 199, 0.12);
    border: 1px solid rgba(91, 211, 199, 0.35);
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
