:root {
  --bg: #f4f9fd;
  --bg-soft: #edf5fb;
  --surface: #f9fcff;
  --text: #11445f;
  --muted: #3d6d86;
  --brand: #00a8e8;
  --brand-2: #6ccff4;
  --line: #a9d9ec;
  --shadow: 0 14px 40px rgba(0, 122, 172, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 168, 232, 0.08), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(108, 207, 244, 0.1), transparent 36%),
    var(--bg);
  line-height: 1.65;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  opacity: 0.18;
}

.orb-1 {
  width: 260px;
  height: 260px;
  background: #00a8e8;
  top: -80px;
  right: -20px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: #8adbf7;
  bottom: -120px;
  left: -60px;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(244, 249, 253, 0.86);
  border-bottom: 1px solid rgba(0, 168, 232, 0.14);
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 290px;
  max-width: 58vw;
  border-radius: 8px;
  filter: drop-shadow(0 6px 14px rgba(0, 122, 172, 0.2));
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  padding: 56px 0 42px;
  align-items: center;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.79rem;
  color: var(--brand);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 1.12;
}

h1 {
  margin: 0.45rem 0 1rem;
  font-size: clamp(2rem, 4.3vw, 3.6rem);
}

h1 span {
  display: block;
  color: var(--brand);
}

.lead {
  color: var(--muted);
  max-width: 60ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 168, 232, 0.36);
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.95rem;
}

.hero-image-card,
.image-card {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(45, 44, 40, 0.08);
  background: var(--surface);
}

.hero-image-card img,
.image-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.hero-image-card img {
  aspect-ratio: 4 / 4;
}

.panel {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 30px;
  margin: 18px auto 26px;
}

.panel h2 {
  margin-top: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 12px auto 26px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

.card.accent {
  background: linear-gradient(145deg, #eef5ff 10%, #fafdff 100%);
}

.card h3 {
  margin-top: 0;
}

.offer-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 10px;
}

.offer-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
}

.offer-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.offer-icon svg {
  width: 56px;
  height: 56px;
}

.offer-icon circle,
.offer-icon rect,
.offer-icon path,
.offer-icon line,
.offer-icon polyline {
  stroke: #0aa0e0;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-icon svg > circle {
  stroke-width: 1.9;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 30px;
}

.split-copy h2 {
  margin-top: 0;
}

.site-footer {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  background: #e7f3fb;
  padding: 26px 0 30px;
}

.tagline {
  margin-bottom: 0;
  color: var(--brand);
  font-weight: 700;
}

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

.site-footer a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 168, 232, 0.2);
}

.legal-links a {
  display: inline-block;
  padding: 4px 0;
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
}

.legal-page {
  min-height: 100vh;
  padding: 36px 0 48px;
}

.legal-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.legal-card h1,
.legal-card h2 {
  margin-top: 0;
}

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

.legal-back {
  display: inline-flex;
  margin-top: 18px;
}

.owner {
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}

.reveal {
  animation: revealUp 0.65s ease both;
}

.reveal:nth-of-type(2) {
  animation-delay: 0.08s;
}

.reveal:nth-of-type(3) {
  animation-delay: 0.14s;
}

.reveal:nth-of-type(4) {
  animation-delay: 0.2s;
}

.reveal:nth-of-type(5) {
  animation-delay: 0.26s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@media (max-width: 920px) {
  .brand img {
    width: 240px;
  }

  .hero,
  .split,
  .features,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal-links {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 30px;
  }

  .panel,
  .card {
    padding: 22px;
  }

  .offer-item {
    grid-template-columns: 52px 1fr;
    gap: 10px;
  }

  .offer-icon,
  .offer-icon svg {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 210px;
    max-width: 68vw;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1;
  }

  .panel,
  .card {
    border-radius: 16px;
  }
}
