@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #020713;
  --bg-deep: #061328;
  --surface: rgba(7, 19, 42, 0.82);
  --surface-strong: rgba(10, 30, 64, 0.9);
  --surface-dark: #050e1e;
  --text: #f6f8ff;
  --muted: rgba(229, 236, 255, 0.72);
  --line: rgba(91, 151, 255, 0.2);
  --brand: #1e6fff;
  --brand-strong: #4d91ff;
  --accent: #5aa3ff;
  --accent-soft: rgba(30, 111, 255, 0.14);
  --gold: #ffd15c;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shell: min(1120px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.7;
  background:
    radial-gradient(circle at 78% 10%, rgba(29, 111, 255, 0.32), transparent 28%),
    radial-gradient(circle at 14% 42%, rgba(0, 138, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #020713 0%, #061328 46%, #030812 100%);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(80, 139, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 139, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 88%);
  opacity: 0.4;
}

body.rise-page {
  color: #f6f8ff;
  background:
    radial-gradient(circle at 78% 10%, rgba(29, 111, 255, 0.32), transparent 28%),
    radial-gradient(circle at 14% 42%, rgba(0, 138, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #020713 0%, #061328 46%, #030812 100%);
}

body.rise-page::before {
  background-image:
    linear-gradient(rgba(80, 139, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 139, 255, 0.06) 1px, transparent 1px);
  opacity: 0.4;
}

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

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  padding: 20px 0 14px;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  background: rgba(4, 12, 27, 0.74);
  border: 1px solid rgba(97, 151, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  animation: liftIn 0.7s ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #0b58ff 0%, #4fa1ff 100%);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 30px rgba(30, 111, 255, 0.28);
}

.brand-wording {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-name {
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.85rem;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(60, 129, 255, 0.16);
  color: #ffffff;
  transform: translateY(-1px);
}

.main {
  padding: 8px 0 38px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(4, 12, 28, 0.96) 0%, rgba(5, 23, 52, 0.92) 100%);
  border: 1px solid rgba(90, 154, 255, 0.2);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, rgba(71, 142, 255, 0.6), rgba(30, 111, 255, 0.12) 55%, transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-strong);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.08;
}

h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
}

h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.7rem, 2.3vw, 2.45rem);
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
}

h3 {
  font-size: 1.08rem;
  color: #ffffff;
}

p {
  margin: 0 0 16px;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy {
  animation: liftIn 0.8s ease both;
}

.hero-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(30, 111, 255, 0.34);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(126, 174, 255, 0.24);
  color: #edf4ff;
}

.hero-card {
  align-self: end;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(8, 28, 67, 0.98) 0%, rgba(6, 15, 32, 0.96) 100%);
  color: #f6f8ff;
  border: 1px solid rgba(91, 151, 255, 0.18);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.3);
  transform: rotate(1.2deg);
  animation: floatCard 7s ease-in-out infinite, liftIn 0.95s ease both;
}

.hero-card p,
.hero-card li,
.hero-card a {
  color: rgba(229, 236, 255, 0.78);
}

.hero-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(30, 111, 255, 0.18);
  color: #9ec9ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kicker {
  color: rgba(246, 242, 234, 0.68);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(246, 242, 234, 0.14);
  font-size: 0.95rem;
}

.info-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.section {
  margin-bottom: 24px;
}

.section-head {
  margin-bottom: 16px;
}

.section-tag {
  margin: 0 0 6px;
  color: var(--brand-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.section-copy {
  color: var(--muted);
  max-width: 680px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(91, 151, 255, 0.17);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.panel.tinted {
  background:
    linear-gradient(180deg, rgba(24, 75, 160, 0.46), rgba(7, 19, 42, 0.86));
}

.panel.ink {
  background:
    linear-gradient(180deg, rgba(8, 28, 67, 0.98), rgba(6, 15, 32, 0.96));
  color: #f6f8ff;
}

.panel.ink p,
.panel.ink li,
.panel.ink .meta {
  color: rgba(229, 236, 255, 0.78);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(30, 111, 255, 0.28), rgba(83, 169, 255, 0.16));
  font-weight: 800;
  color: #8ec1ff;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.metric {
  min-width: 120px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(126, 174, 255, 0.16);
}

.metric strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(30, 111, 255, 0.14);
  border: 1px solid rgba(96, 155, 255, 0.2);
  color: #eaf3ff;
  font-size: 0.88rem;
  font-weight: 700;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.list li {
  margin-bottom: 10px;
}

.callout {
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(8, 28, 67, 0.98), rgba(6, 15, 32, 0.96));
  color: #f6f8ff;
  border: 1px solid rgba(91, 151, 255, 0.18);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.3);
}

.callout p,
.callout a,
.callout .meta {
  color: rgba(229, 236, 255, 0.78);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.inline-link {
  font-weight: 800;
  color: inherit;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.42fr);
  gap: 20px;
}

.policy-article {
  display: grid;
  gap: 16px;
}

.policy-section {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(91, 151, 255, 0.17);
  box-shadow: var(--shadow);
}

.policy-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer {
  padding: 6px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 2px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.small {
  font-size: 0.94rem;
  color: var(--muted);
}

.rise-page .header-bar {
  background: rgba(4, 12, 27, 0.74);
  border-color: rgba(97, 151, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.rise-page .brand-mark {
  background: linear-gradient(145deg, #0b58ff 0%, #4fa1ff 100%);
  color: #ffffff;
}

.rise-page .brand-name,
.rise-page .nav-link.active,
.rise-page .nav-link:hover {
  color: #ffffff;
}

.rise-page .brand-tag,
.rise-page .nav-link,
.rise-page .footer,
.rise-page .footer-links a,
.rise-page .lead,
.rise-page .section-copy,
.rise-page .showcase-copy p,
.rise-page .panel p {
  color: rgba(229, 236, 255, 0.72);
}

.rise-page .nav-link:hover,
.rise-page .nav-link.active {
  background: rgba(60, 129, 255, 0.16);
}

.rise-page .eyebrow,
.rise-page .section-tag {
  color: #4d91ff;
}

.rise-page .button.primary {
  background: linear-gradient(135deg, #1e6fff 0%, #5aa3ff 100%);
  box-shadow: 0 16px 34px rgba(30, 111, 255, 0.34);
}

.rise-page .button.secondary {
  color: #edf4ff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(126, 174, 255, 0.24);
}

.rise-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 30px;
  min-height: 640px;
  margin-bottom: 24px;
  padding: 38px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(90, 154, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(4, 12, 28, 0.96) 0%, rgba(5, 23, 52, 0.92) 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.rise-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(30, 111, 255, 0.12), transparent 42%),
    radial-gradient(circle at 72% 28%, rgba(51, 132, 255, 0.36), transparent 34%);
  pointer-events: none;
}

.rise-hero-copy,
.rise-hero-media {
  position: relative;
  z-index: 1;
}

.rise-hero h1 {
  max-width: 560px;
  color: #ffffff;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 800;
  letter-spacing: 0;
}

.rise-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.rise-proof span {
  padding: 10px 13px;
  border: 1px solid rgba(91, 151, 255, 0.24);
  border-radius: 999px;
  background: rgba(11, 38, 83, 0.72);
  color: rgba(238, 245, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.rise-hero-media {
  align-self: end;
  margin: 0 -22px -76px 0;
}

.rise-hero-media img {
  width: min(100%, 620px);
  margin-left: auto;
  border-radius: 26px;
  filter: drop-shadow(0 36px 56px rgba(0, 0, 0, 0.5));
}

.rise-intro .panel,
.rise-page .panel {
  background: rgba(7, 19, 42, 0.82);
  border-color: rgba(91, 151, 255, 0.17);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.rise-page .panel.tinted {
  background:
    linear-gradient(180deg, rgba(24, 75, 160, 0.46), rgba(7, 19, 42, 0.86));
}

.rise-page .feature-icon {
  background: linear-gradient(135deg, rgba(30, 111, 255, 0.28), rgba(83, 169, 255, 0.16));
  color: #8ec1ff;
}

.rise-page .badge {
  color: #eaf3ff;
  background: rgba(30, 111, 255, 0.14);
  border: 1px solid rgba(96, 155, 255, 0.2);
}

.rise-showcase {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

.showcase-item {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(330px, 0.84fr);
  align-items: center;
  gap: 30px;
  overflow: hidden;
  min-height: 620px;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(91, 151, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(3, 10, 24, 0.94), rgba(6, 24, 55, 0.9));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.showcase-item.reverse {
  grid-template-columns: minmax(330px, 0.84fr) minmax(0, 0.72fr);
}

.showcase-item.reverse .showcase-copy {
  order: 2;
}

.showcase-item.reverse .showcase-media {
  order: 1;
}

.showcase-copy h2 {
  color: #ffffff;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  font-weight: 800;
  letter-spacing: 0;
}

.showcase-media {
  margin: 0;
  align-self: end;
}

.showcase-media img {
  width: min(100%, 560px);
  margin: 0 auto -58px;
  border-radius: 24px;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.52));
}

.rise-page .panel.ink,
.rise-page .callout {
  background:
    linear-gradient(135deg, rgba(8, 28, 67, 0.98), rgba(6, 15, 32, 0.96));
  border: 1px solid rgba(91, 151, 255, 0.18);
}

.rise-page .metric {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(126, 174, 255, 0.16);
}

.rise-page .metric strong,
.rise-page .panel h2,
.rise-page .panel h3,
.rise-page .callout h2 {
  color: #ffffff;
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: rotate(1.2deg) translateY(0);
  }

  50% {
    transform: rotate(0.3deg) translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .policy-layout,
  .rise-hero,
  .showcase-item,
  .showcase-item.reverse {
    grid-template-columns: 1fr;
  }

  .hero-card {
    transform: none;
  }

  .rise-hero {
    min-height: 0;
  }

  .rise-hero-media,
  .showcase-media {
    margin: 0;
  }

  .rise-hero-media img,
  .showcase-media img {
    margin: 0 auto;
    max-height: 760px;
    object-fit: contain;
  }

  .showcase-item {
    min-height: 0;
  }

  .showcase-item.reverse .showcase-copy,
  .showcase-item.reverse .showcase-media {
    order: initial;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 20px, 1120px);
  }

  .header-bar {
    border-radius: 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
  }

  .hero,
  .panel,
  .policy-section,
  .callout,
  .rise-hero,
  .showcase-item {
    padding: 22px;
  }

  .hero,
  .rise-hero,
  .showcase-item {
    border-radius: 28px;
  }

  .rise-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .showcase-copy h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .rise-proof span {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
