:root {
  --bg: #272727;
  --surface: #131820;
  --surface-soft: #1a2230;
  --text: #f5f7fb;
  --text-muted: #c0c8d6;
  --line: #2a3343;
  --brand: #d9b36b;
  --brand-strong: #efc97e;
  --max-width: 1120px;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: #d9e6ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand-strong);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(39, 39, 39, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--text);
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.68rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #192131;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
  border-color: #3a465d;
  background: #212c40;
}

.btn-primary {
  background: linear-gradient(180deg, #e5c27d, #cfa258);
  border-color: #b88f4f;
  color: #111;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #f1cf89, #dcae63);
}

.hero {
  padding: 3.2rem 0 2rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-copy p {
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0.9rem 0 1.4rem;
}

.kicker {
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.hero-media {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.section {
  padding: 2.2rem 0;
}

.section h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
}

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

.features {
  display: grid;
  gap: 0.9rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.carousel {
  overflow: hidden;
  width: 100%;
  padding: 0.2rem 0;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: carousel-scroll 32s linear infinite;
}

.carousel-group {
  display: flex;
  gap: 0.9rem;
  padding-right: 0.9rem;
}

.shot {
  margin: 0;
  flex: 0 0 clamp(180px, 24vw, 290px);
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.shot img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.shot figcaption {
  display: none;
}

@keyframes carousel-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.free-box {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.free-box p {
  margin: 0;
}

.cta {
  text-align: center;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.cta p {
  color: var(--text-muted);
  margin: 0.45rem 0 1rem;
}

.support-intro {
  color: var(--text-muted);
  margin: 0 0 1.2rem;
  max-width: 72ch;
}

.support-form {
  display: grid;
  gap: 0.95rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #1f2632;
  color: var(--text);
  font: inherit;
}

.form-group textarea {
  resize: vertical;
}

.field-error {
  margin: 0.4rem 0 0;
  color: #ffd6d6;
  font-size: 0.88rem;
}

.status-message {
  margin-bottom: 1rem;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
}

.status-success {
  border-color: #3b8863;
  background: rgba(58, 123, 89, 0.2);
  color: #d5f2e0;
}

.status-error {
  border-color: #985555;
  background: rgba(145, 63, 63, 0.25);
  color: #ffdede;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.legal-page {
  padding: 2.4rem 0 3rem;
}

.legal-page h1 {
  margin-top: 0;
  font-size: clamp(1.8rem, 4vw, 2.45rem);
}

.legal-meta {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.legal-block {
  margin-bottom: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
}

.legal-block h2 {
  margin: 0 0 0.4rem;
  font-size: 1.06rem;
}

.legal-block p,
.legal-block li {
  color: var(--text-muted);
  margin: 0.35rem 0;
}

.legal-block ul {
  margin: 0.2rem 0 0.4rem 1rem;
  padding: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2.6rem;
}

.site-footer .container {
  padding: 1.1rem 0 1.8rem;
}

.footer-grid {
  display: grid;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-muted);
}

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

@media (min-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr minmax(280px, 390px);
    align-items: center;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 0.65rem;
  }

  .shot {
    flex-basis: clamp(200px, 52vw, 260px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    animation: none;
  }
}
