:root {
  --ink: #45232f;
  --ink-strong: #2f1720;
  --text: #573b45;
  --muted: #78646b;
  --paper: #fffdf8;
  --surface: #ffffff;
  --soft: #f7f3ed;
  --blue: #527fdf;
  --blue-dark: #315fbf;
  --blue-soft: #eaf1ff;
  --yellow: #f0ca3e;
  --yellow-soft: #fff7cf;
  --line: rgba(69, 35, 47, 0.12);
  --shadow: 0 24px 70px rgba(57, 36, 44, 0.13);
  --shadow-small: 0 12px 34px rgba(57, 36, 44, 0.09);
  --radius: 28px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink-strong);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.9rem);
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.15rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

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

.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;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.eyebrow,
.page-kicker {
  margin-bottom: 0.75rem;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1;
  box-shadow: var(--shadow-small);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.button-small {
  min-height: 42px;
  padding-inline: 1.1rem;
}

.button-secondary {
  color: var(--ink-strong);
  background: var(--yellow);
}

.text-link,
.technology-card a,
.inline-links a,
.article-content a {
  color: var(--blue-dark);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(49, 95, 191, 0.3);
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(69, 35, 47, 0.08);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(69, 35, 47, 0.15);
}

.brand span {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  color: var(--ink-strong);
  font-size: 1rem;
}

.brand small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--ink-strong);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.nav-toggle span[aria-hidden] {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  background: var(--ink);
  transition: background 180ms ease;
}

.nav-toggle span[aria-hidden]::before,
.nav-toggle span[aria-hidden]::after {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--ink);
  transition: transform 180ms ease;
}

.nav-toggle span[aria-hidden]::before {
  transform: translateY(-6px);
}

.nav-toggle span[aria-hidden]::after {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] span[aria-hidden] {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span[aria-hidden]::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span[aria-hidden]::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 78% 35%, rgba(82, 127, 223, 0.2), transparent 31%),
    radial-gradient(circle at 12% 2%, rgba(240, 202, 62, 0.35), transparent 28%),
    linear-gradient(rgba(82, 127, 223, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 127, 223, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.7fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7.5rem);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 1.3rem;
}

.hero-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin: 2rem 0;
}

.store-badge {
  display: inline-flex;
  border-radius: 12px;
  transition: transform 180ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
}

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

.store-badge-large img {
  width: 176px;
}

.hero-benefits,
.check-list,
.feature-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li,
.check-list li,
.feature-list li {
  position: relative;
  padding-left: 1.65rem;
}

.hero-benefits li::before,
.check-list li::before,
.feature-list li::before {
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.hero-product {
  position: relative;
  max-width: 410px;
  margin-inline: auto;
}

.phone-frame {
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(69, 35, 47, 0.1);
  border-radius: 52px;
  background: #151515;
  box-shadow: 0 38px 90px rgba(69, 35, 47, 0.24);
}

.phone-frame img {
  border-radius: 41px;
}

.phone-frame-small {
  width: min(100%, 340px);
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 190px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.floating-note span {
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-note strong {
  color: var(--ink-strong);
  font-size: 0.9rem;
}

.note-top {
  top: 18%;
  right: -24%;
}

.note-bottom {
  bottom: 16%;
  left: -30%;
}

.trust-strip {
  padding: 1.1rem 0;
  border-block: 1px solid var(--line);
  background: var(--yellow-soft);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.8rem;
  color: var(--ink);
  font-size: 0.81rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 2.7rem;
}

.section-heading h2 {
  margin-bottom: 1rem;
}

.section-heading > p:last-child {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.split-intro h2 {
  margin-bottom: 0;
}

.intro-copy {
  padding-top: 2.2rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  min-height: 270px;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.process-grid h3 {
  margin: 2.2rem 0 0.7rem;
}

.process-grid p {
  color: var(--muted);
  font-size: 0.93rem;
}

.step-number {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}

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

.story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.story-copy .check-list {
  margin: 1.5rem 0 2rem;
}

.apple-section {
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 85% 5%, rgba(82, 127, 223, 0.35), transparent 30%),
    linear-gradient(145deg, #27141b, #45232f 60%, #36212a);
}

.apple-section h2,
.apple-section h3,
.apple-section .eyebrow {
  color: white;
}

.light-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.technology-card {
  min-height: 250px;
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.technology-card-wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(82, 127, 223, 0.29), rgba(255, 255, 255, 0.07));
}

.technology-card p {
  color: rgba(255, 255, 255, 0.67);
}

.technology-card a {
  color: #bfd1ff;
  text-decoration-color: rgba(191, 209, 255, 0.35);
}

.tech-label {
  display: inline-flex;
  margin-bottom: 1.25rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  color: #1f1b0c;
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.watch-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.watch-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.watch-screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.watch-screens figure {
  margin: 0;
}

.watch-screens img {
  border-radius: 20px;
  background: #111;
}

.watch-screens figcaption {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  text-align: center;
}

.page-hero .watch-screens figcaption {
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.benefit-grid article {
  overflow: hidden;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.benefit-grid img {
  width: 126px;
  height: 126px;
  margin-bottom: 1.2rem;
  border-radius: 26px;
  object-fit: cover;
  background: var(--yellow-soft);
}

.benefit-grid p {
  color: var(--muted);
}

.centered-action {
  margin-top: 2rem;
  text-align: center;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.screen-card {
  margin: 0;
}

.screen-card img {
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-small);
}

.screen-card figcaption {
  display: grid;
  gap: 0.25rem;
  padding-top: 1rem;
}

.screen-card figcaption strong {
  color: var(--ink-strong);
}

.screen-card figcaption span {
  color: var(--muted);
  font-size: 0.88rem;
}

.use-cases {
  background:
    linear-gradient(rgba(82, 127, 223, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 127, 223, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.use-case-grid article {
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.91);
}

.use-case-grid article > span {
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.use-case-grid h3 {
  margin: 1.6rem 0 0.6rem;
}

.use-case-grid p {
  color: var(--muted);
}

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

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: center;
}

.privacy-layout h2 {
  max-width: 680px;
}

.privacy-points {
  display: grid;
  gap: 0.8rem;
}

.privacy-points div {
  display: grid;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(82, 127, 223, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.privacy-points strong {
  color: var(--ink-strong);
}

.privacy-points span {
  color: var(--muted);
  font-size: 0.88rem;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 0.75rem;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.faq-list summary {
  position: relative;
  padding: 1.15rem 3.4rem 1.15rem 1.25rem;
  color: var(--ink-strong);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  content: "+";
  color: var(--blue-dark);
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 760px;
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}

.final-cta {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  background: var(--yellow);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.final-cta h2 {
  max-width: 820px;
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.final-cta p {
  margin-bottom: 0;
  color: rgba(47, 23, 32, 0.72);
}

.footer {
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink-strong);
}

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

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-grid strong,
.footer-brand {
  color: white;
}

.footer-grid a:not(.footer-brand) {
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: white;
}

.footer-grid p {
  max-width: 320px;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

/* Search landing pages */

.page-hero {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(circle at 80% 25%, rgba(82, 127, 223, 0.17), transparent 28%),
    radial-gradient(circle at 10% 8%, rgba(240, 202, 62, 0.34), transparent 24%),
    var(--paper);
}

.breadcrumbs {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumbs a {
  color: var(--blue-dark);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: center;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
}

.page-hero .lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.16rem;
}

.page-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.page-visual-card {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.page-visual-card img {
  border-radius: 20px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: start;
}

.article-content {
  min-width: 0;
}

.article-content section + section {
  margin-top: 4.5rem;
  padding-top: 4.5rem;
  border-top: 1px solid var(--line);
}

.article-content h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

.article-content h3 {
  margin-bottom: 0.6rem;
}

.article-content > section > p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.05rem;
}

.article-aside {
  position: sticky;
  top: 104px;
}

.article-nav,
.content-card,
.callout {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.article-nav {
  display: grid;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.article-nav strong {
  color: var(--ink-strong);
}

.article-nav a:hover {
  color: var(--blue-dark);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.content-card {
  box-shadow: none;
}

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

.content-card .tech-label {
  margin-bottom: 1rem;
}

.callout {
  margin-top: 2rem;
  border-color: rgba(240, 202, 62, 0.7);
  background: var(--yellow-soft);
}

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

.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.related-links a {
  display: grid;
  gap: 0.35rem;
  min-height: 145px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.related-links a:hover {
  border-color: rgba(82, 127, 223, 0.45);
}

.related-links strong {
  color: var(--ink-strong);
}

.related-links span {
  color: var(--muted);
  font-size: 0.87rem;
}

@media (max-width: 1040px) {
  .nav {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 24px 1.5rem;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow-small);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-product {
    width: min(80%, 400px);
  }

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

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

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

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

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

  .nav {
    gap: 0.8rem;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 3.5rem;
  }

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

  .floating-note {
    display: none;
  }

  .split-intro,
  .feature-story,
  .watch-showcase,
  .privacy-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 0;
  }

  .process-grid,
  .technology-grid,
  .benefit-grid,
  .use-case-grid,
  .content-grid,
  .related-links {
    grid-template-columns: 1fr;
  }

  .technology-card-wide {
    grid-column: auto;
  }

  .watch-screens {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .final-cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .article-aside {
    position: static;
    order: -1;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    border-radius: 40px;
  }

  .phone-frame img {
    border-radius: 31px;
  }
}

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

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