:root {
  --bg: #071422;
  --bg-soft: #0c2238;
  --panel: rgba(15, 39, 64, 0.78);
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f1f7ff;
  --muted: #bedaef;
  --accent: #0ea5e9;
  --accent-2: #f6c440;
  --accent-3: #38bdf8;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
  --nav-h: 120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(246, 196, 64, 0.1), transparent 20%),
    linear-gradient(180deg, #08131f 0%, #081a2a 28%, #091b2e 50%, #071422 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: #fff;
  color: #000;
  padding: 0.7rem 1rem;
  border-radius: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #dff6ff;
  font-size: 0.9rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-2), #f59e0b);
  box-shadow: 0 0 0 4px rgba(246, 196, 64, 0.15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(7, 20, 34, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
  color: #072033;
  background: conic-gradient(
    from 180deg,
    var(--accent),
    var(--accent-3),
    var(--accent-2),
    #f59e0b,
    var(--accent)
  );
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.3);
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-copy span {
  display: block;
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  color: #d6ecff;
  font-size: 0.96rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  transition: 0.2s ease;
}

.menu-toggle span {
  margin: 5px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, #ffd86b 0%, #f7bc2a 100%);
  color: #072033;
  box-shadow: 0 14px 30px rgba(246, 196, 64, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(246, 196, 64, 0.34);
  outline: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.13);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: #fff;
  font-weight: 700;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6.5rem) 0 3rem;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin-top: 1rem;
  max-width: 15ch;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.hero-copy p,
.page-hero p {
  margin-top: 1.2rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.fact-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.fact-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.fact-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.1rem;
}

.hero-panel,
.page-hero .hero-panel {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(14, 165, 233, 0.3), rgba(15, 39, 64, 0.95) 45%, rgba(246, 196, 64, 0.18));
}

.page-hero-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(14, 165, 233, 0.3), rgba(15, 39, 64, 0.95) 45%, rgba(246, 196, 64, 0.18));
}

.hero-waves,
.hero-waves::before,
.hero-waves::after {
  position: absolute;
  inset: auto auto 0 -14%;
  content: "";
  width: 128%;
  height: 54%;
  border-radius: 45% 55% 0 0;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.35), rgba(8, 26, 42, 0));
  filter: blur(2px);
  animation: drift 11s ease-in-out infinite alternate;
}

.hero-waves::before {
  height: 48%;
  bottom: 10%;
  left: -7%;
  opacity: 0.5;
  animation-duration: 14s;
}

.hero-waves::after {
  height: 40%;
  bottom: 20%;
  left: -3%;
  opacity: 0.32;
  animation-duration: 17s;
}

.floating-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.floating-card small {
  display: block;
  margin-bottom: 0.55rem;
  color: #9dddf7;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.floating-card strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.35;
}

.floating-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.top-right {
  top: 1.25rem;
  right: 1.25rem;
  max-width: 240px;
  padding: 0.9rem 1rem;
}

.top-left {
  top: 5.85rem;
  left: 1.25rem;
  max-width: 290px;
  padding: 1.15rem;
}

.privacy-text {
  margin-top: 1.5rem;
  max-width: 100%;
}

.privacy-text p {
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}:root {
  --bg: #071422;
  --bg-soft: #0c2238;
  --panel: rgba(15, 39, 64, 0.78);
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f1f7ff;
  --muted: #bedaef;
  --accent: #0ea5e9;
  --accent-2: #f6c440;
  --accent-3: #38bdf8;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
  --nav-h: 120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(246, 196, 64, 0.1), transparent 20%),
    linear-gradient(180deg, #08131f 0%, #081a2a 28%, #091b2e 50%, #071422 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: #fff;
  color: #000;
  padding: 0.7rem 1rem;
  border-radius: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #dff6ff;
  font-size: 0.9rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-2), #f59e0b);
  box-shadow: 0 0 0 4px rgba(246, 196, 64, 0.15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(7, 20, 34, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
  color: #072033;
  background: conic-gradient(
    from 180deg,
    var(--accent),
    var(--accent-3),
    var(--accent-2),
    #f59e0b,
    var(--accent)
  );
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.3);
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-copy span {
  display: block;
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  color: #d6ecff;
  font-size: 0.96rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  transition: 0.2s ease;
}

.menu-toggle span {
  margin: 5px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, #ffd86b 0%, #f7bc2a 100%);
  color: #072033;
  box-shadow: 0 14px 30px rgba(246, 196, 64, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(246, 196, 64, 0.34);
  outline: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.13);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: #fff;
  font-weight: 700;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6.5rem) 0 3rem;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin-top: 1rem;
  max-width: 15ch;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.hero-copy p,
.page-hero p {
  margin-top: 1.2rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.fact-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.fact-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.fact-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.1rem;
}

.hero-panel,
.page-hero .hero-panel {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(14, 165, 233, 0.3), rgba(15, 39, 64, 0.95) 45%, rgba(246, 196, 64, 0.18));
}

.page-hero-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(14, 165, 233, 0.3), rgba(15, 39, 64, 0.95) 45%, rgba(246, 196, 64, 0.18));
}

.hero-waves,
.hero-waves::before,
.hero-waves::after {
  position: absolute;
  inset: auto auto 0 -14%;
  content: "";
  width: 128%;
  height: 54%;
  border-radius: 45% 55% 0 0;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.35), rgba(8, 26, 42, 0));
  filter: blur(2px);
  animation: drift 11s ease-in-out infinite alternate;
}

.hero-waves::before {
  height: 48%;
  bottom: 10%;
  left: -7%;
  opacity: 0.5;
  animation-duration: 14s;
}

.hero-waves::after {
  height: 40%;
  bottom: 20%;
  left: -3%;
  opacity: 0.32;
  animation-duration: 17s;
}

.floating-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.floating-card small {
  display: block;
  margin-bottom: 0.55rem;
  color: #9dddf7;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.floating-card strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.35;
}

.floating-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.top-right {
  top: 1.25rem;
  right: 1.25rem;
  max-width: 240px;
  padding: 0.9rem 1rem;
}

.top-left {
  top: 5.85rem;
  left: 1.25rem;
  max-width: 290px;
  padding: 1.15rem;
}

.privacy-text {
  margin-top: 1.5rem;
  max-width: 100%;
}

.privacy-text p {
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}:root {
  --bg: #071422;
  --bg-soft: #0c2238;
  --panel: rgba(15, 39, 64, 0.78);
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f1f7ff;
  --muted: #bedaef;
  --accent: #0ea5e9;
  --accent-2: #f6c440;
  --accent-3: #38bdf8;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
  --nav-h: 120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(246, 196, 64, 0.1), transparent 20%),
    linear-gradient(180deg, #08131f 0%, #081a2a 28%, #091b2e 50%, #071422 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: #fff;
  color: #000;
  padding: 0.7rem 1rem;
  border-radius: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #dff6ff;
  font-size: 0.9rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-2), #f59e0b);
  box-shadow: 0 0 0 4px rgba(246, 196, 64, 0.15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(7, 20, 34, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
  color: #072033;
  background: conic-gradient(
    from 180deg,
    var(--accent),
    var(--accent-3),
    var(--accent-2),
    #f59e0b,
    var(--accent)
  );
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.3);
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-copy span {
  display: block;
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  color: #d6ecff;
  font-size: 0.96rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  transition: 0.2s ease;
}

.menu-toggle span {
  margin: 5px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, #ffd86b 0%, #f7bc2a 100%);
  color: #072033;
  box-shadow: 0 14px 30px rgba(246, 196, 64, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(246, 196, 64, 0.34);
  outline: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.13);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: #fff;
  font-weight: 700;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6.5rem) 0 3rem;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin-top: 1rem;
  max-width: 15ch;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.hero-copy p,
.page-hero p {
  margin-top: 1.2rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.fact-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.fact-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.fact-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.1rem;
}

.hero-panel,
.page-hero .hero-panel {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(14, 165, 233, 0.3), rgba(15, 39, 64, 0.95) 45%, rgba(246, 196, 64, 0.18));
}

.page-hero-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(14, 165, 233, 0.3), rgba(15, 39, 64, 0.95) 45%, rgba(246, 196, 64, 0.18));
}

.hero-waves,
.hero-waves::before,
.hero-waves::after {
  position: absolute;
  inset: auto auto 0 -14%;
  content: "";
  width: 128%;
  height: 54%;
  border-radius: 45% 55% 0 0;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.35), rgba(8, 26, 42, 0));
  filter: blur(2px);
  animation: drift 11s ease-in-out infinite alternate;
}

.hero-waves::before {
  height: 48%;
  bottom: 10%;
  left: -7%;
  opacity: 0.5;
  animation-duration: 14s;
}

.hero-waves::after {
  height: 40%;
  bottom: 20%;
  left: -3%;
  opacity: 0.32;
  animation-duration: 17s;
}

.floating-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.floating-card small {
  display: block;
  margin-bottom: 0.55rem;
  color: #9dddf7;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.floating-card strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.35;
}

.floating-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.top-right {
  top: 1.25rem;
  right: 1.25rem;
  max-width: 240px;
  padding: 0.9rem 1rem;
}

.top-left {
  top: 5.85rem;
  left: 1.25rem;
  max-width: 290px;
  padding: 1.15rem;
}

.privacy-text {
  margin-top: 1.5rem;
  max-width: 100%;
}

.privacy-text p {
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}:root {
  --bg: #071422;
  --bg-soft: #0c2238;
  --panel: rgba(15, 39, 64, 0.78);
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f1f7ff;
  --muted: #bedaef;
  --accent: #0ea5e9;
  --accent-2: #f6c440;
  --accent-3: #38bdf8;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
  --nav-h: 120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(246, 196, 64, 0.1), transparent 20%),
    linear-gradient(180deg, #08131f 0%, #081a2a 28%, #091b2e 50%, #071422 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: #fff;
  color: #000;
  padding: 0.7rem 1rem;
  border-radius: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #dff6ff;
  font-size: 0.9rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-2), #f59e0b);
  box-shadow: 0 0 0 4px rgba(246, 196, 64, 0.15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(7, 20, 34, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
  color: #072033;
  background: conic-gradient(
    from 180deg,
    var(--accent),
    var(--accent-3),
    var(--accent-2),
    #f59e0b,
    var(--accent)
  );
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.3);
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-copy span {
  display: block;
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  color: #d6ecff;
  font-size: 0.96rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  transition: 0.2s ease;
}

.menu-toggle span {
  margin: 5px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, #ffd86b 0%, #f7bc2a 100%);
  color: #072033;
  box-shadow: 0 14px 30px rgba(246, 196, 64, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(246, 196, 64, 0.34);
  outline: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.13);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: #fff;
  font-weight: 700;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6.5rem) 0 3rem;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin-top: 1rem;
  max-width: 15ch;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.hero-copy p,
.page-hero p {
  margin-top: 1.2rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.fact-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.fact-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.fact-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.1rem;
}

.hero-panel,
.page-hero .hero-panel {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(14, 165, 233, 0.3), rgba(15, 39, 64, 0.95) 45%, rgba(246, 196, 64, 0.18));
}

.page-hero-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(14, 165, 233, 0.3), rgba(15, 39, 64, 0.95) 45%, rgba(246, 196, 64, 0.18));
}

.hero-waves,
.hero-waves::before,
.hero-waves::after {
  position: absolute;
  inset: auto auto 0 -14%;
  content: "";
  width: 128%;
  height: 54%;
  border-radius: 45% 55% 0 0;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.35), rgba(8, 26, 42, 0));
  filter: blur(2px);
  animation: drift 11s ease-in-out infinite alternate;
}

.hero-waves::before {
  height: 48%;
  bottom: 10%;
  left: -7%;
  opacity: 0.5;
  animation-duration: 14s;
}

.hero-waves::after {
  height: 40%;
  bottom: 20%;
  left: -3%;
  opacity: 0.32;
  animation-duration: 17s;
}

.floating-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.floating-card small {
  display: block;
  margin-bottom: 0.55rem;
  color: #9dddf7;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.floating-card strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.35;
}

.floating-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.top-right {
  top: 1.25rem;
  right: 1.25rem;
  max-width: 240px;
  padding: 0.9rem 1rem;
}

.top-left {
  top: 5.85rem;
  left: 1.25rem;
  max-width: 290px;
  padding: 1.15rem;
}

.privacy-text {
  margin-top: 1.5rem;
  max-width: 100%;
}

.privacy-text p {
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}