@font-face {
  font-family: "Sofia Sans";
  src: url("assets/sofia-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #111827;
  --muted: #667085;
  --line: #dfe4ec;
  --surface: #ffffff;
  --soft: #f3f6fa;
  --blue: #1774ee;
  --blue-dark: #0b4ea2;
  --teal: #16abc1;
  --green: #20a05a;
  --amber: #e98a12;
  --shadow: 0 16px 40px rgba(16, 31, 54, 0.1);
  --page: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Sofia Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  color: #fff;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: var(--page);
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-wordmark,
.hero-wordmark {
  font-family: Arial, Helvetica, sans-serif;
  font-variant-ligatures: none;
  font-feature-settings: "kern" 1;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.main-nav a,
.text-link {
  font-weight: 650;
  font-size: 0.94rem;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--teal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-select {
  position: relative;
  min-width: 132px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 34px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 7px;
  background: rgba(8, 25, 48, 0.18);
  color: currentColor;
}

.language-select > svg:first-child {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.language-select select {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 750;
  appearance: none;
  cursor: pointer;
  outline: none;
}

.language-select option {
  color: var(--ink);
  background: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.language-chevron {
  position: absolute;
  right: 11px;
  width: 15px;
  height: 15px;
  pointer-events: none;
}

.site-header.is-scrolled .language-select,
.site-header.is-open .language-select {
  border-color: var(--line);
  background: var(--surface-soft);
  color: var(--ink);
}

.mobile-language-select {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: currentColor;
}

.nav-toggle .close-icon,
.nav-backdrop,
.mobile-nav-title,
.mobile-nav-actions {
  display: none;
}

.nav-toggle svg,
.button svg,
.hero-proof svg,
.audience-tab svg,
.inline-link svg,
.store-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-weight: 750;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(23, 116, 238, 0.24);
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  border-color: #fff;
  background: #fff;
  color: var(--blue-dark);
}

.site-header.is-scrolled .button-small,
.site-header.is-open .button-small {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.button-white {
  border-color: #fff;
  background: #fff;
  color: var(--blue-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(8, 25, 48, 0.18);
  color: #fff;
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button-teal {
  border-color: var(--teal);
  background: var(--teal);
}

.hero {
  position: relative;
  min-height: min(780px, 88vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #102b4e;
  color: #fff;
}

.hero-image,
.download-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  object-position: center;
}

.hero-shade,
.download-shade {
  position: absolute;
  inset: 0;
  background: rgba(4, 34, 72, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin: 60px auto 0;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #cde9ff;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.7rem, 11vw, 9.6rem);
  line-height: 0.82;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 30px;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  line-height: 1.35;
  font-weight: 560;
}

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

.hero-proof {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 650;
}

.trust-band {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.section-shell {
  width: var(--page);
  margin: 0 auto;
}

.metrics {
  min-height: 128px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.metrics > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 34px;
  border-left: 1px solid var(--line);
}

.metrics > div:last-child {
  border-right: 1px solid var(--line);
}

.metrics strong {
  font-size: 2rem;
  line-height: 1;
}

.metrics span {
  margin-top: 7px;
  color: var(--muted);
}

.section {
  padding: 104px 0;
}

.section-muted {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.section-heading h2,
.faq-intro h2,
.product-copy h2,
.download-content h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.faq-intro > p,
.product-copy > p,
.download-content > p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #eaf2ff;
  color: var(--blue);
}

.icon-box svg {
  width: 23px;
  height: 23px;
}

.icon-box.teal {
  background: #e6f8fa;
  color: #0d8798;
}

.icon-box.green {
  background: #eaf8ef;
  color: var(--green);
}

.icon-box.amber {
  background: #fff4e5;
  color: var(--amber);
}

.feature-card h3 {
  margin: 24px 0 10px;
  font-size: 1.35rem;
}

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

.audience-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.audience-tab {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 750;
  cursor: pointer;
}

.audience-tab.is-active {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 4px 12px rgba(28, 50, 84, 0.09);
}

.audience-panel {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 520px;
  border: 1px solid var(--line);
}

.audience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 74px);
}

.audience-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.06;
}

.audience-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.check-list,
.price-list {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0;
}

.check-list svg,
.price-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--green);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
}

.audience-media {
  min-height: 480px;
  overflow: hidden;
}

.audience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-section {
  overflow: hidden;
  background: #08294f;
  color: #fff;
}

.product-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 100px;
}

.device-stage {
  position: relative;
  min-height: 700px;
}

.phone-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(355px, 72vw);
  height: 680px;
  padding: 12px;
  overflow: hidden;
  border: 6px solid #0f172a;
  border-radius: 44px;
  background: #0f172a;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 31px;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 20px;
  background: #050b16;
  transform: translateX(-50%);
}

.app-callout {
  position: absolute;
  z-index: 3;
  width: 220px;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.app-callout svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.app-callout span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.9rem;
}

.app-callout strong {
  color: var(--ink);
}

.callout-one {
  left: 0;
  top: 180px;
}

.callout-two {
  right: 0;
  bottom: 150px;
}

.product-copy h2 {
  max-width: 660px;
}

.product-copy > p {
  color: #cbd8e6;
}

.product-points {
  margin: 34px 0;
  display: grid;
  gap: 16px;
}

.product-points > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-points svg {
  width: 24px;
  height: 24px;
  color: #52d6e4;
}

.product-points span {
  display: flex;
  flex-direction: column;
  color: #cbd8e6;
}

.product-points strong {
  color: #fff;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  min-width: 170px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 17px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.store-button svg {
  width: 27px;
  height: 27px;
}

.store-button span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-button small {
  font-weight: 500;
  color: #cbd8e6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 4px solid #98a2b3;
  border-radius: 8px;
  background: #fff;
}

.price-card.featured {
  border-color: var(--blue);
  border-top-color: var(--blue);
  box-shadow: var(--shadow);
}

.price-card:last-child {
  border-top-color: var(--teal);
}

.popular {
  position: absolute;
  right: 20px;
  top: 17px;
  padding: 5px 8px;
  border-radius: 5px;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-name {
  margin: 0;
  font-weight: 850;
  text-transform: uppercase;
  color: var(--blue);
}

.price {
  margin: 16px 0 10px;
}

.price strong {
  font-size: 2.7rem;
  line-height: 1;
}

.price span,
.price-top > p:last-child {
  color: var(--muted);
}

.price-list {
  flex: 1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1.12rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary svg {
  width: 20px;
  height: 20px;
  transition: transform 160ms ease;
}

.accordion details[open] summary svg {
  transform: rotate(180deg);
}

.accordion details p {
  max-width: 720px;
  margin: -4px 0 25px;
  color: var(--muted);
}

.download-band {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.download-band > img {
  object-position: center 43%;
}

.download-shade {
  background: rgba(5, 30, 61, 0.72);
}

.download-content {
  position: relative;
  z-index: 2;
}

.download-content h2,
.download-content p {
  max-width: 720px;
}

.download-content > p {
  margin-bottom: 28px;
  color: #d8e7f3;
}

.site-footer {
  padding: 72px 0 28px;
  background: #07182c;
  color: #d4deea;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 44px;
}

.footer-brand {
  color: #fff;
}

.footer-grid > div:first-child p {
  color: #8fa1b5;
}

.footer-grid h2 {
  margin: 5px 0 16px;
  color: #fff;
  font-size: 1rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid #23364c;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8fa1b5;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 32px, 760px);
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    order: 2;
    position: relative;
    z-index: 104;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 auto auto;
    z-index: 103;
    width: min(340px, 86vw);
    height: 100vh;
    height: 100dvh;
    padding: 86px 24px 28px;
    border-left: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    overflow-y: auto;
    transform: translateX(105%);
    visibility: hidden;
    box-shadow: -20px 0 46px rgba(8, 25, 48, 0.18);
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .main-nav.is-open {
    display: flex;
    visibility: visible;
    transform: translateX(0);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 102;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    border: 0;
    background: rgba(8, 25, 48, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .site-header.is-open .nav-backdrop {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .site-header.is-open .nav-toggle .menu-icon {
    display: none;
  }

  .site-header.is-open .nav-toggle .close-icon {
    display: flex;
  }

  .mobile-nav-title {
    display: block;
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
  }

  .main-nav > a:last-of-type {
    border-bottom: 0;
  }

  .mobile-language-select {
    display: flex;
    width: 100%;
    height: 48px;
    margin-top: 18px;
    border-color: var(--line);
    background: var(--surface-soft);
    color: var(--ink);
  }

  .mobile-nav-actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
  }

  .mobile-nav-actions .button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    border-bottom: 1px solid var(--blue);
  }

  .nav-actions {
    display: none;
  }

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

  .metrics > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .metrics > div:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .audience-panel,
  .product-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .audience-media {
    order: -1;
    min-height: 360px;
  }

  .product-layout {
    gap: 40px;
  }

  .device-stage {
    min-height: 700px;
  }

  .product-copy {
    padding-bottom: 20px;
  }

  .faq-layout {
    gap: 45px;
  }

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

@media (max-width: 640px) {
  :root {
    --page: calc(100% - 28px);
  }

  body {
    font-size: 15px;
  }

  .nav-shell {
    min-height: 64px;
  }

  .main-nav {
    padding-top: 78px;
  }

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

  .hero {
    min-height: 760px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-shade {
    background: rgba(4, 34, 72, 0.68);
  }

  .hero-content {
    margin-top: 0;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 26vw, 6.4rem);
  }

  .hero-lead {
    margin: 22px 0 25px;
    font-size: 1.25rem;
  }

  .hero-actions,
  .store-row {
    flex-direction: column;
  }

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

  .hero-proof {
    margin-top: 30px;
    display: grid;
    gap: 12px;
  }

  .metrics {
    grid-template-columns: 1fr 1fr;
  }

  .metrics > div {
    min-height: 120px;
    padding: 18px;
  }

  .metrics strong {
    font-size: 1.65rem;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .faq-intro h2,
  .product-copy h2,
  .download-content h2 {
    font-size: 2.35rem;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .audience-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .audience-tab {
    min-width: 0;
    padding: 8px 5px;
    flex-direction: column;
    font-size: 0.8rem;
  }

  .audience-panel {
    min-height: 0;
  }

  .audience-copy {
    padding: 30px 22px 36px;
  }

  .audience-copy h3 {
    font-size: 2rem;
  }

  .audience-media {
    min-height: 260px;
  }

  .device-stage {
    min-height: 650px;
  }

  .phone-frame {
    width: 300px;
    height: 610px;
  }

  .app-callout {
    display: none;
  }

  .price-card {
    padding: 25px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 22px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
