:root {
  color-scheme: dark;
  font-family: Inter, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  --bg: #080808;
  --surface: #111111;
  --surface-muted: #161616;
  --surface-soft: #1d1d1d;
  --text: #e5e5e5;
  --text-muted: #adb1b8;
  --accent: #49f0ff;
  --accent-soft: rgba(73, 240, 255, 0.18);
  --accent-glow: #44e6ff;
  --copper: #c07a4b;
  --rust: #a55b32;
  --sand: #d6c2a0;
  --steel: #6f7d8a;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 22px;
  --radius-sm: 14px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at top left, rgba(73, 240, 255, 0.1), transparent 28%),
    radial-gradient(circle at bottom right, rgba(192, 122, 75, 0.1), transparent 22%),
    linear-gradient(180deg, #070707 0%, #0d0d0d 100%);
  color: var(--text);
  font-family: var(--font-family);
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(73, 240, 255, 0.55);
  outline-offset: 2px;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 15%, rgba(73, 240, 255, 0.08), transparent 15%),
    radial-gradient(circle at 70% 80%, rgba(192, 122, 75, 0.07), transparent 16%);
}

.page-shell {
  position: relative;
  z-index: 1;
}

body.gate-active {
  overflow: hidden;
}

body.gate-active .page-shell {
  filter: brightness(0.18) blur(2px);
  pointer-events: none;
  user-select: none;
}

.privacy-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.98);
  color: var(--text);
}

.privacy-gate-inner {
  width: min(540px, 100%);
  padding: 2rem;
  border-radius: 28px;
  background: rgba(14, 14, 14, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.45);
}

.gate-title {
  margin: 0 0 0.65rem;
  font-size: 1.7rem;
}

.gate-description {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.gate-field {
  display: grid;
  gap: 0.75rem;
}

.gate-field input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 1rem 1.1rem;
}

.gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.gate-message {
  margin-top: 1rem;
  min-height: 1.3rem;
  color: #ff8686;
}

.screen-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: #080808;
  z-index: 9999;
  color: var(--text);
}

.screen-loader .loader-ring {
  width: 72px;
  height: 72px;
  border: 4px solid rgba(73, 240, 255, 0.18);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 8, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
}

.brand {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.brand-crest {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(192, 122, 75, 0.95), rgba(73, 240, 255, 0.12));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-crest span {
  display: block;
  width: 18px;
  height: 18px;
  background: linear-gradient(180deg, var(--accent), rgba(73, 240, 255, 0.4));
  border-radius: 4px;
  box-shadow: 0 0 18px rgba(73, 240, 255, 0.24);
}

.brand-copy h1,
.brand-copy p {
  margin: 0;
}

.brand-copy h1 {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-copy p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.navigation {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.navigation a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.94rem;
  transition: color var(--transition);
}

.navigation a:hover,
.navigation a:focus-visible {
  color: var(--accent);
}

.navigation a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.navigation a:hover::after,
.navigation a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.main-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 3rem;
}

.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 700px;
}

.hero-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy p {
  margin: 0 0 1.8rem;
  max-width: 58rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn {
  background: linear-gradient(135deg, var(--accent), rgba(73, 240, 255, 0.8));
  color: #070707;
  box-shadow: 0 18px 40px rgba(73, 240, 255, 0.18);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(73, 240, 255, 0.24);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 18, 22, 0.9), rgba(8, 8, 8, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.hero-visual .visual-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(73, 240, 255, 0.12), transparent 16%),
    radial-gradient(circle at 80% 20%, rgba(192, 122, 75, 0.14), transparent 12%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 40%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04), transparent 50%);
}

.hero-visual .visual-layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-visual .visual-panel {
  position: absolute;
  width: 62%;
  height: 56%;
  bottom: 12%;
  left: 8%;
  border-radius: 28px;
  border: 1px solid rgba(73, 240, 255, 0.35);
  background: rgba(9, 12, 16, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-visual .frame-tag {
  position: absolute;
  right: 8%;
  top: 18%;
  width: 160px;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero-visual .frame-tag span {
  display: block;
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  margin-bottom: 0.35rem;
}

.hero-visual .frame-tag p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section {
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.section-heading p {
  margin: 1rem auto 0;
  max-width: 720px;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.card {
  position: relative;
  background: rgba(15, 15, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), transparent 35%);
}

.card h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.badge {
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.94rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card strong {
  display: block;
  font-size: 2.6rem;
  color: var(--accent);
}

.stat-card span {
  display: block;
  margin-top: 0.85rem;
  color: var(--text-muted);
}

.process-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.process-step h5 {
  margin-top: 1.4rem;
  margin-bottom: 0.75rem;
}

.callout-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  padding: 2rem;
  background: rgba(73, 240, 255, 0.06);
  border: 1px solid rgba(73, 240, 255, 0.15);
  border-radius: var(--radius);
}

.callout-panel h4 {
  margin: 0;
}

.callout-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.testimonials {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(13, 13, 13, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--text-muted);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(73, 240, 255, 0.32), rgba(192, 122, 75, 0.32));
}

.author-meta p {
  margin: 0;
}

.author-meta p:first-child {
  font-weight: 600;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 8, 8, 0.96);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  display: grid;
  gap: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 2rem;
}

.footer-contact,
.footer-links {
  display: grid;
  gap: 1rem;
}

.footer-contact h4,
.footer-links h4 {
  margin: 0;
}

.footer-contact p,
.footer-links p,
.footer-links a {
  color: var(--text-muted);
  margin: 0;
}

.footer-links a {
  display: inline-block;
  font-size: 0.96rem;
}

.social-list {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent);
}

.form-field {
  display: grid;
  gap: 0.65rem;
}

.form-field label {
  font-size: 0.94rem;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 1rem 1.1rem;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.notice {
  color: #c7b194;
  font-size: 0.94rem;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(13, 13, 13, 0.98);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.faq-question h4 {
  margin: 0;
  font-size: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height var(--transition), padding var(--transition);
}

.faq-answer.open {
  padding: 1rem 1.5rem 1.5rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
}

.no-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.no-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

@media (max-width: 980px) {
  .hero-grid,
  .footer-grid,
  .stats-grid,
  .faq-list,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .navbar {
    padding: 1rem;
  }

  .navigation {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .section {
    padding: 3rem 1rem;
  }

  .hero-copy h2 {
    font-size: clamp(2.1rem, 8vw, 3.4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
