:root {
  --bg: #07131c;
  --bg-soft: #0f1d2d;
  --panel: #102638;
  --panel-alt: #173248;
  --text: #e8f0f6;
  --muted: #9fb3c3;
  --line: rgba(159, 179, 195, 0.22);
  --brand: #fd5c3c;
  --brand-strong: #f58249;
  --success: #3ad59f;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Roboto", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 620px at 10% -10%, rgba(246, 163, 0, 0.22), transparent 58%),
    radial-gradient(900px 520px at 90% 0%, rgba(58, 213, 159, 0.14), transparent 55%),
    linear-gradient(165deg, #040b12 0%, #081522 44%, #07131c 100%);
  color: var(--text);
  line-height: 1.55;
  padding-bottom: 72px;
}

a {
  color: #f8c84d;
}

a:hover {
  color: #ffd56d;
}

.container {
  width: min(1120px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.section {
  padding: 3.4rem 0;
}

.section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.section-head h2 {
  font-family: "Roboto Slab", "Roboto", sans-serif;
  margin: 0 0 0.6rem;
  letter-spacing: 0.2px;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(5, 16, 26, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#splashScreen {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  background-color: #f7f7f7;
  text-align: center;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transition: opacity 280ms ease;
}

#splashScreen.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.splashHeader {
  display: inline-flex;
  width: 100%;
  height: 56px;
  background: linear-gradient(90deg, #f58249 0%, #fd5c3c 100%);
  text-align: center;
  justify-content: center;
  align-items: center;
}

.splashHeader img {
  width: auto;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.22));
}

.splashPawContainer {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.splashPawContainer svg {
  display: inline-block;
  width: 54px;
  height: 56px;
}

g#pawloader {
  animation-name: downwards;
}

g#pawloader,
#pawloader path {
  transform-origin: 50% 50%;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.5, 0, 0.5, 1);
}

#pawloader path {
  fill: #e1e1e1;
  transform-origin: 50% 50%;
}

#pawloader path#p1 { animation-name: up4; }
#pawloader path#p2 { animation-name: up3; }
#pawloader path#p3 { animation-name: up2; }
#pawloader path#p4 { animation-name: up1; }

@keyframes downwards {
  0% { transform: scale(1); }
  35% { transform: scale(0.9); }
  70% { transform: scale(1.03); }
  90% { transform: scale(1); }
  100% { transform: scale(1); }
}

@keyframes up1 {
  0% { transform: scale(1); }
  20% { transform: scale(1); }
  45% { transform: scale(1.1); }
  70% { transform: scale(1); }
  100% { transform: scale(1); }
}

@keyframes up2 {
  0% { transform: scale(1); }
  30% { transform: scale(1); }
  55% { transform: scale(1.1); }
  80% { transform: scale(1); }
  100% { transform: scale(1); }
}

@keyframes up3 {
  0% { transform: scale(1); }
  40% { transform: scale(1); }
  65% { transform: scale(1.1); }
  90% { transform: scale(1); }
  100% { transform: scale(1); }
}

@keyframes up4 {
  0% { transform: scale(1); }
  50% { transform: scale(1); }
  75% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  overflow: visible;
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(160px, 20vw, 248px);
  max-width: min(56vw, 248px);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  border: 0;
  display: block;
  flex: 0 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.top-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.top-nav a:hover {
  color: var(--text);
}

.hero {
  padding-top: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 1.25rem;
}

.hero-copy,
.hero-panel,
.card,
.table-wrap,
.strip,
.faq-item,
.site-footer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(16, 38, 56, 0.96), rgba(11, 28, 42, 0.95));
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(1.2rem, 3.2vw, 2.2rem);
}

.hero-panel {
  padding: 1.35rem;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.eyebrow {
  margin: 0;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
}

h1 {
  margin: 0.7rem 0 0.9rem;
  font-size: clamp(1.7rem, 4.2vw, 2.85rem);
  line-height: 1.14;
}

.lead {
  color: #ccdae4;
  margin: 0;
  max-width: 64ch;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1rem;
}

.hero-kpis span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 42px;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: #dce8f0;
  font-size: 0.88rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #3e2600;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(246, 163, 0, 0.34);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-ghost:hover {
  box-shadow: none;
}

.btn-small {
  min-height: 38px;
  padding: 0.5rem 0.86rem;
  font-size: 0.9rem;
}

.hero-note,
.micro {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.87rem;
}

.hero-panel h2 {
  margin: 0;
  font-size: 1.06rem;
}

.hero-steps {
  margin: 0;
  padding-left: 1.1rem;
}

.hero-steps li {
  margin: 0.3rem 0;
  color: #d6e3ec;
}

.hero-panel-cta {
  width: 100%;
}

.fact-list {
  margin: 0.95rem 0;
  padding-left: 1.1rem;
}

.fact-list li {
  margin: 0.38rem 0;
  color: #d6e3ec;
}

.strip {
  padding: 0.9rem 1rem;
}

.trust-row {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  text-align: center;
  padding: 0.65rem 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.trust-item img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item p {
  margin: 0;
  color: #d8e4ec;
  font-weight: 600;
  font-size: 0.92rem;
}

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

.visual-banner-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(16, 38, 56, 0.96), rgba(11, 28, 42, 0.95));
  box-shadow: var(--shadow);
}

.visual-banner-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.visual-banner-link {
  display: block;
  text-decoration: none;
}

.visual-banner-link:hover img {
  filter: brightness(1.03);
}

.visual-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(16, 38, 56, 0.96), rgba(11, 28, 42, 0.95));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.card {
  padding: 1.2rem;
}

.card-accent {
  background: linear-gradient(150deg, rgba(27, 58, 80, 0.96), rgba(11, 32, 48, 0.95));
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.13rem;
}

.card ol,
.card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.card li {
  margin: 0.38rem 0;
}

.card p {
  margin-bottom: 0;
  color: #cbd9e3;
}

.tabs {
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.78rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.84rem;
}

.tab.is-active {
  border-color: rgba(246, 163, 0, 0.75);
  color: #f8cf68;
}

.table-wrap {
  overflow-x: auto;
  padding: 0.2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

th,
td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.82rem;
  text-align: left;
  vertical-align: top;
}

th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #bed2e1;
}

td {
  color: #dce7ef;
  font-size: 0.95rem;
}

.info-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.info-links a {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.82rem;
  text-decoration: none;
  color: #f6ca62;
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0.95rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-q::after {
  content: "+";
  float: right;
  color: #f8c64d;
}

.faq-q[aria-expanded="true"]::after {
  content: "-";
}

.faq-a {
  padding: 0 1rem 1rem;
}

.faq-a p {
  margin: 0;
  color: #d1dee8;
}

.legal-card {
  border-color: rgba(246, 163, 0, 0.34);
}

.site-footer {
  margin: 0 1.1rem 1.1rem;
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(9, 24, 37, 0.98), rgba(8, 18, 31, 0.98));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  padding: 1.3rem;
}

.footer-grid h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid li {
  color: #bdd0df;
}

.footer-grid ul {
  margin: 0;
  padding-left: 1rem;
}

.footer-bottom {
  padding: 0.8rem 1.3rem 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  color: #a9bfce;
  font-size: 0.9rem;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  padding: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 15, 24, 0.94);
  backdrop-filter: blur(8px);
}

.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff2d4;
  border: 1px solid rgba(246, 163, 0, 0.48);
  background: linear-gradient(145deg, rgba(246, 163, 0, 0.42), rgba(163, 97, 0, 0.42));
  font-weight: 700;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .hero-grid,
  .two-up,
  .footer-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .visual-grid {
    grid-template-columns: 1fr;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
  }

  .site-footer {
    margin-inline: 0.7rem;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 82px;
  }

  .section {
    padding: 2.3rem 0;
  }

  .mobile-cta {
    display: grid;
  }

  .btn-small {
    display: none;
  }
}
