:root {
  --brand-red: #ff3b4a;
  --brand-black: #17181c;
  --text-muted: rgba(23, 24, 28, 0.7);
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-xl: 0 28px 70px rgba(10, 11, 14, 0.35);
  --shadow-md: 0 14px 30px rgba(17, 19, 24, 0.12);
  --max-width: 980px;
}

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

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

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--brand-black);
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 59, 74, 0.24), transparent 44%),
    radial-gradient(circle at 88% 82%, rgba(255, 59, 74, 0.15), transparent 46%),
    linear-gradient(145deg, #090a0d 0%, #14161b 52%, #1e2027 100%);
}

.page-shell {
  width: min(100%, var(--max-width));
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: clamp(1.2rem, 2.5vw, 2rem);
  animation: fadeInUp 0.7s ease-out both;
}

.hero {
  text-align: center;
  margin-bottom: 1rem;
}

.brand-block {
  display: flex;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.brand-logo {
  width: min(100%, 310px);
  height: auto;
}

.status-badge {
  display: inline-block;
  margin: 0.2rem 0 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 59, 74, 0.34);
  background: rgba(255, 59, 74, 0.09);
  color: var(--brand-red);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.6rem, 4.2vw, 2.7rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.subtitle {
  max-width: 66ch;
  margin: 0.75rem auto 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
}

.hero-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.cta-button {
  border: none;
  border-radius: 10px;
  min-height: 2.85rem;
  padding: 0.65rem 1rem;
  background: var(--brand-red);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 59, 74, 0.28);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button:focus-visible {
  outline: 2px solid rgba(255, 59, 74, 0.45);
  outline-offset: 2px;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(23, 24, 28, 0.16);
  color: var(--brand-black);
  text-decoration: none;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.74);
}

.ghost-link:hover,
.ghost-link:focus-visible {
  border-color: rgba(255, 59, 74, 0.44);
  color: var(--brand-red);
}

.kpi-strip {
  margin: 1.1rem 0 1.3rem;
  display: grid;
  gap: 0.75rem;
}

.kpi-item {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 24, 28, 0.09);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.85rem;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 0.15rem;
}

.kpi-item strong {
  font-size: 0.94rem;
}

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

.content-grid {
  display: grid;
  gap: 0.9rem;
}

.panel {
  background: var(--surface-strong);
  border: 1px solid rgba(23, 24, 28, 0.08);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.panel h2 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  color: var(--brand-red);
}

.intro {
  margin: 0;
  color: var(--text-muted);
}

.features-list {
  margin: 0;
  padding-left: 1rem;
  color: rgba(23, 24, 28, 0.85);
}

.features-list li + li {
  margin-top: 0.4rem;
}

.contact-line {
  margin: 0;
  color: rgba(23, 24, 28, 0.84);
}

.contact-line a {
  color: var(--brand-red);
  font-weight: 600;
  text-decoration: none;
}

.contact-line a:hover,
.contact-line a:focus-visible {
  text-decoration: underline;
}

.newsletter-form {
  display: grid;
  gap: 0.65rem;
}

.newsletter-form label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-row {
  display: grid;
  gap: 0.55rem;
}

.newsletter-form input[type="email"] {
  width: 100%;
  min-height: 2.8rem;
  border-radius: 10px;
  border: 1px solid rgba(23, 24, 28, 0.2);
  background: #ffffff;
  color: var(--brand-black);
  font-size: 0.95rem;
  padding: 0 0.85rem;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(23, 24, 28, 0.45);
}

.newsletter-form input[type="email"]:focus-visible {
  outline: 2px solid rgba(255, 59, 74, 0.45);
  border-color: var(--brand-red);
}

.site-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(23, 24, 28, 0.12);
  color: rgba(23, 24, 28, 0.58);
  font-size: 0.86rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
}

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

.footer-links a {
  color: rgba(23, 24, 28, 0.67);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand-red);
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 24, 28, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: rgba(23, 24, 28, 0.8);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-button:hover,
.social-button:focus-visible {
  border-color: rgba(255, 59, 74, 0.4);
  color: var(--brand-red);
  transform: translateY(-1px);
}

.reveal-section {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .kpi-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .newsletter-panel {
    grid-column: 1 / -1;
  }

  .form-row {
    grid-template-columns: 1fr auto;
  }

  .cta-button {
    min-width: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-section,
  .reveal-section.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
