:root {
  --bg: #0b0f17;
  --card: #121a28;
  --muted: rgba(240, 255, 249,0.6);
  --text: rgba(240, 255, 249,0.8);
  --line: rgba(240, 255, 249, 0.12);
  --accent: #6aa8ff;
  --accent2: #7cf0c1;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max: 980px;
  --overlay-rgba: rgba(0,0,0,0.4);
}

/* Reset */
* {
  box-sizing: border-box;
}
html {
  min-height: 100%;
}
body {
  margin: 0;
  font: 16px / 1.55 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  z-index: 0;

background:
  radial-gradient(
    1200px 700px at 20% -10%,
    rgba(50, 140, 95, 0.34),
    transparent 60%
  ),
  radial-gradient(
    900px 600px at 90% 10%,
    rgba(80, 200, 140, 0.26),
    transparent 55%
  ),
  radial-gradient(
    700px 500px at 50% 110%,
    rgba(70, 160, 200, 0.10),
    transparent 60%
  ),
  linear-gradient(
    180deg,
    #040a07 0%,
    #07130e 40%,
    #040a07 100%
  );
}


a {
  color: inherit;
}

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 18px 56px;
  min-height: 100%;
  position: relative;
  z-index: 1;   
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand strong {
  letter-spacing: 0.2px;
}

.mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(106, 168, 255, 0.95), rgba(124, 240, 193, 0.9));
  box-shadow: var(--shadow);
}

nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}

nav a:hover {
  border-color: var(--line);
  color: var(--text);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }
}

.card {
  background: var(--overlay-rgba);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  z-index: 1;  
}


.heroText {
  padding: 22px 22px 18px;
}

.kicker {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 6px;
}

h1 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -0.3px;
}

.lead {
  margin: 0 0 16px;
  color: var(--muted);
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
}

.badge {
  font-size: 13px;
  color: rgba(232, 240, 251, 0.92);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 10px;
  border-radius: 999px;
}

.cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
}

.btn.primary {
  border-color: rgba(106, 168, 255, 0.55);
  background: linear-gradient(135deg, rgba(106, 168, 255, 0.20), rgba(124, 240, 193, 0.14));
}

.btn:hover {
  filter: brightness(1.06);
}

/* Hero Image */
.heroImg {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: 260px;
}

.imgFrame {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, rgba(106, 168, 255, 0.20), rgba(124, 240, 193, 0.12)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.04) 0 12px,
      rgba(255, 255, 255, 0.02) 12px 24px
    );
}

.imgFrame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.imgOverlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.imgOverlay span {
  font-size: 13px;
  color: rgba(232, 240, 251, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.25);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* Sections */
section {
  margin-top: 18px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.padded {
  padding: 18px;
}

h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

p {
  margin: 0;
  color: var(--muted);
}

ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

li {
  margin: 6px 0;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.fine {
  font-size: 13px;
}

.hr {
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

footer {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--overlay-rgba);
  color: var(--muted);
  font-size: 13px;
}

code.inline {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  color: rgba(232, 240, 251, 0.92);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 8px;
  white-space: nowrap;
}
