:root {
  --rw-blue: #0A18FF;
  --rw-blue-dark: #060B5C;
  --rw-blue-mid: #0B14B8;
  --rw-orange: #F5A623;
  --rw-black: #000000;
  --rw-white: #FFFFFF;
  --rw-offwhite: #F5F7FF;
  --rw-bg: #090B16;
  --rw-radius: 18px;
  --rw-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  --rw-max-width: 1200px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(10, 24, 255, 0.14), transparent 32%),
    linear-gradient(180deg, #0b1022 0%, #090B16 100%);
  color: var(--rw-offwhite);
}

.container {
  width: min(calc(100% - 32px), var(--rw-max-width));
  margin-inline: auto;
}

.rw-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(9, 11, 22, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.rw-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.rw-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--rw-white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.rw-brand img {
  width: 44px;
  height: 44px;
}

.rw-hero {
  padding: 88px 0 64px;
}

.rw-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 40px;
  background:
    linear-gradient(135deg, rgba(10, 24, 255, 0.92) 0%, rgba(6, 11, 92, 0.96) 100%);
  box-shadow: var(--rw-shadow);
}

.rw-hero-card::before,
.rw-hero-card::after {
  content: "";
  position: absolute;
  left: 56px;
  right: 56px;
  height: 18px;
  background: var(--rw-blue);
  transform: skewX(-36deg);
}

.rw-hero-card::before {
  top: 22px;
}

.rw-hero-card::after {
  bottom: 22px;
}

.rw-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rw-title {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
  font-weight: 900;
}

.rw-title strong {
  color: var(--rw-orange);
  -webkit-text-stroke: 1px var(--rw-black);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.35);
}

.rw-lead {
  max-width: 62ch;
  margin: 0 0 28px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(245, 247, 255, 0.92);
}

.rw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.rw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.rw-btn:hover {
  transform: translateY(-2px);
}

.rw-btn--primary {
  background: var(--rw-orange);
  color: var(--rw-black);
  box-shadow: 0 12px 24px rgba(245, 166, 35, 0.28);
}

.rw-btn--secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.18);
  color: var(--rw-white);
}

.rw-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 64px;
}

.rw-card {
  border-radius: 22px;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--rw-shadow);
}

.rw-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.rw-accent {
  color: var(--rw-orange);
}

@media (max-width: 900px) {
  .rw-grid {
    grid-template-columns: 1fr;
  }

  .rw-hero-card {
    padding: 32px 24px;
  }

  .rw-hero-card::before,
  .rw-hero-card::after {
    left: 28px;
    right: 28px;
  }
}
