@import url("https://fonts.googleapis.com/css2?family=Droid+Sans:wght@400;700&display=swap");

:root {
  --bg: #f5efe7;
  --bg-strong: #f0e7dc;
  --surface: rgba(255, 252, 247, 0.88);
  --surface-strong: #fffdf9;
  --surface-tint: rgba(12, 141, 132, 0.1);
  --text: #18202d;
  --muted: #5d6571;
  --line: rgba(24, 32, 45, 0.12);
  --line-strong: rgba(24, 32, 45, 0.2);
  --accent: #0c8d84;
  --accent-strong: #056761;
  --accent-soft: rgba(12, 141, 132, 0.16);
  --accent-contrast: #f9f4ef;
  --highlight: #e58f63;
  --shadow-soft: 0 28px 80px rgba(22, 29, 40, 0.12);
  --shadow-card: 0 18px 48px rgba(22, 29, 40, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 32px));
  --header-height: 84px;
}

body.theme-main {
  --accent: #0c8d84;
  --accent-strong: #056761;
  --accent-soft: rgba(12, 141, 132, 0.16);
  --surface-tint: rgba(12, 141, 132, 0.1);
  --highlight: #e58f63;
}

body.theme-justsellit {
  --accent: #c5682f;
  --accent-strong: #8f4519;
  --accent-soft: rgba(197, 104, 47, 0.16);
  --surface-tint: rgba(197, 104, 47, 0.1);
  --highlight: #174c6c;
}

body.theme-zooli {
  --accent: #1c8f63;
  --accent-strong: #126445;
  --accent-soft: rgba(28, 143, 99, 0.16);
  --surface-tint: rgba(28, 143, 99, 0.1);
  --highlight: #ec8f57;
}

body.theme-echo-notes {
  --accent: #256dce;
  --accent-strong: #184e97;
  --accent-soft: rgba(37, 109, 206, 0.16);
  --surface-tint: rgba(37, 109, 206, 0.1);
  --highlight: #5da9ff;
}

body.theme-matchinsights {
  --accent: #25795d;
  --accent-strong: #194f3d;
  --accent-soft: rgba(37, 121, 93, 0.16);
  --surface-tint: rgba(37, 121, 93, 0.1);
  --highlight: #ddb65f;
}

body.theme-nightpulse {
  --accent: #4158a6;
  --accent-strong: #2d3d7a;
  --accent-soft: rgba(65, 88, 166, 0.16);
  --surface-tint: rgba(65, 88, 166, 0.1);
  --highlight: #8ba3e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Droid Sans", "Helvetica", "Arial", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(229, 143, 99, 0.22), transparent 22%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 48%, #f0e7dc 100%);
}


body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

code {
  font-family: "SFMono-Regular", "SFMono-Regular", Consolas, monospace;
  font-size: 0.94em;
}

::selection {
  background: var(--accent-soft);
}

:focus-visible {
  outline: 3px solid rgba(229, 143, 99, 0.32);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-title,
.display,
.project-card h3,
.value-card h3,
.contact-card h2,
.project-section h2,
.footer-card h2 {
  font-family: "Droid Sans", "Helvetica", "Arial", sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.display {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.98;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.section-copy,
.lead,
.project-lead,
.value-card p,
.contact-card p,
.panel-copy,
.project-card p,
.feature-card p,
.timeline-card p,
.support-card p,
.trust-card p,
.footer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(24, 32, 45, 0.08);
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 241, 0.75);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 34, 0.16);
}

.brand__name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__tagline {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-strong);
  color: var(--text);
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__line {
  position: relative;
}

.nav-toggle__line::before,
.nav-toggle__line::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__line::before {
  top: -6px;
}

.nav-toggle__line::after {
  top: 6px;
}

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

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--accent);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

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

.nav-link--strong {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--text);
  color: #fff !important;
}

.nav-link--strong::after {
  display: none;
}

.hero {
  padding: 72px 0 36px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.project-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: stretch;
}

.hero__copy,
.hero__panel,
.project-hero__copy,
.project-preview {
  position: relative;
}

.lead,
.project-lead {
  margin-top: 24px;
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(24, 32, 45, 0.16);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface-strong);
  color: var(--text);
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.95rem;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.store-badge {
  display: inline-flex;
  width: min(100%, 196px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(17, 24, 39, 0.18);
}

.store-badge svg {
  display: block;
  width: 100%;
  height: auto;
}

.store-badge__frame {
  fill: rgba(17, 24, 39, 0.96);
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 2;
}

.store-badge__eyebrow,
.store-badge__label {
  fill: #fff;
  font-family: "Droid Sans", "Helvetica", "Arial", sans-serif;
}

.store-badge__eyebrow {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.store-badge__label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-points,
.feature-list,
.mini-list,
.contact-list,
.facts,
.domain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-points li,
.pill,
.project-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  font-size: 0.9rem;
}

.hero-points li::before,
.pill::before,
.project-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--highlight);
  box-shadow: 0 0 0 6px rgba(229, 143, 99, 0.12);
}

.panel,
.project-card,
.value-card,
.timeline-card,
.feature-card,
.trust-card,
.contact-card,
.support-card,
.footer-card,
.overview-card,
.architecture-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.panel {
  display: grid;
  gap: 20px;
  padding: 28px;
  overflow: hidden;
}

.panel::after,
.project-preview::after {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(229, 143, 99, 0.28), transparent 68%);
  pointer-events: none;
}

.panel-copy {
  max-width: 38ch;
}

.panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-head h2,
.panel-head h3 {
  margin: 0;
  font-size: 1.5rem;
}

.domain-list {
  display: grid;
  gap: 14px;
}

.domain-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
}

.domain-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.domain-value {
  color: var(--text);
  font-weight: 700;
}

.hero-stats,
.project-grid,
.value-grid,
.timeline-grid,
.feature-grid,
.trust-grid,
.architecture-grid,
.overview-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.hero-stat {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
}

.hero-stat strong,
.project-host,
.fact-value {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
}

.hero-stat span,
.project-meta span,
.fact-label {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

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

.project-card {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.project-card__top,
.project-card__footer,
.project-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.project-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(24, 32, 45, 0.16);
  overflow: hidden;
}

.project-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshots-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 1;
}

.screenshots-row img {
  flex: 1;
  min-width: 0;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.22);
}

.screenshots-row--single {
  justify-content: center;
}

.screenshots-row--single img {
  flex: none;
  width: min(60%, 240px);
}

.project-preview--cover > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  z-index: 0;
}

.screenshots-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
}

.screenshots-gallery::-webkit-scrollbar {
  height: 4px;
}

.screenshots-gallery::-webkit-scrollbar-track {
  background: var(--line);
  border-radius: 999px;
}

.screenshots-gallery::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 999px;
}

.screenshots-gallery img {
  flex-shrink: 0;
  height: 320px;
  width: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
}

.project-card h3 {
  margin: 2px 0 0;
  font-size: 1.7rem;
}

.project-kind {
  margin: 0 0 6px;
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-list {
  display: grid;
  gap: 12px;
}

.mini-list li,
.feature-list li,
.contact-list li,
.domain-point {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.72;
}

.mini-list li::before,
.feature-list li::before,
.contact-list li::before,
.domain-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

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

.architecture-card,
.overview-card,
.contact-card,
.support-card,
.footer-card {
  padding: 28px;
}

.architecture-card h3,
.overview-card h3,
.feature-card h3,
.trust-card h3,
.contact-card h2,
.support-card h3,
.footer-card h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

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

.value-card,
.timeline-card,
.feature-card,
.trust-card {
  padding: 24px;
}

.value-card__index,
.timeline-card__step,
.feature-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-tint);
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.value-card h3,
.timeline-card h3,
.feature-card h3,
.trust-card h3 {
  margin-top: 18px;
}

.timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}


.project-meta {
  flex-wrap: wrap;
  margin-top: 32px;
}

.project-pill {
  background: rgba(255, 255, 255, 0.74);
}

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

.facts li,
.facts div {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
}

.fact-label,
.facts dt {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.facts dd,
.fact-value {
  margin: 0;
  font-weight: 700;
}

.project-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.82), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.project-preview::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: calc(var(--radius-xl) - 8px);
}

.preview-window {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 28px;
  background: rgba(17, 24, 39, 0.86);
  color: #e9edf3;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.3);
}

.preview-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.preview-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.preview-screen {
  display: grid;
  gap: 14px;
}

.preview-banner,
.preview-card,
.preview-note {
  border-radius: 20px;
}

.preview-banner {
  min-height: 124px;
  padding: 18px;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
}

.preview-banner strong,
.preview-card strong,
.preview-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.preview-banner span,
.preview-card span,
.preview-note span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.6;
}

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

.preview-card {
  min-height: 106px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.preview-note {
  width: 190px;
  margin-left: auto;
  margin-top: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.project-section {
  padding-top: 36px;
}

.feature-card,
.trust-card {
  display: grid;
  gap: 12px;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.contact-card,
.support-card,
.footer-card {
  display: grid;
  gap: 16px;
}

.legal-page {
  padding: clamp(24px, 4vw, 44px);
}

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

.legal-content {
  display: grid;
  gap: 20px;
  color: var(--muted);
}

.legal-content h2,
.legal-content h3 {
  margin: 0;
  color: var(--text);
  font-family: "Droid Sans", "Helvetica", "Arial", sans-serif;
  letter-spacing: -0.02em;
}

.legal-content h2 {
  font-size: 1.75rem;
}

.legal-content h3 {
  font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
  margin: 0;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.legal-divider {
  height: 1px;
  background: var(--line);
}

.contact-list {
  display: grid;
  gap: 12px;
}

.support-card {
  position: relative;
  overflow: hidden;
}

.support-card::after,
.footer-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -40px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
}

.footer {
  padding: 0 0 40px;
}

.footer-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--muted);
}

.copyright {
  color: var(--muted);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 980px) {
  .project-hero,
  .architecture-grid,
  .overview-grid,
  .contact-grid,
  .footer-card {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .value-grid,
  .feature-grid,
  .trust-grid,
  .hero-stats,
  .facts,
  .timeline-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-preview {
    min-height: auto;
  }

  .footer-card {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 92px;
  }

  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 12px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 253, 249, 0.95);
    box-shadow: var(--shadow-card);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 4px;
  }

  .site-nav a::after {
    bottom: 2px;
  }

  .hero {
    padding-top: 44px;
  }

  .project-hero,
  .project-grid,
  .value-grid,
  .feature-grid,
  .trust-grid,
  .hero-stats,
  .facts,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .project-card,
  .value-card,
  .timeline-card,
  .feature-card,
  .trust-card,
  .contact-card,
  .support-card,
  .footer-card,
  .overview-card,
  .architecture-card,
  .panel,
  .project-preview {
    padding: 22px;
  }

  .project-card__top,
  .project-card__footer,
  .project-meta,
  .domain-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .display {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .section-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .preview-window {
    width: 100%;
  }

  .store-badge {
    width: min(100%, 260px);
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-note {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
