:root {
  --bg: #0b1020;
  --bg-soft: #111933;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: #ffffff;
  --text: #edf2ff;
  --text-dark: #152033;
  --muted: #a9b4cc;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #5b8cff;
  --primary-2: #7aa2ff;
  --accent: #22c55e;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(91, 140, 255, 0.22), transparent 35%),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.14), transparent 30%),
    linear-gradient(180deg, #0a1020 0%, #0f1730 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 16, 32, 0.68);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: var(--shadow);
}

.logo-text {
  max-width: 300px;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(91, 140, 255, 0.16);
  color: #dbe7ff;
  border: 1px solid rgba(122, 162, 255, 0.28);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-text,
.page-hero p,
.section-heading p {
  color: var(--muted);
  font-size: 17px;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-full {
  width: 100%;
}

.glass-card,
.card,
.legal-box,
.notice-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.glass-card {
  padding: 28px;
  border-radius: var(--radius);
}

.glass-card h3 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 22px;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.info-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.label {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 6px;
}

.value {
  display: block;
  color: #fff;
  font-weight: 700;
}

.section {
  padding: 44px 0 72px;
}

.alt-section {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 28px;
}

.section-kicker {
  color: #9cb8ff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 10px 0 12px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 26px;
  border-radius: var(--radius);
}

.card h3,
.card h2 {
  margin-top: 0;
}

.chip {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #d6ffe5;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.legal-box {
  border-radius: var(--radius);
  overflow: hidden;
}

.legal-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}

.legal-row:first-child {
  border-top: 0;
}

.legal-label {
  color: var(--muted);
}

.legal-value {
  font-weight: 700;
  color: #fff;
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  padding: 64px 0 24px;
}

.two-col,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card-lg {
  padding: 30px;
}

.detail-list {
  display: grid;
  gap: 16px;
}

.detail-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.detail-item:last-child {
  border-bottom: 0;
}

.detail-item span {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.detail-item strong {
  font-size: 17px;
}

.industry-box {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.industry-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.mt-32 {
  margin-top: 32px;
}

.notice-card {
  margin-top: 24px;
  padding: 22px;
  border-radius: var(--radius);
}

.contact-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-label {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9fb0d1;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(122, 162, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(91, 140, 255, 0.12);
}

.form-note {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.site-footer h4 {
  margin-top: 0;
  margin-bottom: 12px;
}

.site-footer p {
  margin: 6px 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .card-grid,
  .two-col,
  .contact-grid,
  .footer-grid,
  .legal-row {
    grid-template-columns: 1fr;
  }

  .legal-row {
    gap: 8px;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10, 16, 32, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 42px;
  }

  .card,
  .glass-card,
  .card-lg,
  .notice-card {
    padding: 22px;
  }

  .logo-text {
    max-width: 200px;
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
.prose-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 26px;
}

.prose-card h2 + p {
  margin-top: 0;
}

.prose-card p {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 16px;
}

.prose-card a {
  color: #dbe7ff;
}

.prose-card a:hover {
  text-decoration: underline;
}