@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

:root {
  --bg-dark: #071326;
  --bg-medium: #10203a;
  --bg-light: #f6f9fc;
  --surface: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --primary: #4f9eff;
  --primary-dark: #3776c7;
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-dark: #1a1a1a;
  --text-medium: #3d3d3d;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow: 0 24px 60px rgba(5, 15, 35, 0.35);
  --max-width: 1120px;
  --section-gap: 96px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

body {
  margin: 0;
  background: linear-gradient(160deg, var(--bg-dark), var(--bg-medium));
  color: var(--text-light);
  line-height: 1.6;
}

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

.hero {
  display: grid;
  gap: 64px;
  padding: 96px 32px 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}

.hero__content {
  max-width: 620px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
  border: 1px solid transparent;
}

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}

.button--primary {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 12px 30px rgba(79, 158, 255, 0.4);
}

.button--primary:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  background: transparent;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero__stats li {
  min-width: 120px;
}

.stat__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
}

.stat__label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero__visual {
  margin: 0;
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero__visual figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__mockup {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
  color: var(--text-light);
  display: grid;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mockup__title {
  font-weight: 600;
}

.mockup__badge {
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(82, 196, 115, 0.2);
  color: #52c473;
  font-weight: 600;
}

.mockup__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mockup__grid div {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: grid;
  gap: 4px;
}

.mockup__metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mockup__metric-value {
  font-size: 1.2rem;
  font-weight: 600;
}

.mockup__list {
  display: grid;
  gap: 12px;
}

.mockup__list-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mockup__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.section {
  padding: var(--section-gap) 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section--light {
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.section--light h2,
.section--light h3 {
  color: var(--text-dark);
}

.section--light p {
  color: var(--text-medium);
}

.section__intro {
  max-width: 680px;
  margin-bottom: 48px;
}

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

.card {
  padding: 32px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  border: 1px solid var(--border);
}

.section--light .card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
}

.workflow__steps {
  list-style: none;
  display: grid;
  gap: 24px;
  padding: 0;
  margin: 0;
}

.workflow__steps li {
  display: flex;
  gap: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  border: 1px solid var(--border);
}

.step__number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cta-band__content {
  max-width: 640px;
}

.integration__list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}

.integration__list li {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  border: 1px solid var(--border);
}

.footer {
  margin: 96px auto 48px;
  padding: 0 32px;
  max-width: var(--max-width);
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
  color: var(--text-muted);
}

.footer__branding {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text-light);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

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

.footer__links a:hover {
  color: var(--primary);
}

.policy-content .footer__branding {
  justify-content: center;
  margin-bottom: 16px;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    margin: 0 auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
  }
}
