:root {
  --bg: #050816;
  --bg-elevated: rgba(13, 18, 42, 0.82);
  --bg-soft: rgba(19, 30, 69, 0.68);
  --panel-border: rgba(108, 175, 255, 0.16);
  --panel-strong: rgba(255, 194, 73, 0.22);
  --text: #ecf3ff;
  --text-muted: #99a7c2;
  --text-soft: #7182a4;
  --accent: #59d0ff;
  --accent-strong: #1ec8ff;
  --accent-warm: #ffc65d;
  --accent-danger: #ff8f8f;
  --accent-success: #72ebb0;
  --shadow: 0 22px 80px rgba(2, 8, 27, 0.5);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1200px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(40, 102, 196, 0.35), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 183, 77, 0.15), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #050816 100%);
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.38;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

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

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

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

button {
  cursor: pointer;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(137, 159, 216, 0.22);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: rgba(10, 15, 35, 0.7);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(89, 208, 255, 0.12);
}

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

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(137, 159, 216, 0.12);
}

th {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3.4rem, 9vw, 6.3rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 198, 93, 0.24);
  border-radius: 999px;
  color: var(--accent-warm);
  background: rgba(255, 198, 93, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
  content: "";
}

.lead {
  max-width: 760px;
  font-size: 1.06rem;
  color: #c6d3ef;
}

.accent {
  color: var(--accent-warm);
}

.text-soft {
  color: var(--text-soft);
}

.hide-mobile {
  display: block;
}

@media (max-width: 860px) {
  .hide-mobile {
    display: none;
  }
}
