:root {
  --brand: #127baa;
  --brand-bright: #14a3df;
  --brand-deep: #0b628c;
  --navy: #08213d;
  --navy-soft: #153a55;
  --ink: #172a3a;
  --muted: #5d7180;
  --soft: #eff7fa;
  --soft-blue: #e9f7fc;
  --soft-violet: #f2efff;
  --border: rgba(13, 71, 99, 0.12);
  --white: #ffffff;
  --shadow-sm: 0 12px 35px rgba(13, 64, 88, 0.09);
  --shadow-md: 0 24px 70px rgba(16, 72, 98, 0.14);
  --shadow-lg: 0 35px 90px rgba(7, 50, 76, 0.2);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fbfdfd;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a,
summary {
  cursor: pointer;
}

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

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

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 750;
  letter-spacing: -0.045em;
}

p {
  color: var(--muted);
}

::selection {
  color: var(--white);
  background: var(--brand);
}

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

.section {
  position: relative;
  padding: 120px 0;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(18, 123, 170, 0.35);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(13, 66, 91, 0.06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand img {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  box-shadow: 0 7px 20px rgba(18, 123, 170, 0.18);
}

.brand > span > span {
  color: var(--brand);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #385365;
  font-size: 0.93rem;
  font-weight: 620;
}

.nav__menu > a:not(.button) {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.nav__menu > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.nav__menu > a:not(.button):hover {
  color: var(--brand);
}

.nav__menu > a:not(.button):hover::after,
.nav__menu > a:not(.button)[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__menu > a:not(.button)[aria-current="page"] {
  color: var(--brand);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 13px;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--navy);
  border-radius: 99px;
  transition:
    transform 220ms ease,
    opacity 180ms ease;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Shared UI */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  color: var(--navy);
  font-weight: 720;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 14px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

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

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 12px;
}

.button--large {
  min-height: 58px;
  padding-inline: 24px;
  border-radius: 16px;
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand) 0%, #159bd1 100%);
  box-shadow: 0 13px 30px rgba(18, 123, 170, 0.24);
}

.button--primary:hover {
  box-shadow: 0 18px 38px rgba(18, 123, 170, 0.34);
}

.button--secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(12, 82, 111, 0.15);
  box-shadow: 0 8px 24px rgba(11, 59, 81, 0.06);
}

.button--secondary:hover {
  color: var(--brand);
  border-color: rgba(18, 123, 170, 0.3);
  box-shadow: var(--shadow-sm);
}

.button--light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(1, 21, 38, 0.22);
}

.button__icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
}

.button__icon svg {
  width: 25px;
  height: 25px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow__mark {
  display: grid;
  width: 27px;
  height: 27px;
  color: var(--brand);
  background: var(--white);
  border: 1px solid rgba(18, 123, 170, 0.16);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(18, 123, 170, 0.1);
  place-items: center;
}

.eyebrow__mark svg {
  width: 15px;
  height: 15px;
}

.eyebrow--plain {
  padding: 9px 14px;
  color: var(--brand-deep);
  background: var(--soft-blue);
  border: 1px solid rgba(18, 123, 170, 0.1);
  border-radius: 99px;
}

.eyebrow--dark {
  color: #8ddbf4;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 58px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.faq__intro h2,
.control__copy h2,
.download-card h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  line-height: 1.06;
}

.section-heading p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.section-heading--center p {
  margin-inline: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand);
  font-weight: 750;
}

.text-link span {
  transition: transform 200ms var(--ease);
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 850px;
  padding: 155px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 27%, rgba(36, 193, 218, 0.1), transparent 28%),
    radial-gradient(circle at 13% 79%, rgba(127, 118, 247, 0.08), transparent 23%),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 84%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(rgba(18, 123, 170, 0.13) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 20%, transparent 38%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, transparent 38%);
  opacity: 0.65;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.98fr);
  gap: 48px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 18px;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 5.6vw, 5.55rem);
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--brand) 0%, #12a5d8 58%, #1cb6ba 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: #536c7c;
  font-size: clamp(1.05rem, 1.8vw, 1.19rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero__proof > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero__proof strong {
  color: var(--navy);
  font-size: 1.26rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero__proof strong > span:not(.sr-only) {
  margin-left: 2px;
  color: #f6ad26;
  font-size: 0.93em;
}

.hero__proof div > span {
  color: #71828e;
  font-size: 0.76rem;
  font-weight: 620;
}

.hero__divider {
  width: 1px;
  height: 35px;
  background: rgba(15, 72, 98, 0.15);
}

.hero__visual {
  position: relative;
  min-height: 620px;
}

.hero__halo {
  position: absolute;
  top: 8px;
  right: -16px;
  width: 540px;
  height: 540px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 0 48%, transparent 49%),
    conic-gradient(from 45deg, rgba(18, 123, 170, 0.12), rgba(56, 210, 205, 0.2), rgba(139, 119, 249, 0.12), rgba(18, 123, 170, 0.12));
  border-radius: 50%;
  filter: drop-shadow(0 20px 45px rgba(18, 123, 170, 0.1));
}

.hero__halo::after {
  position: absolute;
  inset: 36px;
  content: "";
  border: 1px dashed rgba(18, 123, 170, 0.2);
  border-radius: inherit;
  animation: slow-spin 34s linear infinite;
}

.hero__phone {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 55px;
  width: 370px;
  height: 585px;
  overflow: hidden;
  background: #f8fcfe;
  border: 7px solid rgba(255, 255, 255, 0.82);
  border-radius: 44px;
  box-shadow:
    0 42px 85px rgba(8, 51, 76, 0.24),
    0 0 0 1px rgba(9, 65, 92, 0.1);
  transform: rotate(1.5deg);
  animation: phone-float 7s ease-in-out infinite;
}

.hero__phone::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.25), transparent 35%);
  border-radius: inherit;
}

.hero__phone img {
  position: absolute;
  top: -191px;
  left: -8%;
  width: 116%;
  max-width: none;
  height: auto;
}

.hero__flight-path {
  position: absolute;
  z-index: 1;
  top: -8px;
  left: -9px;
  width: 205px;
  color: rgba(18, 123, 170, 0.32);
  transform: rotate(-8deg);
}

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 78, 106, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.float-card--email {
  top: 120px;
  left: -22px;
  animation: card-float 6s ease-in-out infinite 0.6s;
}

.float-card--apps {
  right: -18px;
  bottom: 62px;
  animation: card-float 6.5s ease-in-out infinite 1.5s;
}

.float-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 13px;
  place-items: center;
}

.float-card__icon svg {
  width: 21px;
  height: 21px;
}

.float-card__icon--blue {
  color: var(--brand);
  background: #e8f6fc;
}

.float-card__icon--teal {
  color: #08aeb0;
  background: #e7fbf9;
}

.float-card > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.float-card strong {
  color: var(--navy);
  font-size: 0.84rem;
  line-height: 1.3;
}

.float-card small {
  color: #778894;
  font-size: 0.7rem;
}

.float-card__check {
  display: grid;
  width: 24px;
  height: 24px;
  margin-left: auto;
  color: #0e9a69;
  font-size: 0.76rem;
  font-weight: 800;
  background: #e1f8ed;
  border-radius: 50%;
  place-items: center;
}

.hero__orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(1px);
}

.hero__orb--one {
  top: 112px;
  right: 7%;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #7fe6eb, #1785b6);
  box-shadow: 0 0 0 11px rgba(51, 185, 205, 0.08);
}

.hero__orb--two {
  right: 46%;
  bottom: 130px;
  width: 15px;
  height: 15px;
  background: #a68cf5;
  box-shadow: 0 0 0 8px rgba(166, 140, 245, 0.08);
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(13, 71, 99, 0.08);
  border-bottom: 1px solid rgba(13, 71, 99, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 92px;
}

.trust-strip__inner > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #446174;
  font-size: 0.85rem;
  font-weight: 680;
}

.trust-strip__inner > div + div {
  border-left: 1px solid rgba(13, 71, 99, 0.09);
}

.trust-strip svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
}

/* Feature bento */
.features {
  background: #ffffff;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  position: relative;
  min-height: 355px;
  padding: 34px;
  overflow: hidden;
  background: #f8fbfc;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition:
    transform 300ms var(--ease),
    box-shadow 300ms var(--ease),
    border-color 300ms ease;
}

.feature-card::before {
  position: absolute;
  pointer-events: none;
  content: "";
  border-radius: 50%;
}

.feature-card:hover {
  z-index: 2;
  border-color: rgba(18, 123, 170, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.feature-card h3 {
  margin-bottom: 13px;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1.12;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.7;
}

.feature-card__tag {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  margin-bottom: 28px;
  border-radius: 15px;
  place-items: center;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card__icon--blue {
  color: var(--brand);
  background: #e5f5fb;
}

.feature-card__icon--teal {
  color: #06a5a6;
  background: #e4f9f7;
}

.feature-card__icon--violet {
  color: #7364e9;
  background: #eeebff;
}

.feature-card__icon--purple {
  color: #a24ee6;
  background: #f5eaff;
}

.feature-card__copy {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  max-width: 48%;
}

.feature-card__copy .feature-card__icon {
  margin-bottom: 0;
}

.feature-card--email {
  grid-column: span 7;
  background: linear-gradient(135deg, #f4fbfe 0%, #f8fcfd 52%, #eef8ff 100%);
}

.feature-card--email::before {
  right: -90px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  background: rgba(116, 205, 238, 0.11);
}

.feature-card--apps {
  display: flex;
  grid-column: span 5;
  flex-direction: column;
  background: linear-gradient(145deg, #f7fdfc, #edfaf8);
}

.feature-card--apps::before {
  top: -120px;
  right: -90px;
  width: 290px;
  height: 290px;
  background: rgba(45, 194, 185, 0.09);
}

.feature-card--screen {
  display: flex;
  grid-column: span 5;
  flex-direction: column;
  background: linear-gradient(145deg, #fbfaff, #f2f0ff);
}

.feature-card--calls {
  grid-column: span 7;
  background: linear-gradient(135deg, #f9f8ff, #f7fbff);
}

.email-visual {
  position: absolute;
  right: 30px;
  bottom: -16px;
  width: 46%;
  padding: 22px 18px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 101, 139, 0.11);
  border-radius: 25px 25px 0 0;
  box-shadow: 0 24px 55px rgba(26, 104, 139, 0.13);
  transform: rotate(-1deg);
}

.email-visual__bar,
.email-visual__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.email-visual__bar {
  margin-bottom: 15px;
  padding: 0 3px;
  color: #718592;
  font-size: 0.67rem;
}

.email-visual__bar strong {
  padding: 5px 8px;
  color: var(--brand);
  background: #e9f7fc;
  border-radius: 99px;
  font-size: 0.62rem;
}

.email-row {
  display: grid;
  grid-template-columns: 20px 35px 1fr auto;
  gap: 9px;
  align-items: center;
  margin-bottom: 10px;
  padding: 12px 11px;
  background: #ffffff;
  border: 1px solid rgba(11, 81, 112, 0.08);
  border-radius: 13px;
  box-shadow: 0 6px 17px rgba(19, 76, 104, 0.06);
}

.email-row__check {
  display: grid;
  width: 19px;
  height: 19px;
  color: #fff;
  font-size: 0.64rem;
  background: var(--brand);
  border-radius: 6px;
  place-items: center;
}

.email-row__avatar {
  display: grid;
  width: 34px;
  height: 34px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 10px;
  place-items: center;
}

.email-row__avatar--blue {
  background: linear-gradient(135deg, #21a5d8, #157cae);
}

.email-row__avatar--violet {
  background: linear-gradient(135deg, #a368ee, #694cd3);
}

.email-row > span:nth-child(3) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.email-row strong {
  overflow: hidden;
  color: var(--navy);
  font-size: 0.71rem;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.email-row small {
  overflow: hidden;
  color: #80909b;
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.email-row__count {
  color: var(--brand);
  font-size: 0.66rem;
  font-weight: 800;
}

.email-visual__action {
  margin-top: 13px;
  padding: 13px 14px;
  color: #768b98;
  background: var(--navy);
  border-radius: 13px;
  font-size: 0.63rem;
}

.email-visual__action strong {
  color: #fff;
  font-size: 0.68rem;
}

.email-visual__action strong span {
  color: #7bdbf5;
}

.apps-visual {
  position: static;
  display: grid;
  grid-template-columns: repeat(3, 58px);
  gap: 12px;
  align-self: flex-end;
  padding: 20px;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(12, 119, 122, 0.09);
  border-radius: 24px;
  box-shadow: 0 17px 40px rgba(7, 104, 105, 0.1);
}

.app-dot {
  display: grid;
  width: 58px;
  height: 58px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  border: 6px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(27, 88, 104, 0.1);
  place-items: center;
}

.app-dot--blue { background: #1988b6; }
.app-dot--violet { background: #8070e8; }
.app-dot--green { background: #2dbb86; }
.app-dot--orange { background: #f6a83a; }
.app-dot--sky { background: #29b3d3; }
.app-dot--navy { background: #344a68; }

.screen-visual {
  position: static;
  display: flex;
  align-items: center;
  gap: 22px;
  align-self: flex-end;
  margin-top: 30px;
}

.screen-visual__ring {
  display: grid;
  width: 126px;
  height: 126px;
  padding: 14px;
  background: conic-gradient(#159ac7 0 34%, #7c66e7 34% 64%, #3cc2b3 64% 82%, #e6e8ef 82% 100%);
  border-radius: 50%;
  box-shadow: 0 15px 30px rgba(83, 74, 174, 0.15);
  place-items: center;
}

.screen-visual__ring::before {
  grid-area: 1 / 1;
  width: 88px;
  height: 88px;
  content: "";
  background: #fff;
  border-radius: 50%;
}

.screen-visual__ring span {
  z-index: 1;
  grid-area: 1 / 1;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
}

.screen-visual__legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screen-visual__legend span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #5c6f80;
  font-size: 0.66rem;
  font-weight: 650;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-dot--blue { background: #159ac7; }
.legend-dot--violet { background: #7c66e7; }
.legend-dot--mint { background: #3cc2b3; }

.calls-visual {
  position: absolute;
  right: 30px;
  bottom: -14px;
  width: 45%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(69, 57, 156, 0.09);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 18px 42px rgba(54, 45, 125, 0.11);
}

.calls-visual__score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 12px 14px;
  background: linear-gradient(100deg, #edf8fc, #f5f1ff);
  border-radius: 13px;
}

.calls-visual__score span {
  color: #687d8c;
  font-size: 0.65rem;
}

.calls-visual__score strong {
  color: var(--brand);
  font-size: 0.72rem;
}

.caller-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px 8px;
  border-bottom: 1px solid rgba(9, 71, 99, 0.08);
}

.caller-row i {
  width: 37px;
  height: 37px;
  background: #dff4fb;
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px rgba(18, 123, 170, 0.14);
}

.caller-row i.caller-row__violet {
  background: #f1e8ff;
  box-shadow: inset 0 0 0 10px rgba(139, 75, 225, 0.13);
}

.caller-row span {
  display: flex;
  flex-direction: column;
}

.caller-row strong {
  color: var(--navy);
  font-size: 0.7rem;
}

.caller-row small {
  color: #86939d;
  font-size: 0.58rem;
}

.caller-row b {
  color: #8e9aa3;
  font-size: 1.25rem;
  font-weight: 500;
}

/* How it works */
.how {
  overflow: hidden;
  background: linear-gradient(180deg, #f4fafc 0%, #eef8fb 100%);
  border-top: 1px solid rgba(13, 71, 99, 0.06);
  border-bottom: 1px solid rgba(13, 71, 99, 0.06);
}

.how__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.how__shape--left {
  bottom: -170px;
  left: -160px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(34, 169, 207, 0.07);
}

.how__shape--right {
  top: -95px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(133, 116, 239, 0.05);
  border: 1px solid rgba(133, 116, 239, 0.12);
}

.steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 110px 1fr 110px 1fr;
  align-items: center;
}

.step-card {
  position: relative;
  min-height: 300px;
  padding: 34px 30px 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 82, 111, 0.1);
  border-radius: 28px;
  box-shadow: 0 17px 45px rgba(11, 77, 105, 0.07);
}

.step-card__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(18, 123, 170, 0.15);
  font-size: 2rem;
  font-weight: 850;
  letter-spacing: -0.06em;
}

.step-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  color: var(--brand);
  background: linear-gradient(145deg, #eaf7fc, #ffffff);
  border: 1px solid rgba(18, 123, 170, 0.12);
  border-radius: 17px;
  box-shadow: 0 12px 25px rgba(18, 123, 170, 0.1);
  place-items: center;
}

.step-card__icon svg {
  width: 27px;
  height: 27px;
}

.step-card h3 {
  margin-bottom: 11px;
  font-size: 1.4rem;
}

.step-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.steps__connector {
  display: block;
  width: 100%;
  color: rgba(18, 123, 170, 0.38);
}

/* Interactive showcase */
.showcase {
  background: #fff;
}

.showcase__shell {
  padding: 12px;
  background: #f5fafc;
  border: 1px solid rgba(11, 81, 111, 0.1);
  border-radius: 38px;
  box-shadow: 0 30px 80px rgba(14, 73, 98, 0.11);
}

.showcase__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(11, 82, 111, 0.08);
  border-radius: 22px;
}

.showcase__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 10px 16px;
  color: #627786;
  font-size: 0.88rem;
  font-weight: 720;
  background: transparent;
  border: 0;
  border-radius: 16px;
  transition:
    color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease;
}

.showcase__tab svg {
  width: 20px;
  height: 20px;
}

.showcase__tab:hover {
  color: var(--brand);
  background: rgba(234, 247, 252, 0.75);
}

.showcase__tab.is-active {
  color: var(--brand);
  background: #fff;
  box-shadow: 0 9px 28px rgba(13, 75, 102, 0.11);
}

.showcase__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  min-height: 680px;
  overflow: hidden;
  border-radius: 28px;
}

.showcase__copy {
  align-self: center;
  max-width: 500px;
  padding: 65px 44px 65px 62px;
}

.showcase__kicker {
  display: inline-block;
  margin-bottom: 17px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.showcase__copy h3 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  line-height: 1.08;
}

.showcase__copy > p {
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.75;
}

.showcase__copy ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.showcase__copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #415d6e;
  font-size: 0.91rem;
  font-weight: 640;
}

.showcase__copy li span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: #098964;
  font-size: 0.68rem;
  background: #ddf6eb;
  border-radius: 50%;
  place-items: center;
}

.showcase__visual {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 24%, rgba(107, 211, 229, 0.26), transparent 26%),
    radial-gradient(circle at 20% 80%, rgba(138, 120, 244, 0.14), transparent 25%),
    linear-gradient(145deg, #e8f7fc, #f4f6ff);
  border-radius: 28px;
  place-items: center;
}

.showcase__visual::before {
  position: absolute;
  width: 480px;
  height: 480px;
  content: "";
  border: 1px dashed rgba(18, 123, 170, 0.2);
  border-radius: 50%;
}

.showcase__image-frame {
  position: relative;
  z-index: 2;
  width: min(350px, 73%);
  overflow: hidden;
  background: #fff;
  border: 7px solid rgba(255, 255, 255, 0.78);
  border-radius: 31px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.4deg);
}

.showcase__image-frame img {
  width: 100%;
  height: auto;
  transition:
    opacity 180ms ease,
    transform 400ms var(--ease);
}

.showcase__image-frame img.is-changing {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
}

.showcase__bubble {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
}

.showcase__bubble--one {
  top: 14%;
  left: 10%;
  width: 18px;
  height: 18px;
  background: #5bcadf;
  box-shadow: 0 0 0 10px rgba(91, 202, 223, 0.12);
}

.showcase__bubble--two {
  right: 11%;
  bottom: 15%;
  width: 24px;
  height: 24px;
  background: #8c70ed;
  box-shadow: 0 0 0 12px rgba(140, 112, 237, 0.09);
}

/* Control panel */
.control {
  padding-top: 70px;
  background: #fff;
}

.control__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(53, 193, 220, 0.18), transparent 28%),
    linear-gradient(135deg, #071e37 0%, #0b3450 62%, #0b4d69 100%);
  border-radius: 42px;
  box-shadow: 0 32px 85px rgba(5, 39, 61, 0.19);
}

.control__glow {
  position: absolute;
  z-index: 0;
  top: -180px;
  right: -130px;
  width: 480px;
  height: 480px;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(74, 211, 229, 0.2) 0%,
    rgba(74, 211, 229, 0.07) 38%,
    transparent 70%
  );
  border: 1px solid rgba(133, 226, 238, 0.08);
  border-radius: 50%;
}

.control__panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(rgba(116, 213, 232, 0.2) 1px, transparent 1px);
  background-size: 21px 21px;
  -webkit-mask-image: linear-gradient(90deg, transparent 52%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 52%, #000 100%);
}

.control__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 590px;
  padding: 72px 30px 72px 70px;
}

.control__copy h2 {
  color: #fff;
}

.control__copy > p {
  max-width: 540px;
  margin-bottom: 30px;
  color: rgba(222, 241, 248, 0.75);
  font-size: 1.05rem;
  line-height: 1.75;
}

.control__list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 34px;
}

.control__list > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: rgba(236, 249, 252, 0.9);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  font-size: 0.75rem;
}

.control__list span {
  display: grid;
  width: 20px;
  height: 20px;
  color: #79e5bc;
  font-size: 0.65rem;
  background: rgba(105, 227, 183, 0.12);
  border-radius: 50%;
  place-items: center;
}

.control__visual {
  position: relative;
  z-index: 2;
  display: grid;
  align-self: end;
  min-height: 610px;
  place-items: end center;
}

.control__image-wrap {
  position: absolute;
  right: 68px;
  bottom: -1px;
  width: 380px;
  height: 555px;
  overflow: hidden;
  background: #fff;
  border: 7px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
  border-radius: 37px 37px 0 0;
  box-shadow: 0 25px 70px rgba(0, 16, 28, 0.42);
  transform: rotate(1deg);
}

.control__image-wrap img {
  position: absolute;
  top: -93%;
  left: -30%;
  width: 160%;
  max-width: none;
}

.control__note {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 84px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  padding: 13px 15px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 17px;
  box-shadow: 0 20px 40px rgba(0, 17, 30, 0.25);
}

.control__note > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--brand);
  background: #e8f6fb;
  border-radius: 12px;
  place-items: center;
}

.control__note svg {
  width: 21px;
  height: 21px;
}

.control__note div {
  display: flex;
  flex-direction: column;
}

.control__note strong {
  font-size: 0.78rem;
}

.control__note small {
  color: #778792;
  font-size: 0.65rem;
}

/* FAQ */
.faq {
  padding-top: 130px;
  background: #fff;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: 90px;
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 125px;
}

.faq__intro h2 {
  max-width: 460px;
}

.faq__intro p {
  max-width: 400px;
  margin-bottom: 21px;
  font-size: 1.02rem;
}

.faq__intro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

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

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

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 4px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 730;
  list-style: none;
}

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

.faq summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  background: var(--soft-blue);
  border-radius: 50%;
}

.faq summary span::before,
.faq summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  content: "";
  background: var(--brand);
  border-radius: 99px;
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.faq summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq details p {
  max-width: 610px;
  padding: 0 45px 26px 4px;
  margin: 0;
  line-height: 1.75;
}

/* FAQ directory */
.faq-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.faq-hero__actions .button svg {
  width: 19px;
  height: 19px;
}

.faq-directory {
  padding: 76px 0 120px;
  background: #f7fbfc;
}

.faq-directory__layout {
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(0, 820px);
  align-items: start;
  justify-content: center;
  gap: 64px;
}

.faq-directory__nav {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  min-width: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(13, 64, 88, 0.06);
}

.faq-directory__nav > strong {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-directory__nav nav {
  display: grid;
  gap: 4px;
}

.faq-directory__nav nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  color: #567080;
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.35;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.faq-directory__nav nav a::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  content: "";
  background: #99dbe3;
  border-radius: 50%;
}

.faq-directory__nav nav a:hover {
  color: var(--brand);
  transform: translateX(3px);
}

.faq-directory__support {
  margin-top: 20px;
  padding: 18px;
  background: linear-gradient(145deg, #edf8fb, #f4fbfa);
  border: 1px solid rgba(18, 123, 170, 0.12);
  border-radius: 16px;
}

.faq-directory__support strong,
.faq-directory__support span {
  display: block;
}

.faq-directory__support strong {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 0.84rem;
}

.faq-directory__support span {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.faq-directory__support a {
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 780;
}

.faq-directory__content {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.faq-category {
  scroll-margin-top: calc(var(--header-height) + 28px);
  padding: 44px 48px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.faq-category__heading {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 28px;
}

.faq-category__icon {
  display: grid;
  width: 50px;
  height: 50px;
  color: var(--brand);
  background: var(--soft-blue);
  border: 1px solid rgba(18, 123, 170, 0.1);
  border-radius: 16px;
  place-items: center;
}

.faq-category__icon svg {
  width: 24px;
  height: 24px;
}

.faq-category__heading h2 {
  margin-bottom: 5px;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.faq-category__heading p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.faq-category .faq__items {
  margin-inline: -4px;
}

.faq-category .faq__items details:last-child {
  border-bottom: 0;
}

.faq-category .faq__items details:last-child p {
  padding-bottom: 8px;
}

.faq-category .faq__items p {
  max-width: none;
}

.faq-category .faq__items p a {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(18, 123, 170, 0.3);
  text-underline-offset: 3px;
}

.faq-category .faq__items p a:hover {
  color: var(--brand);
  text-decoration-color: currentColor;
}

/* Final download */
.download-section {
  padding: 20px 0 85px;
  background: #fff;
}

.download-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 270px;
  padding: 50px 58px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(105, 225, 230, 0.22), transparent 25%),
    linear-gradient(120deg, #0b6591, #127baa 55%, #0f94b1 100%);
  border-radius: 38px;
  box-shadow: 0 28px 70px rgba(18, 123, 170, 0.23);
}

.download-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 20px 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent 50%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 50%, #000 100%);
}

.download-card__icon,
.download-card__copy,
.download-card__action {
  position: relative;
  z-index: 2;
}

.download-card__icon {
  display: grid;
  width: 104px;
  height: 104px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 29px;
  place-items: center;
  transform: rotate(-4deg);
}

.download-card__icon img {
  width: 88px;
  height: 88px;
  border-radius: 24px;
}

.download-card__copy {
  max-width: 600px;
}

.download-card h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.download-card__copy p {
  margin-bottom: 0;
  color: rgba(235, 249, 252, 0.8);
}

.download-card__copy .eyebrow {
  margin-bottom: 13px;
}

.download-card__action {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  padding: 7px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  box-shadow: 0 14px 35px rgba(2, 35, 53, 0.24);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

.store-badge:hover {
  box-shadow: 0 19px 42px rgba(2, 35, 53, 0.34);
  transform: translateY(-4px) scale(1.02);
}

.store-badge img {
  width: 188px;
  height: auto;
}

.download-card__action > span {
  color: rgba(235, 249, 252, 0.72);
  font-size: 0.69rem;
  font-weight: 650;
}

.download-card__dot,
.download-card__ring {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
}

.download-card__dot--one {
  top: 27px;
  right: 28%;
  width: 13px;
  height: 13px;
  background: #91e7e7;
}

.download-card__dot--two {
  right: 18%;
  bottom: 25px;
  width: 8px;
  height: 8px;
  background: #baa4ff;
}

.download-card__ring {
  top: -80px;
  right: -70px;
  width: 260px;
  height: 260px;
  border: 45px solid rgba(255, 255, 255, 0.055);
}

/* Legal pages */
.legal-page,
.contact-page,
.faq-page {
  background: #f7fbfc;
}

.legal-page .site-header,
.contact-page .site-header,
.faq-page .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(13, 66, 91, 0.05);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.legal-main {
  overflow: clip;
}

.legal-hero {
  position: relative;
  padding: calc(var(--header-height) + 82px) 0 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(32, 190, 187, 0.13), transparent 27%),
    radial-gradient(circle at 14% 78%, rgba(18, 123, 170, 0.12), transparent 30%),
    linear-gradient(145deg, #f8fcfd 0%, #edf8fb 100%);
  border-bottom: 1px solid var(--border);
}

.legal-hero::before,
.legal-hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(18, 123, 170, 0.12);
  border-radius: 50%;
}

.legal-hero::before {
  top: 42px;
  right: -110px;
  width: 340px;
  height: 340px;
}

.legal-hero::after {
  bottom: -135px;
  left: -95px;
  width: 270px;
  height: 270px;
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.legal-back {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 30px;
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 750;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.legal-back svg {
  width: 17px;
  height: 17px;
}

.legal-back:hover {
  color: var(--brand);
  transform: translateX(-3px);
}

.legal-hero h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(3.3rem, 7vw, 5.7rem);
  line-height: 0.98;
}

.legal-hero__lede {
  max-width: 735px;
  margin-bottom: 28px;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: #31566a;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 123, 170, 0.12);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 680;
}

.legal-body {
  padding: 76px 0 120px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(0, 820px);
  align-items: start;
  justify-content: center;
  gap: 64px;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(13, 64, 88, 0.06);
}

.legal-toc > strong {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
  gap: 2px;
}

.legal-toc a {
  display: block;
  padding: 6px 0;
  color: #5a7180;
  font-size: 0.78rem;
  line-height: 1.35;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.legal-toc a:hover {
  color: var(--brand);
  transform: translateX(3px);
}

.legal-document {
  padding: 58px 64px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}

.legal-document__intro {
  margin-bottom: 40px;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--border);
}

.legal-document__intro p {
  margin-bottom: 12px;
  color: #3e5a6a;
  font-size: 1.02rem;
}

.legal-document__intro p:last-child,
.legal-document section > :last-child,
.legal-contact > :last-child {
  margin-bottom: 0;
}

.legal-document section {
  scroll-margin-top: calc(var(--header-height) + 30px);
}

.legal-document section + section {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid rgba(13, 71, 99, 0.1);
}

.legal-document h2 {
  margin-bottom: 16px;
  font-size: clamp(1.48rem, 3vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.legal-document h3 {
  margin: 26px 0 10px;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.legal-document p,
.legal-document li {
  color: #516a79;
  font-size: 0.94rem;
}

.legal-document p {
  margin-bottom: 14px;
}

.legal-document ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.legal-document li {
  padding-left: 5px;
}

.legal-document li::marker {
  color: var(--brand);
}

.legal-document a {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(18, 123, 170, 0.3);
  text-underline-offset: 3px;
}

.legal-document a:hover {
  color: var(--brand);
  text-decoration-color: currentColor;
}

.legal-callout {
  margin-top: 22px;
  padding: 22px 24px;
  background: linear-gradient(145deg, #edf8fb, #f4fbfa);
  border: 1px solid rgba(18, 123, 170, 0.14);
  border-radius: 18px;
}

.legal-callout strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.9rem;
}

.legal-callout p {
  font-size: 0.88rem;
}

.legal-contact {
  padding: 24px;
  background: #f7fbfc;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.legal-contact strong {
  color: var(--navy);
}

/* Contact page */
.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.contact-hero__actions .button svg {
  width: 19px;
  height: 19px;
}

.contact-section {
  padding: 78px 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  align-items: start;
  gap: 28px;
}

.contact-stack {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.contact-card,
.contact-guide {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-card {
  padding: 44px;
  border-radius: 28px;
}

.contact-card--support {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 7%, rgba(32, 190, 187, 0.13), transparent 30%),
    var(--white);
}

.contact-card--support::after {
  position: absolute;
  top: -65px;
  right: -60px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(18, 123, 170, 0.11);
  border-radius: 50%;
}

.contact-card__icon,
.contact-option__icon {
  display: grid;
  color: var(--brand);
  background: var(--soft-blue);
  border: 1px solid rgba(18, 123, 170, 0.1);
  place-items: center;
}

.contact-card__icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 18px;
}

.contact-card__icon svg {
  width: 27px;
  height: 27px;
}

.contact-card__tag {
  display: block;
  margin-bottom: 9px;
  color: var(--brand-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card h2,
.contact-guide h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.05;
}

.contact-card > p {
  max-width: 600px;
  margin-bottom: 24px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  color: var(--brand-deep);
  font-size: clamp(1rem, 2.4vw, 1.24rem);
  font-weight: 780;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.contact-email svg {
  width: 21px;
  min-width: 21px;
  height: 21px;
}

.contact-email:hover {
  color: var(--brand);
}

.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.contact-option {
  display: flex;
  min-width: 0;
  min-height: 245px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(13, 64, 88, 0.06);
  flex-direction: column;
}

.contact-option__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 15px;
}

.contact-option__icon svg {
  width: 22px;
  height: 22px;
}

.contact-option h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.contact-option p {
  margin-bottom: 22px;
  font-size: 0.88rem;
}

.contact-option .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.contact-guide {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 44px;
  border-radius: 28px;
}

.contact-guide__intro {
  margin-bottom: 28px;
}

.contact-guide__intro p {
  margin-bottom: 0;
}

.contact-steps {
  display: grid;
}

.contact-step {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(13, 71, 99, 0.1);
}

.contact-step__number {
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--brand-deep);
  background: var(--soft-blue);
  border-radius: 12px;
  font-size: 0.74rem;
  font-weight: 800;
  place-items: center;
}

.contact-step h3 {
  margin: 1px 0 4px;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.contact-step p {
  margin-bottom: 0;
  font-size: 0.83rem;
  line-height: 1.55;
}

.contact-note {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  margin-top: 12px;
  padding: 18px;
  color: #4b6574;
  background: #f5fafb;
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 0.8rem;
  line-height: 1.55;
}

.contact-note svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
}

.contact-company {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(13, 71, 99, 0.1);
}

.contact-company > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-company strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
}

.contact-company a {
  color: var(--brand-deep);
  font-size: 0.86rem;
  font-weight: 700;
}

/* Footer */
.footer {
  padding: 70px 0 24px;
  color: #527080;
  background: #f1f8fa;
  border-top: 1px solid rgba(12, 79, 108, 0.08);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 55px;
}

.footer__brand p {
  max-width: 320px;
  margin: 17px 0 0;
  font-size: 0.91rem;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(125px, 150px));
  gap: 42px;
}

.footer__links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer__links strong {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.footer__links a {
  font-size: 0.84rem;
  transition: color 180ms ease;
}

.footer__links a:hover,
.footer__links a[aria-current="page"],
.footer__bottom a:hover {
  color: var(--brand);
}

.footer__links a[aria-current="page"] {
  font-weight: 700;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  font-size: 0.75rem;
  border-top: 1px solid rgba(12, 79, 108, 0.1);
}

.footer__bottom a {
  color: var(--brand-deep);
  font-weight: 700;
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal--delay-1 {
  transition-delay: 90ms;
}

.js .reveal--delay-2 {
  transition-delay: 180ms;
}

.js .reveal--delay-3 {
  transition-delay: 270ms;
}

.js .reveal--delay-4 {
  transition-delay: 360ms;
}

@keyframes phone-float {
  0%,
  100% { transform: translateY(0) rotate(1.5deg); }
  50% { transform: translateY(-12px) rotate(0.6deg); }
}

@keyframes card-float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1120px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
    gap: 20px;
  }

  .hero__phone {
    right: 35px;
    width: 345px;
    height: 556px;
  }

  .hero__phone img {
    top: -180px;
  }

  .hero__halo {
    right: -35px;
    width: 495px;
    height: 495px;
  }

  .float-card--email {
    left: -5px;
  }

  .float-card--apps {
    right: -10px;
  }

  .feature-card__copy {
    max-width: 53%;
  }

  .email-visual,
  .calls-visual {
    right: 22px;
    width: 42%;
  }

  .apps-visual {
    grid-template-columns: repeat(3, 51px);
  }

  .app-dot {
    width: 51px;
    height: 51px;
  }

  .steps {
    grid-template-columns: 1fr 65px 1fr 65px 1fr;
  }

  .showcase__copy {
    padding-left: 43px;
  }

  .control__image-wrap {
    right: 42px;
    width: 350px;
    height: 540px;
  }

  .control__note {
    right: 8px;
  }

  .download-card {
    padding-inline: 42px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 74px;
  }

  .section {
    padding: 95px 0;
  }

  .nav__toggle {
    display: block;
  }

  .nav__menu {
    position: fixed;
    z-index: -1;
    inset: var(--header-height) 0 auto;
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 25px 50px rgba(9, 57, 80, 0.12);
    opacity: 0;
    transform: translateY(-16px);
    visibility: hidden;
    flex-direction: column;
    transition:
      opacity 200ms ease,
      transform 240ms var(--ease),
      visibility 200ms ease;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .nav__menu.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .nav__menu > a:not(.button) {
    padding: 14px 3px;
    border-bottom: 1px solid rgba(11, 82, 111, 0.07);
  }

  .nav__menu > a:not(.button)::after {
    display: none;
  }

  .nav__cta {
    margin-top: 16px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    min-width: 0;
  }

  .legal-toc,
  .legal-document {
    position: static;
    min-width: 0;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

  .faq-directory__layout {
    grid-template-columns: 1fr;
    gap: 28px;
    min-width: 0;
  }

  .faq-directory__nav {
    position: static;
  }

  .faq-directory__nav nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

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

  .contact-guide {
    position: static;
  }

  .footer__top {
    flex-direction: column;
    gap: 45px;
  }

  .footer__links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .hero {
    min-height: 0;
    padding: 126px 0 72px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero__content {
    max-width: 730px;
    text-align: center;
    justify-self: center;
  }

  .hero h1,
  .hero__lede {
    margin-inline: auto;
  }

  .hero__actions,
  .hero__proof {
    justify-content: center;
  }

  .hero__visual {
    width: min(100%, 610px);
    min-height: 610px;
    margin-inline: auto;
  }

  .hero__phone {
    right: 50%;
    width: 365px;
    transform: translateX(50%) rotate(1.5deg);
    animation: none;
  }

  .hero__phone img {
    top: -188px;
  }

  .hero__halo {
    right: 50%;
    transform: translateX(50%);
  }

  .float-card--email {
    left: 0;
  }

  .float-card--apps {
    right: 0;
  }

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

  .trust-strip__inner > div {
    min-height: 72px;
  }

  .trust-strip__inner > div:nth-child(3) {
    border-top: 1px solid rgba(13, 71, 99, 0.09);
    border-left: 0;
  }

  .trust-strip__inner > div:nth-child(4) {
    border-top: 1px solid rgba(13, 71, 99, 0.09);
  }

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

  .feature-card,
  .feature-card--email,
  .feature-card--apps,
  .feature-card--screen,
  .feature-card--calls {
    grid-column: span 1;
  }

  .feature-card__copy {
    display: block;
    max-width: none;
  }

  .feature-card__copy .feature-card__icon {
    margin-bottom: 28px;
  }

  .email-visual,
  .calls-visual {
    right: 25px;
    bottom: -18px;
    width: calc(100% - 50px);
    transform: none;
  }

  .feature-card--email,
  .feature-card--calls {
    min-height: 590px;
  }

  .feature-card--apps {
    min-height: 500px;
  }

  .feature-card--screen {
    min-height: 455px;
  }

  .apps-visual,
  .screen-visual {
    align-self: flex-start;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 690px;
    margin-inline: auto;
  }

  .step-card {
    min-height: 0;
  }

  .steps__connector {
    display: none;
  }

  .showcase__panel {
    grid-template-columns: minmax(0, 0.88fr) minmax(350px, 1.12fr);
  }

  .showcase__copy {
    padding: 48px 28px;
  }

  .showcase__image-frame {
    width: min(320px, 82%);
  }

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

  .control__copy {
    max-width: 700px;
    padding: 62px 55px 35px;
  }

  .control__visual {
    min-height: 575px;
  }

  .control__image-wrap {
    right: 50%;
    width: 380px;
    transform: translateX(50%) rotate(1deg);
  }

  .control__note {
    right: calc(50% - 240px);
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq__intro {
    position: static;
  }

  .download-card {
    grid-template-columns: auto 1fr;
  }

  .download-card__action {
    grid-column: 1 / -1;
    align-items: flex-start;
    padding-left: 132px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .legal-hero {
    padding: calc(var(--header-height) + 55px) 0 58px;
  }

  .legal-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  .legal-hero .eyebrow {
    max-width: 100%;
    white-space: normal;
  }

  .legal-body {
    padding: 42px 0 78px;
  }

  .legal-layout {
    gap: 22px;
  }

  .legal-document {
    padding: 38px 26px;
    overflow-wrap: anywhere;
    border-radius: 24px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .legal-document section + section {
    margin-top: 30px;
    padding-top: 30px;
  }

  .contact-section {
    padding: 42px 0 78px;
  }

  .faq-directory {
    padding: 42px 0 78px;
  }

  .faq-directory__layout {
    gap: 22px;
  }

  .faq-directory__nav nav {
    grid-template-columns: 1fr;
  }

  .faq-category {
    padding: 34px 26px 16px;
    overflow-wrap: anywhere;
    border-radius: 24px;
  }

  .faq-category__heading {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
  }

  .faq-category__icon {
    width: 43px;
    height: 43px;
    border-radius: 14px;
  }

  .faq-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-hero__actions .button {
    width: 100%;
  }

  .contact-card,
  .contact-guide {
    padding: 32px 26px;
    border-radius: 24px;
  }

  .contact-hero__actions,
  .contact-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-hero__actions .button,
  .contact-card__actions .button {
    width: 100%;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-option {
    min-height: 0;
    padding: 28px 26px;
  }

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

  .section-heading h2,
  .faq__intro h2,
  .control__copy h2,
  .download-card h2 {
    font-size: clamp(2.08rem, 10vw, 3rem);
  }

  .hero {
    padding-top: 114px;
  }

  .hero__orb--one {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.25rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    gap: 15px;
  }

  .hero__visual {
    width: 100%;
    min-height: 560px;
  }

  .hero__halo {
    width: 430px;
    height: 430px;
  }

  .hero__phone {
    top: 7px;
    width: 330px;
    height: 525px;
  }

  .hero__phone img {
    top: -171px;
  }

  .float-card {
    min-width: 185px;
    padding: 11px;
  }

  .float-card--email {
    top: 95px;
    left: -9px;
  }

  .float-card--apps {
    right: -7px;
    bottom: 22px;
  }

  .float-card__icon {
    width: 36px;
    height: 36px;
  }

  .trust-strip__inner > div {
    justify-content: flex-start;
    padding: 0 14px;
  }

  .trust-strip__inner > div:nth-child(2n) {
    border-left: 1px solid rgba(13, 71, 99, 0.09);
  }

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

  .feature-card {
    padding: 28px;
  }

  .feature-card--apps {
    min-height: 470px;
  }

  .feature-card--screen {
    min-height: 425px;
  }

  .showcase__shell {
    padding: 8px;
    border-radius: 28px;
  }

  .showcase__tabs {
    display: flex;
    justify-content: flex-start;
    padding: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .showcase__tabs::-webkit-scrollbar {
    display: none;
  }

  .showcase__tab {
    min-width: max-content;
  }

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

  .showcase__copy {
    max-width: none;
    padding: 44px 24px 38px;
  }

  .showcase__visual {
    min-height: 620px;
  }

  .showcase__image-frame {
    width: min(330px, 82%);
  }

  .control {
    padding-top: 38px;
  }

  .control__panel {
    border-radius: 30px;
  }

  .control__copy {
    padding: 50px 27px 28px;
  }

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

  .control__visual {
    min-height: 520px;
  }

  .control__image-wrap {
    width: min(350px, calc(100% - 42px));
    height: 500px;
  }

  .control__note {
    right: 7px;
    bottom: 60px;
  }

  .faq {
    padding-top: 90px;
  }

  .faq summary {
    padding-block: 21px;
    font-size: 0.98rem;
  }

  .download-section {
    padding-bottom: 55px;
  }

  .download-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 39px 28px;
    text-align: center;
    border-radius: 29px;
  }

  .download-card__icon {
    width: 90px;
    height: 90px;
    margin-inline: auto;
  }

  .download-card__icon img {
    width: 76px;
    height: 76px;
  }

  .download-card__action {
    grid-column: auto;
    align-items: center;
    padding-left: 0;
  }

  .footer__top {
    flex-direction: column;
    gap: 45px;
  }

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

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

@media (max-width: 480px) {
  .legal-meta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero__proof > div {
    align-items: center;
    text-align: center;
  }

  .hero__divider {
    display: none;
  }

  .hero__visual {
    min-height: 505px;
  }

  .hero__phone {
    width: 292px;
    height: 470px;
    border-width: 5px;
    border-radius: 35px;
  }

  .hero__phone img {
    top: -151px;
  }

  .hero__halo {
    top: 25px;
    width: 360px;
    height: 360px;
  }

  .float-card {
    min-width: 164px;
    gap: 8px;
  }

  .float-card--email {
    top: 72px;
    left: -5px;
  }

  .float-card--apps {
    right: -5px;
    bottom: 5px;
  }

  .float-card strong {
    font-size: 0.74rem;
  }

  .float-card small {
    font-size: 0.62rem;
  }

  .trust-strip__inner > div {
    min-height: 66px;
    gap: 8px;
    font-size: 0.73rem;
  }

  .trust-strip svg {
    width: 19px;
    height: 19px;
  }

  .feature-card--email,
  .feature-card--calls {
    min-height: 600px;
  }

  .email-row {
    grid-template-columns: 18px 31px 1fr auto;
    gap: 7px;
    padding-inline: 9px;
  }

  .email-row__avatar {
    width: 31px;
    height: 31px;
  }

  .apps-visual {
    width: 100%;
    align-self: stretch;
    grid-template-columns: repeat(3, 1fr);
  }

  .app-dot {
    width: 52px;
    height: 52px;
    justify-self: center;
  }

  .screen-visual {
    width: 100%;
    align-self: stretch;
    justify-content: space-between;
  }

  .showcase__visual {
    min-height: 540px;
  }

  .showcase__image-frame {
    width: min(285px, 84%);
    border-width: 5px;
    border-radius: 26px;
  }

  .control__note {
    min-width: 162px;
    padding: 10px 12px;
  }

  .footer__links {
    gap: 24px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
