:root {
  --ink: #101416;
  --muted: #5f686b;
  --paper: #f7f5ef;
  --paper-strong: #fffdf8;
  --line: rgba(16, 20, 22, 0.13);
  --green: #07703b;
  --green-dark: #073d27;
  --cobalt: #2318e8;
  --sez-ink: #0e0e51;
  --sez-soft: #f3f2ff;
  --sez-canvas: #fff8f2;
  --sez-pay-start: #63f3e7;
  --sez-pay-end: #229fa3;
  --sez-tips-start: #ff7ed0;
  --sez-tips-end: #f43d69;
  --sez-countdown-start: #0a9fee;
  --sez-countdown-end: #1dddff;
  --amber: #f4b335;
  --coral: #f45f4d;
  --teal: #60c7c9;
  --shadow: 0 18px 50px rgba(18, 29, 32, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(16, 20, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 22, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  background: rgba(247, 245, 239, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(16, 20, 22, 0.08);
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img,
.footer-brand img {
  border-radius: var(--radius);
}

.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav a,
.site-footer nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 720;
  padding: 9px 11px;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-footer nav a:hover {
  color: var(--ink);
  background: rgba(16, 20, 22, 0.06);
}

.hero {
  min-height: 82vh;
  margin-top: -76px;
  padding: 132px 0 56px;
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.96) 0 45%, rgba(247, 245, 239, 0.72) 64%),
    #e8f1ee;
  overflow: hidden;
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  gap: 24px;
  align-items: start;
}

.hero-copy {
  padding-top: 40px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 7.4rem);
  line-height: 0.86;
  font-weight: 900;
}

h2 {
  margin: 0;
  font-size: clamp(2.05rem, 4.4vw, 4.5rem);
  line-height: 0.98;
  font-weight: 880;
}

h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.hero-lede {
  width: min(660px, 100%);
  margin: 26px 0 0;
  color: #30393c;
  font-size: clamp(1.05rem, 1.45vw, 1.34rem);
  line-height: 1.58;
}

.hero-actions,
.app-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 820;
  border: 1px solid transparent;
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: #203033;
}

.button-light {
  background: var(--paper-strong);
  color: var(--ink);
  border-color: var(--line);
}

.button-light:hover {
  border-color: rgba(16, 20, 22, 0.32);
}

.button-placeholder {
  color: var(--muted);
  cursor: default;
  opacity: 0.78;
}

.button-placeholder:hover {
  border-color: var(--line);
}

.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-height: 590px;
  align-items: end;
}

.app-hero-media {
  isolation: isolate;
}

.store-shot {
  position: relative;
  width: min(270px, 30vw);
  aspect-ratio: 416 / 900;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(16, 20, 22, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.store-shot-main {
  justify-self: end;
  z-index: 3;
  transform: rotate(-1.5deg);
}

.store-shot-accent {
  justify-self: start;
  z-index: 2;
  margin-bottom: 52px;
  transform: rotate(2deg);
}

.section {
  padding: 84px 0;
}

.intro-band,
.detail-band {
  background: var(--ink);
  color: #fff;
}

.intro-band .eyebrow,
.detail-band .eyebrow {
  color: var(--amber);
}

.intro-grid,
.studio-grid,
.privacy-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.intro-grid p,
.studio-copy p,
.privacy-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.66;
}

.principles {
  background: var(--paper-strong);
}

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

.principle-card,
.app-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(16, 20, 22, 0.08);
}

.principle-card {
  padding: 24px;
}

.index {
  display: block;
  margin-bottom: 46px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 880;
}

.principle-card p,
.app-card p,
.privacy-section p {
  color: var(--muted);
  line-height: 1.62;
}

.apps-section {
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0), rgba(232, 241, 238, 0.92)),
    var(--paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.app-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.app-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 28px;
  overflow: hidden;
}

.app-card::after {
  content: "";
  display: block;
  min-height: 170px;
  margin: auto -28px -28px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.appolele-card::after {
  content: none;
}

.sezonometro-card::after {
  background-image: url("assets/img/sezonometro-character.png");
}

.app-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.app-card-top img {
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(16, 20, 22, 0.12);
}

.app-kicker {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: #2f383b;
  line-height: 1.48;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.sezonometro-card .feature-list li::before,
.sezonometro-card .app-kicker {
  background: none;
  color: var(--cobalt);
}

.sezonometro-card .feature-list li::before {
  background: var(--cobalt);
}

.screenshot-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(138px, 31%);
  align-items: start;
  gap: 10px;
  margin: 22px -8px 0;
  padding: 0 8px 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
}

.screenshot-strip img {
  width: 100%;
  aspect-ratio: 416 / 900;
  height: auto;
  object-fit: contain;
  scroll-snap-align: start;
  border: 1px solid rgba(16, 20, 22, 0.09);
  border-radius: var(--radius);
  background: #e8f1ee;
}

.text-link {
  color: var(--ink);
  font-weight: 820;
  text-underline-offset: 4px;
}

.studio-grid {
  align-items: center;
}

.studio-copy p {
  margin-top: 22px;
}

.studio-facts {
  display: grid;
  gap: 10px;
}

.studio-facts div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.studio-facts span {
  color: rgba(255, 255, 255, 0.62);
}

.privacy-section {
  background: #edf3f5;
}

.privacy-section p {
  margin: 18px 0 0;
}

.policy-list {
  display: grid;
  gap: 10px;
}

.policy-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
  font-weight: 820;
}

.policy-list a::after {
  content: "Open";
  color: var(--muted);
  font-size: 0.84rem;
}

.policy-list a:hover {
  border-color: rgba(16, 20, 22, 0.34);
}

.contact-section {
  background: var(--paper-strong);
}

.contact-grid {
  align-items: center;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer p {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
}

body.app-page {
  background: var(--paper-strong);
}

.product-hero {
  min-height: 84vh;
  margin-top: -76px;
  padding: 132px 0 72px;
  overflow: hidden;
}

.appolele-product-hero {
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.96) 0 48%, rgba(232, 241, 238, 0.72) 70%),
    #e8f1ee;
}

.sezonometro-product-hero {
  background:
    linear-gradient(110deg, rgba(243, 242, 255, 0.96) 0 52%, rgba(255, 248, 242, 0.86) 100%),
    var(--sez-soft);
}

.product-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 36px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.back-link {
  display: flex;
  width: max-content;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 820;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.product-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sezonometro-page .product-badge {
  color: var(--cobalt);
}

.product-badge img {
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(16, 20, 22, 0.12);
}

.product-copy h1 {
  font-size: clamp(4.2rem, 10vw, 8.4rem);
}

.sezonometro-page .product-copy h1 {
  font-size: clamp(3.4rem, 7vw, 5.7rem);
}

.product-lede {
  margin: 26px 0 0;
  color: #30393c;
  font-size: clamp(1.08rem, 1.45vw, 1.36rem);
  line-height: 1.58;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.product-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  min-height: 640px;
}

.product-shot {
  width: min(305px, 28vw);
  aspect-ratio: 416 / 900;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(16, 20, 22, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-shot-main {
  justify-self: end;
  transform: rotate(-1.5deg);
}

.product-shot-side {
  justify-self: start;
  margin-bottom: 58px;
  transform: rotate(2deg);
}

.product-detail-section {
  background: var(--paper-strong);
}

.product-detail-grid,
.season-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.detail-card-grid {
  display: grid;
  gap: 12px;
}

.detail-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(16, 20, 22, 0.07);
}

.detail-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 880;
}

.detail-card p,
.download-panel p,
.season-preview-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.screenshot-section {
  background: var(--ink);
  color: #fff;
}

.screenshot-section .eyebrow {
  color: var(--amber);
}

.product-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.product-screenshot-grid img {
  width: 100%;
  aspect-ratio: 416 / 900;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.app-download-section {
  background: #edf3f5;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.download-panel p {
  margin: 18px 0 0;
}

.sezonometro-showpiece {
  min-height: 590px;
}

.season-meter {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
}

.season-meter > img {
  width: min(390px, 58%);
  filter: drop-shadow(0 24px 38px rgba(14, 14, 81, 0.16));
}

.season-card {
  position: absolute;
  display: grid;
  gap: 6px;
  min-width: 190px;
  padding: 18px;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: 0 18px 40px rgba(14, 14, 81, 0.16);
}

.season-card span {
  font-size: 0.82rem;
  font-weight: 780;
  opacity: 0.84;
}

.season-card strong {
  font-size: 1.8rem;
  line-height: 1;
}

.season-card-countdown {
  top: 14%;
  left: 4%;
  background: linear-gradient(135deg, var(--sez-countdown-start), var(--sez-countdown-end));
}

.season-card-pay {
  right: 3%;
  top: 38%;
  background: linear-gradient(135deg, var(--sez-pay-start), var(--sez-pay-end));
}

.season-card-tips {
  bottom: 13%;
  left: 12%;
  background: linear-gradient(135deg, var(--sez-tips-start), var(--sez-tips-end));
}

.season-preview-section {
  background: linear-gradient(180deg, var(--sez-soft), #fff);
}

.season-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.season-data-grid div {
  min-height: 136px;
  padding: 20px;
  border: 1px solid rgba(35, 24, 232, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.season-data-grid span {
  color: var(--cobalt);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.season-data-grid strong {
  display: block;
  margin-top: 32px;
  color: var(--sez-ink);
  font-size: 1.35rem;
  line-height: 1.08;
}

.sezonometro-download-panel {
  border-color: rgba(35, 24, 232, 0.14);
}

/* Sezonometro download splash */
body.sezonometro-download-body {
  min-height: 100vh;
  color: #fff;
  background: #0e0e51;
}

.sezonometro-download-topbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px max(22px, calc((100% - 1180px) / 2));
}

.sezonometro-download-brand,
.sezonometro-download-nav,
.sezonometro-download-footer a {
  color: #fff;
  text-decoration: none;
}

.sezonometro-download-brand {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
}

.sezonometro-download-brand img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.32));
}

.sezonometro-download-nav {
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(14, 14, 81, 0.2);
  backdrop-filter: blur(18px);
  font-size: 0.92rem;
  font-weight: 760;
}

.sezonometro-download-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(660px, 88svh, 880px);
  align-items: center;
  overflow: hidden;
  padding: 112px max(22px, calc((100% - 1180px) / 2)) 72px;
}

.sezonometro-download-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 8, 44, 0.92) 0%, rgba(14, 14, 81, 0.74) 36%, rgba(14, 14, 81, 0.2) 70%),
    linear-gradient(180deg, rgba(4, 7, 28, 0.08), rgba(4, 7, 28, 0.54));
}

.sezonometro-download-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
}

.sezonometro-download-copy {
  width: min(640px, 100%);
}

.sezonometro-download-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 22px;
  border-radius: 22.5%;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.sezonometro-download-eyebrow {
  margin: 0 0 12px;
  color: #ffd84f;
  font-size: 0.82rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sezonometro-download-copy h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(3.35rem, 9vw, 7.4rem);
  line-height: 0.86;
}

.sezonometro-download-copy > p:not(.sezonometro-download-eyebrow):not(.sezonometro-download-note) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.48;
}

.sezonometro-store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.sezonometro-store-button {
  display: grid;
  min-width: 178px;
  min-height: 62px;
  align-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.sezonometro-store-button:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.88);
}

.sezonometro-store-button span {
  font-size: 0.76rem;
  font-weight: 720;
  opacity: 0.72;
}

.sezonometro-store-button strong {
  margin-top: 2px;
  font-size: 1.22rem;
  line-height: 1;
}

.sezonometro-store-button-primary {
  background: #101416;
}

.sezonometro-store-button-disabled,
.sezonometro-store-button-disabled:hover {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
  cursor: default;
  transform: none;
}

.sezonometro-store-button-disabled span {
  opacity: 0.82;
}

.sezonometro-download-note {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.5;
}

.sezonometro-download-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 66px max(22px, calc((100% - 1180px) / 2));
  background: #fff8f2;
  color: var(--sez-ink);
}

.sezonometro-download-strip-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.94;
}

.sezonometro-download-strip-copy p {
  margin: 18px 0 0;
  color: rgba(14, 14, 81, 0.7);
  font-size: 1.08rem;
  line-height: 1.58;
}

.sezonometro-download-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sezonometro-download-feature-grid article {
  display: grid;
  min-height: 250px;
  align-content: end;
  justify-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(35, 24, 232, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(243, 242, 255, 0.92)),
    #fff;
}

.sezonometro-download-feature-grid img {
  width: min(190px, 90%);
  height: 170px;
  object-fit: contain;
}

.sezonometro-download-feature-grid span {
  color: var(--sez-ink);
  font-weight: 860;
}

.sezonometro-download-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 24px;
  background: #0e0e51;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.sezonometro-download-footer a {
  color: #ffd84f;
}

@media (max-width: 780px) {
  .sezonometro-download-topbar {
    padding: 14px 16px;
  }

  .sezonometro-download-brand {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(14, 14, 81, 0.26);
    backdrop-filter: blur(18px);
  }

  .sezonometro-download-brand img {
    width: 34px;
    height: 34px;
  }

  .sezonometro-download-nav {
    min-height: 38px;
    padding: 9px 15px;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(14, 14, 81, 0.32);
    font-size: 0.86rem;
  }

  .sezonometro-download-hero {
    display: block;
    min-height: auto;
    padding: 0 16px 24px;
    background: #0e0e51;
  }

  .sezonometro-download-hero::before {
    display: none;
  }

  .sezonometro-download-hero-image {
    position: relative;
    inset: auto;
    z-index: 0;
    width: calc(100% + 32px);
    height: auto;
    margin: 0 -16px;
    aspect-ratio: 1440 / 768;
    object-fit: cover;
    object-position: center top;
    background: #b8eff7;
    transform: none;
    -webkit-mask-image: linear-gradient(180deg, #000 0 82%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0 82%, transparent 100%);
  }

  .sezonometro-download-copy {
    position: relative;
    z-index: 2;
    margin-top: -34px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(20, 20, 88, 0.78), rgba(8, 9, 54, 0.88)),
      rgba(14, 14, 81, 0.86);
    backdrop-filter: blur(22px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  }

  .sezonometro-download-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 14px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  }

  .sezonometro-download-eyebrow {
    margin-bottom: 9px;
    font-size: 0.74rem;
  }

  .sezonometro-download-copy h1 {
    max-width: 360px;
    font-size: clamp(2.85rem, 13vw, 3.65rem);
    line-height: 0.9;
  }

  .sezonometro-download-copy > p:not(.sezonometro-download-eyebrow):not(.sezonometro-download-note) {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .sezonometro-store-buttons {
    gap: 10px;
    margin-top: 18px;
  }

  .sezonometro-store-button {
    flex: 1 1 156px;
    min-width: min(100%, 156px);
    min-height: 58px;
    border-radius: 15px;
    box-shadow: none;
  }

  .sezonometro-store-button strong {
    font-size: 1.12rem;
  }

  .sezonometro-download-note {
    margin-top: 12px;
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .sezonometro-download-strip {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 46px 20px;
  }

  .sezonometro-download-feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sezonometro-download-feature-grid article {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 128px;
    align-content: center;
    align-items: center;
    justify-items: start;
    padding: 16px;
  }

  .sezonometro-download-feature-grid img {
    width: 92px;
    height: 92px;
  }
}

@media (max-width: 430px) {
  .sezonometro-download-hero {
    padding-right: 12px;
    padding-left: 12px;
  }

  .sezonometro-download-hero-image {
    width: calc(100% + 24px);
    margin-right: -12px;
    margin-left: -12px;
    height: auto;
    aspect-ratio: 1440 / 768;
  }

  .sezonometro-download-copy {
    margin-top: -28px;
    padding: 16px;
    border-radius: 24px;
  }

  .sezonometro-download-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.05rem);
  }

  .sezonometro-store-button {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
  }

  .sezonometro-store-button strong {
    font-size: 1rem;
  }

  .sezonometro-download-note {
    display: none;
  }
}

body.legal-body {
  background: var(--paper-strong);
}

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

.legal-main {
  width: min(860px, calc(100% - 32px));
  margin: 54px auto 84px;
}

.legal-main h1 {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  line-height: 0.9;
}

.legal-main .updated {
  margin: 16px 0 34px;
  color: var(--muted);
  font-weight: 720;
}

.legal-main .legal-related {
  margin: -20px 0 34px;
  font-weight: 760;
}

.legal-main .legal-related a {
  color: #0066cc;
  text-decoration: none;
}

.legal-main .legal-related a:hover {
  text-decoration: underline;
}

.legal-section {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.legal-section h2 {
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.legal-section p,
.legal-section li,
.legal-section code {
  color: #333c3f;
  line-height: 1.66;
}

.legal-section ul,
.legal-section ol {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-section a {
  color: #0066cc;
}

.legal-notice {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(7, 112, 59, 0.22);
  border-radius: var(--radius);
  background: rgba(7, 112, 59, 0.08);
}

.legal-warning {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(180, 35, 24, 0.24);
  border-radius: var(--radius);
  background: rgba(180, 35, 24, 0.08);
}

.legal-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.legal-actions .button {
  color: #fff;
}

.legal-section .legal-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.legal-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.legal-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.legal-section code {
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(16, 20, 22, 0.06);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
}

.legal-table-wrap {
  overflow-x: auto;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.legal-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-table th {
  width: 32%;
  color: var(--ink);
  line-height: 1.35;
}

.legal-table td {
  color: #333c3f;
  line-height: 1.58;
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--paper);
}

.redirect-box {
  max-width: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}

.redirect-box h1 {
  font-size: 2.4rem;
  line-height: 1;
}

@media (max-width: 960px) {
  .site-header {
    position: relative;
    margin-top: 0;
    width: 100%;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .hero {
    margin-top: 0;
    padding-top: 54px;
    background: #e8f1ee;
  }

  .hero-inner,
  .product-hero-inner,
  .intro-grid,
  .studio-grid,
  .privacy-grid,
  .contact-grid,
  .product-detail-grid,
  .season-preview-grid {
    grid-template-columns: 1fr;
  }

  .product-hero {
    margin-top: 0;
    padding-top: 54px;
  }

  .product-media {
    min-height: auto;
  }

  .product-shot {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .product-shot-main,
  .product-shot-side {
    transform: none;
  }

  .product-shot-side {
    margin-bottom: 0;
  }

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

  .download-panel {
    grid-template-columns: 1fr;
  }

  .download-panel .product-actions {
    margin-top: 0;
  }

  .sezonometro-showpiece,
  .season-meter {
    min-height: 520px;
  }

  .hero-media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: auto;
    margin-top: 14px;
    align-items: end;
  }

  .store-shot {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .store-shot-main {
    left: auto;
    right: auto;
    top: auto;
    transform: none;
  }

  .store-shot-accent {
    right: auto;
    top: auto;
    transform: none;
  }

  .principle-grid,
  .app-showcase {
    grid-template-columns: 1fr;
  }

  .app-card {
    min-height: 520px;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav a {
    padding-inline: 8px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(3.4rem, 19vw, 5.2rem);
  }

  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .product-copy h1 {
    font-size: clamp(3.1rem, 17vw, 5.2rem);
  }

  .hero-media {
    gap: 10px;
    min-height: auto;
  }

  .store-shot {
    max-width: 184px;
  }

  .section {
    padding: 58px 0;
  }

  .principle-card,
  .app-card,
  .detail-card {
    padding: 20px;
  }

  .product-badge {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-screenshot-grid {
    gap: 10px;
  }

  .download-panel {
    padding: 22px;
  }

  .season-meter {
    min-height: 480px;
  }

  .season-meter > img {
    width: min(310px, 82%);
  }

  .season-card {
    min-width: 148px;
    padding: 13px;
  }

  .season-card strong {
    font-size: 1.35rem;
  }

  .season-card-countdown {
    left: 0;
  }

  .season-card-pay {
    right: 0;
  }

  .season-card-tips {
    left: 4%;
  }

  .season-data-grid {
    grid-template-columns: 1fr;
  }

  .app-card::after {
    margin-inline: -20px;
    margin-bottom: -20px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.page-transition-active {
  overflow: hidden;
}

.page-transition-active a {
  pointer-events: none;
}

.page-transition-preview {
  position: fixed;
  inset: 0;
  z-index: 9000;
  overflow: hidden;
  background: #f5f5f7;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.page-transition-preview iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.page-transition-active .launcher-screen,
.page-transition-active .launcher-footer,
.page-transition-active .app-store-shell,
.page-transition-active .about-topbar,
.page-transition-active .about-main,
.page-transition-active .about-footer {
  transition:
    filter 540ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 540ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: filter, opacity, transform;
}

.page-transition-overlay-push .page-transition-preview {
  z-index: 10000;
  transform: translateX(100%);
}

.page-transition-overlay-push.page-transition-overlay-running .page-transition-preview {
  transform: translateX(0);
}

.page-transition-overlay-push.page-transition-overlay-running .launcher-screen,
.page-transition-overlay-push.page-transition-overlay-running .launcher-footer,
.page-transition-overlay-push.page-transition-overlay-running .app-store-shell,
.page-transition-overlay-push.page-transition-overlay-running .about-topbar,
.page-transition-overlay-push.page-transition-overlay-running .about-main,
.page-transition-overlay-push.page-transition-overlay-running .about-footer {
  filter: brightness(0.82);
  opacity: 0.78;
  transform: translateX(-18%) scale(0.985);
}

.page-transition-overlay-pop .page-transition-preview {
  z-index: 9000;
  box-shadow: none;
  transform: translateX(-18%);
}

.page-transition-overlay-pop.page-transition-overlay-running .page-transition-preview {
  transform: translateX(0);
}

.page-transition-overlay-pop .app-store-shell,
.page-transition-overlay-pop .about-topbar,
.page-transition-overlay-pop .about-main,
.page-transition-overlay-pop .about-footer {
  position: relative;
  z-index: 10001;
}

.page-transition-overlay-pop.page-transition-overlay-running .app-store-shell,
.page-transition-overlay-pop.page-transition-overlay-running .about-topbar,
.page-transition-overlay-pop.page-transition-overlay-running .about-main,
.page-transition-overlay-pop.page-transition-overlay-running .about-footer {
  transform: translateX(100%);
}

/* Launcher home */
body.launcher-body {
  min-height: 100vh;
  color: #f8faf8;
  background: #2f3d43;
  background-attachment: fixed;
  overflow-x: hidden;
}

.launcher-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%, rgba(0, 0, 0, 0.2));
  mix-blend-mode: normal;
}

.launcher-screen {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 112px);
  padding: clamp(30px, 6vh, 56px) 24px 0;
}

.launcher-header {
  display: flex;
  justify-content: center;
}

.launcher-logo {
  display: grid;
  justify-items: center;
  color: #f8faf8;
  text-decoration: none;
}

.launcher-logo img {
  width: min(260px, 72vw);
  height: auto;
  border-radius: 0;
}

.launcher-grid {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 104px);
  justify-content: center;
  gap: 34px;
  width: min(360px, 100%);
  margin-top: 0;
  transform: translate(-50%, -50%);
}

.launcher-app {
  position: relative;
  display: grid;
  justify-items: center;
  width: 104px;
  color: #f8faf8;
  text-align: center;
  text-decoration: none;
  font-weight: 780;
}

.launcher-app img {
  width: 104px;
  height: 104px;
  border-radius: 22.5%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 24px 44px rgba(0, 0, 0, 0.24);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.launcher-app:hover img {
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 30px 58px rgba(0, 0, 0, 0.3);
}

.launcher-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  display: grid;
  min-width: 48px;
  height: 28px;
  place-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #ff3b30;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.launcher-logo:focus-visible,
.launcher-app:focus-visible,
.launcher-about:focus-visible {
  outline: 2px solid rgba(255, 196, 80, 0.78);
  outline-offset: 8px;
  border-radius: 8px;
}

.launcher-about {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 760;
  text-underline-offset: 4px;
}

.launcher-about:hover {
  color: #fff;
}

.launcher-footer {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 112px;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 20px 24px 24px;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 680;
}

.launcher-footer p {
  margin: 0;
}

@media (max-width: 720px) {
  .page-transition-preview {
    box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.34);
    transform: translateY(100%);
  }

  .page-transition-overlay-push .page-transition-preview,
  .page-transition-overlay-pop .page-transition-preview {
    transform: translateY(0);
  }

  .page-transition-overlay-push .page-transition-preview {
    transform: translateY(100%);
  }

  .page-transition-overlay-push.page-transition-overlay-running .page-transition-preview {
    transform: translateY(0);
  }

  .page-transition-overlay-push.page-transition-overlay-running .launcher-screen,
  .page-transition-overlay-push.page-transition-overlay-running .launcher-footer,
  .page-transition-overlay-push.page-transition-overlay-running .app-store-shell,
  .page-transition-overlay-push.page-transition-overlay-running .about-topbar,
  .page-transition-overlay-push.page-transition-overlay-running .about-main,
  .page-transition-overlay-push.page-transition-overlay-running .about-footer {
    filter: brightness(0.72);
    opacity: 1;
    transform: scale(0.94);
  }

  .page-transition-overlay-pop .page-transition-preview {
    z-index: 9000;
    box-shadow: none;
    transform: translateY(0);
  }

  .page-transition-overlay-pop.page-transition-overlay-running .app-store-shell,
  .page-transition-overlay-pop.page-transition-overlay-running .about-topbar,
  .page-transition-overlay-pop.page-transition-overlay-running .about-main,
  .page-transition-overlay-pop.page-transition-overlay-running .about-footer {
    opacity: 1;
    transform: translateY(100%);
  }
}

/* App Store inspired pages */
body.store-body {
  color: #141719;
  background: #f6f7f8;
  background-size: auto;
}

.store-topbar,
.about-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 14px max(18px, calc((100% - 1120px) / 2));
  border-bottom: 1px solid rgba(16, 20, 22, 0.09);
  background: rgba(246, 247, 248, 0.84);
  backdrop-filter: blur(20px);
}

.store-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
}

.store-brand img {
  border-radius: 8px;
}

.store-about-link {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 760;
  text-decoration: none;
}

.store-about-link:hover {
  color: var(--ink);
}

.store-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 58px;
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: center;
  min-height: 620px;
  padding: 26px 0 44px;
  border-bottom: 1px solid rgba(16, 20, 22, 0.1);
}

.store-identity {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-width: 0;
}

.store-app-icon {
  border-radius: 8px;
  box-shadow: 0 24px 44px rgba(16, 20, 22, 0.16);
}

.store-kicker {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sezonometro-store-body .store-kicker {
  color: var(--cobalt);
}

.store-identity h1 {
  margin: 0;
  font-size: 4.6rem;
  line-height: 0.94;
  font-weight: 900;
}

.sezonometro-store-body .store-identity h1 {
  font-size: 3.7rem;
}

.store-tagline {
  margin: 16px 0 0;
  max-width: 560px;
  color: #4f585b;
  font-size: 1.12rem;
  line-height: 1.48;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.store-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 830;
}

.store-button-primary {
  background: var(--ink);
  color: #fff;
}

.store-button-secondary {
  border-color: rgba(16, 20, 22, 0.16);
  background: rgba(255, 255, 255, 0.75);
}

.store-button-disabled {
  border-color: rgba(16, 20, 22, 0.16);
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  cursor: default;
}

.store-hero-art {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.store-hero-art img,
.store-screenshot-row img {
  width: 100%;
  aspect-ratio: 416 / 900;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(16, 20, 22, 0.08);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(16, 20, 22, 0.15);
}

.store-hero-art img:first-child {
  transform: rotate(-1.5deg);
}

.store-hero-art img:last-child {
  margin-bottom: 44px;
  transform: rotate(1.8deg);
}

.store-section {
  padding: 36px 0;
  border-bottom: 1px solid rgba(16, 20, 22, 0.1);
}

.store-section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.store-section-heading h2,
.store-info-grid h2,
.store-download-strip h2 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.1;
}

.store-section-heading span {
  color: var(--muted);
  font-weight: 740;
}

.store-screenshot-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(182px, 23%);
  gap: 14px;
  align-items: start;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: inline mandatory;
}

.store-screenshot-row img {
  scroll-snap-align: start;
}

.store-info-grid,
.store-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.store-info-grid article,
.store-highlight-grid article,
.store-download-strip {
  padding: 24px;
  border: 1px solid rgba(16, 20, 22, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 20, 22, 0.07);
}

.store-info-grid p,
.store-highlight-grid p,
.store-download-strip p {
  color: var(--muted);
  line-height: 1.58;
}

.store-highlight-grid span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 860;
}

.sezonometro-store-body {
  background:
    linear-gradient(130deg, rgba(243, 242, 255, 0.92), rgba(255, 248, 242, 0.84)),
    #f6f7f8;
}

.sezonometro-store-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
}

.sezonometro-store-art {
  position: relative;
  display: grid;
  min-height: 510px;
  place-items: center;
}

.sezonometro-store-art > img {
  width: min(380px, 64%);
  filter: drop-shadow(0 26px 42px rgba(14, 14, 81, 0.17));
}

.store-metric {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 156px;
  padding: 15px;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(14, 14, 81, 0.14);
}

.store-metric span {
  font-size: 0.78rem;
  font-weight: 760;
}

.store-metric strong {
  font-size: 1.45rem;
}

.metric-countdown {
  top: 14%;
  left: 6%;
  background: linear-gradient(135deg, var(--sez-countdown-start), var(--sez-countdown-end));
}

.metric-pay {
  top: 38%;
  right: 2%;
  background: linear-gradient(135deg, var(--sez-pay-start), var(--sez-pay-end));
}

.metric-tips {
  bottom: 13%;
  left: 14%;
  background: linear-gradient(135deg, var(--sez-tips-start), var(--sez-tips-end));
}

.store-download-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.store-footer,
.about-footer {
  padding: 24px;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 680;
}

/* App Store style app detail page */
body.app-store-body {
  color: #1d1d1f;
  background: #f5f5f7;
  background-size: auto;
}

.app-store-shell {
  display: grid;
  min-height: 100vh;
  grid-template-rows: auto 1fr auto;
}

.app-store-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 66px;
  padding: 12px max(18px, calc((100% - 1060px) / 2));
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(245, 245, 247, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
}

.app-store-handle {
  display: none;
}

.app-store-back,
.app-store-privacy-link,
.app-store-footer a,
.app-store-privacy a {
  color: #0066cc;
  font-weight: 700;
  text-decoration: none;
}

.app-store-back {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.app-store-logo {
  display: grid;
  place-items: center;
}

.app-store-logo picture {
  display: grid;
  place-items: center;
}

.app-store-logo img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}

.app-store-main {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 54px;
  min-width: 0;
}

.app-store-product {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 0 0 28px;
}

.app-store-icon {
  width: 164px;
  height: 164px;
  border-radius: 22.5%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 18px 42px rgba(0, 0, 0, 0.16);
}

.app-store-platform,
.app-store-price,
.app-store-category {
  margin: 0;
  color: #6e6e73;
  line-height: 1.35;
}

.app-store-platform {
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 700;
}

.app-store-product h1 {
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 4.8rem);
  line-height: 0.95;
  font-weight: 760;
}

.app-store-category {
  margin-top: 6px;
  font-size: 1.18rem;
}

.app-store-price {
  margin-top: 18px;
  font-size: 0.96rem;
}

.app-store-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
}

.app-store-get {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: #0071e3;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 780;
  text-decoration: none;
}

.app-store-get:hover {
  background: #0077ed;
}

.app-store-badges {
  gap: 11px;
}

.app-store-badge-link {
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  line-height: 0;
  text-decoration: none;
}

.app-store-badge-link:hover {
  transform: translateY(-1px);
}

.app-store-badge-link:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.42);
  outline-offset: 3px;
}

.app-store-badge-link-disabled {
  position: relative;
  cursor: default;
}

.app-store-badge-link-disabled:hover {
  transform: none;
}

.app-store-badge-link-disabled .app-store-download-badge {
  filter: grayscale(1);
  opacity: 0.32;
}

.app-store-badge-status {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(245, 245, 247, 0.94);
  color: #1d1d1f;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.14);
}

.app-store-download-badge {
  width: auto;
  max-width: 100%;
  height: 40px;
}

.app-store-get-disabled,
.app-store-get-disabled:hover {
  background: #d6d6db;
  color: #6e6e73;
  cursor: default;
}

.app-store-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.app-store-facts div {
  display: grid;
  gap: 6px;
  min-height: 104px;
  align-content: center;
  padding: 14px 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.app-store-facts div:last-child {
  border-right: 0;
}

.app-store-facts span,
.app-store-panel span {
  color: #86868b;
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.app-store-facts strong {
  color: #4b4b50;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1;
}

.app-store-facts small {
  color: #86868b;
  font-size: 0.78rem;
  line-height: 1.25;
}

.app-store-section {
  padding: 34px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.app-store-section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  min-width: 0;
}

.app-store-section h2,
.app-store-section-heading h2 {
  margin: 0;
  font-size: 1.74rem;
  line-height: 1.14;
  font-weight: 760;
}

.app-store-section-heading span {
  color: #86868b;
  font-weight: 720;
}

.app-store-screenshots {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 23%);
  gap: 14px;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: inline mandatory;
}

.app-store-screenshots img {
  width: 100%;
  aspect-ratio: 416 / 900;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: #eef6f8;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
}

.app-store-placeholder-screen {
  display: grid;
  width: 100%;
  aspect-ratio: 416 / 900;
  min-height: 0;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 22px;
  border: 1px dashed rgba(0, 0, 0, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(243, 242, 255, 0.95), rgba(255, 248, 242, 0.92)),
    #f5f5f7;
  color: #6e6e73;
  text-align: center;
  scroll-snap-align: start;
}

.app-store-placeholder-screen strong {
  color: #1d1d1f;
  font-size: 1.08rem;
  line-height: 1.16;
}

.app-store-placeholder-screen span {
  font-size: 0.9rem;
  font-weight: 720;
}

.sezonometro-preview-card {
  overflow: hidden;
  border-style: solid;
  border-color: rgba(35, 24, 232, 0.12);
  background:
    linear-gradient(160deg, rgba(243, 242, 255, 0.94), rgba(255, 248, 242, 0.94)),
    #fff;
}

.sezonometro-preview-card img {
  width: min(96%, 260px);
  max-height: 74%;
  aspect-ratio: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sezonometro-preview-card span {
  color: var(--sez-ink);
}

.app-store-description {
  max-width: 760px;
}

.app-store-description p,
.app-store-panel p,
.app-store-privacy p {
  color: #424245;
  line-height: 1.58;
}

.app-store-split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.app-store-panel {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.app-store-panel strong {
  display: block;
  margin-top: 18px;
  color: #1d1d1f;
  font-size: 1.5rem;
  line-height: 1.12;
}

.app-store-privacy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.app-store-privacy p {
  margin: 10px 0 0;
}

.app-store-legal-links {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  text-align: right;
}

.app-store-information dl {
  margin: 18px 0 0;
}

.app-store-information dl div {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.app-store-information dt {
  color: #86868b;
  font-weight: 720;
}

.app-store-information dd {
  margin: 0;
  color: #424245;
}

.app-store-footer {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 28px 18px 32px;
  color: #6e6e73;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 660;
}

.app-store-footer p {
  margin: 0;
}

@media (max-width: 720px) {
  body.app-store-body {
    background:
      radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.12), transparent 28%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%, rgba(0, 0, 0, 0.32)),
      #2f3d43;
    padding-top: 10px;
  }

  .app-store-shell {
    width: min(calc(100% - 12px), 520px);
    min-height: calc(100vh - 10px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
    background: #f5f5f7;
    box-shadow: 0 -10px 44px rgba(0, 0, 0, 0.34);
  }

  .app-store-topbar {
    grid-template-columns: 44px 1fr 44px;
    top: 10px;
    min-height: 62px;
    padding: 20px 16px 10px;
  }

  .app-store-handle {
    position: absolute;
    top: 8px;
    left: 50%;
    display: block;
    width: 42px;
    height: 5px;
    border-radius: 999px;
    background: #c7c7cc;
    transform: translateX(-50%);
  }

  .app-store-back {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    display: grid;
    position: relative;
    width: 34px;
    height: 34px;
    min-height: 34px;
    place-items: center;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(118, 118, 128, 0.16);
    color: #1d1d1f;
    font-size: 0;
    line-height: 0;
  }

  .app-store-back span {
    display: none;
  }

  .app-store-back::before,
  .app-store-back::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 15px;
    height: 2px;
    margin: auto;
    border-radius: 999px;
    background: currentColor;
  }

  .app-store-back::before {
    transform: rotate(45deg);
  }

  .app-store-back::after {
    transform: rotate(-45deg);
  }

  .app-store-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .app-store-topbar-spacer {
    display: none;
  }

  .app-store-logo img {
    width: 34px;
    height: 34px;
  }

  .app-store-main {
    width: auto;
    margin: 0;
    padding: 22px 18px 34px;
  }

  .app-store-product {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 24px;
  }

  .app-store-icon {
    width: 100px;
    height: 100px;
  }

  .app-store-platform {
    margin-bottom: 5px;
    font-size: 0.78rem;
  }

  .app-store-product h1 {
    font-size: clamp(2.2rem, 11vw, 3.1rem);
  }

  .app-store-category,
  .app-store-price {
    font-size: 0.95rem;
  }

  .app-store-price {
    margin-top: 10px;
  }

  .app-store-actions {
    gap: 11px;
    margin-top: 13px;
  }

  .app-store-get {
    min-height: 32px;
    padding: 7px 15px;
  }

  .app-store-download-badge {
    height: 34px;
  }

  .app-store-facts {
    grid-auto-flow: column;
    grid-auto-columns: 114px;
    grid-template-columns: none;
    margin-inline: -18px;
    overflow-x: auto;
    padding-inline: 18px;
    scroll-snap-type: inline mandatory;
  }

  .app-store-facts div {
    min-height: 92px;
    padding: 12px 14px;
    scroll-snap-align: start;
  }

  .app-store-section {
    padding: 28px 0;
  }

  .app-store-section h2,
  .app-store-section-heading h2 {
    font-size: 1.42rem;
  }

  .app-store-screenshots {
    grid-auto-columns: minmax(168px, 74%);
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .app-store-screenshots img {
    border-radius: 18px;
  }

  .app-store-split-section {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  .app-store-panel {
    border-radius: 16px;
    padding: 20px;
  }

  .app-store-privacy {
    align-items: flex-start;
    flex-direction: column;
  }

  .app-store-legal-links {
    justify-content: flex-start;
    text-align: left;
  }

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

  .app-store-information dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .app-store-footer {
    padding-bottom: 28px;
  }
}

@media (prefers-color-scheme: dark) {
  body.app-store-body {
    color: #f5f5f7;
    color-scheme: dark;
    background: #000;
  }

  .app-store-shell {
    background: #000;
  }

  .app-store-topbar {
    border-bottom-color: rgba(255, 255, 255, 0.16);
    background: rgba(28, 28, 30, 0.78);
  }

  .app-store-back,
  .app-store-privacy-link,
  .app-store-footer a,
  .app-store-privacy a {
    color: #2997ff;
  }

  .app-store-back {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(44, 44, 46, 0.82);
  }

  .app-store-logo img {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
  }

  .app-store-icon {
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.12),
      0 18px 42px rgba(0, 0, 0, 0.55);
  }

  .app-store-platform,
  .app-store-price,
  .app-store-category,
  .app-store-facts span,
  .app-store-facts small,
  .app-store-panel span,
  .app-store-section-heading span,
  .app-store-information dt,
  .app-store-footer {
    color: #98989d;
  }

  .app-store-facts,
  .app-store-section,
  .app-store-split-section {
    border-color: rgba(255, 255, 255, 0.16);
  }

  .app-store-facts div {
    border-right-color: rgba(255, 255, 255, 0.14);
  }

  .app-store-facts strong,
  .app-store-panel strong,
  .app-store-placeholder-screen strong {
    color: #f5f5f7;
  }

  .app-store-get-disabled,
  .app-store-get-disabled:hover {
    background: #3a3a3c;
    color: #a1a1a6;
  }

  .app-store-screenshots img {
    border-color: rgba(255, 255, 255, 0.12);
    background: #161617;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.48);
  }

  .app-store-placeholder-screen {
    border-color: rgba(255, 255, 255, 0.22);
    background:
      linear-gradient(135deg, rgba(30, 30, 38, 0.98), rgba(22, 22, 24, 0.96)),
      #1c1c1e;
    color: #a1a1a6;
  }

  .sezonometro-preview-card {
    border-color: rgba(122, 116, 255, 0.22);
    background:
      linear-gradient(160deg, rgba(25, 24, 42, 0.98), rgba(30, 24, 28, 0.96)),
      #1c1c1e;
  }

  .sezonometro-preview-card span {
    color: #d8d6ff;
  }

  .app-store-description p,
  .app-store-panel p,
  .app-store-privacy p,
  .app-store-information dd {
    color: #d1d1d6;
  }

  .app-store-panel {
    background: #1c1c1e;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
  }

  .app-store-information dl div {
    border-top-color: rgba(255, 255, 255, 0.14);
  }

}

@media (prefers-color-scheme: dark) and (max-width: 720px) {
  body.app-store-body {
    background:
      radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.08), transparent 28%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 36%, rgba(0, 0, 0, 0.44)),
      #2f3d43;
  }

  .app-store-shell {
    background: #000;
    box-shadow: 0 -10px 44px rgba(0, 0, 0, 0.72);
  }

  .app-store-handle {
    background: #636366;
  }

  .app-store-back {
    background: rgba(118, 118, 128, 0.28);
    color: #f5f5f7;
  }
}

/* About page */
body.about-body {
  color: #1d1d1f;
  background: #f5f5f7;
  background-size: auto;
}

.about-store-shell {
  background: #f5f5f7;
}

.about-product {
  grid-template-columns: 128px minmax(0, 1fr);
}

.about-brand-icon {
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
}

.about-brand-icon img {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.16));
}

.about-mail-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}

.about-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  padding: 34px 0 14px;
}

.about-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.about-card p {
  margin: 0;
}

.about-contact-section {
  margin-bottom: 34px;
  padding: 24px;
}

.about-contact-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.about-contact-heading strong {
  display: block;
  margin: 0;
}

.about-contact-heading p {
  max-width: 620px;
  margin: 8px 0 0;
}

.about-link-list {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.about-link-list a {
  color: #0066cc;
  font-weight: 740;
  line-height: 1.25;
  text-decoration: none;
}

.about-link-list a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-social-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.about-social-link {
  display: grid;
  gap: 10px;
  align-items: start;
  justify-items: center;
  min-width: 0;
  padding: 12px 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.025);
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.about-social-link:hover {
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}

.about-social-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border-radius: 22.5%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 8px 16px rgba(0, 0, 0, 0.1);
}

.about-social-icon img,
.about-social-icon picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-social-icon img {
  object-fit: cover;
}

.about-social-icon-musmulo {
  background: transparent;
}

.about-social-icon-musmulo img {
  object-fit: contain;
  padding: 8px;
}

.about-social-icon.about-social-glyph {
  color: #fff;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.about-social-medium {
  background: #121212;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
}

.about-social-linkedin {
  background: #0a66c2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
}

.about-social-mail {
  background: linear-gradient(135deg, var(--amber), var(--coral));
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.24rem;
}

.about-social-copy {
  display: grid;
  gap: 2px;
  justify-items: center;
  min-width: 0;
  width: 100%;
}

.about-social-title,
.about-social-meta {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-card .about-social-title {
  color: #1d1d1f;
  font-size: 0.94rem;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: none;
}

.about-card .about-social-meta {
  color: #6e6e73;
  font-size: 0.82rem;
  font-weight: 640;
  letter-spacing: 0;
  text-transform: none;
}

.about-footer {
  color: #6e6e73;
}

@media (prefers-color-scheme: dark) {
  body.about-body {
    color: #f5f5f7;
    background: #000;
  }

  .about-store-shell {
    background: #000;
  }

  .about-brand-icon img {
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.5));
  }

  .about-link-grid {
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }

  .about-link-list a,
  .about-mail-link {
    color: #2997ff;
  }

  .about-social-link:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .about-social-link {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
  }

  .about-social-icon {
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.12),
      0 8px 16px rgba(0, 0, 0, 0.34);
  }

  .about-social-icon.about-social-glyph {
    color: #fff;
  }

  .about-card .about-social-title {
    color: #f5f5f7;
  }

  .about-card .about-social-meta {
    color: #98989d;
  }

  .about-footer {
    color: #98989d;
  }
}

@media (max-width: 720px) {
  .about-product {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .about-brand-icon {
    width: 82px;
    height: 82px;
  }

  .about-link-grid {
    padding: 28px 0;
  }

  .about-contact-section {
    margin-bottom: 28px;
    padding: 20px;
  }

  .about-contact-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-social-list {
    grid-template-columns: 1fr;
  }

  .about-social-link {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    justify-items: start;
    padding: 8px;
    border-color: transparent;
    background: transparent;
    text-align: left;
  }

  .about-social-copy {
    justify-items: start;
  }
}

@media (max-width: 900px) {
  .launcher-screen {
    min-height: calc(100vh - 116px);
  }

  .launcher-grid {
    grid-template-columns: repeat(2, 92px);
    width: min(300px, 100%);
    gap: 28px;
    transform: translate(-50%, -50%);
  }

  .launcher-app {
    width: 92px;
  }

  .launcher-app img {
    width: 92px;
    height: 92px;
  }

  .store-hero,
  .sezonometro-store-hero,
  .store-info-grid,
  .store-highlight-grid {
    grid-template-columns: 1fr;
  }

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

  .store-hero {
    min-height: 0;
  }

  .store-hero-art {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .store-download-strip {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 560px) {
  .launcher-screen {
    padding-top: 34px;
  }

  .launcher-grid {
    grid-template-columns: repeat(2, 84px);
    gap: 24px;
    transform: translate(-50%, -50%);
  }

  .launcher-app {
    width: 84px;
  }

  .launcher-app img {
    width: 84px;
    height: 84px;
  }

  .store-main {
    width: min(100% - 24px, 1120px);
    padding-top: 22px;
  }

  .store-topbar {
    min-height: 62px;
    padding: 12px;
  }

  .store-identity {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
  }

  .store-app-icon {
    width: 96px;
    height: 96px;
  }

  .store-identity h1,
  .sezonometro-store-body .store-identity h1 {
    font-size: 2.35rem;
  }

  .store-tagline {
    font-size: 1rem;
  }

  .store-hero-art {
    gap: 10px;
  }

  .store-hero-art img:last-child {
    margin-bottom: 0;
  }

  .store-screenshot-row {
    grid-auto-columns: minmax(150px, 58%);
  }

  .sezonometro-store-art {
    min-height: 420px;
  }

  .sezonometro-store-art > img {
    width: min(290px, 82%);
  }

  .store-metric {
    min-width: 130px;
    padding: 12px;
  }

  .store-metric strong {
    font-size: 1.18rem;
  }

  .about-link-grid {
    grid-template-columns: 1fr;
  }

  .metric-countdown {
    left: 0;
  }

  .metric-pay {
    right: 0;
  }

  .metric-tips {
    left: 2%;
  }

}
