@font-face {
  font-family: Nunito;
  src: url("/assets/nunito-sans.woff2") format("woff2");
  font-weight: 200 1000;
  font-display: swap;
}
@font-face {
  font-family: DM;
  src: url("/assets/dm-sans.woff2") format("woff2");
  font-weight: 100 1000;
  font-display: swap;
}
:root {
  /* Matches the iOS app's SurfaceCream, InkNavy, SecondaryInk and BrandCoral. */
  --cream: #fff8f0;
  --ink: #172033;
  --muted: #4f586b;
  --coral: #ff6b5e;
  --coral-dark: #b94435;
  --peach: #ffe1d3;
  --soft-peach: #fff0e5;
  --line: #edddd1;
  --display:
    Nunito, "Hiragino Sans", "Yu Gothic", "Apple SD Gothic Neo", sans-serif;
  --body: DM, "Hiragino Sans", "Yu Gothic", "Apple SD Gothic Neo", sans-serif;
  --radius: 28px;
  --max: 1160px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
summary {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid var(--coral-dark);
  outline-offset: 5px;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 850;
}
h3 {
  font-size: 24px;
  font-weight: 800;
}
p {
  color: var(--muted);
}
.container {
  width: min(var(--max), calc(100% - 80px));
  margin-inline: auto;
}
.icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}
.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  line-height: 1.6;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 18px;
}
.section-pad {
  padding-block: 92px;
}
.section-heading {
  max-width: 650px;
  margin-bottom: 48px;
}
.section-heading > p:last-child:not(.eyebrow) {
  margin-top: 20px;
  max-width: 490px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.text-link:hover {
  color: var(--coral-dark);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 15px 24px;
  border-radius: 100px;
  background: var(--coral);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 650;
  border: 1px solid transparent;
  transition:
    transform 0.2s,
    background 0.2s;
  max-width: 100%;
  text-align: center;
}
.button:hover {
  background: #ff8277;
  transform: translateY(-2px);
}
.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 12px;
}
.button-small .icon {
  width: 18px;
  height: 18px;
}
.button-outline {
  border-color: var(--coral-dark);
  background: transparent;
  color: var(--ink);
}
.button-outline:hover {
  background: var(--coral-dark);
  color: white;
}
.button-light {
  background: var(--cream);
  color: var(--ink);
}
.button-light:hover {
  background: white;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--ink);
  color: white;
  padding: 15px 24px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 32, 51, 0.09);
}
.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.15;
}
.brand img {
  flex-shrink: 0;
  border-radius: 11px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.brand-name {
  display: block;
  max-width: 17ch;
  text-wrap: balance;
}
.desktop-nav {
  display: flex;
  gap: 25px;
  align-items: center;
}
.desktop-nav > a {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding-block: 12px;
}
.desktop-nav > a:hover {
  color: var(--coral-dark);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.language-picker {
  position: relative;
}
.language-picker > summary {
  display: flex;
  gap: 6px;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  min-height: 44px;
}
.language-picker > summary::-webkit-details-marker {
  display: none;
}
.language-picker > summary > .icon:first-child {
  width: 19px;
  height: 19px;
}
.language-picker > summary > .icon:last-child {
  width: 13px;
  height: 13px;
}
.popover {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px !important;
  min-width: 210px;
  box-shadow: 0 12px 40px #17203318;
  display: grid !important;
  gap: 0 !important;
}
.popover > a {
  padding: 10px 12px;
  border-radius: 8px;
}
.popover > a:hover {
  background: var(--cream);
}
.mobile-menu {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 52px;
  padding-top: 55px;
  padding-bottom: 64px;
  min-height: 715px;
}
.hero-copy {
  padding-bottom: 12px;
  position: relative;
  z-index: 2;
}
.hero h1 > .eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.hero-heading {
  display: block;
  font-size: clamp(49px, 5.25vw, 73px);
  font-weight: 900;
  line-height: 1.055;
  letter-spacing: -0.055em;
}
.hero-heading em {
  font-style: normal;
  color: var(--coral-dark);
}
.hero-description {
  font-size: 17px;
  line-height: 1.8;
  max-width: 470px;
  margin-top: 28px;
}
.hero-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 11px;
  line-height: 1.6;
  max-width: 360px;
  margin-top: 25px;
}
.hero-note > .icon {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  color: var(--coral-dark);
}
.hero-art {
  position: relative;
  width: 100%;
  height: 550px;
  isolation: isolate;
}
.photo-frame {
  position: absolute;
  inset: 0 0 0 77px;
  border-radius: 160px 160px 85px 85px;
  overflow: hidden;
  background: var(--peach);
  transform: rotate(3deg);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}
.phone {
  width: 242px;
  position: relative;
  flex-shrink: 0;
  border: 7px solid #283043;
  border-radius: 35px;
  background: #fff;
  overflow: hidden;
  box-shadow:
    0 5px 0 #a5a9b3,
    0 20px 28px #17203320;
  line-height: 0;
}
.phone img {
  width: 100%;
  height: auto;
  display: block;
}
.phone-island {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 29%;
  height: 16px;
  background: #141925;
  border-radius: 15px;
  pointer-events: none;
}
.hero-phone {
  width: 190px;
  position: absolute;
  left: 0;
  bottom: -4px;
  transform: rotate(-8deg);
  border-width: 6px;
  border-radius: 29px;
  box-shadow:
    0 3px 0 #a5a9b3,
    9px 18px 40px #17203338;
  z-index: 3;
}
.hero-phone .phone-island {
  height: 12px;
  top: 6px;
}
.bubble {
  position: absolute;
  z-index: 5;
  border-radius: 20px 20px 20px 4px;
  background: #fff;
  padding: 13px 21px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 850;
  line-height: 1.2;
  box-shadow: 0 5px 18px #17203310;
}
.bubble-hello {
  left: 30px;
  top: 30px;
  transform: rotate(-8deg);
}
.bubble-woof {
  right: -9px;
  top: 260px;
  transform: rotate(9deg);
  color: var(--coral-dark);
  border-radius: 22px 22px 4px 22px;
}
.art-paw {
  position: absolute;
  right: 0;
  bottom: 4px;
  z-index: 4;
  background: var(--coral);
  width: 77px;
  height: 77px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: rotate(16deg);
  border: 6px solid var(--cream);
}
.art-paw > .icon {
  width: 42px;
  height: 42px;
}
.art-spark {
  position: absolute;
  left: 27px;
  top: 160px;
  color: var(--coral-dark);
  font-size: 69px;
  line-height: 1;
  transform: rotate(12deg);
}
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 27px 20px;
  margin-bottom: 34px;
}
.trust-strip > span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 650;
}
.trust-strip .icon {
  color: var(--coral-dark);
  width: 21px;
  height: 21px;
}
.features {
  background: var(--soft-peach);
  color: var(--ink);
  position: relative;
}
.features .eyebrow {
  color: var(--coral-dark);
}
.features .section-heading > p:last-child {
  color: var(--muted);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.feature-1 {
  background: #ffe4de;
}
.feature-2 {
  background: var(--cream);
}
.feature-card-copy {
  padding: 28px 28px 22px;
  position: relative;
  z-index: 2;
}
.card-number {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 15px;
  color: var(--muted);
}
.feature-card h3 {
  margin-bottom: 13px;
  letter-spacing: -0.035em;
}
.feature-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}
.feature-screen {
  height: 375px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: auto;
  padding: 12px 15px 0;
}
.feature-screen .phone {
  width: 238px;
  box-shadow:
    0 4px 0 #a5a9b3,
    0 20px 28px #17203320;
  transform: rotate(-3deg);
  border-radius: 33px;
}
.feature-1 .phone {
  transform: rotate(3deg);
}
.feature-2 .phone {
  transform: rotate(-2deg);
}
.paid-note {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 710px;
  margin: 25px auto 0;
  text-align: center;
}
.how .section-heading {
  margin-bottom: 55px;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
}
.step-number {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  border: 1px solid #d6b8a5;
  background: #f5e5d5;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 750;
  margin-bottom: 24px;
}
.steps h3 {
  font-size: 22px;
  margin-bottom: 16px;
}
.steps p {
  font-size: 14px;
  line-height: 1.85;
}
.sound-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  border-radius: 36px;
  background: var(--soft-peach);
  overflow: hidden;
  min-height: 500px;
}
.sound-art {
  position: relative;
  height: 500px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 60px;
}
.sound-art:before {
  content: "";
  position: absolute;
  left: 5%;
  top: 45px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--peach);
}
.sound-art .phone {
  width: 240px;
  transform: rotate(-10deg);
}
.sound-wave {
  position: absolute;
  right: 6px;
  top: 200px;
  background: #fff2df;
  padding: 20px;
  border-radius: 25px;
  transform: rotate(10deg);
}
.sound-wave > .icon {
  width: 50px;
  height: 50px;
  color: #914430;
}
.sound-paw {
  position: absolute;
  left: 35px;
  bottom: 90px;
  color: var(--coral-dark);
  transform: rotate(-25deg);
}
.sound-paw > .icon {
  width: 67px;
  height: 67px;
}
.sound-copy {
  padding: 40px 45px 40px 0;
}
.sound-copy h2 {
  font-size: clamp(32px, 3.3vw, 44px);
}
.sound-copy > p:not(.eyebrow) {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.8;
}
.sound-copy > .text-link {
  margin-top: 18px;
}
.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}
.faq .section-heading {
  margin-bottom: 0;
}
.faq h2 {
  max-width: 360px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.faq-item > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 85px;
  padding: 21px 0;
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}
.faq-item > summary::-webkit-details-marker {
  display: none;
}
.faq-item[open] > summary > .icon {
  transform: rotate(45deg);
}
.faq-item > p {
  padding: 0 32px 24px 0;
  font-size: 14px;
  line-height: 1.85;
}
.faq-item p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.support {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 65px 1fr 290px;
  align-items: center;
  gap: 28px;
  padding: 45px 0 75px;
}
.support-icon {
  width: 62px;
  height: 62px;
  background: #f8e0d2;
  border-radius: 21px;
  display: grid;
  place-items: center;
}
.support-icon > .icon {
  width: 27px;
  height: 27px;
}
.support .eyebrow {
  font-size: 10px;
  margin-bottom: 10px;
}
.support h2 {
  font-size: 30px;
}
.support-copy > p:last-child {
  max-width: 530px;
  font-size: 13px;
  line-height: 1.8;
  margin-top: 14px;
}
.support-actions {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 9px;
}
.pending-contact {
  font-size: 12px;
}
.support-email {
  font-size: 12px;
  overflow-wrap: anywhere;
  text-decoration: underline;
}
.support-actions .text-link {
  font-size: 12px;
}
.download {
  background: var(--coral);
  overflow: hidden;
}
.download-inner {
  padding-block: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
}
.download h2 {
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.04;
  max-width: 650px;
}
.download-inner > div {
  position: relative;
  z-index: 1;
}
.download-inner > div:first-child {
  max-width: 650px;
}
.download-inner > div > p {
  color: var(--ink);
  margin-top: 20px;
  max-width: 440px;
  font-size: 14px;
}
.download-action {
  min-width: 245px;
  text-align: center;
  max-width: 380px;
}
.launch-label {
  background: var(--cream);
  color: var(--ink);
  padding: 18px 25px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 650;
  margin: 0 !important;
}
.requirement {
  font-size: 11px !important;
  text-align: center;
}
.download-paw {
  position: absolute;
  right: 250px;
  bottom: -45px;
  transform: rotate(-25deg);
  opacity: 0.13;
}
.download-paw > .icon {
  width: 220px;
  height: 220px;
}
.site-footer {
  padding: 48px 0 22px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  margin-bottom: 30px;
}
.footer-main p {
  font-size: 12px;
  margin-top: 15px;
}
.footer-nav {
  display: flex;
  gap: 25px;
  font-size: 12px;
  flex-wrap: wrap;
}
.footer-nav > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-nav > a:hover {
  text-decoration: underline;
}
.language-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
  font-size: 11px;
  padding-block: 20px;
}
.language-links > a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.language-links > [aria-current] {
  color: var(--coral-dark);
  font-weight: 800;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 20px;
  flex-wrap: wrap;
}
.legal-page {
  max-width: 850px;
  min-height: 65vh;
  padding-block: 55px 100px;
}
.breadcrumbs {
  display: flex;
  gap: 12px;
  font-size: 12px;
  margin-bottom: 45px;
}
.breadcrumbs > a {
  text-decoration: underline;
}
.legal-page h1 {
  font-size: clamp(40px, 6vw, 65px);
  margin-bottom: 25px;
}
.draft-notice {
  font-size: 13px;
  padding: 15px 20px;
  border: 1px dashed #ae7950;
  border-radius: 12px;
  background: #fff0df;
  margin-bottom: 35px;
  color: #6a4b2a;
}
.legal-content h2 {
  font-size: 27px;
  margin: 30px 0 18px;
}
.legal-content h3 {
  font-size: 21px;
  margin: 25px 0 12px;
}
.legal-content p {
  margin-bottom: 18px;
}
.legal-content a,
.legal-next > a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-next {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-top: 45px;
  font-size: 14px;
}
.legal-date {
  font-size: 12px;
  margin-bottom: 35px;
}
.not-found {
  padding-block: 100px;
  min-height: 65vh;
}
.not-found h1 {
  font-size: clamp(42px, 7vw, 75px);
}
.not-found p:not(.eyebrow) {
  margin-block: 25px;
}
.not-found .button {
  margin-top: 15px;
}
:lang(ja) h1,
:lang(ja) h2,
:lang(ja) h3,
:lang(ko) h1,
:lang(ko) h2,
:lang(ko) h3 {
  letter-spacing: -0.025em;
  line-height: 1.4;
}
:lang(ja) .hero-heading,
:lang(ko) .hero-heading {
  font-size: clamp(42px, 4.3vw, 61px);
  line-height: 1.3;
}
:lang(ja) .eyebrow,
:lang(ko) .eyebrow {
  letter-spacing: 0.07em;
}
:lang(ko) h1,
:lang(ko) h2,
:lang(ko) h3,
:lang(ko) p {
  word-break: keep-all;
  overflow-wrap: break-word;
}
/* Small text on tinted panels needs stronger contrast than the hero accent. */
.card-number {
  color: var(--muted);
}
.sound-copy > .eyebrow {
  color: #9c392c;
}
.download-inner > div > p {
  color: var(--ink);
}
@media (min-width: 1600px) {
  .hero {
    padding-block: 75px;
    min-height: 780px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 56px);
  }
  .desktop-nav {
    gap: 16px;
  }
  .desktop-cta {
    display: none;
  }
  .hero {
    gap: 30px;
  }
  .hero-art {
    height: 520px;
  }
  .photo-frame {
    left: 60px;
  }
  .hero-heading {
    font-size: 60px;
  }
  .hero-phone {
    width: 175px;
  }
  .hero-buttons {
    gap: 15px;
  }
  .feature-card-copy {
    padding: 24px;
  }
  .feature-screen .phone {
    width: 220px;
  }
  .steps {
    gap: 32px;
  }
  .faq {
    gap: 55px;
  }
  .support {
    grid-template-columns: 1fr 260px;
  }
  .support-icon {
    display: none;
  }
  .sound-section {
    gap: 35px;
  }
  .sound-art:before {
    width: 330px;
    height: 330px;
  }
  .sound-wave {
    right: -10px;
  }
}
@media (max-width: 850px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu {
    display: block;
    position: relative;
  }
  .mobile-menu > summary {
    display: grid;
    place-items: center;
    list-style: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
  }
  .mobile-menu > summary::-webkit-details-marker {
    display: none;
  }
  .menu-lines {
    width: 16px;
    height: 9px;
    border-top: 1.5px solid;
    border-bottom: 1.5px solid;
  }
  .mobile-menu > nav {
    position: absolute;
    right: 0;
    top: calc(100% + 14px);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 12px;
    min-width: 230px;
    box-shadow: 0 12px 40px #17203318;
  }
  .mobile-menu > nav > a {
    display: block;
    padding: 12px;
    font-size: 14px;
  }
  .header-inner {
    min-height: 80px;
  }
  .hero {
    gap: 22px;
    min-height: 660px;
  }
  .hero-heading {
    font-size: 48px;
  }
  .hero-art {
    height: 475px;
  }
  .photo-frame {
    left: 35px;
  }
  .hero-phone {
    width: 155px;
    left: -5px;
  }
  .bubble {
    font-size: 18px;
    padding: 11px 16px;
  }
  .bubble-hello {
    left: -10px;
    top: 20px;
  }
  .bubble-woof {
    right: -8px;
    top: 220px;
  }
  .art-spark {
    left: 0;
    font-size: 53px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-buttons {
    display: grid;
    justify-items: start;
  }
  .hero-note {
    font-size: 10px;
  }
  .art-paw {
    width: 65px;
    height: 65px;
  }
  .art-paw > .icon {
    width: 33px;
    height: 33px;
  }
  .trust-strip {
    gap: 15px;
    padding-inline: 0;
  }
  .trust-strip > span {
    font-size: 11px;
    gap: 7px;
  }
  .feature-grid {
    gap: 15px;
  }
  .feature-card-copy {
    padding: 20px 18px;
  }
  .feature-card h3 {
    font-size: 21px;
  }
  .feature-card p {
    font-size: 12px;
  }
  .feature-screen {
    height: 295px;
    padding-inline: 5px;
  }
  .feature-screen .phone {
    width: 180px;
    border-width: 5px;
    border-radius: 27px;
  }
  .feature-screen .phone-island {
    height: 11px;
  }
  .sound-copy {
    padding-right: 25px;
  }
  .sound-copy h2 {
    font-size: 32px;
  }
  .sound-art .phone {
    width: 200px;
  }
  .sound-art:before {
    width: 280px;
    height: 280px;
    left: 0;
    top: 90px;
  }
  .sound-paw {
    left: 10px;
  }
  .sound-wave {
    padding: 15px;
    right: 0;
  }
  .sound-wave > .icon {
    width: 30px;
    height: 30px;
  }
  .sound-section {
    gap: 10px;
    min-height: 450px;
  }
  .sound-art {
    height: 450px;
  }
  .faq {
    gap: 35px;
  }
  .faq h2 {
    font-size: 36px;
  }
  .support {
    gap: 30px;
  }
  .download-inner {
    gap: 30px;
  }
  .download-action {
    min-width: 210px;
  }
  .footer-main {
    align-items: flex-start;
  }
  .footer-nav {
    max-width: 360px;
    gap: 5px 20px;
  }
}
@media (max-width: 650px) {
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 76px;
    gap: 15px;
  }
  .brand {
    font-size: 17px;
    gap: 8px;
  }
  .brand img {
    width: 33px;
    height: 33px;
    border-radius: 10px;
  }
  .header-actions {
    gap: 10px;
  }
  .language-picker > summary > span {
    display: none;
  }
  .language-picker > summary > .icon:first-child {
    width: 17px;
  }
  .popover {
    right: -54px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 37px;
    padding-bottom: 42px;
    min-height: 0;
  }
  .hero-copy {
    padding: 0;
    width: 100%;
  }
  .hero h1 > .eyebrow {
    font-size: 10px;
    margin-bottom: 18px;
    letter-spacing: 0.11em;
  }
  .hero-heading {
    font-size: clamp(44px, 11vw, 63px);
    line-height: 1.07;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.75;
    margin-top: 23px;
    max-width: 450px;
  }
  .hero-buttons {
    display: flex;
    gap: 10px 20px;
    margin-top: 24px;
  }
  .hero-buttons > .button {
    min-height: 52px;
    font-size: 13px;
    padding: 14px 20px;
  }
  .hero-buttons > .text-link {
    font-size: 12px;
  }
  .hero-note {
    margin-top: 19px;
    font-size: 11px;
    max-width: 380px;
  }
  .hero-art {
    height: 490px;
    width: min(100%, 430px);
    margin-top: 8px;
  }
  .photo-frame {
    inset: 0 4px 15px 69px;
    border-radius: 125px 125px 66px 66px;
  }
  .hero-phone {
    width: 169px;
    bottom: 4px;
    left: 7px;
    border-radius: 27px;
  }
  .bubble-hello {
    left: 29px;
    top: 15px;
    font-size: 21px;
  }
  .bubble-woof {
    right: 0;
    top: 245px;
    font-size: 21px;
  }
  .art-spark {
    left: 16px;
    top: 133px;
  }
  .art-paw {
    right: 3px;
    bottom: 8px;
    width: 66px;
    height: 66px;
  }
  .trust-strip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 23px;
    padding-block: 23px;
    margin-bottom: 23px;
  }
  .trust-strip > span {
    font-size: 11px;
  }
  .trust-strip > span:nth-child(2) {
    order: 3;
  }
  .trust-strip > .icon {
    width: 19px;
  }
  .section-pad {
    padding-block: 64px;
  }
  .section-heading {
    margin-bottom: 33px;
  }
  .section-heading .eyebrow {
    font-size: 10px;
    margin-bottom: 15px;
  }
  .section-heading h2 {
    font-size: 36px;
  }
  .section-heading > p:last-child:not(.eyebrow) {
    font-size: 14px;
    margin-top: 18px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    border-radius: 25px;
  }
  .feature-card-copy {
    padding: 26px 28px 18px;
  }
  .feature-card h3 {
    font-size: 27px;
  }
  .feature-card p {
    font-size: 14px;
    max-width: 360px;
  }
  .card-number {
    margin-bottom: 12px;
  }
  .feature-screen {
    height: 365px;
    padding-top: 12px;
  }
  .feature-screen .phone {
    width: 235px;
    border-width: 7px;
    border-radius: 34px;
  }
  .feature-screen .phone-island {
    height: 16px;
  }
  .paid-note {
    margin-top: 25px;
    font-size: 11px;
    line-height: 1.75;
    text-align: left;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .steps > li {
    position: relative;
    padding-left: 64px;
  }
  .step-number {
    position: absolute;
    left: 0;
    top: -2px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  .steps h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .steps p {
    font-size: 14px;
  }
  .how .section-heading {
    margin-bottom: 35px;
  }
  .sound-section {
    display: flex;
    flex-direction: column-reverse;
    border-radius: 28px;
    gap: 0;
    min-height: 0;
  }
  .sound-copy {
    padding: 35px 28px 0;
    width: 100%;
  }
  .sound-copy .eyebrow {
    font-size: 10px;
  }
  .sound-copy h2 {
    font-size: 33px;
  }
  .sound-copy > p:not(.eyebrow) {
    font-size: 14px;
    margin-top: 17px;
  }
  .sound-art {
    height: 345px;
    width: 100%;
    padding-top: 30px;
  }
  .sound-art .phone {
    width: 200px;
  }
  .sound-art:before {
    width: 290px;
    height: 290px;
    top: 40px;
    left: calc(50% - 145px);
  }
  .sound-wave {
    right: 25px;
    top: 145px;
  }
  .sound-paw {
    left: 25px;
    bottom: 55px;
  }
  .sound-paw > .icon {
    width: 55px;
    height: 55px;
  }
  .faq {
    display: block;
  }
  .faq .section-heading {
    margin-bottom: 29px;
  }
  .faq h2 {
    max-width: 100%;
  }
  .faq-item > summary {
    font-size: 17px;
    min-height: 80px;
    padding-block: 20px;
  }
  .faq-item > p {
    font-size: 14px;
    padding-right: 12px;
  }
  .support {
    display: block;
    padding: 35px 0 50px;
  }
  .support h2 {
    font-size: 29px;
  }
  .support-copy > p:last-child {
    font-size: 14px;
  }
  .support-actions {
    margin-top: 25px;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }
  .pending-contact {
    font-size: 12px;
  }
  .download-inner {
    display: block;
    padding-block: 43px;
  }
  .download h2 {
    font-size: 46px;
  }
  .download-inner > div > p {
    font-size: 14px;
    margin-top: 18px;
  }
  .download-action {
    margin-top: 28px;
    display: inline-flex;
    align-items: flex-start;
    flex-direction: column;
    max-width: 100%;
  }
  .launch-label {
    font-size: 13px !important;
    padding: 16px 23px;
  }
  .requirement {
    padding-left: 20px;
  }
  .download-paw {
    right: -25px;
    bottom: -35px;
  }
  .download-paw > .icon {
    width: 175px;
    height: 175px;
  }
  .site-footer {
    padding-top: 35px;
  }
  .footer-main {
    display: block;
    margin-bottom: 15px;
  }
  .footer-main p {
    margin-top: 13px;
  }
  .footer-nav {
    margin-top: 20px;
    gap: 0 22px;
    max-width: none;
  }
  .language-links {
    padding-block: 15px;
    gap: 0 18px;
  }
  .footer-bottom {
    gap: 10px;
    font-size: 10px;
    padding-top: 18px;
    flex-direction: column;
  }
  .legal-page {
    padding-top: 30px;
  }
  .legal-page h1 {
    font-size: 45px;
  }
  .legal-content h2 {
    font-size: 25px;
  }
  .legal-content p {
    font-size: 15px;
  }
  .breadcrumbs {
    margin-bottom: 35px;
  }
  :lang(ja) .hero-heading,
  :lang(ko) .hero-heading {
    font-size: clamp(37px, 10vw, 52px);
  }
  :lang(ja) .section-heading h2,
  :lang(ko) .section-heading h2 {
    font-size: 31px;
  }
  :lang(ja) .download h2,
  :lang(ko) .download h2 {
    font-size: 39px;
  }
}
@media (max-width: 370px) {
  .container {
    width: calc(100% - 32px);
  }
  .brand {
    font-size: 15px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .header-actions {
    gap: 6px;
  }
  .language-picker > summary > span {
    display: none;
  }
  .hero-heading {
    font-size: 43px;
  }
  .hero-art {
    height: 422px;
  }
  .photo-frame {
    left: 52px;
    right: 3px;
  }
  .hero-phone {
    width: 149px;
    left: 4px;
  }
  .bubble-hello {
    left: 15px;
    font-size: 18px;
  }
  .bubble-woof {
    top: 220px;
    font-size: 18px;
  }
  .art-spark {
    font-size: 45px;
    left: 7px;
  }
  .art-paw {
    width: 60px;
    height: 60px;
  }
  .feature-card-copy {
    padding: 24px;
  }
  .feature-screen {
    height: 335px;
  }
  .feature-screen .phone {
    width: 214px;
  }
  .section-heading h2 {
    font-size: 31px;
  }
  .sound-copy {
    padding: 30px 22px 0;
  }
  .sound-copy h2 {
    font-size: 29px;
  }
  .download h2 {
    font-size: 39px;
  }
  .eyebrow {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
.consent-banner {
  position: fixed;
  z-index: 80;
  bottom: 20px;
  left: 20px;
  width: min(440px, calc(100% - 40px));
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
  box-shadow: 0 12px 50px #17203330;
}
.consent-banner[hidden] {
  display: none;
}
.consent-banner h2 {
  font-size: 23px;
  letter-spacing: -0.025em;
  line-height: 1.35;
}
.consent-banner p {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 12px;
}
.consent-banner > a {
  font-size: 12px;
  display: inline-block;
  text-decoration: underline;
  padding: 10px 0;
}
.consent-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
.consent-buttons > button {
  min-height: 46px;
  padding: 11px 12px;
  font: 600 12px/1.45 var(--body);
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--coral);
  color: var(--ink);
  cursor: pointer;
}
.cookie-settings {
  padding: 0;
  min-height: 44px;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.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;
}
@media (max-width: 370px) {
  .consent-banner {
    padding: 20px;
  }
  .consent-buttons {
    grid-template-columns: 1fr;
  }
}
@media print {
  .site-header,
  .hero-art,
  .feature-screen,
  .sound-art,
  .download,
  .site-footer,
  .hero-buttons,
  .consent-banner,
  .cookie-settings {
    display: none;
  }
  .container {
    width: 100%;
  }
  .features {
    background: white;
    color: black;
  }
  .features p,
  .paid-note {
    color: black;
  }
  a {
    text-decoration: underline;
  }
  .section-pad {
    padding-block: 25px;
  }
}
