:root {
  --bg: #edf5fc;
  --bg-strong: #e0edfc;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.93);
  --text: #214a85;
  --muted: #516c91;
  --line: rgba(33, 74, 133, 0.16);
  --primary: #3370c2;
  --secondary: #8ab2fa;
  --accent: #cc5400;
  --accent-soft: #d47a3f;
  --shadow: 0 30px 80px rgba(10, 20, 36, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(51, 112, 194, 0.2), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(204, 84, 0, 0.14), transparent 22%),
    linear-gradient(180deg, #f7faff 0%, var(--bg) 52%, #c2d9f7 100%);
}

body.is-lightbox-open {
  overflow: hidden;
}

a,
button,
input {
  font: inherit;
}

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

img {
  max-width: 100%;
}

button,
.button,
.site-nav a,
.brand {
  cursor: pointer;
}

.progress-rail {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 6px;
  background: rgba(33, 74, 133, 0.08);
}

.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 80ms linear;
}

.site-header {
  position: sticky;
  top: 6px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0.8rem auto 0;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(10, 20, 36, 0.08);
}

.brand,
.eyebrow,
h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.button:hover,
.button:focus-visible {
  box-shadow: 0 10px 22px rgba(10, 20, 36, 0.08);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(51, 112, 194, 0.12);
}

.nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
}

main {
  overflow: clip;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 8rem);
  padding: 2.25rem 0 2.75rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
}

h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.9;
  text-wrap: balance;
}

h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.hero-text,
.section-heading p:last-child,
.timeline-step p,
.story-card p,
.cta-panel p,
.shot-card figcaption {
  color: var(--muted);
}

.hero-text {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: 1.14rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid rgba(204, 84, 0, 0.26);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 16px 30px rgba(204, 84, 0, 0.24);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 16px 30px rgba(204, 84, 0, 0.24);
}

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

.hero-stage {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.orb-one {
  inset: 0 auto auto 5%;
  width: 18rem;
  height: 18rem;
  background: rgba(51, 112, 194, 0.18);
}

.orb-two {
  inset: auto 0 14% auto;
  width: 14rem;
  height: 14rem;
  background: rgba(204, 84, 0, 0.16);
}

.hero-icon-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  backdrop-filter: blur(26px);
  box-shadow: var(--shadow);
}

.hero-icon-frame img {
  display: block;
  width: clamp(12rem, 24vw, 18rem);
  height: auto;
  border-radius: 26%;
  box-shadow: 0 18px 40px rgba(10, 20, 36, 0.14);
}

.hero-video-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(100%, 48rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #10233f;
}

.hero-video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  border: 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(16, 35, 63, 0.06), rgba(16, 35, 63, 0.36));
  transition:
    background-color 160ms ease,
    opacity 160ms ease;
}

.hero-video-play span {
  width: 5.1rem;
  height: 5.1rem;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 18px 42px rgba(10, 20, 36, 0.24);
}

.hero-video-play span::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 1.58rem 0 0 2rem;
  border-top: 0.95rem solid transparent;
  border-bottom: 0.95rem solid transparent;
  border-left: 1.35rem solid #fff;
}

.hero-video-play:hover,
.hero-video-play:focus-visible {
  background-color: rgba(16, 35, 63, 0.16);
}

.hero-video-frame.is-started .hero-video-play {
  pointer-events: none;
  opacity: 0;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(6, 16, 30, 0.82);
  backdrop-filter: blur(24px);
}

.video-lightbox[hidden] {
  display: none;
}

.video-lightbox-player {
  width: min(100%, 92rem);
  max-height: calc(100vh - clamp(5rem, 10vw, 7rem));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  overflow: hidden;
  background: #06101e;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.44);
}

.video-lightbox-video {
  display: block;
  width: 100%;
  max-height: calc(100vh - clamp(5rem, 10vw, 7rem));
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #06101e;
}

.video-lightbox-close {
  position: absolute;
  top: clamp(0.85rem, 2vw, 1.35rem);
  right: clamp(0.85rem, 2vw, 1.35rem);
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.video-lightbox-close:hover,
.video-lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.video-lightbox-close span,
.video-lightbox-close span::after {
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.video-lightbox-close span {
  position: relative;
  display: block;
  transform: rotate(45deg);
}

.video-lightbox-close span::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: rotate(90deg);
}

.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
}

.story,
.audience,
.workflow,
.transfer,
.features,
.screenshots,
.cta,
.faq {
  padding: 3rem 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.35rem;
}

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

.story-card,
.audience-card,
.transfer-card,
.timeline-step,
.cta-panel,
.shot-card,
.feature-list-card,
.requirements-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 48px rgba(10, 20, 36, 0.08);
  backdrop-filter: blur(18px);
}

.story-card,
.audience-card,
.transfer-card,
.feature-list-card,
.faq-card {
  padding: 1.2rem;
  min-height: auto;
}

.audience-grid,
.transfer-grid,
.faq-list {
  display: grid;
  gap: 1rem;
}

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

.faq-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.requirements-block {
  margin-top: 1.6rem;
}

.requirements-card {
  padding: 1.2rem;
}

.requirements-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.35rem;
}

.requirements-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.requirements-list li {
  color: var(--muted);
  line-height: 1.65;
}

.requirements-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.story-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.audience-card h3,
.transfer-card h3,
.faq-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.45rem;
}

.audience-card p,
.transfer-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.transfer-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.transfer-card li {
  color: var(--muted);
  line-height: 1.65;
}

.workflow-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-step {
  padding: 1.35rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.timeline-step h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.45rem;
}

.timeline-step p {
  margin: 0;
  line-height: 1.7;
}

.shot-card {
  margin: 0;
  padding: 0.8rem;
}

.shot-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
}

.shot-card figcaption {
  margin-top: 0.9rem;
  line-height: 1.6;
}

.shot-card figcaption strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.feature-list {
  margin: 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.9rem;
}

.feature-list li {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.screenshots-stack {
  display: grid;
  gap: 1.2rem;
}

.mac-shot-card {
  max-width: 58rem;
}

.mac-shot-card img {
  width: auto;
  max-width: 100%;
  max-height: 30rem;
  aspect-ratio: 1280 / 853;
  object-fit: contain;
  margin: 0 auto;
}

.ios-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x proximity;
}

.ios-shot-card {
  flex: 0 0 15rem;
  scroll-snap-align: start;
}

.ios-shot-card img {
  aspect-ratio: 1179 / 2100;
  object-fit: cover;
  object-position: top;
}

.carplay-shot-card {
  max-width: 58rem;
}

.carplay-shot-card img {
  width: auto;
  max-width: 100%;
  max-height: 30rem;
  aspect-ratio: 1280 / 720;
  object-fit: contain;
  margin: 0 auto;
}

.cta-panel {
  padding: 1.5rem;
}

.cta-panel p {
  max-width: 38rem;
  line-height: 1.8;
}

.store-badges {
  align-items: center;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.store-badge {
  display: block;
  height: auto;
}

.store-badge-mac {
  width: min(100%, 156px);
}

.store-badge-ios {
  width: min(100%, 120px);
}

.contact-page {
  min-height: 100vh;
}

.legal-page {
  min-height: 100vh;
}

.contact-hero,
.contact-details {
  padding: 3rem 0;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.25rem;
  align-items: start;
  min-height: calc(100vh - 8rem);
}

.contact-copy {
  padding: 3rem 0 1.5rem;
}

.contact-copy h1 {
  max-width: 12ch;
}

.contact-detail,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 48px rgba(10, 20, 36, 0.08);
  backdrop-filter: blur(18px);
}

.contact-detail {
  padding: 1.1rem 1.2rem;
}
.contact-detail p,
.form-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-panel {
  padding: 1.5rem;
}

.contact-panel-header {
  margin-bottom: 1.15rem;
}

.contact-panel-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-grid,
.contact-details-grid {
  display: grid;
  gap: 1rem;
}

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

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field span {
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(33, 74, 133, 0.18);
  border-radius: 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7e92af;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(204, 84, 0, 0.45);
  box-shadow: 0 0 0 5px rgba(204, 84, 0, 0.08);
  outline: none;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-status {
  min-height: 1.7rem;
  font-weight: 600;
}

.form-status.is-success {
  color: #246f3d;
}

.form-status.is-error {
  color: #9a3b16;
}

.contact-detail h3 {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 2.5rem;
}

.site-footer-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.site-footer-nav a {
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.site-footer-nav a:hover,
.site-footer-nav a:focus-visible {
  background: rgba(51, 112, 194, 0.1);
}

.legal-shell,
.legal-content {
  padding: 3rem 0;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.25rem;
  align-items: start;
}

.legal-intro {
  padding: 3rem 0 1.5rem;
}

.legal-intro h1 {
  max-width: 10ch;
}

.legal-intro-wide {
  max-width: 48rem;
}

.legal-intro-wide h1 {
  max-width: 12ch;
}

.legal-meta {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.legal-card,
.legal-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 48px rgba(10, 20, 36, 0.08);
  backdrop-filter: blur(18px);
}

.legal-card {
  padding: 1.5rem;
}

.legal-list {
  display: grid;
  gap: 1.2rem;
}

.legal-block h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.02;
}

.legal-block p,
.legal-block li,
.legal-note p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-block p,
.legal-note p {
  margin: 0;
}

.legal-block ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

.legal-note {
  padding: 1.15rem 1.2rem;
}

.legal-note h2 {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
}

.botcheck-field {
  display: none !important;
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

:focus-visible {
  outline: 3px solid rgba(204, 84, 0, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
    padding-top: 2rem;
  }

  .contact-hero,
  .contact-details-grid,
  .legal-shell {
    grid-template-columns: 1fr;
  }

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

  .hero-stage {
    min-height: auto;
  }

  .story-grid,
  .audience-grid,
  .transfer-grid,
  .workflow-timeline,
  .requirements-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    width: min(100% - 1.25rem, 1180px);
  }

  .site-header {
    position: static;
    width: calc(100% - 1.25rem);
    margin-top: 0.9rem;
    padding: 0.75rem;
    border-radius: 28px;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .site-nav {
    width: 100%;
    gap: 0.35rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.05rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 0.48rem 0.72rem;
    font-size: 0.9rem;
  }

  .site-nav a[href^="#"]:not(.nav-cta) {
    display: none;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 3.65rem);
    line-height: 0.96;
  }

  .hero {
    gap: 1.35rem;
    padding: 1.45rem 0 2rem;
  }

  .eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .hero-text {
    margin-top: 0.85rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions,
  .cta-actions {
    gap: 0.7rem;
    margin-top: 1rem;
  }

  .store-badge-mac {
    width: min(100%, 142px);
  }

  .store-badge-ios {
    width: min(100%, 110px);
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-video-frame {
    border-radius: 20px;
  }

  .hero-video-play span {
    width: 4.1rem;
    height: 4.1rem;
  }

  .hero-video-play span::before {
    margin: 1.23rem 0 0 1.62rem;
    border-top-width: 0.82rem;
    border-bottom-width: 0.82rem;
    border-left-width: 1.14rem;
  }

  .story,
  .audience,
  .workflow,
  .transfer,
  .features,
  .screenshots,
  .cta,
  .faq,
  .contact-hero,
  .contact-details {
    padding: 2.25rem 0;
  }

  .contact-copy {
    padding-top: 1rem;
  }

  .legal-intro {
    padding-top: 1rem;
  }

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

  .contact-panel,
  .legal-card {
    padding: 1.15rem;
  }

  .site-footer {
    padding-bottom: 2rem;
  }

  .ios-shot-card {
    flex-basis: 13rem;
  }

  .video-lightbox {
    padding: 4.5rem 0.75rem 1rem;
  }

  .video-lightbox-player,
  .video-lightbox-video {
    max-height: calc(100vh - 5.5rem);
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 1.28rem;
  }

  .site-nav a {
    font-size: 0.84rem;
  }

  h1 {
    font-size: clamp(2.45rem, 13.5vw, 3.15rem);
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .store-badge-mac {
    width: 132px;
  }

  .store-badge-ios {
    width: 102px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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