:root {
  --bg: #f7fbff;
  --card: rgba(255, 255, 255, 0.82);
  --card-soft: rgba(255, 255, 255, 0.75);
  --text: #17324a;
  --muted: #5f768b;
  --brand: #ff8b5e;
  --brand2: #5cc8ff;
  --line: rgba(23, 50, 74, 0.12);
  --shadow: 0 20px 60px rgba(23, 50, 74, 0.12);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, sans-serif;
  background:
    radial-gradient(circle at top, #fff6d9 0, #d7f4ff 30%, #f7fbff 60%, #edf7ff 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
}

/* Layout shell */

.page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px 56px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

/* Brand */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.08rem;
}

.brand-tagline {
  font-size: 0.86rem;
  color: var(--muted);
}

.badge {
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

/* Hero */

.main {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 26px;
  align-items: center;
  padding-bottom: 26px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(92, 200, 255, 0.16);
  border: 1px solid rgba(92, 200, 255, 0.28);
  color: #19506b;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.86rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-lead {
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 54ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #ffb56b);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border-color: var(--line);
}

.btn-icon {
  font-size: 1.2rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
}

.hero-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-mini span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}

/* Hero image card */

.hero-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(255, 255, 255, 0.7)
  );
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -18% 52% -18%;
  height: 210px;
  background: radial-gradient(
    circle,
    rgba(255, 214, 153, 0.85),
    rgba(255, 214, 153, 0) 68%
  );
}

.hero-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Feature cards */

.section {
  margin-top: 10px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.card {
  background: var(--card-soft);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(92, 200, 255, 0.4);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 139, 94, 0.18),
    rgba(92, 200, 255, 0.2)
  );
}

.card-title {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.card-body {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Split panels */

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  margin-top: 22px;
}

.panel {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 20px 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.panel-title {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.panel-body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.panel-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.dot {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 0.38rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #ffd08a);
}

/* Footer */

.footer {
  text-align: center;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer .link {
  color: var(--muted);
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 900px) {
  .page-shell {
    padding-inline: 16px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .badge {
    margin-top: 8px;
    white-space: normal;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }

  .section-split {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.3rem);
  }
}