@font-face {
  font-family: "ITC Avant Garde Gothic";
  src: url("../assets/fonts/ITCAvantGardeGothicCEDemi.woff2") format("woff2"),
       url("../assets/fonts/ITCAvantGardeGothicCEDemi.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --owl-navy: #332e44;
  --owl-muted: #64748B;
  --owl-purple: #B3A1F0;
  --owl-purple-light: #CABDF5;
  --owl-mint: #AAD8B3;
  --owl-white: #FFFFFF;
  --page-gutter: 56px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  color: var(--owl-navy);
}

/* Fixed background via pseudo-element — background-attachment:fixed is broken on iOS Safari */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("../assets/background.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

/* ── Header ── */

.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #f8f8f6;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}

.hero-logo {
  display: block;
  height: 42px;
  width: auto;
}

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--owl-navy);
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
  padding-bottom: 6px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s;
}

.main-nav a:hover,
.main-nav a.nav-active {
  border-bottom-color: #aad8b3;
}

.nav-icon {
  flex-shrink: 0;
  color: #4aaa72;
}

/* Download CTA pinned to the right edge of the nav */
.main-nav a.nav-download {
  margin-left: 8px;
  padding: 9px 18px;
  border-radius: 11px;
  border-bottom: none;
  background: var(--owl-navy);
  color: #fff;
  font-weight: 600;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.main-nav a.nav-download svg {
  color: #fff;
}

.main-nav a.nav-download:hover,
.main-nav a.nav-download.nav-active {
  border-bottom: none;
  transform: translateY(-2px);
  filter: brightness(1.12);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--owl-navy);
  line-height: 0;
}

.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-menu  { display: none; }
.nav-toggle.is-open .icon-close { display: block; }

/* ── Inline text links inside prose/content — brand purple, no underline ── */
.faq-body a,
.support-section p a,
.support-note a,
.sec-note a,
.sec-card p a,
.feat-setting-body p a,
.policy-intro p a,
.policy-section-body p a,
.subpage-sub a,
.why-promise p a,
.why-custom-card p a {
  color: #9b82e8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}

.faq-body a:hover,
.support-section p a:hover,
.support-note a:hover,
.sec-note a:hover,
.sec-card p a:hover,
.feat-setting-body p a:hover,
.policy-intro p a:hover,
.policy-section-body p a:hover,
.subpage-sub a:hover,
.why-promise p a:hover,
.why-custom-card p a:hover {
  color: #7e64d6;
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 104px 56px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1 1 460px;
  width: 100%;
  max-width: 540px;
  container-type: inline-size;
}

.hero-text h1 {
  font-family: "ITC Avant Garde Gothic", "Avant Garde", "Century Gothic", sans-serif;
  font-size: 52px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

.hero-text p.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--owl-navy);
  margin: 0 0 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.btn-store {
  flex: 0 0 auto;
  width: 155px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 13px;
  transition: transform 0.15s ease, filter 0.15s ease;
  color: var(--owl-navy);
}

.btn-store:hover {
  transform: translateY(-2px);
  filter: brightness(0.94);
}

.btn-store--apple {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(51, 46, 68, 0.12);
}

.btn-store--google {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(51, 46, 68, 0.12);
}

.btn-store-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.btn-store-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.btn-store-sub {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.7;
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}

.btn-store-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Large store button, used on the home and download pages */
.btn-store--lg {
  width: 232px;
  gap: 15px;
  padding: 14px 24px;
  border-radius: 20px;
}

.btn-store--lg .btn-store-icon {
  width: 33px;
  height: 33px;
}

.btn-store--lg .btn-store-sub {
  font-size: 15px;
  margin-bottom: 5px;
}

.btn-store--lg .btn-store-name {
  font-size: 22px;
}

.hero-actions .btn-store {
  flex: 1 1 calc((100% - 16px) / 2);
  width: calc((100% - 16px) / 2);
  justify-content: center;
}

/* "Coming soon" (disabled) store buttons */
.btn-store--soon {
  cursor: default;
  opacity: 0.6;
}

.btn-store--soon:hover {
  transform: none;
  filter: none;
}

/* ── Features card ── */

.features-card {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(170, 216, 179, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4aaa72;
}

.feature-icon--purple {
  background: rgba(179, 161, 240, 0.22);
  color: #9b82e8;
}

.feature-item h3 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 3px;
  line-height: 1.3;
}

.feature-item p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--owl-muted);
  margin: 0;
}

/* ── Phone ── */

.hero-phone-wrap {
  flex: 1 1 360px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding-top: 12px;
}

.phone-blur-inner {
  position: relative;
  display: inline-block;
  line-height: 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 30px 60px -10px rgba(51, 46, 68, 0.35);
  overflow: hidden;
  max-width: 250px;
  width: 100%;
}

.phone-blur-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 0;
}

/* Slider track — animates horizontally */
.phone-slider-track {
  display: flex;
  position: relative;
  z-index: 1;
}

.phone-slider-track img {
  flex: 0 0 100%;
  width: 100%;
  display: block;
}

/* Secondary phone (tablet only, no slider) */
.phone-secondary img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

/* Second phone hidden only on narrow mobile */
.phone-second {
  display: inline-block;
}

/* XS inline phone slot — hidden everywhere except ≤500px */
.hero-phone-xs {
  display: none;
}

/* ── Responsive — intermediate (hide second phone, keep first full size) ── */

@media (max-width: 1290px) and (min-width: 901px) {
  .phone-second {
    display: none;
  }

  .phone-blur-inner {
    max-width: 250px;
    flex-shrink: 0;
  }
}

/* ── Responsive — tablet (stacked, two phones) ── */

@media (max-width: 900px) {
  :root {
    --page-gutter: 24px;
  }

  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 104px 24px 56px;
  }

  .hero-text {
    max-width: 560px;
  }

  .hero-text p.lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .feature-item {
    text-align: left;
  }

  .hero-phone-wrap {
    padding-top: 0;
  }

  .phone-blur-inner {
    max-width: 180px;
  }
}

@container (max-width: 479px) {
  .hero-actions {
    width: 100%;
    align-items: stretch;
  }

  .hero-actions .btn-store {
    flex: 1 1 100%;
    width: 100%;
  }
}

/* ── Responsive — mobile nav ── */

@media (max-width: 1120px) {
  .header-inner {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
  }

  /* Mobile dropdown nav */
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: var(--page-gutter);
    min-width: 210px;
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 6px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 8px 32px rgba(51, 46, 68, 0.12);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 15px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.06);
    color: var(--owl-navy);
  }

  .main-nav a:hover {
    border-bottom-color: rgba(51, 51, 51, 0.06);
  }

  .main-nav a.nav-active {
    background: rgba(255, 255, 255, 0.75);
    font-weight: 600;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a:last-child:hover {
    border-bottom-color: transparent;
  }

  /* Download CTA as a centered button inside the mobile dropdown */
  .main-nav a.nav-download {
    margin: 8px 12px 4px;
    justify-content: center;
    background: var(--owl-navy);
    color: #fff;
    border-bottom: none;
  }

  .main-nav a.nav-download:hover,
  .main-nav a.nav-download.nav-active {
    background: var(--owl-navy);
    color: #fff;
    border-bottom: none;
    transform: none;
  }

  .nav-icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 420px) {
  .btn-store--lg {
    width: min(232px, 100%);
    gap: 12px;
    padding: 13px 20px;
  }

  .btn-store--lg .btn-store-sub {
    font-size: 13px;
  }

  .btn-store--lg .btn-store-name {
    font-size: 20px;
  }
}

/* ── What's new banner ── */

.whatsnew-section {
  position: relative;
  z-index: 2;
  padding: 0 0 8px;
}

.whatsnew-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

/* The banner takes over the hero→bento overlap, so the bento no longer pulls up */
.whatsnew-section + .bento-section {
  margin-top: 24px;
}

.whatsnew-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 26px 34px;
  border-radius: 24px;
  background: #1c1828;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(51, 46, 68, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsnew-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(51, 46, 68, 0.28);
}

.whatsnew-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(170, 216, 179, 0.16);
  color: var(--owl-mint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsnew-text {
  flex: 1 1 auto;
  min-width: 0;
}

.whatsnew-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--owl-mint);
  margin-bottom: 9px;
}

.whatsnew-badge-date {
  color: rgba(255, 255, 255, 0.5);
}

.whatsnew-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--owl-mint);
  animation: whatsnew-pulse 2s infinite;
}

@keyframes whatsnew-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(170, 216, 179, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(170, 216, 179, 0); }
  100% { box-shadow: 0 0 0 0 rgba(170, 216, 179, 0); }
}

.whatsnew-title {
  font-family: "ITC Avant Garde Gothic", "Avant Garde", "Century Gothic", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 8px;
}

.whatsnew-body {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 640px;
}

.whatsnew-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 13px;
  background: var(--owl-mint);
  color: var(--owl-navy);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: filter 0.15s ease;
}

.whatsnew-card:hover .whatsnew-cta {
  filter: brightness(1.06);
}

.whatsnew-cta svg {
  transition: transform 0.2s ease;
}

.whatsnew-card:hover .whatsnew-cta svg {
  transform: translateX(3px);
}

@media (max-width: 760px) {
  .whatsnew-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
  }

  .whatsnew-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .whatsnew-inner {
    padding: 0 20px;
  }

  .whatsnew-title {
    font-size: 21px;
  }
}

/* ── Bento section ── */

.bento-section {
  padding: 0 0 72px;
  margin-top: -32px;
  position: relative;
  z-index: 1;
}

.bento-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  border-radius: 24px;
  padding: 36px 36px 32px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(51, 46, 68, 0.12);
}

/* Wide dark card spans 2 columns */
.bento-wide {
  grid-column: span 2;
}

/* ── Card variants ── */

.bento-dark {
  /* Whiter, more opaque glass than the sibling cards so the promise stands apart
     from the "new feature" announcements — same blur underneath. */
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--owl-navy);
}

.bento-mint {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--owl-navy);
}

.bento-purple {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--owl-navy);
}

.bento-light {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--owl-navy);
}

/* ── Typography inside cards ── */

.bento-overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.45;
  margin: 0 0 20px;
}

.bento-headline {
  font-family: "ITC Avant Garde Gothic", "Avant Garde", "Century Gothic", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.bento-body {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.7;
  margin: 0;
  max-width: 480px;
}

.bento-stat {
  display: block;
  font-family: "ITC Avant Garde Gothic", "Avant Garde", "Century Gothic", sans-serif;
  font-size: 66px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  /* Same colour as the rest of the card text (inherits --owl-navy) */
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(74, 170, 114, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a8f56;
  margin-bottom: 18px;
}

.bento-icon--purple {
  background: rgba(155, 130, 232, 0.15);
  color: #7c62d6;
}

.bento-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  padding-bottom: 12px;
  white-space: nowrap;
  /* Faint divider running the full content width (as wide as the text below) */
  border-bottom: 1px solid rgba(51, 46, 68, 0.1);
}

.bento-card p {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.7;
  margin: 0;
}

@media (max-width: 900px) {
  .bento-section {
    margin-top: 0;
  }

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

  .bento-headline {
    font-size: 32px;
  }

  .bento-stat {
    font-size: 56px;
  }
}

@media (max-width: 600px) {
  .bento-section {
    padding: 56px 0;
  }

  .bento-inner {
    padding: 0 20px;
  }

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

  .bento-wide {
    grid-column: span 1;
  }

  .bento-card {
    padding: 28px 24px;
  }
}

/* ── Footer ── */

.site-footer {
  background: #1c1828;
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: block;
  height: 36px;
  width: auto;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-nav h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 20px;
}

.footer-nav-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
}

.footer-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.15s;
}

.footer-nav a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
  flex-shrink: 0;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-stores {
  display: flex;
  gap: 10px;
}

.footer-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.15s;
}

.footer-store-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.footer-store-btn svg {
  flex-shrink: 0;
}

.footer-store-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-store-sub {
  font-size: 9px;
  font-weight: 500;
  opacity: 0.6;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.footer-store-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-store-btn--soon {
  cursor: default;
  opacity: 0.55;
}

.footer-store-btn--soon:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 36px;
    gap: 36px;
  }

  .footer-bottom {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ── Responsive — mobile (single phone) ── */

@media (max-width: 500px) {
  .phone-second {
    display: none;
  }

  .hero-phone-wrap {
    display: none;
  }

  .hero-phone-xs {
    display: flex;
    justify-content: center;
    margin: 24px 0 28px;
  }

  .hero-phone-xs-wrap {
    max-width: 210px;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 48px -8px rgba(51, 46, 68, 0.3);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
  }

  .hero-phone-xs-wrap img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
  }

  .phone-blur-inner {
    max-width: 230px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p.lead {
    font-size: 16px;
  }

  .hero-actions {
    justify-content: center;
  }

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