:root {
  --gold: #fbd466;
  --gold-deep: #facb4f;
  --ink: #222222;
  --muted: #6e7280;
  --hero-left: #76dbc9;
  --hero-mid: #3ea9d4;
  --hero-right: #6a78c9;
  --white: #ffffff;
  --nav-height: 52px;
  --jp-font: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Sans", "Meiryo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--ink);
  font-family: "Mulish", var(--jp-font);
  font-weight: 300;
  background: var(--white);
}

body > main {
  flex: 1 0 auto;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
}

a:hover,
a:focus {
  color: var(--gold-deep);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Catamaran", var(--jp-font);
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.1;
}

p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.container {
  width: min(1140px, calc(100% - 30px));
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: var(--nav-height);
  border-bottom: 1px solid rgba(34, 34, 34, 0.05);
  background: var(--white);
  font-family: "Catamaran", var(--jp-font);
  font-weight: 200;
  letter-spacing: 1px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1140px, calc(100% - 30px));
  min-height: var(--nav-height);
  margin: 0 auto;
}

.brand {
  font-size: 18px;
  line-height: 1;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 34px;
  padding: 8px 10px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font-family: "Catamaran", var(--jp-font);
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 1px;
  cursor: pointer;
}

.nav-links {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(34, 34, 34, 0.05);
  background: var(--white);
}

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

.nav-links a {
  display: block;
  padding: 11px 15px;
  color: var(--ink);
  font-family: "Lato", var(--jp-font);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 675px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 24%),
    linear-gradient(115deg, var(--hero-left) 0%, var(--hero-mid) 58%, var(--hero-right) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 1;
}

.hero-pattern::before {
  content: "";
  position: absolute;
  inset: -8%;
  background:
    radial-gradient(circle at 20% 23%, rgba(255, 255, 255, 0.34), transparent 22%),
    radial-gradient(circle at 84% 34%, rgba(185, 240, 241, 0.48), transparent 25%),
    radial-gradient(circle at 62% 88%, rgba(39, 83, 180, 0.22), transparent 34%);
  filter: blur(20px);
  transform: scale(1.05);
}

.hero-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.64) 0 1.15px, transparent 1.7px) 0 0 / 18px 18px,
    radial-gradient(circle, rgba(255, 255, 255, 0.26) 0 2.8px, transparent 3.7px) 9px 7px / 86px 74px,
    linear-gradient(112deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 35%),
    linear-gradient(72deg, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.12) 54%, rgba(255, 255, 255, 0) 68%);
  opacity: 0.42;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(1140px, calc(100% - 30px));
  min-height: 675px;
  margin: 0 auto;
  padding-top: 100px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px 0 48px;
  text-align: center;
}

.hero h1 {
  margin-bottom: 30px;
  font-size: 35px;
}

.locale-ja .hero-copy h1 {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  font-weight: 700;
  font-size: 42px;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 221px;
  min-height: 48px;
  padding: 15px 45px;
  border: 1px solid currentColor;
  border-radius: 300px;
  color: var(--white);
  font-family: "Lato", var(--jp-font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.42857143;
  text-transform: uppercase;
}

.outline-button:hover,
.outline-button:focus {
  border-color: var(--gold);
  color: var(--white);
  background: var(--gold);
}

.phone-stage {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 375px;
}

.phone-shell {
  position: relative;
  width: 304px;
  height: 612px;
  border: 5px solid #e6e6e6;
  border-radius: 48px;
  background: linear-gradient(#fbfbfb, #f0f0f0);
  box-shadow:
    inset 0 0 0 2px #d2d2d2,
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 30px 35px rgba(0, 0, 0, 0.18);
}

.phone-camera {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 9px;
  height: 9px;
  margin-left: -5px;
  border-radius: 50%;
  background: #2b2f3a;
  display: none;
}

.phone-speaker {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 42px;
  height: 5px;
  margin-left: -21px;
  border-radius: 8px;
  background: #333333;
}

.phone-speaker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -14px;
  width: 5px;
  height: 5px;
  margin-top: -2px;
  border-radius: 50%;
  background: #333333;
}

.phone-screen {
  position: absolute;
  top: 62px;
  left: 22px;
  right: 22px;
  height: 418px;
  overflow: hidden;
  border: 1px solid #bbbbbb;
  background:
    radial-gradient(circle at 62% 76%, rgba(88, 207, 186, 0.6), transparent 18%),
    radial-gradient(circle at 45% 57%, rgba(65, 129, 210, 0.7), transparent 22%),
    radial-gradient(circle at 58% 39%, rgba(255, 255, 255, 0.28), transparent 16%),
    linear-gradient(165deg, #06172f, #0b1b36 35%, #163b64 75%, #0a142c);
}

.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 1px, transparent 1.5px);
  background-position: 0 0, 19px 27px;
  background-size: 37px 41px;
}

.status-bar {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding: 8px 9px 0;
  color: #ffffff;
  font-family: "Lato", var(--jp-font);
  font-size: 13px;
}

.screen-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 12px;
  padding: 25px 16px;
}

.screen-app {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 0;
  color: var(--white);
  font-family: "Lato", var(--jp-font);
  font-size: 11px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.screen-app small {
  display: block;
  width: 100%;
  max-width: 74px;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-egg-rescue small {
  font-size: 8px;
}

.screen-app span,
.screen-app img {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Catamaran", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  text-shadow: none;
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.45), 0 8px 18px rgba(0, 0, 0, 0.22);
}

.screen-app img {
  display: block;
  object-fit: cover;
}

.app-water span,
.icon-notes {
  background: linear-gradient(135deg, #6ed5e6, #1184a2);
}

.app-note span,
.icon-budget {
  background: linear-gradient(135deg, #f7b45b, #f46a57);
}

.app-day span,
.icon-clock {
  background: linear-gradient(135deg, #f5f5f5, #64c8f1);
}

.app-kit span,
.icon-habit {
  background: linear-gradient(135deg, #ffd866, #ff8a36);
}

.app-list span,
.icon-log {
  background: linear-gradient(135deg, #5cd49b, #26794e);
}

.app-time span,
.icon-focus {
  background: linear-gradient(135deg, #111111, #4a4a4a);
}

.app-calm span {
  background: linear-gradient(135deg, #7c6cf0, #31c8d4);
}

.app-home span {
  background: linear-gradient(135deg, #f3ccff, #e64b92);
}

.phone-button {
  position: absolute;
  bottom: 28px;
  left: 50%;
  width: 44px;
  height: 44px;
  margin-left: -22px;
  border: 2px solid #d4d4d4;
  border-radius: 50%;
  background: #f7f7f7;
}

.featured-section {
  padding: 150px 0;
  background: linear-gradient(180deg, #f2c35a 0%, #ef8a39 100%);
  color: var(--white);
  text-align: center;
}

.coming-soon-section {
  background: linear-gradient(180deg, #a5a5a5 0%, #7c7c7c 100%);
  color: var(--white);
  padding: 30px 0;
}

.featured-section h2 {
  margin-bottom: 30px;
  font-size: 50px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 20px;
  align-items: start;
}

.app-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.app-card:hover,
.app-card:focus {
  color: var(--white);
}

.app-icon {
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  border-radius: 24px;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.35), 0 10px 22px rgba(150, 98, 0, 0.13);
}

.app-icon span {
  color: var(--white);
  font-family: "Catamaran", sans-serif;
  font-size: 74px;
  font-weight: 400;
  line-height: 1;
}

.featured-button {
  margin-top: 67px;
  min-width: 184px;
}

.about-section {
  padding: 100px 0;
  text-align: center;
  background: #ffffff;
}

.about-section h2 {
  color: #444444;
  font-size: 50px;
  margin-top: 50px;
  margin-bottom: 10px;
}

hr {
  width: 100px;
  margin: 25px auto 20px;
  border: 0;
  border-top: 1px solid rgba(34, 34, 34, 0.1);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 74px;
}

.value {
  max-width: 330px;
  margin: 0 auto;
}

.value-icon {
  display: inline-block;
  width: 60px;
  height: 56px;
  margin-bottom: 0;
  color: var(--gold);
  font-family: "Catamaran", sans-serif;
  font-size: 56px;
  line-height: 56px;
  visibility: hidden;
}

.value h3 {
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 24px;
}

.value p {
  color: #777777;
}

.site-footer {
  flex: 0 0 auto;
  margin-top: auto;
  padding: 25px 15px;
  color: rgba(255, 255, 255, 0.3);
  background: #222222;
  text-align: center;
}

.site-footer p {
  font-size: 12px;
  line-height: 1.5;
}

.site-footer a {
  color: var(--white);
}

.mobile-only {
  display: none;
}

@media (min-width: 768px) {
  .site-nav {
    border-color: transparent;
    background: transparent;
  }

  .site-nav.is-scrolled {
    border-color: rgba(34, 34, 34, 0.1);
    background: var(--white);
  }

  .brand,
  .nav-links a {
    color: rgba(255, 255, 255, 0.72);
  }

  .site-nav.is-scrolled .brand,
  .site-nav.is-scrolled .nav-links a {
    color: var(--ink);
  }

  .brand:hover,
  .brand:focus,
  .nav-links a:hover,
  .nav-links a:focus {
    color: var(--white);
  }

  .site-nav.is-scrolled .brand:hover,
  .site-nav.is-scrolled .brand:focus,
  .site-nav.is-scrolled .nav-links a:hover,
  .site-nav.is-scrolled .nav-links a:focus {
    color: var(--gold);
  }

  .menu-button {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    width: auto;
    border: 0;
    background: transparent;
  }

  .nav-links a {
    padding: 20px 15px;
  }

  .hero {
    min-height: 600px;
    height: 60vh;
  }

  .hero-inner {
    grid-template-columns: 7fr 5fr;
    min-height: 600px;
    height: 60vh;
    padding-top: 0;
  }

  .hero-copy {
    align-items: flex-start;
    padding: 0;
    height: 80vh;
    text-align: left;
  }

  .hero h1 {
    font-size: 35px;
  }

  .phone-stage {
    align-items: flex-start;
    min-height: 0;
    padding-top: 105px;
  }

  .phone-shell {
    width: 455px;
    height: 916px;
    border-width: 6px;
    border-radius: 68px;
  }

  .phone-camera {
    display: none;
  }

  .phone-speaker {
    top: 50px;
    width: 63px;
    height: 7px;
    margin-left: -31px;
  }

  .phone-screen {
    top: 106px;
    left: 33px;
    right: 33px;
    height: 626px;
  }

  .status-bar {
    padding: 10px 12px 0;
    font-size: 16px;
  }

  .screen-grid {
    gap: 21px 17px;
    padding: 34px 22px;
  }

  .screen-app {
    font-size: 14px;
  }

  .screen-app span,
  .screen-app img {
    width: 74px;
    height: 74px;
    border-radius: 17px;
    font-size: 50px;
  }

  .app-egg-rescue small {
    font-size: 9px;
  }

  .phone-button {
    bottom: 42px;
    width: 66px;
    height: 66px;
    margin-left: -33px;
  }

  .about-section {
    padding-bottom: 120px;
  }

  .featured-section h2 {
    font-size: 70px;
  }

  .featured-section h2 .app-display-name,
  .app-summary h2 .app-display-name {
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow-wrap: normal;
  }

  .app-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px 30px;
  }

  .app-icon {
    width: 164px;
    height: 164px;
    border-radius: 36px;
  }

  .app-icon span {
    font-size: 112px;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 32px;
  }

}

@media (min-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 624px;
    min-height: 624px;
    margin-top: var(--nav-height);
  }

  .hero-inner {
    height: 624px;
    min-height: 624px;
    padding-top: 0;
  }

  .hero-copy {
    min-height: 255px;
    justify-content: start;
    padding-top: 46px;
    padding-bottom: 26px;
  }

  .phone-stage {
    height: 369px;
    min-height: 0;
    margin-top: 0;
  }

  .phone-shell {
    transform: translateY(-2px);
  }

  .app-card {
    font-size: 18px;
  }
}

@media (max-width: 430px) {
  .container,
  .nav-inner,
  .hero-inner {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-inner {
    width: 100%;
  }

  .hero h1 {
    font-size: 35px;
  }

  .phone-shell {
    width: 300px;
    height: 605px;
  }

  .featured-section h2 {
    font-size: clamp(27px, 8vw, 38px);
  }

  .about-section h2 {
    font-size: 50px;
  }

  .featured-button {
    margin-top: 62px;
  }

  .app-grid {
    gap: 30px 12px;
  }

  .app-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
  }

  .app-icon span {
    font-size: 70px;
  }

  .about-section h2 {
    font-size: 42px;
    line-height: 55px;
  }

  .mobile-only {
    display: block;
  }

  .value {
    max-width: none;
  }

  .values-grid {
    gap: 27px;
  }
}

.static-page .site-nav {
  border-color: rgba(34, 34, 34, 0.1);
  background: var(--white);
}

.static-page .brand,
.static-page .nav-links a {
  color: var(--ink);
}

.static-page .brand:hover,
.static-page .brand:focus,
.static-page .nav-links a:hover,
.static-page .nav-links a:focus {
  color: var(--gold);
}

.language-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px 20px;
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 24%),
    linear-gradient(115deg, var(--hero-left) 0%, var(--hero-mid) 58%, var(--hero-right) 100%);
  text-align: center;
}

.language-panel {
  width: min(560px, 100%);
}

.language-panel h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 9vw, 82px);
}

.language-panel p {
  font-size: 18px;
}

.language-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.language-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  padding: 12px 28px;
  border: 1px solid currentColor;
  border-radius: 300px;
  color: var(--white);
  font-family: "Lato", var(--jp-font);
  font-size: 12px;
  letter-spacing: 1.5px;
}

.hero-lead {
  max-width: 520px;
  margin: -8px 0 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .outline-button {
  min-width: 180px;
}

.featured-kicker,
.eyebrow {
  margin-bottom: 14px;
  font-family: "Lato", var(--jp-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.featured-description {
  max-width: 660px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
}

.app-display-name {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.08em;
  row-gap: 0.02em;
  font-family: "Lato", "Noto Sans JP", var(--jp-font);
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  max-width: 100%;
}

.app-display-part {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 700;
}

.app-display-part[lang="ja"] {
  word-break: keep-all;
  overflow-wrap: normal;
}

.app-display-part[lang="en"] {
  white-space: nowrap;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid rgba(253, 212, 102, 0.55);
  border-radius: 300px;
  color: var(--ink);
  font-family: "Lato", var(--jp-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.featured-section .link-list {
  justify-content: center;
}

.featured-section .link-list a {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.page-main {
  padding-top: var(--nav-height);
}

.page-title-section {
  padding: clamp(70px, 12vw, 130px) 0 clamp(44px, 8vw, 80px);
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 24%),
    linear-gradient(115deg, var(--hero-left) 0%, var(--hero-mid) 58%, var(--hero-right) 100%);
}

.page-title-section h1 {
  max-width: 920px;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 700;
}

.page-lead {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.app-title-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(132px, 14vw, 188px);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.app-title-copy {
  min-width: 0;
}

.app-title-copy h1 {
  font-weight: 700;
}

.app-title-icon {
  display: block;
  width: clamp(132px, 14vw, 188px);
  aspect-ratio: 1;
  justify-self: end;
  border-radius: 26%;
  image-rendering: auto;
  object-fit: cover;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.32),
    0 22px 46px rgba(12, 43, 70, 0.22);
}

.doc-section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.doc-container {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
}

.doc-container > p + p,
.doc-block p + p {
  margin-top: 14px;
}

.doc-container p,
.doc-container li,
.detail-list dd {
  color: #666666;
  font-size: 17px;
  line-height: 1.8;
}

.doc-block {
  margin-top: 48px;
}

.doc-block h2,
.app-summary h2 {
  margin-bottom: 16px;
  color: #444444;
  font-size: 34px;
}

.doc-block h3 {
  margin-bottom: 8px;
  color: #444444;
  font-size: 22px;
}

.doc-block ul {
  margin: 12px 0 0;
  padding-left: 1.35em;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
}

.detail-list dt {
  color: var(--ink);
  font-family: "Lato", var(--jp-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
}

.app-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  margin-top: 38px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(34, 34, 34, 0.08);
}

.app-badge {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, #6ed5e6, #1184a2);
  font-family: "Catamaran", sans-serif;
  font-size: 64px;
  line-height: 1;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.35), 0 10px 22px rgba(34, 34, 34, 0.12);
}

.app-badge-image {
  display: block;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 24px;
}

.site-footer {
  display: grid;
  gap: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 12px;
}

.language-switch {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .home-page .hero {
    height: auto;
    min-height: 700px;
  }

  .home-page .hero-inner {
    height: auto;
    min-height: 700px;
  }

  .home-page .hero-copy {
    min-height: 330px;
    padding-top: 38px;
    padding-bottom: 18px;
  }

  .hero-lead {
    display: block;
    max-width: 326px;
    margin: -12px auto 18px;
    font-size: 14px;
    line-height: 1.65;
    text-align: center;
  }

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

  .hero-actions .outline-button {
    min-width: 0;
    width: 100%;
    max-width: 221px;
  }

  .featured-section h2 .app-display-name {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 4px;
  }

  .page-title-section h1 {
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.18;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .app-title-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    text-align: center;
  }

  .app-title-icon {
    order: -1;
    width: 116px;
    justify-self: center;
    border-radius: 24px;
  }

  .app-title-copy h1 {
    font-size: clamp(32px, 9vw, 36px);
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .app-title-copy .page-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .doc-container p,
  .doc-container li,
  .detail-list dd {
    font-size: 16px;
  }

  .detail-list div,
  .app-summary {
    grid-template-columns: 1fr;
  }

  .app-badge {
    width: 82px;
    height: 82px;
    border-radius: 20px;
    font-size: 56px;
  }

  .app-summary h2 {
    font-size: clamp(26px, 8vw, 32px);
  }

  .app-summary h2 .app-display-name {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2px;
  }
}
