:root {
  --black: #07070b;
  --black-soft: #09090f;
  --black-orange: #160b05;
  --orange: #ff5a00;
  --orange-hover: #ff6a00;
  --amber: #ff8a00;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.65);
  --border: rgba(255, 255, 255, 0.12);
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --container: min(100% - 48px, 1180px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 0%, rgba(255, 106, 0, 0.28), transparent 30%),
    radial-gradient(circle at 18% 98%, rgba(255, 90, 0, 0.22), transparent 32%),
    linear-gradient(180deg, #160b05 0%, #07070b 32%, #07070b 74%, #120a07 100%);
}

.site-nav {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 50;
}

.nav-island {
  width: min(100%, 1800px);
  min-height: 92px;
  margin: 0 auto;
  padding: 14px 20px 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 1.22rem;
  font-weight: 600;
  white-space: nowrap;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.26);
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 106, 0, 0.28));
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  color: var(--white);
  font-weight: 650;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.mobile-panel a:focus-visible,
.card-link:focus-visible,
.faq-item summary:focus-visible,
.form-field:focus-visible {
  outline: 2px solid rgba(255, 138, 0, 0.82);
  outline-offset: 4px;
}

.button-primary {
  color: #ffffff;
  background: var(--orange);
}

.button-primary:hover {
  background: var(--orange-hover);
}

.button-secondary,
.nav-island .button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-secondary:hover,
.nav-island .button:hover,
.nav-island .button[aria-current="page"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.28);
}

.nav-island.scrolled .nav-link-pill {
  display: none;
}

.menu-button {
  display: none;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  width: min(100% - 32px, 520px);
  margin: 10px auto 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(12, 8, 6, 0.90);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.mobile-panel.open {
  display: grid;
  gap: 8px;
}

.mobile-panel a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
}

.mobile-panel a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.18);
}

.shell {
  width: var(--container);
  margin: 0 auto;
}

.page-hero {
  padding: 184px 0 74px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 188, 122, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.85rem, 4.45vw, 3.55rem);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-hero p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding-top: 34px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-header h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.4vw, 3.05rem);
  line-height: 1.04;
  font-weight: 400;
  text-wrap: balance;
}

.section-header p {
  color: var(--muted);
  line-height: 1.65;
}

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

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

.surface-card,
.legal-card,
.contact-panel,
.faq-item {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.surface-card {
  min-height: 210px;
  border-radius: 28px;
  padding: 26px;
}

.surface-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.surface-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.card-link {
  display: block;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 138, 0, 0.34);
  background: rgba(255, 255, 255, 0.09);
}

.contact-panel {
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 106, 0, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.06);
}

.contact-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1.04;
  font-weight: 400;
}

.contact-panel p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-item {
  border-radius: 24px;
  overflow: hidden;
}

.faq-item summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  font-weight: 650;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.6;
}

.legal-card {
  max-width: 900px;
  border-radius: 30px;
  padding: clamp(28px, 5vw, 54px);
}

.legal-card h2 {
  margin: 34px 0 12px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin: 22px 0 8px;
  font-size: 1.08rem;
}

.legal-card p,
.legal-card li {
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.75;
}

.legal-card a {
  color: rgba(255, 188, 122, 0.96);
}

.legal-card ul,
.legal-card ol {
  padding-left: 1.2rem;
}

.legal-meta {
  color: rgba(255, 255, 255, 0.50);
  font-size: 0.94rem;
}

.form-grid {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

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

.request-type-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.request-chip {
  min-height: 132px;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.request-chip strong {
  display: block;
  margin-bottom: 6px;
}

.request-chip span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-field {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

textarea.form-field {
  min-height: 130px;
  resize: vertical;
}

.form-field::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 650;
}

.form-note,
.status-box {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  line-height: 1.6;
}

.status-box.success {
  text-align: center;
  border-color: rgba(90, 255, 170, 0.20);
  background: rgba(90, 255, 170, 0.08);
}

.status-box.error {
  border-color: rgba(255, 110, 90, 0.26);
  color: rgba(255, 210, 202, 0.95);
  background: rgba(255, 90, 70, 0.08);
}

.hidden {
  display: none !important;
}

.site-footer {
  padding: 68px 0 46px;
  color: rgba(255, 255, 255, 0.68);
  background:
    radial-gradient(circle at 76% 0%, rgba(55, 22, 8, 0.45), transparent 42%),
    linear-gradient(180deg, #07070b 0%, #050508 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.site-footer h3,
.site-footer h4 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.site-footer p {
  max-width: 380px;
  margin: 0;
  line-height: 1.6;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--white);
}

.copyright {
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .support-grid,
  .card-grid,
  .faq-list,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 860px) {
  :root {
    --container: min(100% - 32px, 1180px);
  }

  .site-nav {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .nav-island {
    min-height: 74px;
    padding: 10px 12px 10px 20px;
  }

  .nav-actions .button {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .page-hero {
    padding: 128px 0 52px;
  }

  .section {
    padding: 52px 0;
  }

  .surface-card,
  .contact-panel,
  .legal-card {
    border-radius: 24px;
    padding: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .page-hero h1 {
    font-size: clamp(2.05rem, 10vw, 2.35rem);
  }

  .page-actions,
  .page-actions .button {
    width: 100%;
  }

  .card-grid,
  .support-grid,
  .faq-list,
  .split-grid,
  .request-type-grid {
    grid-template-columns: 1fr;
  }
}

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

  .button:hover,
  .card-link:hover {
    transform: none;
  }
}
