:root {
  color-scheme: light;
  --ink: #07111c;
  --muted: #586878;
  --paper: #f5faff;
  --surface: #ffffff;
  --blue: #0a84ff;
  --blue-dark: #055fc0;
  --blue-soft: #dcedff;
  --green: #16745f;
  --coral: #d95d45;
  --gold: #b77913;
  --line: rgba(7, 17, 28, 0.14);
  --shadow: 0 24px 70px rgba(22, 63, 104, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(7, 17, 28, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.85rem;
  font-weight: 850;
}

.brand img {
  width: 56px;
  height: 56px;
}

.brand img,
.hero-icon {
  border-radius: 8px;
}

.site-nav,
.site-footer nav {
  gap: clamp(0.85rem, 2vw, 1.45rem);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(680px, 72svh);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(2.75rem, 5vw, 4.5rem) clamp(1rem, 5vw, 4.5rem);
  background:
    linear-gradient(90deg, #f5faff 0%, rgba(245, 250, 255, 0.97) 38%, rgba(245, 250, 255, 0.68) 67%, rgba(245, 250, 255, 0.2)),
    radial-gradient(circle at 86% 12%, rgba(10, 132, 255, 0.24), transparent 32%),
    linear-gradient(135deg, #f5faff, #e9f5ff 56%, #f8fbf2);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.hero-shot {
  position: absolute;
  right: clamp(1.5rem, 8vw, 7rem);
  bottom: clamp(2rem, 6vw, 4rem);
  z-index: 1;
  width: clamp(180px, 18vw, 250px);
  opacity: 0.98;
  transform: rotate(1.5deg);
}

.hero-shot img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-icon {
  width: 112px;
  height: 112px;
  margin-bottom: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.7rem, 10vw, 7rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(2rem, 5vw, 4.25rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 680px;
  margin: 1.2rem 0 0;
  color: #263442;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.hero-note {
  max-width: 560px;
  margin: 1.05rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.78rem 1rem;
  font-weight: 850;
}

.button-primary {
  background: var(--blue);
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: rgba(7, 17, 28, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(7, 17, 28, 0.34);
  background: #ffffff;
}

.section {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
}

.intro .eyebrow,
.intro h2 {
  grid-column: 1 / -1;
}

.intro p,
.section-heading p,
.app-copy > p,
.data-section > div > p,
.page-hero p,
.page-content p,
.page-content li {
  color: var(--muted);
  font-size: 1.06rem;
}

.intro p {
  max-width: 710px;
  margin: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-self: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid rgba(10, 132, 255, 0.28);
  border-radius: 8px;
  padding: 0.55rem 0.72rem;
  background: #ffffff;
  color: #174267;
  font-weight: 800;
}

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

.section-heading p {
  margin: 1rem 0 0;
}

.feature-grid,
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.data-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(7, 17, 28, 0.07);
}

.feature-card {
  min-height: 250px;
  padding: 1.35rem;
}

.feature-card p,
.data-card p,
.detail-list p,
.phone-figure figcaption {
  color: var(--muted);
}

.feature-card p,
.data-card p,
.detail-list p {
  margin: 0.85rem 0 0;
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 1.15rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card:nth-child(2) .feature-kicker {
  color: var(--blue-dark);
}

.feature-card:nth-child(3) .feature-kicker {
  color: var(--gold);
}

.app-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.58fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.app-copy > p {
  max-width: 680px;
  margin: 1.25rem 0 0;
}

.detail-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.detail-list > div {
  border-left: 4px solid var(--blue);
  padding-left: 1rem;
}

.detail-list > div:nth-child(2) {
  border-color: var(--green);
}

.detail-list > div:nth-child(3) {
  border-color: var(--coral);
}

.phone-figure {
  margin: 0;
}

.phone-figure img {
  width: min(260px, 100%);
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.phone-figure figcaption {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.95rem;
}

.data-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.data-section > div > p {
  max-width: 620px;
  margin: 1.2rem 0 0;
}

.data-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.data-card {
  min-height: 180px;
  padding: 1.2rem;
}

.simple-page .site-header {
  position: sticky;
}

.page-main {
  min-height: calc(100svh - 157px);
}

.page-hero {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at 90% 12%, rgba(10, 132, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #f5faff, #eaf5ff);
}

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
}

.page-hero p {
  max-width: 760px;
  margin: 1rem 0 0;
}

.page-content {
  max-width: 840px;
}

.page-content h2 {
  margin-top: 2.25rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.page-content li + li {
  margin-top: 0.45rem;
}

.page-content a {
  color: var(--blue-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .hero {
    min-height: 72svh;
    padding-top: 3rem;
  }

  .hero-shot {
    right: 1rem;
    bottom: 2rem;
    width: clamp(140px, 28vw, 190px);
    opacity: 0.2;
  }

  .intro,
  .app-section,
  .data-section,
  .feature-grid,
  .data-grid {
    grid-template-columns: 1fr;
  }

  .phone-figure img {
    width: min(235px, 68vw);
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 74svh;
  }

  .hero-shot {
    display: none;
  }

  .hero-icon {
    width: 92px;
    height: 92px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .phone-figure img {
    width: min(210px, 62vw);
  }

  .hero-actions .button,
  .site-footer {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
