:root {
  color-scheme: dark;
  --bg: #000f15;
  --bg-2: #061a21;
  --ink: #fdf1d1;
  --muted: rgba(253, 241, 209, 0.72);
  --muted-deep: #8ba1aa;
  --line: rgba(253, 241, 209, 0.16);
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --yellow: #ffc527;
  --yellow-pressed: #d9a600;
  --teal: #55c7b5;
  --coral: #ff9f9f;
  --green: #4cd964;
  --blue: #8cc8ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
}

body::selection {
  background: var(--yellow);
  color: #001d29;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

.skip-link {
  background: var(--yellow);
  color: #001d29;
  left: 16px;
  padding: 10px 12px;
  position: fixed;
  top: 12px;
  transform: translateY(-140%);
  z-index: 20;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  align-items: center;
  background: rgba(0, 15, 21, 0.9);
  /* border-bottom: 1px solid var(--line); */
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 28px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 800;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  align-items: center;
  background: var(--yellow);
  border-radius: 8px;
  color: #001d29;
  display: inline-flex;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  width: 36px;
}
.brand-icon {
  border-radius: 22.5%;
  display: inline;
  height: 36px;
  width: 36px;
}

.site-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
  display: flex;
  gap: 42px;
  justify-content: center;
}

.site-nav a,
.nav-menu summary {
  /* color: var(--muted); */
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
  list-style: none;
}
.site-nav a.selected {
  color: var(--muted-deep);
  pointer-events: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-menu summary:hover,
.nav-menu summary:focus-visible {
  /* color: var(--ink); */
  /* color: var(--muted); */
  text-decoration: underline;
  text-underline-offset: 8px;
}

.nav-menu {
  position: relative;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary {
  align-items: center;
  display: inline-flex;
  gap: 6px;
}

.nav-menu summary::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  content: "";
  display: inline-block;
  margin-top: 2px;
}

.nav-menu-panel {
  background: #03151b;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  left: 50%;
  min-width: 178px;
  padding: 8px;
  position: absolute;
  top: calc(100% + 12px);
  transform: translateX(-50%);
  z-index: 30;
}

.nav-menu-panel a {
  border-radius: 6px;
  color: var(--muted);
  padding: 8px 10px;
}

.nav-menu-panel a:hover,
.nav-menu-panel a:focus-visible {
  background: var(--surface);
  color: var(--ink);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  align-items: center;
  /* border: 1px solid var(--line);
  border-radius: 8px; */
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  list-style: none;
  min-height: 38px;
  padding: 8px 12px;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

/* .mobile-nav summary::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  content: "";
  display: inline-block;
  margin-top: 2px;
} */

.mobile-nav-panel {
  list-style: none;
  margin: 0;
  background: var(--bg);
  /* border-top: 1px solid var(--line); */
  /* border-radius: 8px; */
  /* box-shadow: var(--shadow); */
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: calc(100vh - 70px);
  overflow: auto;
  padding: 20px;
  position: absolute;
  right: -114px;
  top: calc(100% + 10px);
  width: 100vw;
  z-index: 40;
}

.mobile-nav-panel li a {
  border-radius: 8px;
  color: var(--ink);
  min-height: 44px;
  padding: 8px;
  text-align: center;
  font-size: 1.4rem;
  border: 2px solid var(--bg-2);
  display: block;
}
.mobile-nav-panel li a.selected {
  border: 0;
  color: var(--muted-deep);
  pointer-events: none;
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a:focus-visible {
  background: var(--surface);
}

.mobile-nav-panel small,
.mobile-nav-label {
  color: var(--muted-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-nav-label {
  padding: 12px 10px 4px;
}

.language-switch {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  padding: 6px;
}

.language-button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 34px;
  min-width: 42px;
  padding: 6px 10px;
}

.language-button.is-active {
  background: var(--yellow);
  color: #001d29;
  font-weight: 800;
}

.hero {
  isolation: isolate;
  /* min-height: 82vh;
  min-height: 82svh; */
  overflow: hidden;
  /* padding: 40px 28px 60px; */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 94svh;
}
.hero:nth-of-type(n+2) {
  /* border-top: 1px solid var(--line); */
  padding-top: 60px;
}

.hero-media {
  inset: 0;
  opacity: 0.38;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.hero-media::after {
  background: rgba(0, 15, 21, 0.56);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-icon {
  border-radius: 8px;
  filter: saturate(0.96);
  position: absolute;
  width: 168px;
}

.hero-icon-book {
  left: 8%;
  top: 18%;
  transform: rotate(-6deg);
}

.hero-icon-years {
  right: 13%;
  top: 14%;
  transform: rotate(5deg);
}

.hero-icon-mytrump {
  left: 18%;
  top: 58%;
  transform: rotate(4deg);
}

.hero-icon-15min {
  right: 24%;
  top: 52%;
  transform: rotate(-7deg);
}

.hero-icon-cronotes {
  left: 25%;
  top: 20%;
  transform: rotate(3deg);
}

.hero-icon-quote {
  right: 6%;
  top: 64%;
  transform: rotate(6deg);
}
  
.hero-icon-appstore {
  margin: 0 auto;
  height: auto;
  width: 192px;
  /* margin-bottom: 30px; */
}

.hero-icon-home {
  margin: 0 auto;
  height: 132px;
  width: 132px;
  /* box-shadow: 0 0 120px 0px var(--muted-deep); */
  box-shadow: 0 0 60px 0px rgba(253, 241, 209, 0.15);
  border-radius: 22.5%;
  margin-bottom: 30px;
}
.hero-media-home {
  height: 132px;
  width: 132px;
  margin: 0 auto 22px;
  position: relative;
}
.hero-media-home .hero-icon-home {
  animation: hero-home-carousel 18s ease-in-out infinite;
  box-shadow: 0 0 60px 0px rgba(253, 241, 209, 0.15);
  /* box-shadow: 0 0 60px 0px #8ba1aa80; */
  inset: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
}

.hero-media-home .hero-icon-home:nth-child(1) {
  animation-delay: 0s;
}

.hero-media-home .hero-icon-home:nth-child(2) {
  animation-delay: 3s;
}

.hero-media-home .hero-icon-home:nth-child(3) {
  animation-delay: 6s;
}

.hero-media-home .hero-icon-home:nth-child(4) {
  animation-delay: 9s;
}

.hero-media-home .hero-icon-home:nth-child(5) {
  animation-delay: 12s;
}

.hero-media-home .hero-icon-home:nth-child(6) {
  animation-delay: 15s;
}

@keyframes hero-home-carousel {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }

  2%,
  13.1% {
    opacity: 1;
    transform: scale(1);
  }

  16.7%,
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 920px;
  /* max-width: 1110px; */
  /* min-height: 430px; */
  /* min-height: 84svh; */
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}
.home .hero-inner,
.years .hero-inner,
.mytrump .hero-inner,
.cronotes .hero-inner,
.quincemin .hero-inner {
  max-width: 1110px;
}

.book .hero-inner {
  max-width: 1180px;
}
.games .hero-inner {
  max-width: 1200px;
}
body[data-language='en'] .book .hero-inner {
  max-width: 1110px;
}
body[data-language='en'] .years .hero-inner {
  max-width: 990px;
}
body[data-language='en'] .mytrump .hero-inner {
  max-width: 856px;
}
body[data-language='en'] .quincemin .hero-inner {
  max-width: 1270px;
}

.eyebrow {
  color: var(--yellow);
  font-size: 1.82rem;
  /* font-size: 0.82rem; */
  /* font-weight: 800; */
  margin: 0 0 14px;
  /* text-transform: uppercase; */
  text-align: center;
}
strong.eyebrow {
  font-weight: normal;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.hero h1 {
  font-size: 4.8rem;
  /* line-height: 0.98; */
  line-height: 1.05;
  margin: 0 auto;
  position: relative;
  padding-top: 58px;
  /* max-width: 900px; */
}

.hero.home h1,
.hero.quincemin  h1 {
  padding-top: 20px;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1.65;
  margin: 28px auto 0;
  max-width: 720px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
}

.button-primary {
  background: var(--yellow);
  color: #001d29;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--yellow-pressed);
}

.button-quiet {
  border: 1px solid var(--line);
  color: var(--ink);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: rgba(253, 241, 209, 0.34);
  background: var(--surface);
}

.hero-facts {
  align-items: center;
  color: var(--muted-deep);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.95rem;
  gap: 18px;
  justify-content: center;
  margin-top: 46px;
}

.hero-facts span {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.hero-facts span::before {
  background: var(--yellow);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 7px;
  width: 7px;
}

.section {
  /* border-top: 1px solid var(--line); */
  padding: 86px 28px;
}
.section.yearsfigure {
  position: relative;
  padding-top: 740px;
}
.section.yearsfigure::before {
  content: '';
  width: 100vw;
  height: 700px;
  display: block;
  background: transparent url('assets/years+figure01.jpg') no-repeat 50% 70%;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.section-privacy {
  background-color: var(--ink);
}
.section-privacy .section-heading h2 {
  color: var(--bg-2);
}
.section-privacy .section-heading p {
  color: var(--bg-2);
}

.section-inner {
  margin: 0 auto;
  max-width: var(--max-width);
}

.section-heading {
  /* max-width: 760px; */
  text-align: center;
}
.about-us .section-heading .eyebrow,
.privacy .section-heading .eyebrow,
.support .section-heading .eyebrow,
.about-us .section-heading,
.privacy .section-heading,
.support .section-heading {
  text-align: left;
}

.about-us .section-text,
.privacy .section-text,
.support .section-text {
  padding-top: 64px;
}

.section-heading h2,
.split-band h2,
.content-page.about-us h2,
.content-page.privacy h2,
.content-page.support h2 {
  font-size: 2.7rem;
  line-height: 1.08;
  margin: 0;
  /* color: var(--muted-deep); */
}
.privacy-apps {
  padding: 0;
  margin: 0;

}
.privacy-apps dt {
  font-size: 1.5rem;
  font-weight: normal;
  margin-top: 28px;
}
.privacy-apps dd {
  color: var(--muted);
  font-size: 1.1rem;
  padding: 8px 0 0 ;
  margin: 0;
}

.section-heading p,
.split-band p {
  color: var(--muted);
  font-size: 1.4rem;
  margin: 18px auto 0;
  max-width: 760px;
}
.section-heading p.eyebrow {
  color: var(--muted-deep);
  padding-bottom: 20px;
  font-size: 1.2rem;
  /* text-transform: uppercase; */
}

.section-heading .section-heading-lead {
  text-align: center;
  max-width: 760px;
  margin: 20px auto;
}

.launch-section {
  background-color: var(--bg-2);
}

.launch-timeline {
  counter-reset: launch;
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
}

.launch-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 72px 70px 1fr auto;
  min-height: 98px;
  padding: 14px;
}

.launch-number {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--yellow);
  display: inline-flex;
  font-size: 1.15rem;
  font-weight: 900;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.launch-icon {
  border-radius: 8px;
  height: 58px;
  width: 58px;
}

.launch-copy h3 {
  font-size: 1.15rem;
  margin: 0;
}

.launch-copy p {
  color: var(--muted);
  margin: 4px 0 0;
}

.launch-status {
  color: var(--muted-deep);
  font-size: 0.92rem;
  min-width: max-content;
}

.apps-section {
  background: var(--bg);
}

.featured-layout {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(260px, 390px) 1fr;
  margin-top: 54px;
}

.phone-stage {
  display: flex;
  justify-content: center;
}

.phone-shell {
  background: #03151b;
  border: 1px solid rgba(253, 241, 209, 0.26);
  border-radius: 34px;
  box-shadow: var(--shadow);
  min-height: 610px;
  padding: 12px;
  position: relative;
  width: 310px;
}

.phone-sensor {
  background: #001015;
  border: 1px solid rgba(253, 241, 209, 0.16);
  border-radius: 8px;
  height: 20px;
  left: 50%;
  position: absolute;
  top: 18px;
  transform: translateX(-50%);
  width: 88px;
  z-index: 2;
}

.phone-screen {
  background: #000f15;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  min-height: 586px;
  overflow: hidden;
  padding: 56px 20px 22px;
}

.phone-topbar {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.phone-topbar img {
  border-radius: 8px;
  height: 40px;
  width: 40px;
}

.phone-topbar span {
  color: var(--muted-deep);
  font-weight: 800;
}

.phone-kicker {
  color: var(--muted-deep);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 10px;
  text-align: center;
  text-transform: uppercase;
}

.phone-screen h3 {
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.18;
  margin: 0 auto;
  max-width: 230px;
  text-align: center;
}

.phone-lines {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.phone-line {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(253, 241, 209, 0.1);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.35;
  min-height: 58px;
  padding: 13px 14px;
}

.phone-action {
  align-items: center;
  background: var(--yellow);
  border-radius: 8px;
  color: #001d29;
  display: flex;
  font-weight: 900;
  justify-content: center;
  margin-top: auto;
  min-height: 48px;
  padding: 12px;
  text-align: center;
}

.featured-copy {
  max-width: 650px;
}

.featured-copy h3 {
  font-size: 3rem;
  line-height: 1;
  margin: 0;
}

.featured-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.featured-tagline {
  color: var(--ink);
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.28;
  margin: 18px 0 0;
}

.feature-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.feature-list li {
  align-items: flex-start;
  color: var(--muted);
  display: flex;
  gap: 10px;
}

.feature-list li::before {
  background: var(--yellow);
  border-radius: 999px;
  content: "";
  flex: 0 0 auto;
  height: 8px;
  margin-top: 8px;
  width: 8px;
}

.store-status {
  border: 1px solid var(--yellow);
  border-radius: 8px;
  color: var(--yellow);
  display: inline-flex;
  /* font-weight: 800; */
  /* margin-top: 28px; */
  min-height: 42px;
  padding: 9px 13px;
  text-transform: uppercase;
}

.app-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
}

.app-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-rows: 1fr auto;
  min-height: 284px;
  padding: 18px;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.app-card:hover,
.app-card:focus-within {
  background: var(--surface-strong);
  border-color: rgba(255, 197, 39, 0.42);
  transform: translateY(-2px);
}

.app-card.is-active {
  border-color: var(--yellow);
}

.app-card-main {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  gap: 16px;
  padding: 0;
  text-align: left;
}

.app-card-top {
  align-items: center;
  display: flex;
  gap: 14px;
}

.app-card img {
  border-radius: 8px;
  height: 58px;
  width: 58px;
}

.app-card-title {
  display: block;
  font-size: 1.26rem;
  font-weight: 800;
  margin: 0;
}

.app-card small {
  color: var(--muted-deep);
  display: block;
  margin-top: 2px;
}

.app-card-copy {
  color: var(--muted);
  display: block;
  margin: 0;
}

.app-card .mini-features {
  color: var(--muted-deep);
  display: block;
  font-size: 0.92rem;
}

.app-page-link {
  align-items: center;
  border: 1px solid rgba(255, 197, 39, 0.36);
  border-radius: 8px;
  color: var(--yellow);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  justify-content: center;
  margin-top: auto;
  min-height: 38px;
  padding: 8px 10px;
}

.app-page-link:hover,
.app-page-link:focus-visible {
  background: rgba(255, 197, 39, 0.1);
}

.language-section {
  background: #fdf1d1;
  color: #001d29;
}

.language-section .eyebrow {
  color: #725508;
}

.language-section p {
  color: rgba(0, 29, 41, 0.76);
}

.split-band {
  align-items: start;
  display: grid;
  gap: 64px;
  /* grid-template-columns: 0.86fr 1fr; */
  grid-template-columns: 0.86fr 0.86fr;
}

.store-section {
  background-color: var(--bg-2);
}

.store-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 42px;
}

.store-tile {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 166px;
  padding: 16px 10px;
  text-align: center;
}

.store-tile img {
  border-radius: 8px;
  height: 56px;
  width: 56px;
}

.store-tile strong {
  line-height: 1.15;
}

.store-tile span {
  color: var(--muted-deep);
  font-size: 0.88rem;
}

.app-detail-page {
  background: var(--bg);
}

.app-detail-hero {
  border-top: 1px solid var(--line);
  padding: 78px 28px 88px;
}

.app-detail-layout {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
}

.app-detail-copy {
  max-width: 690px;
}

.detail-icon {
  border-radius: 8px;
  height: 78px;
  margin-bottom: 26px;
  width: 78px;
}

.detail-category {
  color: var(--muted-deep);
  font-weight: 800;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.app-detail-copy h1,
.content-page h1 {
  font-size: 4.4rem;
  /* line-height: 0.98; */
  line-height: 1;
  margin: 0;
}

.detail-tagline {
  color: var(--ink);
  font-size: 1.56rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 24px 0 0;
}

.detail-description {
  color: var(--muted);
  font-size: 1.12rem;
  margin: 18px 0 0;
  max-width: 650px;
}

.feature-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  min-height: 158px;
  padding: 18px;
}

.feature-card span {
  color: var(--yellow);
  font-weight: 900;
}

.feature-card strong {
  align-self: end;
  font-size: 1.06rem;
  line-height: 1.25;
}

.related-section {
  background-color: var(--bg-2);
  /* border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); */
}

.related-apps {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.related-apps.games-apps {
  margin: 80px 0;
  gap: 64px;
}
.related-apps a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* color: var(--bg-2); */
}
.related-apps a:hover {
  text-decoration: underline;
  text-underline-offset: 8px;
}
.related-apps a img {
  transition: all 100ms ease-out;
  border-radius: 22.5%;
  height: 132px;
  width: 132px;
}
.related-apps a:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 60px 0px rgba(253, 241, 209, 0.15);
}

.related-grid,
.directory-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.related-app,
.directory-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 58px 1fr;
  min-height: 92px;
  padding: 14px;
}

.directory-card {
  align-items: start;
  grid-template-columns: 64px 1fr;
  min-height: 170px;
}

.related-app:hover,
.related-app:focus-visible,
.directory-card:hover,
.directory-card:focus-visible {
  background: var(--surface-strong);
  border-color: rgba(255, 197, 39, 0.4);
}

.related-app img,
.directory-card img {
  border-radius: 8px;
  height: 58px;
  width: 58px;
}

.related-app strong,
.directory-card strong {
  display: block;
}

.related-app small,
.directory-card small {
  color: var(--muted-deep);
}

.directory-card > span:last-child {
  color: var(--muted);
  grid-column: 1 / -1;
}

.legacy-card {
  align-items: center;
  background: #fdf1d1;
  border-radius: 8px;
  color: #001d29;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
  padding: 24px;
}

.legacy-card .eyebrow,
.legacy-card p {
  color: rgba(0, 29, 41, 0.72);
}

.legacy-card h2 {
  font-size: 2rem;
  line-height: 1.1;
  margin: 0;
}

.content-page .content-hero {
  min-height: 62vh;
  padding-top: 96px;
}

.content-page h2 {
  font-size: 1.35rem;
  margin: 30px 0 0;
}

.content-page p {
  color: var(--muted);
  font-size: 1.1rem;
}

.site-footer {
  /* border-top: 1px solid var(--line); */
  padding: 36px 28px;
}

.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 600px;
}
.footer-inner .brand-icon {
  transform: scale(.7);
}

.footer-inner p {
  color: var(--muted);
  margin: 0;
}

.footer-links {
  margin: -6px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
}
.nowrap {
  white-space: nowrap;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.minilabel {
  margin: 30px 0 -50px 0;
  padding: 2px 10px;
  background-color: var(--ink);
  border-radius: 15px;
  font-size: 11px;
  color: var(--bg);
  display: inline-block;
  width: auto;
  letter-spacing: 1px;
}
.lined {
  display: block;
}

@media (max-width: 980px) {
  .lined {
    display: inline;
  }
  .site-header {
    display: grid;
    gap: 10px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 64px;
    padding: 10px 14px;
  }

  .nav,
  .site-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
    justify-self: end;
  }

  .language-switch {
    justify-self: end;
  }

  .hero {
    padding: 50px 28px;
  }

  .hero h1 {
    /* padding-top: 20px; */
    font-size: 3.4rem;
    text-align: center;
    line-height: 1.1;
  }
  .hero.home h1 {
    padding-top: 10px;
  }
  .hero-lead {
    font-size: 1.4rem;
    line-height: 1.4;
    text-align: center;
  }
  .hero-actions, .hero-facts {
      justify-content: center;
  }
  .hero-icon {
    width: 132px;
  }

  .featured-layout,
  .split-band,
  .app-detail-layout {
    grid-template-columns: 1fr;
  }

  .featured-copy {
    max-width: none;
  }

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

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

  .feature-grid,
  .related-grid,
  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-inner {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .section.yearsfigure {
    padding-top: 240px;
  }
  .section.yearsfigure::before {
    height: 200px;
  }
  .split-band {
    gap: 10px;
  }
.about-us .section-text,
.privacy .section-text,
.support .section-text {
  padding-top: 0px;
}
.about-us .section-text p,
.privacy .section-text p,
.support .section-text p {
  font-size: 1.2rem;
}
}

@media (max-width: 680px) {
  .hero-media {
    display: none;
  }
  .site-header {
    min-height: 64px;
  }

  .brand {
    gap: 8px;
  }

  .brand span:last-child {
    display: inline;
    font-size: 0.95rem;
  }

  .language-button {
    min-width: 36px;
    padding: 6px 8px;
  }

  .mobile-nav summary {
    height: 46px;
    min-width: 46px;
    /* padding: 8px 12px; */
    text-align: center;
  }

  .mobile-nav summary span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .mobile-nav summary::before {
    background: currentColor;
    box-shadow: 0 -8px 0 currentColor, 0 8px 0 currentColor;
    content: "";
    display: block;
    height: 2px;
    width: 22px;
  }

  /* .hero {
    min-height: 86vh;
    min-height: 86svh;
    padding: 92px 20px 58px;
  } */

  .hero-inner {
    min-height: auto;
    text-align: left;
  }

  .hero h1 {
    font-size: 2.65rem;
    margin: 0;
  }

  /* .hero-lead {
    font-size: 1.4rem;
    margin-left: 0;
  } */

  .hero-icon {
    width: 104px;
  }

  .hero-icon-cronotes {
    left: 58%;
  }

  .section {
    padding: 64px 20px;
  }

  .section-heading h2,
  .split-band h2,
  .content-page.about-us h2 {
    font-size: 2rem;
  }

  .launch-item {
    grid-template-columns: 52px 56px 1fr;
  }

  .launch-number {
    height: 44px;
    width: 44px;
  }

  .launch-icon {
    height: 48px;
    width: 48px;
  }

  .launch-status {
    grid-column: 3;
  }

  .phone-shell {
    min-height: 560px;
    width: 286px;
  }

  .phone-screen {
    min-height: 536px;
  }

  .featured-copy h3 {
    font-size: 2.35rem;
  }

  .app-detail-hero {
    padding: 58px 20px 64px;
  }

  .app-detail-copy h1,
  .content-page h1 {
    font-size: 2.7rem;
  }

  .detail-tagline {
    font-size: 1.28rem;
  }

  .app-grid,
  .store-strip,
  .feature-grid,
  .related-grid,
  .directory-grid {
    grid-template-columns: 1fr;
  }

  .legacy-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
