:root {
  --brand: #ff7e61;
  --ink: #1a1b23;
  --body: #46464d;
  --paper: #faf8f8;
  --font-display: "Nunito", sans-serif;
  --font-body: "Inter", sans-serif;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  color: inherit;
  font: inherit;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbf9f9 0%, #f9f7f7 100%);
}

.hero__circles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 920px;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.hero__mobile-ellipse {
  display: none;
}

.hero__fade {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 110px;
  pointer-events: none;
}

.header {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 64px), var(--container));
  height: 156px;
  margin: 0 auto;
}

.brand {
  display: block;
  justify-self: start;
  line-height: 0;
}

.brand > .brand__full {
  width: 138px;
  height: 48px;
  shape-rendering: geometricPrecision;
}

.mobile-brand {
  display: flex;
  width: 138px;
  height: 48px;
  align-items: center;
  gap: 20px;
}

.mobile-brand__icon {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.mobile-brand__word {
  display: block;
  width: 70px;
  height: 48px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 73px;
}

.nav a {
  position: relative;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.language {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.language img {
  width: 24px;
  height: 24px;
}

.menu {
  display: none;
}

.mobile-menu {
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), var(--container));
  height: 744px;
  margin: 0 auto;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 84px;
}

.hero__copy h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(54px, 4.45vw, 68px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.005em;
}

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

.hero__copy p {
  margin: 35px 0 34px;
  color: var(--body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: -0.015em;
}

.store-link {
  display: block;
  width: 248px;
  line-height: 0;
  border-radius: 12px;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-link:hover,
.store-link:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.store-link img {
  display: block;
  width: 248px;
  height: 83px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 31px;
}

.social-proof img {
  width: 126px;
  height: 42px;
}

.social-proof span {
  color: var(--body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.72;
}

.hero__visual {
  position: absolute;
  z-index: 1;
  top: -30px;
  left: 530px;
  width: 760px;
  pointer-events: none;
}

.hero__visual-desktop {
  display: block;
  width: 100%;
  height: auto;
}

.hero__visual-mobile {
  display: none;
}

@media (max-width: 1180px) {
  .nav {
    gap: 42px;
  }

  .hero__visual {
    left: 42%;
    width: 76vw;
  }

  .hero__copy h1 {
    font-size: 56px;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 900px;
  }

  .hero__circles {
    display: none;
  }

  .hero__mobile-ellipse {
    position: absolute;
    z-index: 1;
    right: 50%;
    bottom: 40px;
    display: block;
    width: min(calc(100vw - 32px), 382px);
    height: 430px;
    object-fit: fill;
    pointer-events: none;
    transform: translateX(50%);
  }

  .header {
    z-index: 30;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 40px);
    height: 104px;
  }

  .brand > .brand__full,
  .footer__brand > .brand__full {
    display: none;
  }

  .mobile-brand {
    display: flex;
    width: 110px;
    height: 38px;
    align-items: center;
    gap: 16px;
  }

  .mobile-brand__icon {
    display: block;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .mobile-brand__word {
    display: block;
    width: 56px;
    height: 38px;
  }

  .nav,
  .language {
    display: none;
  }

  .menu {
    position: relative;
    z-index: 32;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 13px 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transform-origin: center;
    transition: transform 420ms var(--ease-apple), opacity 180ms ease;
  }

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

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

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

  .mobile-menu {
    position: fixed;
    z-index: 20;
    inset: 0;
    display: block;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 460ms;
  }

  .mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(24, 25, 31, 0.22);
    opacity: 0;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: opacity 360ms ease;
  }

  .mobile-menu.is-open .mobile-menu__backdrop {
    opacity: 1;
  }

  .mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding: 94px max(24px, env(safe-area-inset-right)) 28px max(24px, env(safe-area-inset-left));
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 0 0 34px 34px;
    background: rgba(255, 252, 251, 0.9);
    box-shadow: 0 24px 70px rgba(26, 27, 35, 0.18);
    opacity: 0;
    transform: translateY(-18px) scale(0.975);
    transform-origin: center top;
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    backdrop-filter: blur(28px) saturate(160%);
    transition: opacity 280ms ease, transform 460ms var(--ease-apple);
  }

  .mobile-menu.is-open .mobile-menu__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .mobile-menu__label {
    margin: 0 0 16px;
    color: var(--brand);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-menu__panel > a:not(.mobile-menu__download) {
    display: flex;
    min-height: 64px;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(49, 50, 58, 0.1);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
  }

  .mobile-menu__panel > a:not(.mobile-menu__download) span {
    width: 20px;
    color: #99979b;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
  }

  .mobile-menu__download {
    display: grid;
    height: 54px;
    margin-top: 24px;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(180deg, #ff927a 0%, #ff7051 100%);
    box-shadow: 0 9px 22px rgba(255, 126, 97, 0.28);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero__inner {
    width: calc(100% - 40px);
    height: auto;
  }

  .hero__copy {
    padding-top: 8px;
    text-align: center;
  }

  .hero__copy h1 {
    font-size: clamp(36px, 9.45vw, 44px);
    line-height: 1.16;
    letter-spacing: 0;
  }

  .hero__copy p {
    margin: 24px 0 20px;
    font-size: 16px;
    line-height: 1.6;
  }

  .store-link {
    margin: 0 auto;
  }

  .social-proof {
    display: none;
  }

  .hero__visual {
    position: relative;
    top: auto;
    left: 50%;
    width: 100vw;
    height: 498px;
    margin-top: 19px;
    transform: translateX(-50%);
  }

  .hero__visual-desktop {
    display: none;
  }

  .hero__visual-mobile {
    position: relative;
    display: block;
    width: 100%;
    height: 498px;
  }

  .mobile-phone,
  .mobile-pet {
    position: absolute;
    display: block;
    height: auto;
  }

  .mobile-phone {
    z-index: 2;
    top: 0;
    left: 50%;
    width: 208px;
    height: auto;
    transform: translateX(-50%);
  }

  .mobile-pet--cat {
    z-index: 3;
    top: -4px;
    left: 0;
    width: 120px;
  }

  .mobile-pet--dog {
    z-index: 3;
    top: 118px;
    right: 0;
    width: 154px;
  }
}

/* Motion */
:root {
  --ease-apple: cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 700ms var(--ease-apple),
    transform 850ms var(--ease-apple);
  will-change: opacity, transform;
}

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

.reveal-stagger > * {
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
}

.feature-card.reveal {
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
}

@media (hover: hover) and (pointer: fine) {
  .feature-card {
    transition:
      transform 420ms var(--ease-apple),
      box-shadow 420ms var(--ease-apple);
  }

  .feature-card:hover {
    z-index: 2;
    transform: translateY(-8px) scale(1.012);
    box-shadow: 0 18px 38px rgba(26, 27, 35, 0.11);
  }

  .feature-card img {
    transition: transform 520ms var(--ease-apple);
  }

  .feature-card:hover img {
    transform: translateY(-3px) rotate(-3deg) scale(1.07);
  }

  .about-card,
  .premium-card {
    transition:
      transform 520ms var(--ease-apple),
      box-shadow 520ms var(--ease-apple);
  }

  .about-card:hover,
  .premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(26, 27, 35, 0.09);
  }

  .about-point {
    transition: transform 380ms var(--ease-apple);
  }

  .about-point:hover {
    transform: translateY(-4px);
  }

  .about-point img {
    transition: transform 480ms var(--ease-apple);
  }

  .about-point:hover img {
    transform: rotate(4deg) scale(1.06);
  }

  .premium-phone {
    transition: transform 700ms var(--ease-apple);
  }

  .premium-card:hover .premium-phone {
    transform: translateY(-9px);
  }

  .footer__socials a {
    transition: transform 320ms var(--ease-apple), opacity 320ms ease;
  }

  .footer__socials a:hover {
    opacity: 0.72;
    transform: translateY(-3px) scale(1.08);
  }
}

@keyframes hero-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

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

@media (min-width: 861px) {
  .hero__visual-desktop {
    animation: hero-breathe 6s var(--ease-apple) infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .hero__visual-desktop {
    animation: none;
  }

  .final-cta__icon {
    animation: none;
  }
}

/* App Store pre-launch badge */
.store-coming-asset,
.final-cta__store.store-coming-asset {
  display: block;
  width: 266px;
  height: 82px;
  border: 0;
  border-radius: 12px;
  object-fit: contain;
  cursor: default;
}

.store-coming,
.final-cta__store.store-coming {
  display: inline-flex;
  width: 248px;
  height: 83px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 18px;
  border: 2px solid #2d2d2f;
  border-radius: 12px;
  color: #fff;
  background: #050505;
  line-height: 1;
  cursor: default;
  user-select: none;
}

.store-coming:hover,
.store-coming:focus-visible {
  filter: none;
  transform: none;
}

.store-coming__icon {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  border-radius: 10px;
}

.store-coming > span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-coming small {
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.store-coming strong {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .store-coming-asset,
  .final-cta__store.store-coming-asset {
    width: 180px;
    height: auto;
  }

  .store-coming,
  .final-cta__store.store-coming {
    width: 180px;
    height: 60px;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 10px;
  }

  .store-coming__icon {
    width: 31px;
    height: 31px;
    border-radius: 7px;
  }

  .store-coming small {
    margin-bottom: 3px;
    font-size: 9px;
  }

  .store-coming strong {
    font-size: 19px;
  }
}

/* Footer */
.footer {
  height: 198px;
  background: #fff;
}

.footer__inner {
  position: relative;
  width: min(calc(100% - 64px), 1240px);
  height: 100%;
  margin: 0 auto;
}

.footer__brand {
  position: absolute;
  top: 54px;
  left: 0;
  display: block;
  line-height: 0;
}

.footer__brand > .brand__full {
  width: 150px;
  height: auto;
  shape-rendering: geometricPrecision;
}

.footer__nav {
  position: absolute;
  top: 92px;
  left: 402px;
  display: flex;
  gap: 58px;
}

.footer a {
  text-decoration: none;
}

.footer__nav a,
.footer__copyright,
.footer__credit {
  color: #31323a;
  font-size: 13px;
  font-weight: 400;
}

.footer__socials {
  position: absolute;
  top: 67px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer__socials a {
  display: block;
  width: 26px;
  height: 26px;
  color: var(--ink);
  line-height: 0;
}

.footer__socials img,
.footer__socials svg {
  width: 26px;
  height: 26px;
}

.footer__copyright,
.footer__credit {
  position: absolute;
  top: 121px;
  margin: 0;
}

.footer__copyright {
  left: 0;
}

.footer__credit {
  right: 0;
}

@media (max-width: 860px) {
  .footer {
    height: 230px;
  }

  .footer__inner {
    width: calc(100% - 40px);
  }

  .footer__brand {
    top: 40px;
  }

  .footer__socials {
    top: 41px;
    right: 0;
    gap: 10px;
  }

  .footer__socials a,
  .footer__socials img,
  .footer__socials svg {
    width: 20px;
    height: 20px;
  }

  .footer__nav {
    top: 75px;
    right: 0;
    left: auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 13px;
  }

  .footer__nav a,
  .footer__copyright,
  .footer__credit {
    font-size: 11px;
  }

  .footer__copyright,
  .footer__credit {
    top: auto;
    bottom: 12px;
  }

  .footer__copyright {
    left: 0;
  }

  .footer__credit {
    right: 0;
  }
}

@media (max-width: 480px) {
  .hero__circles {
    display: none;
  }

  .hero__copy {
    padding-top: 8px;
  }

  .hero__copy h1 {
    font-size: 36px;
  }

  .hero__copy p {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
  }

  .store-link,
  .store-link img {
    width: 180px;
    height: auto;
  }

  .hero__visual {
    margin-top: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Body */
.page-body {
  position: relative;
  padding: 78px 0 54px;
  overflow: hidden;
  background: #faf8f8;
}

.features-section,
.about-card,
.premium-card,
.final-cta {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 64px), 1240px);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.premium-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
}

.section-heading h2 {
  font-size: 40px;
  line-height: 1.2;
}

.section-heading h2 span,
.about-copy h2 span,
.premium-copy h2 span {
  color: var(--brand);
}

.section-heading > p {
  margin: 22px 0 50px;
  color: var(--body);
  font-size: 20px;
  line-height: 1.5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  min-height: 130px;
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 2px 3px rgba(26, 27, 35, 0.08);
}

.feature-card img,
.about-point img {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
}

.feature-card div {
  padding: 5px 0 0 30px;
}

.feature-card h3 {
  margin: 0 0 9px;
  font-size: 20px;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: #74747a;
  font-size: 13px;
  line-height: 1.45;
}

.about-card,
.premium-card {
  position: relative;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 2px 3px rgba(26, 27, 35, 0.08);
}

.about-card {
  width: min(calc(100% - 56px), 1248px);
  height: 574px;
  margin-top: 73px;
  padding: 89px 138px;
}

.about-copy {
  position: relative;
  z-index: 2;
  width: 470px;
}

.eyebrow {
  display: block;
  margin-bottom: 25px;
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
}

.about-copy h2,
.premium-copy h2 {
  font-size: 40px;
  line-height: 1.18;
}

.about-copy > p,
.premium-copy > p {
  color: var(--body);
  font-size: 19px;
  line-height: 1.55;
}

.about-copy > p {
  margin: 26px 0 0;
  max-width: 510px;
}

.about-pets {
  position: absolute;
  top: 44px;
  right: 0;
  width: 45.75%;
  max-width: 571px;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.about-card picture {
  display: contents;
}

.about-points {
  position: absolute;
  bottom: 84px;
  left: 138px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 42px;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--body);
  font-size: 18px;
  white-space: nowrap;
}

.premium-card {
  width: min(calc(100% - 56px), 1248px);
  height: 556px;
  margin-top: 72px;
  overflow: hidden;
  background: #fff url("assets/body-circles.svg?v=20260714-2") center / 100% 100% no-repeat;
}

.premium-card::after {
  display: none;
}

.premium-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: 661px;
  height: 100%;
  padding: 0 0 0 161px;
  flex-direction: column;
  justify-content: center;
}

.premium-copy > p {
  width: 500px;
  margin: 26px 0 24px;
}

.premium-copy ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-copy li {
  position: relative;
  padding-left: 52px;
  font-size: 18px;
  font-weight: 500;
}

.premium-copy li::before {
  position: absolute;
  top: -2px;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: #fff;
  background: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.premium-copy li::before {
  content: "";
  background: url("assets/premium-check.svg") center / contain no-repeat;
  font-size: 0;
}

.premium-phone {
  position: absolute;
  z-index: 2;
  top: 116px;
  right: 160px;
  width: 335px;
  height: auto;
}

.final-cta {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 50px;
  margin-top: 85px;
}

.final-cta__icon {
  width: 150px;
  height: 150px;
  animation: icon-float 5s var(--ease-apple) infinite;
  shape-rendering: geometricPrecision;
}

.final-cta h2 {
  font-size: 40px;
  line-height: 1.18;
}

.final-cta p {
  margin: 23px 0 0;
  color: var(--body);
  font-size: 18px;
  line-height: 1.5;
}

.final-cta__store {
  display: block;
  margin-right: 0;
  line-height: 0;
  border-radius: 12px;
  transition: transform 180ms ease, filter 180ms ease;
}

.final-cta__store:hover,
.final-cta__store:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.final-cta__store img {
  width: 248px;
  height: 83px;
}

@media (max-width: 860px) {
  .page-body {
    padding: 27px 0 38px;
  }

  .features-section,
  .about-card,
  .premium-card,
  .final-cta {
    width: calc(100% - 26px);
  }

  .section-heading h2 {
    max-width: 320px;
    margin: 0 auto;
    font-size: 30px;
    line-height: 1.12;
  }

  .section-heading h2 span {
    display: inline;
  }

  .section-heading > p {
    max-width: 300px;
    margin: 24px auto 24px;
    font-size: 14px;
    line-height: 1.45;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    min-height: 75px;
    padding: 14px 20px;
    border-radius: 22px;
  }

  .feature-card img {
    width: 50px;
    height: 50px;
  }

  .feature-card div {
    padding: 2px 0 0 21px;
  }

  .feature-card h3 {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .feature-card p {
    font-size: 11px;
    line-height: 1.4;
  }

  .about-card {
    display: flex;
    height: auto;
    margin-top: 65px;
    padding: 0;
    flex-direction: column;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }

  .about-copy {
    width: auto;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .about-copy h2,
  .premium-copy h2,
  .final-cta h2 {
    font-size: 29px;
    line-height: 1.15;
  }

  .about-copy > p,
  .premium-copy > p {
    font-size: 13px;
    line-height: 1.5;
  }

  .about-copy > p {
    max-width: 330px;
    margin: 24px auto 0;
  }

  .about-pets {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% + 26px);
    height: auto;
    margin: 28px -13px 0;
  }

  .about-points {
    position: relative;
    bottom: auto;
    left: auto;
    display: flex;
    margin-top: 23px;
    padding: 17px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 2px 3px rgba(26, 27, 35, 0.08);
  }

  .about-point {
    gap: 17px;
    font-size: 13px;
  }

  .about-point img {
    width: 50px;
    height: 50px;
  }

  .about-point.routine { order: 1; }
  .about-point.health { order: 2; }
  .about-point.parents { order: 3; }

  .premium-card {
    height: 640px;
    margin-top: 20px;
    border-radius: 22px;
    background: #fff;
  }

  .premium-card::after {
    display: none;
  }

  .premium-copy {
    display: block;
    width: auto;
    height: auto;
    padding: 38px 0 0;
    text-align: center;
  }

  .premium-copy .eyebrow {
    margin-bottom: 23px;
  }

  .premium-copy h2 {
    margin: 0 -8px;
  }

  .premium-copy > p {
    width: auto;
    max-width: 330px;
    margin: 23px auto 20px;
  }

  .premium-copy ul {
    gap: 16px;
    padding: 14px 20px 0;
    text-align: left;
  }

  .premium-copy li {
    padding-left: 38px;
    font-size: 13px;
  }

  .premium-copy li::before {
    top: -3px;
    width: 22px;
    height: 22px;
  }

  .premium-phone {
    top: 365px;
    right: 50%;
    width: 250px;
    transform: translateX(50%);
  }

  .final-cta {
    display: flex;
    margin-top: 70px;
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  .final-cta__copy {
    display: contents;
  }

  .final-cta h2 {
    order: 1;
  }

  .final-cta__icon {
    width: 140px;
    height: 140px;
    margin-top: 31px;
    order: 2;
  }

  .final-cta__store {
    margin-top: 18px;
    order: 3;
  }

  .final-cta__store img {
    width: 180px;
    height: auto;
  }

  .final-cta p {
    max-width: 330px;
    margin: 24px auto 0;
    order: 4;
    font-size: 13px;
    line-height: 1.5;
  }

  .final-cta p br {
    display: none;
  }

  .store-coming,
  .final-cta__store.store-coming {
    width: 180px;
    height: 60px;
  }
}
