:root {
  --bg: #f7fbff;
  --bg-2: #ffffff;
  --text: #0b1d33;
  --muted: #61748a;
  --line: rgba(11, 29, 51, 0.08);
  --navy: #0a1f33;
  --navy-2: #102b46;
  --turquoise: #00c2b8;
  --blue: #0d8dff;
  --card: rgba(255, 255, 255, 0.8);
  --shadow: 0 20px 60px rgba(8, 23, 38, 0.08);
  --shadow-soft: 0 12px 30px rgba(8, 23, 38, 0.06);
  --radius: 24px;
  --radius-lg: 32px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    linear-gradient(to bottom, #fbfdff 0%, #f7fbff 40%, #ffffff 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.55;
}

.orb-1 {
  width: 420px;
  height: 420px;
  top: 80px;
  right: -80px;
  background: rgba(0, 194, 184, 0.24);
}

.orb-2 {
  width: 360px;
  height: 360px;
  top: 420px;
  left: -120px;
  background: rgba(13, 141, 255, 0.16);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 31, 51, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 51, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), transparent 70%);
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(11, 29, 51, 0.05);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-links .nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--turquoise), var(--blue));
  box-shadow: 0 12px 28px rgba(0, 194, 184, 0.22);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto;
  border-radius: 2px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 194, 184, 0.16);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.hero {
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 44px;
}

.hero-copy h1 {
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 11ch;
  color: var(--navy);
}

.hero-copy h1 span {
  background: linear-gradient(90deg, var(--turquoise), var(--blue));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 640px;
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--turquoise), var(--blue));
  box-shadow: 0 16px 34px rgba(0, 194, 184, 0.24);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(11, 29, 51, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 760px;
}

.stat-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 29, 51, 0.06);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 6px;
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.dashboard-main {
  position: absolute;
  inset: 30px 40px 70px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(247,251,255,0.94));
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 30px 80px rgba(7, 24, 39, 0.12);
  border-radius: 34px;
  overflow: hidden;
}

.dashboard-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0, 194, 184, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(13, 141, 255, 0.12), transparent 24%);
  pointer-events: none;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(11, 29, 51, 0.06);
}

.dots {
  display: flex;
  gap: 7px;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(10, 31, 51, 0.18);
}

.dash-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.dashboard-body {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.balance-panel,
.chart-panel,
.mini-panel,
.floating-card,
.platform-shell,
.service-card,
.ecosystem-card,
.trust-card {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.balance-panel {
  padding: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(11, 29, 51, 0.06);
  border-radius: 24px;
}

.label {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.balance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.balance-amount {
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.balance-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,194,184,0.12), rgba(13,141,255,0.12));
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.mini-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-panel {
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(11, 29, 51, 0.06);
  border-radius: 20px;
}

.mini-title {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.mini-value {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.chart-panel {
  padding: 20px;
  background: rgba(10, 31, 51, 0.96);
  color: white;
  border-radius: 24px;
  overflow: hidden;
}

.chart-bars {
  height: 96px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 12px;
}

.chart-bars span {
  display: block;
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #3ce7de, #148dff);
  box-shadow: 0 10px 22px rgba(0, 194, 184, 0.2);
}

.chart-bars span:nth-child(1) { height: 30%; }
.chart-bars span:nth-child(2) { height: 54%; }
.chart-bars span:nth-child(3) { height: 42%; }
.chart-bars span:nth-child(4) { height: 76%; }
.chart-bars span:nth-child(5) { height: 58%; }
.chart-bars span:nth-child(6) { height: 90%; }
.chart-bars span:nth-child(7) { height: 68%; }

.chart-caption {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.floating-card {
  position: absolute;
  padding: 18px 18px 16px;
  width: 230px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 29, 51, 0.06);
  box-shadow: var(--shadow);
  border-radius: 22px;
}

.floating-card-1 {
  top: 0;
  right: 10px;
}

.floating-card-2 {
  bottom: 20px;
  left: 0;
}

.fc-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.fc-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.ticker-wrap {
  border-top: 1px solid rgba(11, 29, 51, 0.06);
  border-bottom: 1px solid rgba(11, 29, 51, 0.06);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.56);
}

.ticker {
  width: max-content;
  display: flex;
  gap: 50px;
  padding: 18px 0;
  animation: tickerMove 28s linear infinite;
  font-weight: 700;
  color: var(--navy);
}

.ticker span {
  position: relative;
  padding-left: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}

.ticker span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, var(--turquoise), var(--blue));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 14px;
}

.section-heading p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  padding: 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(11, 29, 51, 0.07);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,184,0.16), transparent 65%);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 194, 184, 0.18);
}

.service-card.large {
  grid-column: span 2;
  min-height: 290px;
  background:
    radial-gradient(circle at top right, rgba(13,141,255,0.12), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,251,255,0.86));
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(0,194,184,0.14), rgba(13,141,255,0.14));
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
}

.service-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.service-card ul {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.service-card ul li {
  position: relative;
  padding-left: 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--turquoise), var(--blue));
}

.split-section {
  overflow: hidden;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.split-copy h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 16px;
}

.split-copy > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(11, 29, 51, 0.06);
  box-shadow: var(--shadow-soft);
}

.feature-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: 0 0 auto;
  margin-top: 7px;
  background: linear-gradient(90deg, var(--turquoise), var(--blue));
}

.feature-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

.feature-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.platform-visual {
  position: relative;
}

.platform-shell {
  padding: 20px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(247,251,255,0.9));
  border: 1px solid rgba(11, 29, 51, 0.06);
  box-shadow: var(--shadow);
  border-radius: 30px;
}

.platform-sidebar {
  display: grid;
  gap: 12px;
  align-content: start;
}

.side-pill {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.86);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(11, 29, 51, 0.06);
}

.side-pill.active {
  background: linear-gradient(90deg, rgba(0,194,184,0.14), rgba(13,141,255,0.14));
}

.platform-main {
  display: grid;
  gap: 14px;
}

.platform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.platform-box {
  min-height: 150px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(11, 29, 51, 0.06);
}

.platform-box.tall {
  min-height: 210px;
}

.platform-box.wide {
  grid-column: 1 / -1;
  min-height: 130px;
}

.platform-label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.platform-lines {
  display: grid;
  gap: 12px;
}

.platform-lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,194,184,0.22), rgba(13,141,255,0.18));
}

.platform-lines span:nth-child(1) { width: 82%; }
.platform-lines span:nth-child(2) { width: 65%; }
.platform-lines span:nth-child(3) { width: 92%; }

.platform-ring {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  margin-top: 6px;
  border: 12px solid rgba(13,141,255,0.12);
  border-top-color: var(--turquoise);
  border-right-color: var(--blue);
}

.flow-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.flow-line span {
  display: block;
  height: 16px;
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,194,184,0.24), rgba(13,141,255,0.2));
}

.stats-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tiny-box {
  padding: 16px;
  background: rgba(10, 31, 51, 0.97);
  border-radius: 18px;
  color: white;
}

.tiny-box strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.tiny-box span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ecosystem-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(11, 29, 51, 0.06);
  box-shadow: var(--shadow-soft);
}

.ecosystem-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}

.ecosystem-card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.trust-section {
  background:
    radial-gradient(circle at top right, rgba(0,194,184,0.08), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.36), rgba(247,251,255,0.8));
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.trust-copy h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 16px;
}

.trust-copy p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  padding: 26px;
  background: rgba(255,255,255,0.8);
  border-radius: 24px;
  border: 1px solid rgba(11, 29, 51, 0.06);
  box-shadow: var(--shadow-soft);
}

.trust-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.privacy-shell {
  padding: 40px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(0, 194, 184, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(13, 141, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.92));
  border: 1px solid rgba(11, 29, 51, 0.06);
  box-shadow: var(--shadow);
}

.privacy-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.privacy-main {
  flex: 1;
  padding: 120px 0 80px;
}

.privacy-heading {
  margin-bottom: 0;
}

.privacy-heading h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 18px;
}

.privacy-heading p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
}

.privacy-body {
  margin-top: 28px;
  max-width: 760px;
}

.policy-meta {
  margin-bottom: 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-section {
  padding: 24px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 29, 51, 0.06);
  box-shadow: var(--shadow-soft);
}

.policy-section h2 {
  margin-bottom: 12px;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.policy-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.policy-section p + p,
.policy-section p + ul,
.policy-section ul + p,
.policy-section ul + ul {
  margin-top: 12px;
}

.policy-section ul {
  padding-left: 20px;
}

.policy-section li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.privacy-editor {
  padding: 28px;
  border-radius: 28px;
  background: rgba(10, 31, 51, 0.96);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.privacy-editor-label {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.privacy-editor p {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.privacy-editor p + p {
  margin-top: 14px;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 64px 28px;
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(0,194,184,0.22), transparent 26%),
    radial-gradient(circle at bottom right, rgba(13,141,255,0.18), transparent 26%),
    linear-gradient(135deg, #0a1f33, #112b46);
  box-shadow: 0 30px 70px rgba(8, 23, 38, 0.16);
}

.cta::before {
  content: "";
  position: absolute;
  inset: auto -50px -90px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
}

.cta-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  color: white;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cta h2 {
  max-width: 900px;
  margin: 0 auto 14px;
  color: white;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.cta p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cta-email {
  margin-top: 18px;
  font-size: 15px;
  color: rgba(255,255,255,0.74);
}

.cta-email a {
  color: #fff;
  font-weight: 700;
}

.cta .btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.14);
  box-shadow: none;
}

.site-footer {
  padding: 0 0 34px;
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(11, 29, 51, 0.08);
  color: var(--muted);
  font-size: 14px;
}

.site-footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

.site-footer-inner a {
  color: var(--navy);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.18s;
}

.floating {
  animation: floatY 6.5s ease-in-out infinite;
}

.delay-float {
  animation-delay: 1.2s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1150px) {
  .hero-grid,
  .split-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystem-grid,
  .trust-cards {
    grid-template-columns: 1fr;
  }

  .service-card.large {
    grid-column: span 2;
  }

  .platform-shell {
    grid-template-columns: 1fr;
  }

  .platform-sidebar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(11, 29, 51, 0.06);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-stats,
  .services-grid,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .service-card.large {
    grid-column: span 1;
  }

  .platform-row,
  .stats-row,
  .trust-cards {
    grid-template-columns: 1fr;
  }

  .platform-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 520px;
  }

  .dashboard-main {
    inset: 20px 10px 80px 10px;
  }

  .floating-card-1 {
    right: 0;
  }

  .floating-card-2 {
    left: 10px;
  }

  .section {
    padding: 84px 0;
  }

  .privacy-shell {
    padding: 28px 22px;
  }

  .policy-section {
    padding: 22px 20px;
  }

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

  .site-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .nav {
    min-height: 72px;
  }

  .brand-logo {
    height: 38px;
  }

  .hero-copy h1,
  .section-heading h2,
  .split-copy h2,
  .trust-copy h2,
  .cta h2 {
    font-size: 38px;
  }

  .hero-text,
  .section-heading p,
  .split-copy > p,
  .trust-copy p,
  .cta p {
    font-size: 16px;
  }

  .dashboard-main {
    border-radius: 26px;
  }

  .mini-panels,
  .platform-sidebar {
    grid-template-columns: 1fr;
  }

  .floating-card {
    width: 190px;
    padding: 14px;
  }

  .cta {
    padding: 48px 18px;
    border-radius: 28px;
  }

  .privacy-main {
    padding: 104px 0 64px;
  }
}
.brand-text {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--navy);
}

/* tylko "2" */
.brand-accent {
  color: var(--turquoise);
}

/* hover efekt */
.brand-text:hover {
  opacity: 0.85;
}

/* hover subtle premium effect */
.brand-text:hover {
  opacity: 0.85;
}
