:root {
  --ink: #101721;
  --ink-soft: #2d3743;
  --muted: #66717f;
  --line: #dfe6ec;
  --line-soft: #ebf0f4;
  --surface: #ffffff;
  --surface-muted: #f5f7f9;
  --cyan: #12b8c8;
  --cyan-dark: #087e89;
  --pink: #e94cad;
  --green: #2fc95b;
  --orange: #f49113;
  --blue: #527bea;
  --purple: #7c52dc;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 10px 30px rgba(24, 37, 50, 0.07);
  --shadow-lg: 0 32px 80px rgba(24, 37, 50, 0.14);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(223, 230, 236, 0.8);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(150%);
}

.header-inner {
  display: grid;
  width: min(1160px, calc(100% - 48px));
  min-height: 68px;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand {
  justify-self: start;
  text-decoration: none;
  font-size: 16px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand img,
.footer-brand img {
  border-radius: 9px;
  box-shadow: 0 5px 14px rgba(24, 37, 50, 0.14);
}

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

.nav-links a,
.header-action,
.site-footer nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

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

.header-action {
  justify-self: end;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
}

.header-action:hover {
  background: var(--surface-muted);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 14% 13%, rgba(18, 184, 200, 0.11), transparent 26%),
    radial-gradient(circle at 88% 5%, rgba(233, 76, 173, 0.09), transparent 24%),
    linear-gradient(180deg, #fbfcfd 0%, #f5f8fa 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(24, 37, 50, 0.17);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7.6vw, 88px);
  line-height: 0.97;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-lede {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 34px 0 26px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 25px rgba(16, 23, 33, 0.16);
}

.button-primary:hover {
  background: #202a36;
  box-shadow: 0 14px 30px rgba(16, 23, 33, 0.2);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.button-secondary:hover {
  background: #fff;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.platform-row span {
  position: relative;
}

.platform-row span:not(:first-child)::before {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #a6b0ba;
  content: "";
}

.hero-media-wrap {
  position: relative;
  z-index: 1;
  margin-top: 60px;
}

.hero-media {
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid rgba(207, 218, 227, 0.9);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.hero-media img {
  width: 100%;
  height: auto;
}

.section {
  padding: 112px 0;
}

.section-muted {
  border-block: 1px solid var(--line-soft);
  background: var(--surface-muted);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 96px;
  align-items: start;
}

.split-heading h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.intro-copy p:first-child {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.55;
}

.text-small {
  font-size: 15px;
}

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

.section-heading > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 18px;
}

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

.feature-card {
  position: relative;
  min-height: 268px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 2px 0 rgba(24, 37, 50, 0.02);
}

.feature-card::after {
  position: absolute;
  right: -38px;
  bottom: -58px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--feature-color);
  content: "";
  opacity: 0.08;
}

.feature-index {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 11px;
  background: color-mix(in srgb, var(--feature-color) 12%, white);
  color: color-mix(in srgb, var(--feature-color) 78%, black);
  font-size: 12px;
  font-weight: 850;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}

.feature-cyan { --feature-color: var(--cyan); }
.feature-pink { --feature-color: var(--pink); }
.feature-green { --feature-color: var(--green); }
.feature-orange { --feature-color: var(--orange); }
.feature-blue { --feature-color: var(--blue); }
.feature-purple { --feature-color: var(--purple); }

.preview-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 5%, rgba(124, 82, 220, 0.22), transparent 26%),
    radial-gradient(circle at 5% 65%, rgba(18, 184, 200, 0.14), transparent 24%),
    #101721;
}

.section-heading-light h2 {
  color: #fff;
}

.section-heading-light .eyebrow {
  color: #72dce5;
}

.section-heading-light > p:last-child {
  color: #aeb8c3;
}

.preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.preview-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: #1a2330;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.preview-card img {
  width: 100%;
  background: #eef2f5;
}

.preview-mac {
  grid-column: 1 / -1;
}

.preview-phone img {
  max-height: 580px;
  object-fit: contain;
}

.preview-card figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px 22px;
  color: #fff;
}

.preview-card figcaption strong {
  font-size: 16px;
}

.preview-card figcaption span {
  color: #9da9b6;
  font-size: 14px;
  text-align: right;
}

.use-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1fr);
  gap: 100px;
  align-items: start;
}

.use-heading {
  position: sticky;
  top: 108px;
}

.use-heading p:last-child {
  max-width: 480px;
}

.use-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.use-list li {
  display: grid;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: baseline;
}

.use-list span {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.use-list strong {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.45;
}

.privacy-section {
  padding-top: 0;
}

.privacy-card {
  display: grid;
  padding: 56px;
  border: 1px solid #cae9ec;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 8%, rgba(18, 184, 200, 0.13), transparent 36%),
    #effafa;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 88px;
  align-items: center;
}

.privacy-card h2 {
  font-size: clamp(38px, 4vw, 54px);
}

.privacy-card > div > p:not(.eyebrow) {
  max-width: 620px;
  color: #43535d;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 780;
}

.text-link:hover {
  color: var(--cyan-dark);
}

.privacy-points {
  display: grid;
  gap: 0;
  margin-bottom: 0;
  border-top: 1px solid rgba(8, 126, 137, 0.2);
}

.privacy-points div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(8, 126, 137, 0.2);
}

.privacy-points dt {
  margin-bottom: 4px;
  font-weight: 780;
}

.privacy-points dd {
  margin: 0;
  color: #60717a;
  font-size: 14px;
  line-height: 1.5;
}

.support-section {
  padding-top: 0;
}

.support-card {
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding: 56px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(233, 76, 173, 0.2), transparent 30%),
    var(--ink);
}

.support-card h2 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(38px, 4vw, 54px);
}

.support-card .eyebrow {
  color: #72dce5;
}

.support-card p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: #aeb8c3;
}

.button-light {
  flex: 0 0 auto;
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  background: #f1f4f6;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #fbfcfd;
}

.footer-inner {
  display: grid;
  min-height: 150px;
  grid-template-columns: 1fr auto;
  gap: 20px 40px;
  align-items: center;
}

.footer-brand p {
  display: grid;
  margin: 0;
  line-height: 1.35;
}

.footer-brand strong {
  font-size: 14px;
}

.footer-brand span,
.copyright {
  color: var(--muted);
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  gap: 28px;
}

.copyright {
  grid-column: 1 / -1;
  margin: -12px 0 24px;
}

/* Legal pages */

.legal-hero {
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 14% 0%, rgba(18, 184, 200, 0.1), transparent 30%),
    #f8fafb;
}

.legal-hero .eyebrow {
  margin-bottom: 18px;
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(50px, 6vw, 76px);
}

.legal-hero p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  font-size: 19px;
}

.legal-main {
  padding: 80px 0 120px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 720px);
  justify-content: space-between;
  gap: 96px;
  align-items: start;
}

.legal-meta {
  position: sticky;
  top: 104px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fbfcfd;
}

.legal-meta dl {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}

.legal-meta dt {
  margin-bottom: 4px;
  color: #8a949f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-meta dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.legal-meta a {
  display: inline-flex;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.legal-document section {
  padding: 0 0 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line-soft);
}

.legal-document section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-document h2 {
  margin-bottom: 14px;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.legal-document p {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.75;
}

.legal-document p:last-child {
  margin-bottom: 0;
}

.legal-document a {
  color: var(--cyan-dark);
  font-weight: 700;
}

.legal-switch {
  margin-top: 56px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  color: var(--muted);
  font-size: 14px;
}

.legal-switch a {
  margin-left: 5px;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 72px;
  }

  .split-heading,
  .use-layout,
  .privacy-card,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .use-heading,
  .legal-meta {
    position: static;
  }

  .legal-meta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
  }

  .legal-meta dl {
    margin-bottom: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container,
  .header-inner {
    width: min(100% - 32px, 1160px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 64px;
  }

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

  .header-action {
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero {
    padding: 58px 0 72px;
  }

  .hero-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 24px;
    border-radius: 16px;
  }

  h1 {
    font-size: clamp(45px, 14vw, 64px);
  }

  h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions {
    width: 100%;
  }

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

  .platform-row {
    max-width: 300px;
  }

  .platform-row span:nth-child(3)::before {
    display: none;
  }

  .hero-media-wrap {
    width: calc(100% - 24px);
    margin-top: 42px;
  }

  .hero-media {
    border-radius: 18px;
  }

  .section {
    padding: 78px 0;
  }

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

  .intro-copy p:first-child {
    font-size: 18px;
  }

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

  .feature-card {
    min-height: 230px;
  }

  .preview-mac {
    grid-column: auto;
  }

  .preview-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .preview-card figcaption span {
    text-align: left;
  }

  .use-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .privacy-section,
  .support-section {
    padding-top: 0;
  }

  .privacy-card,
  .support-card {
    width: calc(100% - 24px);
    padding: 34px 26px;
    border-radius: 22px;
  }

  .support-card {
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
  }

  .button-light {
    width: 100%;
  }

  .footer-inner {
    padding: 38px 0 28px;
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
    gap: 22px;
  }

  .copyright {
    margin: 0;
  }

  .legal-hero {
    padding: 58px 0 50px;
  }

  .legal-main {
    padding: 58px 0 80px;
  }

  .legal-meta {
    display: block;
  }

  .legal-meta dl {
    margin-bottom: 20px;
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
