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

:root {
  --red-bg: #c8001f;
  --red-deep: #8e0016;
  --red-soft: rgba(255, 255, 255, 0.08);
  --surface: #ffffff;
  --text-main: #1b1b1f;
  --text-muted: rgba(27, 27, 31, 0.72);
  --border-soft: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, system-ui, -system-ui, sans-serif;
  color: #ffffff;
  background: radial-gradient(circle at top, #f5334f 0, #c8001f 40%, #780012 100%);
  min-height: 100vh;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, padding 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.75);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 6px;
  background: radial-gradient(circle, #ff445f 0, #c8001f 60%, #8e0016 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

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

.brand-name {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  font-size: 0.78rem;
  opacity: 0.78;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
}

.main-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  opacity: 0.9;
  transition: opacity 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.main-nav a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 40px;
}

.hero {
  padding-top: 12px;
  padding-bottom: 28px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}

.hero-copy .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0 0 8px;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 14px;
}

.hero-lead {
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 0 16px;
  opacity: 0.9;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: rgba(0, 0, 0, 0.24);
  font-size: 0.82rem;
}

.hero-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-mockup {
  width: 100%;
  max-width: 340px;
  border-radius: 32px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.72));
  box-shadow: var(--shadow-soft);
  padding: 14px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.dot-red {
  background: #ff5b6d;
}

.mockup-label {
  margin-left: auto;
  font-size: 0.78rem;
  opacity: 0.8;
}

.mockup-body {
  padding-top: 12px;
}

.mockup-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
}

.value {
  margin-top: 4px;
  font-size: 1.4rem;
  font-weight: 600;
}

.mockup-progress {
  margin-top: 6px;
  padding: 10px 10px 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
}

.progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.percent {
  font-size: 0.86rem;
  font-weight: 500;
}

.progress-track {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
  margin-bottom: 4px;
}

.progress-fill {
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffffff, #ffe36a);
}

.micro {
  font-size: 0.74rem;
  opacity: 0.86;
}

.section-header {
  margin-top: 10px;
  margin-bottom: 18px;
  text-align: left;
}

.section-header h2 {
  margin: 0 0 6px;
  font-size: 1.4rem;
}

.section-header p {
  margin: 0;
  font-size: 0.96rem;
  opacity: 0.9;
  max-width: 36rem;
}

.section-header.narrow {
  max-width: 640px;
}

.feature-section {
  margin-top: 12px;
  margin-bottom: 28px;
}

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

.feature-card {
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-md);
  padding: 16px 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.policy-section {
  margin-top: 10px;
  margin-bottom: 28px;
}

.policy-body {
  background: var(--surface);
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 22px 20px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-body h3 {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.policy-body h3:first-child {
  margin-top: 0;
}

.policy-body p {
  margin: 0 0 10px;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.policy-body ul {
  margin: 0 0 10px 18px;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.policy-body li + li {
  margin-top: 4px;
}

.policy-body a {
  color: #c8001f;
}

.contact-section {
  margin-top: 18px;
}

.contact-body {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
}

.support-form {
  background: rgba(0, 0, 0, 0.58);
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.field span {
  opacity: 0.9;
}

textarea,
input[type="text"],
input[type="email"] {
  font: inherit;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus {
  border-color: #ffe36a;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 0 1px rgba(255, 227, 106, 0.6);
}

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

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  margin-top: 2px;
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(135deg, #ffe36a, #ffffff);
  color: #2b0000;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.08s ease, box-shadow 0.08s ease, filter 0.08s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.7);
  filter: brightness(1.02);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.6);
}

.contact-meta {
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.96;
}

.contact-meta p {
  margin: 0 0 4px;
}

.site-footer {
  margin-top: 24px;
  padding: 16px 20px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.7);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 0.86rem;
  opacity: 0.9;
}

.footer-inner a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Responsive adjustments */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-panel {
    order: -1;
  }
  .header-inner {
    padding-inline: 16px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  main {
    padding-inline: 16px;
  }
  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-body {
    grid-template-columns: minmax(0, 1fr);
  }
  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .policy-body {
    padding-inline: 16px;
  }
}

@media (max-width: 480px) {
  .brand-subtitle {
    display: none;
  }
  .logo-mark {
    width: 34px;
    height: 34px;
  }
}
