:root {
  --bg: #f6fbff;
  --bg-soft: #edf5ff;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(245, 250, 255, 0.92);
  --text: #12345a;
  --muted: #5e7b9f;
  --line: rgba(33, 94, 167, 0.14);
  --accent: #0f4d88;
  --accent-strong: #1f67ae;
  --accent-warm: #5da9ff;
  --shadow: 0 24px 60px rgba(15, 77, 136, 0.12);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: min(1120px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(93, 169, 255, 0.18), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(15, 77, 136, 0.12), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(123, 206, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #e2edf9 0%, #d8e7f7 52%, #d2e1f3 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.24;
  z-index: -1;
  pointer-events: none;
}

.page-glow-left {
  top: 5%;
  left: -8rem;
  background: #5da9ff;
}

.page-glow-right {
  right: -10rem;
  top: 45%;
  background: #0f4d88;
}

.hero {
  min-height: 88vh;
  padding: 0.35rem 0 1.4rem;
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0;
  margin-bottom: 1rem;
}

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

.brand-logo {
  width: min(16.5rem, 38vw);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(15, 77, 136, 0.12));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand:hover .brand-logo {
  transform: translateY(-2px) scale(1.015);
  filter: drop-shadow(0 18px 34px rgba(15, 77, 136, 0.18));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
}

.nav-cta {
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 77, 136, 0.16);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(15, 77, 136, 0.08);
}

.nav-cta:hover {
  background: rgba(15, 77, 136, 0.1);
  color: var(--accent-strong);
}

.nav-links a:not(.nav-cta) {
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.4rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(15, 77, 136, 0.14);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(15, 77, 136, 0.06);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title,
.section-heading h2,
.spotlight-panel h2,
.app-copy h2,
.footer-copy h2 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
  margin: 1rem 0 1.2rem;
}

.hero-title {
  font-size: clamp(2.25rem, 4.4vw, 3.9rem);
  max-width: 13ch;
  line-height: 1.02;
}

.hero-title span {
  color: var(--accent-strong);
}

.hero-text,
.section-heading p,
.spotlight-panel p,
.app-copy p,
.feature-card p,
.advantage-item p,
.testimonial,
.footer-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 77, 136, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 77, 136, 0.12);
  color: var(--accent);
}

.hero-metrics {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-metrics div {
  min-width: 9rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(15, 77, 136, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hero-metrics div:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 77, 136, 0.24);
  box-shadow: 0 22px 44px rgba(15, 77, 136, 0.12);
}

.hero-metrics strong,
.quote-author strong,
.feature-card h3,
.advantage-item strong,
.screen-balance h3 {
  display: block;
  color: var(--text);
}

.hero-metrics span,
.device-pill,
.device-bottom small,
.screen-top span,
.screen-balance small,
.screen-card span,
.screen-stats small,
.quote-author span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 31rem;
  width: min(100%, 31rem);
  justify-self: end;
  padding: 3.75rem 1rem;
  display: grid;
  place-items: center;
  overflow: visible;
}

.device-card,
.mini-card,
.feature-card,
.advantage-item,
.phone-shell,
.testimonial,
.footer-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(240, 247, 255, 0.82));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.device-card,
.mini-card,
.feature-card,
.advantage-item,
.phone-shell,
.testimonial,
.footer-form,
.app-list li,
.partners {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.device-card {
  width: min(100%, 22rem);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  position: relative;
  z-index: 1;
}

.device-card:hover,
.phone-shell:hover,
.testimonial:hover,
.footer-form:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(15, 77, 136, 0.18);
}

.device-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.device-top strong {
  font-size: 1.35rem;
  line-height: 1.15;
}

.device-pill {
  padding: 0.35rem 0.65rem;
  background: rgba(15, 77, 136, 0.08);
  border-radius: 999px;
  font-size: 0.82rem;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.65rem;
  align-items: end;
  height: 9rem;
  margin: 1.4rem 0;
}

.chart-bars span {
  display: block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #7db8ff 0%, var(--accent) 100%);
}

.chart-bars span:nth-child(1) { height: 44%; }
.chart-bars span:nth-child(2) { height: 61%; }
.chart-bars span:nth-child(3) { height: 78%; }
.chart-bars span:nth-child(4) { height: 55%; }
.chart-bars span:nth-child(5) { height: 90%; }
.chart-bars span:nth-child(6) { height: 72%; }

.device-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.device-bottom div {
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(15, 77, 136, 0.05);
}

.mini-card {
  position: absolute;
  padding: 0.8rem 0.95rem;
  border-radius: 1.2rem;
  max-width: 11rem;
  z-index: 2;
}

.mini-card:hover {
  border-color: rgba(15, 77, 136, 0.24);
  box-shadow: 0 24px 50px rgba(15, 77, 136, 0.14);
}

.mini-card-top:hover,
.mini-card-bottom:hover {
  transform: translateY(-8px) scale(1.02);
}

.mini-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.mini-card-top {
  top: 0;
  right: 0;
}

.mini-card-bottom {
  bottom: 0;
  left: 0;
}

.section {
  padding: 5rem 0;
}

.partners {
  padding: 1.4rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(15, 77, 136, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.partners:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15, 77, 136, 0.12);
}

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

.partners-grid {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.spotlight-panel h2,
.app-copy h2,
.footer-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.feature-card,
.advantage-item {
  padding: 1.6rem;
  border-radius: var(--radius-md);
}

.feature-card:hover,
.advantage-item:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 77, 136, 0.22);
  box-shadow: 0 26px 58px rgba(15, 77, 136, 0.14);
}

.feature-card:hover .feature-icon,
.advantage-item:hover strong {
  color: var(--accent-strong);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 77, 136, 0.08);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 1.2rem;
}

.spotlight {
  position: relative;
}

.spotlight::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto;
  height: 60%;
  background: radial-gradient(circle at center, rgba(93, 169, 255, 0.12), transparent 55%);
  pointer-events: none;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
  align-items: start;
}

.spotlight-panel {
  position: sticky;
  top: 2rem;
}

.advantages {
  display: grid;
  gap: 1rem;
}

.app-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.app-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.app-list li {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.app-list li:hover {
  transform: translateX(8px);
  border-color: rgba(15, 77, 136, 0.2);
  background: rgba(255, 255, 255, 0.84);
}

.phone-shell {
  width: min(100%, 23rem);
  margin-inline: auto;
  padding: 1rem;
  border-radius: 2.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(229, 240, 255, 0.88));
  border: 1px solid rgba(15, 77, 136, 0.14);
  box-shadow: 0 28px 70px rgba(15, 77, 136, 0.14);
}

.phone-screen {
  min-height: 34rem;
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(245, 250, 255, 0.98), rgba(226, 239, 255, 0.96)),
    #f3f8ff;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--accent);
}

.screen-top,
.screen-stats {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.screen-top strong,
.screen-balance h3,
.screen-card strong,
.screen-stats strong {
  color: var(--accent);
}

.screen-balance {
  padding: 1.2rem 0 0.4rem;
}

.gradient-card {
  border-radius: 1.4rem;
  padding: 1.1rem;
  background: linear-gradient(135deg, rgba(15, 77, 136, 0.14), rgba(93, 169, 255, 0.2));
  border: 1px solid rgba(15, 77, 136, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.gradient-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 77, 136, 0.22);
  box-shadow: 0 18px 34px rgba(15, 77, 136, 0.12);
}

.screen-stats div {
  flex: 1;
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(15, 77, 136, 0.05);
  border: 1px solid rgba(15, 77, 136, 0.08);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.screen-stats div:hover {
  transform: translateY(-4px);
  background: rgba(15, 77, 136, 0.08);
  border-color: rgba(15, 77, 136, 0.16);
}

.testimonial-wrap {
  padding-top: 1rem;
}

.testimonial {
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.quote {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.25;
}

.quote-author {
  margin-top: 1.5rem;
}

.footer {
  padding: 2rem 0 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.4rem;
  align-items: center;
}

.footer-form {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 0.9rem;
}

.footer-form .button-primary {
  background: linear-gradient(135deg, #ffffff 0%, #dcecff 100%);
  color: var(--accent);
  border: 1px solid rgba(15, 77, 136, 0.16);
  box-shadow: 0 16px 36px rgba(15, 77, 136, 0.12);
}

.footer-form .button-primary:hover {
  box-shadow: 0 20px 42px rgba(15, 77, 136, 0.16);
}

.footer-form input {
  min-height: 3.4rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 77, 136, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
  padding: 0 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.footer-form input:focus,
.footer-form input:hover {
  border-color: rgba(15, 77, 136, 0.26);
  box-shadow: 0 0 0 4px rgba(93, 169, 255, 0.12);
  background: rgba(255, 255, 255, 0.94);
}

.footer-form input::placeholder {
  color: rgba(18, 52, 90, 0.45);
}

.policy-header {
  padding-top: 0.35rem;
}

.policy-page {
  padding: 0.5rem 0 4rem;
}

.policy-hero {
  padding: 2rem 0 1.5rem;
  max-width: 56rem;
}

.policy-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.04;
  margin: 1rem 0;
}

.policy-hero p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 48rem;
}

.policy-content {
  padding-bottom: 2rem;
}

.policy-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(240, 247, 255, 0.82));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.policy-card h2,
.policy-card h3 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent);
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.85;
}

.policy-card strong {
  color: var(--text);
}

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

@media (max-width: 980px) {
  .nav {
    gap: 1rem;
    flex-direction: column;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-content,
  .spotlight-grid,
  .app-section,
  .footer-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 26rem;
    width: 100%;
    justify-self: stretch;
    padding: 1rem;
    overflow: visible;
  }

  .spotlight-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-top: 0.75rem;
  }

  .brand-logo {
    width: min(13rem, 54vw);
  }

  .hero-title {
    max-width: 100%;
  }

  .partners {
    border-radius: 2rem;
  }

  .hero-metrics,
  .device-bottom,
  .screen-stats {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    flex-direction: column;
  }

  .mini-card {
    position: static;
    max-width: none;
  }

  .hero-visual {
    display: grid;
    gap: 1rem;
    min-height: auto;
    width: 100%;
    padding: 0;
    overflow: visible;
  }

  .policy-card {
    padding: 1.4rem;
  }
}
