@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat+Alternates:wght@500;600;700;800&display=swap");

:root {
  --orange: #ff7a2f;
  --dark: #000;
  --brown: #1a1614;
  --gray: #292524;
  --text: #fff;
  --muted: #9ca3af;
  --muted-2: #d1d5db;
  --line: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  background: linear-gradient(180deg, #000, #1a1614);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: rgba(255, 122, 47, 0.35);
  color: #fff;
}

section[id] {
  scroll-margin-top: 6rem;
}

.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  background: radial-gradient(circle at center, rgba(255, 122, 47, 0.14) 0%, rgba(255, 122, 47, 0.06) 40%, transparent 75%);
}

.glow-tr {
  top: -160px;
  right: -160px;
  width: 640px;
  height: 640px;
}

.glow-mid {
  top: 40%;
  left: -190px;
  width: 520px;
  height: 520px;
}

.container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
}

.header-inner,
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-inner {
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand img {
  height: 2rem;
  width: auto;
}

.brand span {
  font-family: "Montserrat Alternates", Inter, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  color: #d1d5db;
  transition: color 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active,
.footer-col a:hover {
  color: var(--orange);
}

.nav-desktop a.active {
  font-weight: 600;
  color: #fff;
}

.menu-toggle {
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.95);
  padding: 1.5rem;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  font-size: 1.125rem;
  color: #e5e7eb;
  padding: 0.4rem 0;
}

.nav-mobile .btn {
  margin-top: 0.75rem;
  text-align: center;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section-hero {
  padding-top: 4rem;
}

.section-tight {
  padding-bottom: 7rem;
}

.center {
  text-align: center;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
}

h1,
.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.lede,
.copy {
  color: var(--muted);
  line-height: 1.7;
}

.lede {
  font-size: 1.125rem;
}

.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-4 { margin-bottom: 1rem; }
.max-3xl { max-width: 48rem; }
.max-4xl { max-width: 56rem; }
.max-md { max-width: 28rem; }
.max-sm { max-width: 24rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.trust .dot {
  display: none;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 122, 47, 0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-primary,
.nav-desktop .btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: rgba(255, 122, 47, 0.9);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
  border-color: rgba(255, 122, 47, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.card {
  display: block;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.card:hover {
  border-color: rgba(255, 122, 47, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.card h3,
.card h2 {
  font-size: 1.25rem;
}

.label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
}

.card p,
.copy {
  margin-top: 0.75rem;
}

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

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

.grid-2,
.grid-3,
.split,
.split-copy {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.split,
.split-copy {
  align-items: center;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #d1d5db;
}

.pill:hover {
  border-color: rgba(255, 122, 47, 0.4);
}

.checklist {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  display: flex;
  gap: 0.75rem;
  color: #d1d5db;
}

.checklist li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--orange);
}

.hero-img,
.media {
  margin: 0 auto;
}

.rounded {
  border-radius: 1rem;
}

.step-n {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 122, 47, 0.2);
  background: #161210;
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.cta-banner h2 {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.875rem;
}

.cta-banner p {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
}

.closing {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
}

.link-orange {
  color: var(--orange);
}

.link-orange:hover {
  color: rgba(255, 122, 47, 0.8);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}

.footer-grid h3 {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-grid .copy {
  margin-top: 1rem;
  max-width: 20rem;
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
}

.footer-bottom-inner {
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.form,
.card.form {
  display: grid;
  gap: 1.5rem;
}

.field-row {
  display: grid;
  gap: 1.5rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  background: rgba(41, 37, 36, 0.3);
  padding: 0.75rem 1rem;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--orange);
}

.btn-block {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.btn:disabled {
  opacity: 0.5;
}

.status {
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-align: center;
}

.status-ok {
  border: 1px solid #22c55e;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.status-err {
  border: 1px solid #ef4444;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.hidden {
  display: none;
}

.kicker {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
}

.legal h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.5rem;
}

.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.7;
}

.legal ul {
  margin: 0.75rem 0 0 1.5rem;
}

.fade-up {
  animation: fade-up 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .actions {
    flex-direction: row;
  }
  .trust .dot {
    display: block;
  }
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle,
  .nav-mobile { display: none !important; }
  h1, .page-title { font-size: 3.75rem; }
  .section-title,
  .cta-banner h2 { font-size: 3rem; }
  .section { padding: 7rem 0; }
  .section-hero { padding-top: 6rem; }
  .card { padding: 2rem; }
  .cta-banner { padding: 3.5rem 4rem; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.1fr 1fr 1fr 1.2fr; }
  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
  }
  .field-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .split { grid-template-columns: 1.1fr 0.9fr; }
  .split-copy { grid-template-columns: 1fr 1fr; }
  .split-form { grid-template-columns: 0.9fr 1.1fr; }
  .h1-md { font-size: 3rem; }
}
