:root {
  --primary: #136f63;
  --primary-deep: #053f36;
  --blue: #2477d4;
  --teal: #10b69d;
  --orange: #e6842a;
  --background: #f6f8f7;
  --surface: #ffffff;
  --surface-muted: #eef4f1;
  --text: #173f37;
  --muted: #63736c;
  --border: #d6e0db;
  --green: #2e9d64;
  --yellow: #d4a21d;
  --red: #d95040;
  --dark: #101716;
  --white: #ffffff;
  --width-max: 1224px;
  --shadow: rgba(55, 84, 78, 0.2) 0 7px 29px 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  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%;
}

.site-header {
  align-items: center;
  background: rgba(246, 248, 247, 0.94);
  border-bottom: 1px solid rgba(214, 224, 219, 0.82);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(20px, 5vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  color: var(--primary-deep);
  display: inline-flex;
  font-weight: 900;
  gap: 12px;
  min-width: 0;
}

.brand img,
.download > img {
  border-radius: 8px;
  flex: 0 0 auto;
}

.brand span,
.nav-links a,
.store-button {
  overflow-wrap: anywhere;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.nav-links a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  min-height: 40px;
  padding: 9px 11px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(19, 111, 99, 0.1);
  color: var(--primary);
  outline: none;
}

.nav-links .nav-cta {
  background: var(--primary);
  color: var(--white);
  padding-inline: 14px;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: var(--primary-deep);
  color: var(--white);
}

.language-picker {
  display: inline-flex;
}

.language-picker select {
  appearance: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--primary-deep);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  min-height: 40px;
  min-width: 132px;
  padding: 8px 34px 8px 12px;
}

.language-picker select:hover,
.language-picker select:focus-visible {
  border-color: var(--primary);
  outline: none;
}

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

.hero {
  align-items: center;
  background:
    linear-gradient(0deg, rgba(224, 248, 244, 0.98) 0%, rgba(219, 244, 255, 0.92) 42%, rgba(149, 225, 255, 0.82) 100%);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 104px 0 0;
}

.hero-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 42px;
  max-width: var(--width-max);
  padding: 56px clamp(22px, 4vw, 40px) 72px;
  width: 100%;
}

.hero-copy,
.hero-media {
  flex: 1;
  min-width: 320px;
}

.hero-copy {
  padding-right: 24px;
}

.hero-media {
  flex-grow: 1.24;
}

.hero-media img {
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-left: auto;
  max-height: 720px;
  object-fit: cover;
  object-position: top center;
  width: min(520px, 100%);
}

.eyebrow {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--primary-deep);
  font-size: clamp(3rem, 8vw, 5.85rem);
  font-weight: 900;
  line-height: 1.04;
  margin-bottom: 22px;
  max-width: 700px;
}

h2 {
  color: var(--text);
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px;
}

h3 {
  color: var(--text);
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 8px;
}

.lead,
.section-lead {
  color: rgba(23, 63, 55, 0.76);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.62;
  max-width: 660px;
}

.download-label {
  color: var(--primary-deep);
  font-weight: 800;
  margin: 26px 0 0;
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.store-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  flex-direction: column;
  font-weight: 850;
  justify-content: center;
  min-height: 54px;
  min-width: 168px;
  padding: 10px 16px;
}

.store-button span {
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.1;
}

.store-button strong {
  font-size: 1.04rem;
  line-height: 1.25;
}

.store-button-primary {
  background: var(--primary);
  color: var(--white);
}

.store-button-primary:hover,
.store-button-primary:focus-visible {
  background: var(--primary-deep);
  outline: none;
}

.store-button-muted {
  background: var(--surface);
  border-color: var(--border);
  color: var(--muted);
}

.info-strip {
  background: var(--primary);
  padding: 0;
}

.info-strip p {
  color: var(--white);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.55;
  margin: 0 auto;
  max-width: var(--width-max);
  padding: 24px clamp(22px, 4vw, 40px);
  text-align: center;
}

.showcase {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 7vw, 84px);
  justify-content: center;
  padding: clamp(72px, 10vw, 128px) clamp(22px, 4vw, 40px);
}

.showcase:nth-of-type(odd) {
  background: var(--surface-muted);
}

.showcase-copy,
.showcase-media {
  flex: 1;
  min-width: 300px;
  max-width: 560px;
}

.showcase-media {
  display: flex;
  justify-content: center;
}

.showcase-media img {
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-height: 700px;
  object-fit: cover;
  object-position: top center;
  width: min(430px, 100%);
}

.media-stack {
  align-items: flex-end;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
}

.media-stack img {
  width: 100%;
}

.media-stack img:first-child {
  margin-bottom: 42px;
}

.bullet-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.bullet-list li {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  padding-left: 22px;
  position: relative;
}

.bullet-list li::before {
  background: var(--primary);
  border-radius: 50%;
  content: "";
  height: 9px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 9px;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.legend span {
  align-items: center;
  color: var(--primary-deep);
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
}

.legend b,
.benefit-icon {
  border-radius: 50%;
  display: inline-block;
}

.legend b {
  height: 12px;
  width: 12px;
}

.low {
  background: var(--green);
}

.moderate {
  background: var(--yellow);
}

.high {
  background: var(--red);
}

.benefits {
  margin: 0 auto;
  max-width: var(--width-max);
  padding: clamp(72px, 10vw, 128px) clamp(22px, 4vw, 40px);
}

.benefits-heading {
  max-width: 720px;
}

.benefit-grid {
  display: grid;
  gap: 40px 64px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 36px;
}

.benefit-grid article {
  min-width: 0;
}

.benefit-icon {
  height: 44px;
  margin-bottom: 18px;
  width: 44px;
}

.wifi-icon {
  background: rgba(36, 119, 212, 0.16);
  box-shadow: inset 0 0 0 12px rgba(36, 119, 212, 0.22);
}

.bluetooth-icon {
  background: rgba(46, 157, 100, 0.16);
  box-shadow: inset 0 0 0 12px rgba(46, 157, 100, 0.22);
}

.cellular-icon {
  background: rgba(230, 132, 42, 0.18);
  box-shadow: inset 0 0 0 12px rgba(230, 132, 42, 0.24);
}

.privacy-icon {
  background: rgba(19, 111, 99, 0.16);
  box-shadow: inset 0 0 0 12px rgba(19, 111, 99, 0.22);
}

.benefit-grid p,
.workflow-cards p,
.privacy-band p,
.policy p {
  color: var(--muted);
  line-height: 1.62;
}

.workflow {
  background: var(--surface-muted);
  padding: clamp(72px, 10vw, 128px) clamp(22px, 4vw, 40px);
  text-align: center;
}

.workflow h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.workflow-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px auto 0;
  max-width: var(--width-max);
}

.workflow-cards article {
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 230px;
  padding: 24px;
  text-align: left;
}

.workflow-cards span {
  color: var(--primary);
  display: block;
  font-weight: 900;
  margin-bottom: 16px;
}

.privacy-band {
  align-items: center;
  background: var(--dark);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 6vw, 72px);
  justify-content: center;
  padding: clamp(64px, 9vw, 116px) clamp(22px, 4vw, 40px);
}

.privacy-band > div {
  flex: 1;
  max-width: 760px;
  min-width: 280px;
}

.privacy-band h2 {
  color: var(--white);
}

.privacy-band p {
  color: rgba(255, 255, 255, 0.72);
}

.privacy-band .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.privacy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.privacy-links a {
  border-bottom: 2px solid rgba(255, 255, 255, 0.48);
  color: var(--white);
  font-weight: 850;
  padding-bottom: 4px;
}

.privacy-links a:hover,
.privacy-links a:focus-visible {
  border-color: var(--orange);
  outline: none;
}

.contact-section {
  align-items: center;
  background: var(--surface);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 7vw, 88px);
  justify-content: center;
  padding: clamp(68px, 9vw, 116px) clamp(22px, 4vw, 40px);
}

.contact-copy {
  flex: 1;
  max-width: 760px;
  min-width: 280px;
}

.contact-copy p:last-child {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 600;
  line-height: 1.62;
  margin-bottom: 0;
  max-width: 680px;
}

.contact-button {
  align-items: flex-start;
  background: var(--primary-deep);
  border: 2px solid rgba(230, 132, 42, 0.52);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  justify-content: center;
  min-height: 96px;
  min-width: min(100%, 340px);
  padding: 20px 24px;
}

.contact-button span {
  font-size: 1.12rem;
  font-weight: 900;
}

.contact-button small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-button:hover,
.contact-button:focus-visible {
  background: var(--primary);
  border-color: var(--orange);
  outline: none;
}

.footer-cta {
  align-items: center;
  background: linear-gradient(135deg, #08bd80 0%, #07936d 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  justify-content: center;
  padding: clamp(82px, 10vw, 132px) 22px;
  text-align: center;
}

.footer-cta h2 {
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 4.45rem);
  line-height: 1.08;
  margin-bottom: 28px;
  max-width: 1120px;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
  max-width: 1040px;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 56px;
}

.footer-button {
  align-items: center;
  border-radius: 20px;
  display: inline-flex;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  justify-content: center;
  min-height: 74px;
  min-width: min(100%, 340px);
  padding: 20px 34px;
}

.footer-button-light {
  background: var(--white);
  color: var(--primary);
}

.footer-button-outline {
  background: rgba(5, 63, 54, 0.28);
  border: 2px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.footer-button-outline:hover,
.footer-button-outline:focus-visible {
  background: rgba(5, 63, 54, 0.42);
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}

.site-footer {
  background: #101827;
  color: var(--white);
  display: grid;
  gap: clamp(36px, 7vw, 96px);
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.65fr));
  padding: clamp(56px, 8vw, 90px) clamp(22px, 6vw, 88px);
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  align-items: center;
  display: inline-flex;
  gap: 16px;
  margin-bottom: 28px;
}

.footer-logo img {
  border-radius: 12px;
}

.footer-logo span {
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 900;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(1.02rem, 2vw, 1.32rem);
  font-weight: 700;
  line-height: 1.55;
  margin: 0;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.36);
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 24px;
}

.footer-column {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.footer-column h3 {
  color: var(--white);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 800;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
  outline: none;
}

.subpage {
  background: var(--surface);
}

.policy {
  margin: 0 auto;
  max-width: 860px;
  padding: 124px 22px 72px;
}

.policy h1 {
  color: var(--text);
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: 0.98;
}

.policy h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.policy section {
  border-top: 1px solid var(--border);
  padding: 28px 0 6px;
}

.updated {
  color: var(--primary);
  font-weight: 800;
}

.not-found {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 680px;
  min-height: 100vh;
  padding: 32px 22px;
}

.not-found img {
  border-radius: 8px;
  margin-bottom: 24px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
}

.button-primary {
  background: var(--primary);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-deep);
  outline: none;
}

html[dir="rtl"] .hero-copy {
  padding-left: 24px;
  padding-right: 0;
}

html[dir="rtl"] .bullet-list li {
  padding-left: 0;
  padding-right: 22px;
}

html[dir="rtl"] .bullet-list li::before {
  left: auto;
  right: 0;
}

@media (max-width: 1024px) {
  .hero {
    align-items: flex-start;
    padding: 86px 0 0;
  }

  .hero-container {
    flex-direction: column-reverse;
    gap: 0;
    padding: 0 0 56px;
  }

  .hero-copy {
    padding: 34px 22px 0;
    width: 100%;
  }

  .hero-media {
    width: 100%;
  }

  .hero-media img {
    border-radius: 0;
    box-shadow: none;
    max-height: 620px;
    width: 100%;
  }

  .showcase,
  .showcase-left,
  .showcase-right {
    flex-direction: column;
  }

  .showcase-left .showcase-media {
    order: 2;
  }

  .showcase-left .showcase-copy {
    order: 1;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    position: absolute;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .language-picker,
  .language-picker select {
    width: 100%;
  }

  .hero {
    padding-top: 132px;
  }

  .download-row,
  .footer-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .media-stack {
    grid-template-columns: 1fr;
  }

  .media-stack img:first-child {
    margin-bottom: 0;
  }
}
