:root {
  --bg: #08155c;
  --card: rgba(10, 20, 86, 0.8);
  --card-soft: rgba(19, 37, 132, 0.74);
  --text: #fff3c8;
  --text-soft: #ffe08f;
  --gold: linear-gradient(180deg, rgba(255, 241, 188, 0.98), rgba(247, 203, 82, 0.95) 35%, rgba(166, 103, 10, 0.98) 100%);
  --shadow: 0 24px 48px rgba(5, 8, 35, 0.36);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(180deg, rgba(4, 8, 50, 0.18), rgba(4, 8, 50, 0.58)),
    url("assets/tlo.jpg") center center / cover no-repeat fixed;
  color: var(--text);
}

body {
  padding: 18px;
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.hero-card,
.content-card {
  position: relative;
  border-radius: 30px;
  padding: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-card::before,
.content-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 3px;
  background: var(--gold);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-card {
  text-align: center;
}

.hero-top {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(32, 62, 176, 0.7);
  border: 1px solid rgba(255, 228, 142, 0.28);
  color: #fff4cc;
  text-decoration: none;
  font-weight: 800;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  color: #281401;
  background: var(--gold);
}

.badge-soft {
  color: #fff5cf;
  background: rgba(32, 62, 176, 0.74);
  border: 1px solid rgba(255, 228, 142, 0.3);
}

.hero-logo {
  display: block;
  width: min(100%, 680px);
  margin: 0 auto 10px;
  filter: drop-shadow(0 18px 26px rgba(5, 8, 35, 0.28));
}

.hero-card-small {
  text-align: center;
}

.hero-logo-small {
  width: min(100%, 420px);
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  color: var(--text-soft);
  font-size: clamp(34px, 4vw, 56px);
}

h2 {
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: clamp(24px, 2.4vw, 34px);
}

h3 {
  margin-bottom: 8px;
  color: #fff8dc;
  font-size: 20px;
}

.hero-lead,
p,
li {
  line-height: 1.65;
}

.hero-lead {
  max-width: 840px;
  margin: 0 auto;
  font-size: 18px;
}

.hero-actions,
.link-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-actions-left {
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.btn-primary {
  color: #2e1a00;
  background: var(--gold);
  box-shadow: 0 14px 26px rgba(35, 24, 3, 0.18);
}

.btn-secondary {
  color: #fff4cc;
  background: rgba(32, 62, 176, 0.74);
  border: 1px solid rgba(255, 228, 142, 0.3);
}

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

.content-card-wide {
  grid-column: 1 / -1;
}

.single-column {
  grid-template-columns: 1fr;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: center;
}

.promo-visual img {
  display: block;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(5, 8, 35, 0.32);
}

.feature-list,
.steps-list {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

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

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

.single-column-tiles {
  grid-template-columns: 1fr;
}

.tile {
  border-radius: 22px;
  padding: 18px 18px 16px;
  background: var(--card-soft);
  box-shadow: inset 0 1px 14px rgba(255, 255, 255, 0.06);
}

.tile p {
  margin: 0;
}

.meta-table {
  display: grid;
  gap: 10px;
}

.meta-row {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(20, 41, 134, 0.52);
}

.meta-row strong {
  color: var(--text-soft);
}

a {
  color: #fff3c8;
}

.text-link {
  font-weight: 800;
}

@media (max-width: 900px) {
  .content-grid,
  .info-tiles,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding: 12px;
  }

  .hero-card,
  .content-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .hero-lead,
  p,
  li {
    font-size: 16px;
  }

  .meta-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .btn {
    width: 100%;
  }
}
