:root {
  --navy: #071a34;
  --blue: #1677ff;
  --cyan: #20c7c9;
  --green: #22c55e;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #102033;
}

.brand-gradient {
  background:
    radial-gradient(circle at 15% 15%, rgba(32, 199, 201, 0.22), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(22, 119, 255, 0.32), transparent 32%),
    linear-gradient(135deg, #071a34 0%, #08214a 45%, #0b5ec7 100%);
  color: #fff;
}

.soft-grid {
  background-image:
    linear-gradient(rgba(22, 119, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 119, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.brand-gradient.soft-grid {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 15% 15%, rgba(32, 199, 201, 0.26), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(22, 119, 255, 0.36), transparent 32%),
    linear-gradient(135deg, #061429 0%, #08214a 44%, #0b5ec7 100%);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  color: #fff;
}

.premium-card {
  border: 1px solid #e5edf7;
  background: #fff;
  color: var(--navy);
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(7, 26, 52, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.premium-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 119, 255, 0.32);
  box-shadow: 0 24px 70px rgba(7, 26, 52, 0.12);
}

.icon-tile {
  display: inline-flex;
  height: 2.7rem;
  width: 2.7rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(22, 119, 255, 0.14), rgba(32, 199, 201, 0.18));
  color: #0b5ec7;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0b73d9;
}

.brand-gradient .section-eyebrow {
  color: #9ff6ff;
}

.brand-gradient .text-blue-50,
.brand-gradient .text-blue-100,
.brand-gradient .text-cyan-100,
.brand-gradient .text-cyan-200 {
  color: #d9fbff !important;
}

.brand-gradient h1,
.brand-gradient h2,
.brand-gradient h3 {
  color: #fff;
}

.brand-gradient .bg-white,
.brand-gradient form,
.brand-gradient .premium-card {
  color: var(--navy);
}

.brand-gradient .premium-card h1,
.brand-gradient .premium-card h2,
.brand-gradient .premium-card h3,
.brand-gradient form h1,
.brand-gradient form h2,
.brand-gradient form h3,
.brand-gradient .bg-white h1,
.brand-gradient .bg-white h2,
.brand-gradient .bg-white h3 {
  color: var(--navy);
}

.brand-gradient .premium-card p,
.brand-gradient form p,
.brand-gradient .bg-white p {
  color: inherit;
}

.hero-orbit {
  position: relative;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-orbit::before {
  inset: 4% 7% auto auto;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(32, 199, 201, 0.35);
}

.hero-orbit::after {
  inset: auto auto 7% 4%;
  width: 8rem;
  height: 8rem;
  background: rgba(32, 199, 201, 0.12);
  filter: blur(2px);
}

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="number"],
input[type="date"],
input[type="datetime-local"],
select,
textarea {
  width: 100%;
  border: 1px solid #d8e1ee;
  border-radius: 0.5rem;
  padding: 0.7rem 0.85rem;
  background: #fff;
  color: var(--navy);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #64748b;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.12);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 0.5rem;
  background: var(--blue);
  color: white;
  padding: 0.75rem 1rem;
  font-weight: 700;
}

.btn-primary:hover {
  background: #0b5ec7;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid #c9d7e8;
  color: #0b294f;
  padding: 0.75rem 1rem;
  font-weight: 700;
  background: white;
}

.btn-secondary:hover {
  border-color: #1677ff;
  color: #0b5ec7;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: #e9f3ff;
  color: #0b5ec7;
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.data-table th {
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #64748b;
  padding: 0.8rem;
  background: #f8fafc;
}

.data-table td {
  padding: 0.85rem;
  border-top: 1px solid #edf2f7;
  vertical-align: top;
}

.prose-content h2,
.prose-content h3 {
  font-weight: 800;
  color: #071a34;
  margin-top: 1.5rem;
}

.prose-content p {
  margin-top: 1rem;
  line-height: 1.75;
}

@media (prefers-reduced-motion: no-preference) {
  .float-soft {
    animation: float-soft 7s ease-in-out infinite;
  }

  @keyframes float-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
}
