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

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: var(--lh-base);
  color: var(--text-main);
  background: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::selection {
  background: rgba(126, 226, 184, 0.22);
  color: var(--white);
}

img,
svg,
video,
canvas {
  max-width: 100%;
  display: block;
}

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

button {
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--text-strong);
  letter-spacing: -0.045em;
}

h1 {
  font-size: var(--fs-hero);
  line-height: 0.95;
}

h2 {
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.12;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-strong);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  outline: none;
  transition:
    border-color var(--ease),
    box-shadow var(--ease),
    background var(--ease),
    transform var(--ease);
}

input::placeholder,
textarea::placeholder {
  color: rgba(223, 246, 236, 0.38);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(126, 226, 184, 0.34);
  box-shadow: 0 0 0 4px rgba(126, 226, 184, 0.08);
  background: rgba(255, 255, 255, 0.07);
}

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

label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text-main);
}

hr {
  border: 0;
  border-top: 1px solid var(--line-soft);
  margin: 0;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-orbs::before,
.bg-orbs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.bg-orbs::before {
  width: 360px;
  height: 360px;
  top: 3%;
  left: -7%;
  background: rgba(126, 226, 184, 0.14);
}

.bg-orbs::after {
  width: 460px;
  height: 460px;
  top: 16%;
  right: -10%;
  background: rgba(13, 91, 74, 0.18);
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.055));
  backdrop-filter: blur(var(--blur-lg));
  -webkit-backdrop-filter: blur(var(--blur-lg));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.glass-subtle {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
  border: 1px solid var(--line-soft);
}

.text-gradient {
  background: linear-gradient(135deg, var(--orion-250), var(--orion-300), #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: var(--fs-lg);
  line-height: var(--lh-soft);
  color: var(--text-soft);
  max-width: 760px;
}

.lead-sm {
  font-size: var(--fs-md);
  line-height: 1.75;
  color: var(--text-soft);
}

.muted {
  color: var(--text-muted);
  line-height: 1.75;
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orion-300);
}

.eyebrow-sm {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orion-300);
}

.section {
  position: relative;
  z-index: 1;
  padding: 52px 0 110px;
}

.section-title {
  max-width: 760px;
  margin-bottom: 38px;
}