:root {
  --primary-color: #1c49d5;
  --accent-color: #FF6B35;
  --dark-color: #1c1f2a;
  --light-color: #f2f4ff;
  --gray-color: #6C757D;
  --muted-color: #a1a8be;
  --surface-color: #ffffff;
  --border-color: rgba(28, 73, 213, 0.15);
  --gradient-start: #23a6d5;
  --gradient-end: #2367d5;
  --gradient-deep: #1c1f7a;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  background-image: radial-gradient(circle at top left, rgba(35, 166, 213, 0.18), transparent 55%), radial-gradient(circle at bottom right, rgba(28, 73, 213, 0.12), transparent 45%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.site-logo img {
  margin-right: 10px;
}

nav a {
  margin-left: 24px;
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

nav a:first-child {
  margin-left: 0;
}

nav a:hover,
nav a.active-link {
  color: var(--accent-color);
}

.hero {
  margin: 40px 0 60px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 28px;
  padding: 80px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(35, 103, 213, 0.35);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(0px);
}

.hero::before {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -40px;
}

.hero::after {
  width: 220px;
  height: 220px;
  bottom: -100px;
  left: 60px;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
  z-index: 1;
}

.hero-copy h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-copy p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: white;
  text-decoration: none;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, transform 0.3s ease;
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.hero-points {
  margin-top: 40px;
  display: grid;
  gap: 12px;
}

.hero-points li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.18);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: 280px;
  border-radius: 32px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 40px 80px rgba(12, 32, 98, 0.35);
  backdrop-filter: blur(6px);
}

.phone-frame img {
  width: 100%;
  display: block;
  border-radius: 26px;
  box-shadow: 0 20px 40px rgba(12, 32, 98, 0.28);
}

.metrics {
  padding: 40px 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.metric-card {
  background: var(--surface-color);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(28, 73, 213, 0.08);
  border: 1px solid rgba(28, 73, 213, 0.08);
  text-align: center;
}

.metric-value {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  font-size: 38px;
  color: var(--dark-color);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

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

.pill-divider {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(35, 103, 213, 0.12);
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

.feature-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.tile {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(12, 32, 98, 0.08);
  border: 1px solid var(--border-color);
  display: grid;
  gap: 16px;
}

.tile h3 {
  font-size: 20px;
  color: var(--dark-color);
}

.tile p {
  color: var(--muted-color);
  font-weight: 500;
}

.tile ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--dark-color);
  font-size: 15px;
}

.tile ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.tile ul li::before {
  content: "✔";
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.illustration-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 55px rgba(12, 32, 98, 0.12);
  border: 1px solid rgba(28, 73, 213, 0.1);
}

.illustration-card img {
  width: 100%;
  border-radius: 20px;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.icon-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark-color);
}

.icon-list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(35, 103, 213, 0.1);
  color: var(--primary-color);
  font-weight: 700;
}

.cta-strip {
  margin: 80px 0 60px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-deep));
  border-radius: 26px;
  padding: 56px;
  color: white;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
  box-shadow: 0 30px 70px rgba(12, 32, 98, 0.32);
}

.cta-strip p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.page-content {
  padding: 60px 0 100px;
}

.page-heading {
  text-align: center;
  margin-bottom: 48px;
}

.page-heading h1 {
  font-size: 44px;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.page-heading p {
  color: var(--muted-color);
  font-size: 18px;
}

.page-content h2 {
  font-size: 28px;
  color: var(--primary-color);
  margin: 40px 0 16px;
}

.page-content h3 {
  font-size: 20px;
  color: var(--dark-color);
  margin: 28px 0 12px;
}

.page-content h4 {
  font-size: 18px;
  color: var(--dark-color);
  margin: 20px 0 8px;
}

.page-content p {
  margin-bottom: 16px;
  color: var(--dark-color);
}

.page-content ul {
  margin: 0 0 20px 24px;
  display: grid;
  gap: 10px;
  color: var(--dark-color);
}

.release-list {
  display: grid;
  gap: 24px;
}

.release-card {
  background: var(--surface-color);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(12, 32, 98, 0.08);
  border: 1px solid var(--border-color);
}

.release-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.release-meta h2 {
  font-size: 24px;
  color: var(--primary-color);
}

.release-meta span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-color);
}

.release-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--dark-color);
}

.release-card ul li::before {
  content: "•";
  color: var(--accent-color);
  font-weight: 700;
  display: inline-block;
  width: 16px;
}

footer {
  padding: 40px 0 60px;
  text-align: center;
  color: var(--muted-color);
  font-size: 14px;
}

footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

body[data-page="privacy"] .page-content {
  padding: 32px 0 48px;
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.45;
}

body[data-page="privacy"] .page-heading {
  text-align: left;
  margin-bottom: 24px;
}

body[data-page="privacy"] .page-heading h1 {
  font-size: 28px;
  margin-bottom: 6px;
}

body[data-page="privacy"] .page-heading p {
  font-size: 14px;
  color: var(--gray-color);
}

body[data-page="privacy"] .page-content h2,
body[data-page="privacy"] .page-content h3,
body[data-page="privacy"] .page-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-color);
  margin: 18px 0 6px;
  text-transform: none;
}

body[data-page="privacy"] .page-content h2:first-of-type {
  margin-top: 0;
}

body[data-page="privacy"] .page-content p {
  margin-bottom: 10px;
  font-size: 15px;
}

body[data-page="privacy"] .page-content ul,
body[data-page="privacy"] .page-content ol {
  margin: 0 0 12px 18px;
  gap: 4px;
  font-size: 15px;
}

body[data-page="privacy"] .page-content li {
  padding-left: 0;
}

body[data-page="privacy"] .page-content ol {
  padding-left: 16px;
}

body[data-page="privacy"] .page-content strong {
  color: var(--dark-color);
}

body[data-page="privacy"] .page-content > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  header {
    flex-direction: column;
    gap: 16px;
  }

  nav a {
    margin: 0 12px;
  }

  .hero {
    padding: 60px 32px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .phone-frame {
    width: 240px;
  }
}

@media (max-width: 768px) {
  .hero {
    margin: 20px 0 40px;
    border-radius: 22px;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .cta-row {
    width: 100%;
  }

  .cta-button,
  .ghost-button {
    flex: 1;
    text-align: center;
  }

  .metrics {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .release-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
