:root {
  color-scheme: light;
  --navy: #062b55;
  --navy-dark: #031a3b;
  --teal: #0d8798;
  --teal-bright: #21c4cc;
  --cyan: #5be3e9;
  --slate: #334155;
  --muted: #475569;
  --line: rgba(6, 43, 85, 0.14);
  --bg: #f8fbfc;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 52%, #ffffff 100%);
  color: var(--navy);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button {
  cursor: pointer;
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.hero-actions,
.contact-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

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

nav {
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

nav a:hover,
.footer-links a:hover {
  color: var(--teal);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  min-height: calc(100svh - 75px);
  padding: clamp(42px, 6vw, 82px) clamp(18px, 5vw, 72px);
}

.hero-copy {
  max-width: 840px;
}

.hero-lockup {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  width: min(560px, 100%);
  margin-bottom: 24px;
}

.hero-lockup img {
  width: clamp(82px, 9vw, 122px);
  height: auto;
  flex: 0 0 auto;
}

.hero-lockup strong {
  display: block;
  padding-bottom: 8px;
  border-bottom: 4px solid var(--teal);
  color: var(--teal);
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.hero-lockup strong span {
  color: var(--navy);
}

.hero-lockup small {
  display: block;
  margin-top: 8px;
  color: var(--slate);
  font-size: clamp(0.94rem, 1.35vw, 1.25rem);
  font-weight: 800;
  line-height: 1.3;
}

.product-tagline {
  color: var(--slate);
  font-size: clamp(0.92rem, 1.4vw, 1.1rem);
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 4.45vw, 4.2rem);
  line-height: 0.96;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.8vw, 5.2rem);
  line-height: 0.96;
  font-weight: 900;
}

h3 {
  margin-bottom: 6px;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  line-height: 1;
  font-weight: 900;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-subtitle {
  max-width: 660px;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 850;
}

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

.button.secondary {
  background: #ffffff;
}

.hero-screens {
  position: relative;
  display: grid;
  min-height: clamp(360px, 38vw, 560px);
  align-items: center;
}

.hero-screen {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(6, 43, 85, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(6, 43, 85, 0.14);
}

.hero-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-screen-monitor {
  width: 78%;
  justify-self: end;
}

.hero-screen-phone {
  position: absolute;
  left: 0;
  z-index: 2;
  width: min(31%, 190px);
}

.hero-screen-small {
  right: 8%;
  bottom: 0;
  left: auto;
  width: min(24%, 150px);
}

.eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  gap: 22px;
  align-content: start;
  min-height: 430px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(6, 43, 85, 0.06);
}

.product-card.featured {
  background: linear-gradient(180deg, rgba(33, 196, 204, 0.12), #ffffff 58%);
  border-color: rgba(13, 135, 152, 0.35);
}

.product-identity {
  display: flex;
  align-items: center;
  gap: 18px;
}

.product-identity img {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
}

.product-tagline {
  margin: 0;
  color: var(--slate);
  font-size: 0.86rem;
}

.product-card p {
  max-width: 680px;
  font-size: 1.04rem;
}

.product-link {
  justify-self: start;
  margin-top: auto;
  border-color: rgba(13, 135, 152, 0.3);
  color: var(--teal);
  background: #ffffff;
}

.product-screens {
  display: grid;
  gap: clamp(38px, 7vw, 86px);
  padding-top: 0;
}

.screenshot-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.screenshot-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.product-identity.compact img {
  width: 64px;
  height: 64px;
}

.product-identity.compact h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.phone-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.phone-strip figure,
.wide-screens figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(6, 43, 85, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(6, 43, 85, 0.08);
}

.phone-strip img,
.wide-screens img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-strip figure:nth-child(2) {
  transform: translateY(20px);
}

.phone-strip figure:nth-child(3) {
  transform: translateY(-16px);
}

.phone-strip figure:nth-child(4) {
  transform: translateY(14px);
}

.wide-screens {
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 0.72fr;
  gap: 12px;
  align-items: stretch;
}

.wide-screens figure {
  min-height: 260px;
}

.wide-screens figure:first-child {
  grid-row: span 2;
}

.company-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
  border-block: 1px solid var(--line);
  background: #eef7f8;
}

.company-copy p {
  max-width: 720px;
  font-size: 1.08rem;
}

.proof-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.proof-list div {
  padding: 22px;
  border: 1px solid rgba(6, 43, 85, 0.14);
  border-radius: 8px;
  background: #ffffff;
}

.proof-list dt {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 900;
}

.proof-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: clamp(56px, 8vw, 92px) clamp(18px, 5vw, 72px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(13, 135, 152, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(13, 135, 152, 0.12), rgba(91, 227, 233, 0.1));
}

.contact-section h2 {
  font-size: clamp(2rem, 4.4vw, 4.4rem);
}

.contact-section p {
  max-width: 720px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

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

.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
}

.policy-hero {
  max-width: 980px;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px) clamp(36px, 5vw, 64px);
}

.policy-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.policy-hero p {
  max-width: 760px;
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
}

.policy-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(64px, 9vw, 112px);
}

.policy-layout article {
  padding: clamp(20px, 2.8vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(6, 43, 85, 0.05);
}

.policy-layout article.full-width {
  grid-column: 1 / -1;
}

.policy-layout h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.45rem);
  line-height: 1.04;
}

.policy-layout a {
  color: var(--teal);
  font-weight: 850;
}

.not-found {
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding: clamp(32px, 6vw, 72px);
}

.not-found img {
  width: 90px;
  height: 90px;
  margin-bottom: 22px;
}

.not-found h1 {
  max-width: 760px;
}

.not-found p {
  max-width: 640px;
}

@media (max-width: 900px) {
  .hero,
  .company-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-screens {
    min-height: 460px;
  }

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

  .screenshot-block {
    grid-template-columns: 1fr;
  }

  .wide-screens {
    grid-template-columns: 1fr 1fr;
  }

  .wide-screens figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .contact-actions {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
  }

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

  nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
  }

  nav a {
    padding: 10px 8px;
    background: #ffffff;
    font-size: 0.82rem;
    text-align: center;
  }

  .hero,
  .section {
    padding: 38px 16px;
  }

  .hero-lockup {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .hero-lockup img {
    width: 44px;
  }

  .hero-lockup strong {
    padding-bottom: 6px;
    border-bottom-width: 3px;
    font-size: clamp(1.7rem, 8vw, 2.15rem);
    line-height: 1;
  }

  .hero-lockup small {
    margin-top: 6px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 8.8vw, 2.55rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-screens {
    min-height: 330px;
  }

  .hero-screen-monitor {
    width: 86%;
  }

  .hero-screen-phone {
    width: 33%;
  }

  .hero-screen-small {
    right: 0;
    width: 26%;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .product-link {
    width: 100%;
  }

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

  .phone-strip figure:nth-child(2),
  .phone-strip figure:nth-child(3),
  .phone-strip figure:nth-child(4) {
    transform: none;
  }

  .wide-screens {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
    padding: 22px;
  }

  .product-identity {
    align-items: flex-start;
  }

  .product-identity img {
    width: 64px;
    height: 64px;
  }

  .contact-section {
    margin: 44px 16px;
    padding: 22px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 16px;
  }

  .policy-hero {
    padding: 58px 16px 28px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    padding: 0 16px 56px;
  }
}

@media (max-width: 480px) {
  .hero-lockup {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }
}
