:root {
  --navy: #0f172a;
  --navy-deep: #07111f;
  --blue: #2563eb;
  --blue-hot: #0ea5e9;
  --violet: #8b5cf6;
  --white: #f8fafc;
  --ink: #0b1220;
  --muted: #64748b;
  --line: #dbe4f0;
  --surface: #ffffff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  --radius: 8px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 48px);
  color: white;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(248, 250, 252, 0.96);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a {
  opacity: 0.8;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--blue-hot);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  padding: 96px 0 54px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.83) 48%, rgba(7, 17, 31, 0.4) 100%),
    linear-gradient(0deg, rgba(7, 17, 31, 0.62), rgba(7, 17, 31, 0.2));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.app-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
}

.hero-logo {
  width: clamp(190px, 23vw, 310px);
  margin-bottom: 18px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--blue-hot);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.showcase-grid h2,
.studio-grid h2,
.support-grid h2,
.contact-grid h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.hero-copy {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(248, 250, 252, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
}

.button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.button-primary:hover {
  background: #1d4ed8;
}

.button-secondary {
  border-color: rgba(248, 250, 252, 0.55);
  color: white;
}

.button-secondary:hover {
  background: rgba(248, 250, 252, 0.12);
}

.button-light {
  margin-top: 24px;
  background: white;
  color: var(--navy);
}

.button-store {
  margin-left: 8px;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(238px, 100%);
  line-height: 0;
}

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

.store-badge-small {
  width: 188px;
  margin-top: 14px;
}

.dark-button {
  border-color: var(--line);
  color: var(--ink);
}

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

.product-hero .dark-button {
  border-color: rgba(248, 250, 252, 0.55);
  color: white;
}

.product-hero .dark-button:hover {
  background: rgba(248, 250, 252, 0.12);
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.hero-feature {
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(248, 250, 252, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(37, 99, 235, 0.72), rgba(139, 92, 246, 0.45)),
    rgba(7, 17, 31, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.feature-label,
.tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.14);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-icon {
  width: 132px;
  margin: 64px 0 30px;
}

.hero-feature h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.hero-feature p {
  max-width: 330px;
  color: rgba(248, 250, 252, 0.82);
}

.platform-row,
.app-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-row span,
.app-meta span {
  border: 1px solid rgba(248, 250, 252, 0.2);
  border-radius: 999px;
  padding: 6px 10px;
  color: rgba(248, 250, 252, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
}

.quick-strip {
  background: var(--navy-deep);
  color: white;
  border-top: 1px solid rgba(248, 250, 252, 0.12);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-grid a {
  padding: 22px 18px;
  border-right: 1px solid rgba(248, 250, 252, 0.12);
  font-weight: 900;
  text-align: center;
}

.quick-grid a:first-child {
  border-left: 1px solid rgba(248, 250, 252, 0.12);
}

.quick-grid a:hover {
  background: rgba(37, 99, 235, 0.28);
}

.page-hero,
.product-hero {
  padding: 140px 0 82px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(21, 32, 74, 0.96) 58%, rgba(43, 27, 89, 0.94)),
    var(--navy);
  color: white;
}

.compact-hero {
  padding-bottom: 72px;
}

.page-hero-grid,
.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.page-hero h1,
.product-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow),
.product-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(248, 250, 252, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.page-hero img {
  width: min(100%, 360px);
  justify-self: center;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.28));
}

.product-device {
  min-height: 500px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(139, 92, 246, 0.28)),
    rgba(248, 250, 252, 0.1);
  border: 1px solid rgba(248, 250, 252, 0.16);
}

.multiverse-hero {
  background:
    radial-gradient(circle at 74% 28%, rgba(37, 99, 235, 0.34), transparent 30%),
    radial-gradient(circle at 38% 82%, rgba(139, 92, 246, 0.28), transparent 36%),
    linear-gradient(135deg, #050816, #111827 48%, #26114d);
}

.product-icon {
  width: 104px;
  height: 104px;
  margin-bottom: 24px;
  border-radius: 24px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
}

.product-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.product-visual img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
}

.section {
  padding: clamp(72px, 9vw, 124px) 0;
}

.section-heading {
  margin-bottom: 36px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.75fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: end;
}

.section-heading h2,
.showcase-grid h2,
.studio-grid h2,
.support-grid h2,
.contact-grid h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 4vw, 4.35rem);
}

.section-heading p,
.showcase-grid p,
.studio-copy p,
.contact-grid p,
.support-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.apps-section {
  background: #eef4fb;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 18px;
}

.app-card,
.news-card,
.support-cards article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

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

.app-card-featured {
  min-height: 580px;
}

.app-art {
  display: grid;
  place-items: center;
  min-height: 300px;
  overflow: hidden;
}

.app-card-featured .app-art {
  min-height: 358px;
}

.app-art img {
  width: min(46%, 170px);
  filter: drop-shadow(0 20px 34px rgba(15, 23, 42, 0.28));
}

.app-art-blue {
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.95), rgba(139, 92, 246, 0.82)),
    var(--navy);
}

.app-art-violet {
  background:
    radial-gradient(circle at 70% 20%, rgba(14, 165, 233, 0.85), transparent 36%),
    linear-gradient(155deg, #25115f, #8b5cf6);
}

.app-art-dark {
  background:
    radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.7), transparent 34%),
    linear-gradient(155deg, #07111f, #111827);
}

.app-card-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.app-card .tag {
  background: #e8efff;
  color: var(--blue);
}

.app-card h3,
.app-card h2,
.news-card h3,
.support-cards h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.1;
}

.app-card p,
.news-card p,
.support-cards p,
.legal p {
  margin: 0;
  color: var(--muted);
}

.app-card .app-meta span {
  border-color: var(--line);
  color: var(--muted);
}

.text-link,
.support-cards a,
.contact-links a,
.legal a {
  width: fit-content;
  color: var(--blue);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.showcase-section {
  background: white;
}

.showcase-grid,
.studio-grid,
.support-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.showcase-grid .button {
  margin-top: 28px;
}

.device-preview {
  display: grid;
  place-items: center;
  min-height: 520px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(139, 92, 246, 0.16)),
    #edf4ff;
}

.phone-frame {
  width: min(280px, 72vw);
  aspect-ratio: 9 / 18.5;
  padding: 12px;
  border-radius: 34px;
  background: #101827;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
}

.phone-screen {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.72), transparent 34%),
    linear-gradient(155deg, #07111f, #15204a);
}

.phone-screen img {
  width: 86px;
}

.phone-screen strong {
  font-size: 1.45rem;
  line-height: 1;
}

.phone-screen span {
  max-width: 170px;
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.85rem;
}

.news-section {
  background: #f6f9fc;
  border-block: 1px solid var(--line);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  min-height: 260px;
  padding: 24px;
}

.news-card span {
  display: block;
  margin-bottom: 66px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-section {
  background: var(--navy-deep);
  color: white;
}

.studio-section .section-kicker,
.contact-section .section-kicker {
  color: #8bb5ff;
}

.studio-copy p {
  color: rgba(248, 250, 252, 0.74);
}

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

.feature-list li {
  padding-left: 20px;
  border-left: 3px solid var(--violet);
  color: rgba(248, 250, 252, 0.88);
  font-weight: 800;
}

.support-section {
  background: white;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.detail-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.detail-card h2 {
  margin: 72px 0 12px;
  font-size: 1.5rem;
  line-height: 1.1;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
}

.detail-card a {
  color: var(--blue);
  font-weight: 900;
}

.privacy-panel {
  background: #eef4fb;
  border-top: 1px solid var(--line);
}

.privacy-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.privacy-panel p {
  color: var(--muted);
}

.gallery-section {
  background: #060b16;
  color: white;
}

.gallery-section .section-heading h2 {
  color: white;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.screenshot-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.14);
  border-radius: var(--radius);
  background: #0b1220;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.screenshot-grid img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
}

.screenshot-grid .wide-shot img {
  object-position: center;
}

.screenshot-grid figcaption {
  padding: 14px 16px;
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-safety-section {
  background: white;
}

.download-section {
  background: white;
  border-bottom: 1px solid var(--line);
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(139, 92, 246, 0.1)),
    #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.download-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.download-panel p:not(.section-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
}

.data-safety-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.data-safety-list article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.data-safety-list h3,
.policy-doc h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.1;
}

.data-safety-list p,
.policy-doc p {
  margin: 0;
  color: var(--muted);
}

.terms-section {
  background: #f3f7fb;
  border-top: 1px solid var(--line);
}

.policy-doc {
  max-width: 920px;
}

.policy-doc h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.policy-doc h3 {
  margin-top: 30px;
}

.policy-doc a,
.privacy-panel a {
  color: var(--blue);
  font-weight: 900;
}

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

.support-cards article {
  min-height: 240px;
  padding: 24px;
}

.support-cards h3 {
  margin-bottom: 14px;
}

.support-cards a {
  display: inline-flex;
  margin-top: 28px;
}

.contact-section {
  background: linear-gradient(135deg, var(--navy), #15204a 55%, #2b1b59);
  color: white;
}

.contact-grid p {
  color: rgba(248, 250, 252, 0.76);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  font-weight: 900;
}

.contact-links a {
  color: white;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  background: rgba(248, 250, 252, 0.98);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.88rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 12px 13px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(37, 99, 235, 0.18);
  border-color: var(--blue);
}

.legal {
  padding: 58px 0;
  background: #f3f7fb;
  border-top: 1px solid var(--line);
}

.legal-page {
  padding-block: clamp(72px, 9vw, 112px);
}

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

.legal h2 {
  margin: 0 0 18px;
  font-size: 1.6rem;
}

.legal p + p {
  margin-top: 16px;
}

.legal small {
  color: var(--muted);
}

.site-footer {
  background: var(--navy-deep);
  color: white;
  padding: 26px 0;
}

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

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-links {
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.social-links a {
  border-bottom: 1px solid rgba(248, 250, 252, 0.28);
}

.social-links a:hover {
  color: white;
  border-color: white;
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 1000px) {
  .app-hero-grid,
  .split-heading,
  .page-hero-grid,
  .product-hero-grid,
  .showcase-grid,
  .studio-grid,
  .support-grid,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-feature {
    min-height: auto;
  }

  .feature-icon {
    margin-top: 42px;
  }

  .app-grid,
  .news-grid,
  .detail-grid,
  .screenshot-grid,
  .data-safety-list {
    grid-template-columns: 1fr;
  }

  .app-card,
  .app-card-featured {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding-inline: 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 68px 16px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 92svh;
  }

  .page-hero,
  .product-hero {
    padding: 112px 0 64px;
  }

  .page-hero h1,
  .product-hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .page-hero img {
    width: min(78vw, 280px);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-logo {
    width: min(76vw, 280px);
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
    max-width: 10ch;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .store-badge-link {
    width: min(260px, 100%);
    justify-content: flex-start;
  }

  .button-store {
    margin-left: 0;
  }

  .hero-feature {
    display: none;
  }

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

  .quick-grid a {
    border: 1px solid rgba(248, 250, 252, 0.12);
  }

  .app-art,
  .app-card-featured .app-art {
    min-height: 240px;
  }

  .support-cards {
    grid-template-columns: 1fr;
  }

  .device-preview {
    min-height: 420px;
  }

  .product-device {
    min-height: 400px;
  }

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

  .product-icon {
    width: 82px;
    height: 82px;
    border-radius: 18px;
  }

  .product-visual img {
    max-height: none;
  }

  .screenshot-grid img {
    height: auto;
    max-height: 720px;
  }
}

@media (max-width: 430px) {
  .container,
  .hero-inner {
    width: min(100% - 32px, 1180px);
  }

  .brand span {
    font-size: 0.94rem;
  }

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

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