:root {
  color-scheme: dark;
  --color-bg: #030816;
  --color-bg-deep: #01040c;
  --color-surface: #08172d;
  --color-surface-strong: #0b203d;
  --color-border: rgba(112, 207, 255, 0.18);
  --color-border-strong: rgba(112, 207, 255, 0.46);
  --color-text: #f3f8ff;
  --color-muted: #9eafc7;
  --color-accent: #58cfff;
  --color-accent-strong: #258ff2;
  --color-accent-soft: #c3efff;
  --color-success: #61e6a6;
  --shadow-panel: 0 22px 60px rgba(0, 3, 14, 0.36);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 8, 22, 0.28), var(--color-bg) 44%, var(--color-bg) 100%),
    var(--color-bg) url("assets/lyfp-background.webp") center top / cover no-repeat;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.06; }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--color-text);
  color: var(--color-bg);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid transparent;
  transition: background-color 160ms ease, border-color 160ms ease, backdrop-filter 160ms ease;
}
.site-header.is-scrolled {
  border-color: var(--color-border);
  background: rgba(3, 8, 22, 0.9);
  backdrop-filter: blur(16px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; min-height: 44px; color: var(--color-text); text-decoration: none; }
.brand img { flex: 0 0 auto; width: 42px; height: 42px; border: 1px solid var(--color-border-strong); border-radius: 10px; box-shadow: 0 0 24px rgba(37, 143, 242, 0.22); }
.brand > span { display: grid; min-width: 0; line-height: 1.15; }
.brand strong { font-size: 0.82rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.brand small { color: var(--color-muted); font-size: 0.52rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 26px; }
.primary-nav a { color: #c2d0e1; text-decoration: none; font-size: 0.8rem; font-weight: 750; transition: color 140ms ease; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--color-accent); }
.primary-nav .nav-cta { min-height: 42px; padding: 9px 13px; border: 1px solid var(--color-border-strong); border-radius: var(--radius-sm); color: var(--color-text); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--color-border); border-radius: 9px; background: var(--color-surface); cursor: pointer; }
.menu-toggle > span { display: block; height: 2px; margin: 4px 0; background: var(--color-text); }

.hero { position: relative; padding: 150px 0 86px; }
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(rgba(88, 207, 255, 0.032) 1px, transparent 1px), linear-gradient(90deg, rgba(88, 207, 255, 0.032) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 92%);
}
.hero-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(440px, 0.82fr); align-items: center; gap: clamp(48px, 7vw, 94px); }
.hero-copy, .latest-panel { min-width: 0; }
.eyebrow { margin-bottom: 16px; color: var(--color-accent); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.17em; text-transform: uppercase; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(3.4rem, 6.2vw, 6.15rem); font-weight: 900; letter-spacing: -0.065em; text-transform: uppercase; text-wrap: balance; }
h1 span { color: transparent; -webkit-text-stroke: 1.5px var(--color-accent); }
.hero-lede { max-width: 660px; margin-bottom: 30px; color: #bdcadc; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 18px; border: 1px solid transparent; border-radius: var(--radius-sm); text-decoration: none; font-size: 0.82rem; font-weight: 850; transition: transform 120ms ease, background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(0.98); }
.button-primary { background: linear-gradient(135deg, var(--color-accent-strong), #1375d4); box-shadow: 0 12px 30px rgba(37, 143, 242, 0.24); }
.button-primary:hover, .button-primary:focus-visible { box-shadow: 0 15px 35px rgba(37, 143, 242, 0.36); }
.button-secondary { border-color: var(--color-border-strong); background: rgba(8, 23, 45, 0.72); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--color-accent); background: var(--color-surface-strong); }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 28px 0 0; padding: 0; color: var(--color-muted); list-style: none; font-size: 0.74rem; font-weight: 750; }
.trust-list span { margin-right: 5px; color: var(--color-success); }
.latest-panel { padding: 18px; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: linear-gradient(160deg, rgba(11, 32, 61, 0.92), rgba(4, 13, 29, 0.94)); box-shadow: var(--shadow-panel); }
.latest-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 1px 2px 13px; }
.latest-header strong { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }
.latest-header a { display: inline-flex; align-items: center; min-width: 44px; min-height: 44px; color: var(--color-accent); font-size: 0.7rem; font-weight: 800; text-decoration: none; }
.latest-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.latest-grid a { min-width: 0; overflow: hidden; border: 1px solid var(--color-border); border-radius: 9px; background: var(--color-bg); text-decoration: none; transition: border-color 140ms ease, transform 140ms ease; }
.latest-grid a:hover, .latest-grid a:focus-visible { transform: translateY(-2px); border-color: var(--color-accent); }
.latest-grid img { width: 100%; height: auto; aspect-ratio: 1.26; object-fit: cover; }
.latest-grid span { display: block; padding: 8px 7px; overflow: hidden; font-size: 0.64rem; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
.latest-panel > p { display: flex; align-items: center; gap: 8px; margin: 13px 2px 0; color: var(--color-muted); font-size: 0.68rem; }
.status-dot { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--color-success); box-shadow: 0 0 10px rgba(97, 230, 166, 0.7); }

.section { padding: 86px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr); align-items: end; gap: 60px; margin-bottom: 28px; }
.section-heading > * { min-width: 0; }
h2 { margin-bottom: 0; font-size: clamp(2.25rem, 4.4vw, 4.25rem); font-weight: 900; letter-spacing: -0.05em; text-transform: uppercase; text-wrap: balance; }
.section-heading > p { margin-bottom: 3px; color: var(--color-muted); }
.catalog-tags, .service-tags, .spec-list { display: flex; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; }
.catalog-tags { gap: 8px; margin-bottom: 24px; }
.catalog-tags li, .service-tags li, .spec-list li { border: 1px solid var(--color-border); border-radius: 999px; color: #b8c8dc; font-size: 0.63rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.catalog-tags li { padding: 7px 11px; }
.catalog-tags li:last-child { border-style: dashed; color: var(--color-accent); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: linear-gradient(180deg, rgba(11, 29, 55, 0.92), rgba(6, 17, 35, 0.96)); box-shadow: 0 16px 42px rgba(0, 3, 14, 0.2); transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease; }
.product-card:hover { transform: translateY(-4px); border-color: rgba(88, 207, 255, 0.42); box-shadow: 0 22px 54px rgba(0, 3, 14, 0.32); }
.product-media { position: relative; aspect-ratio: 1.26; overflow: hidden; border-bottom: 1px solid var(--color-border); background: var(--color-bg); }
.product-media-link { display: block; width: 100%; height: 100%; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.product-card:hover .product-media img { transform: scale(1.025); }
.preview-toggle { position: absolute; right: 11px; bottom: 11px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 0 11px; border: 1px solid var(--color-border-strong); border-radius: 7px; background: rgba(3, 8, 22, 0.88); color: var(--color-accent-soft); cursor: pointer; backdrop-filter: blur(10px); font-size: 0.6rem; font-weight: 850; letter-spacing: 0.05em; text-transform: uppercase; }
.preview-toggle:hover, .preview-toggle:focus-visible, .preview-toggle[aria-pressed="true"] { border-color: var(--color-accent); background: rgba(14, 75, 128, 0.94); }
.preview-toggle:active { transform: scale(0.97); }
.product-body { padding: 21px; }
.product-title { display: flex; align-items: start; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
.product-title > div { min-width: 0; }
.product-title small { display: block; margin-bottom: 6px; color: var(--color-accent); font-size: 0.6rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.product-title h3 { margin-bottom: 0; overflow-wrap: anywhere; font-size: 1.32rem; letter-spacing: -0.025em; }
.product-title > strong { flex: 0 0 auto; font-size: 1rem; }
.product-body > p { min-height: 67px; margin-bottom: 17px; color: var(--color-muted); font-size: 0.84rem; }
.spec-list { gap: 6px; margin-bottom: 19px; }
.spec-list li { padding: 5px 8px; border-radius: 6px; font-size: 0.57rem; }
.product-link { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; color: var(--color-text); text-decoration: none; font-size: 0.78rem; font-weight: 850; }
.product-link:hover, .product-link:focus-visible { color: var(--color-accent); }
.catalog-note { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; margin-top: 18px; padding: 17px 19px; border: 1px solid var(--color-border); border-radius: 11px; background: rgba(8, 23, 45, 0.66); font-size: 0.77rem; }
.catalog-note strong { color: var(--color-accent-soft); }
.catalog-note span { color: var(--color-muted); }
.catalog-note a { min-height: 44px; color: var(--color-accent); font-weight: 800; text-decoration: none; }

.developer-value { padding-top: 42px; }
.value-panel { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 52px; padding: 42px; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: linear-gradient(130deg, rgba(11, 31, 59, 0.94), rgba(5, 15, 32, 0.95)); box-shadow: var(--shadow-panel); }
.value-intro h2 { margin-bottom: 17px; font-size: clamp(2rem, 3.6vw, 3.35rem); }
.value-intro > p:last-child { margin-bottom: 0; color: var(--color-muted); }
.value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.value-grid article { min-width: 0; padding: 4px 20px 4px 0; }
.value-grid article + article { padding-left: 20px; border-left: 1px solid var(--color-border); }
.value-grid span { color: var(--color-accent); font-size: 0.62rem; font-weight: 900; letter-spacing: 0.12em; }
.value-grid h3 { margin: 12px 0 9px; font-size: 1.02rem; }
.value-grid p { margin-bottom: 0; color: var(--color-muted); font-size: 0.8rem; }

.studio { padding-top: 54px; }
.studio-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr); align-items: center; gap: 50px; }
.studio-visual { margin: 0; overflow: hidden; border: 1px solid var(--color-border-strong); border-radius: var(--radius-md); background: var(--color-surface); box-shadow: var(--shadow-panel); }
.studio-visual img { display: block; width: 100%; height: auto; min-height: 0; object-fit: cover; }
.studio-visual figcaption { display: flex; align-items: center; gap: 8px; padding: 12px 15px; border-top: 1px solid var(--color-border); color: var(--color-muted); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.studio-copy { min-width: 0; }
.studio-copy h2 { margin-bottom: 20px; }
.studio-copy > p { color: var(--color-muted); }
.service-tags { gap: 7px; margin: 22px 0; }
.service-tags li { padding: 6px 9px; }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; }
.email-link { min-width: 0; min-height: 44px; color: var(--color-accent-soft); overflow-wrap: anywhere; font-size: 0.76rem; font-weight: 750; }

.connect { padding-top: 50px; }
.connect-heading h2 { max-width: 760px; }
.profile-grid { display: grid; grid-template-columns: minmax(0, 1.34fr) minmax(320px, 0.66fr); gap: 18px; }
.profile-card { min-width: 0; padding: 26px; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(10, 29, 55, 0.94), rgba(5, 15, 32, 0.96)); box-shadow: 0 16px 42px rgba(0, 3, 14, 0.2); }
.profile-card-studio { border-color: rgba(88, 207, 255, 0.32); }
.profile-card-creator { background: linear-gradient(145deg, rgba(9, 25, 48, 0.92), rgba(4, 12, 26, 0.97)); }
.profile-header { display: flex; align-items: center; gap: 15px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--color-border); }
.profile-header > img, .creator-mark { flex: 0 0 auto; width: 58px; height: 58px; border: 1px solid var(--color-border-strong); border-radius: 13px; }
.profile-header > img { box-shadow: 0 0 24px rgba(37, 143, 242, 0.2); }
.creator-mark { display: grid; place-items: center; background: linear-gradient(145deg, var(--color-surface-strong), #0d3762); color: var(--color-accent-soft); font-size: 0.7rem; font-weight: 950; letter-spacing: 0.06em; }
.profile-header > div { min-width: 0; }
.profile-header small { display: block; margin-bottom: 4px; color: var(--color-accent); font-size: 0.58rem; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.profile-header h3 { margin-bottom: 5px; font-size: 1.35rem; letter-spacing: -0.025em; }
.profile-header p { margin-bottom: 0; color: var(--color-muted); font-size: 0.76rem; }
.social-links-grid { display: grid; gap: 8px; }
.social-links-studio { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.social-links-creator { grid-template-columns: 1fr; }
.social-link { display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; align-items: center; gap: 11px; min-width: 0; min-height: 72px; padding: 9px 11px; border: 1px solid rgba(112, 207, 255, 0.13); border-radius: 10px; background: rgba(3, 10, 23, 0.46); color: var(--color-text); text-decoration: none; transition: transform 120ms ease, border-color 140ms ease, background-color 140ms ease; }
.social-link:hover, .social-link:focus-visible { transform: translateY(-2px); border-color: var(--color-accent); background: rgba(12, 39, 70, 0.82); }
.social-link:active { transform: translateY(0) scale(0.985); }
.social-mark { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--color-border); border-radius: 9px; background: var(--color-surface); color: var(--color-accent); }
.social-mark svg { width: 22px; height: 22px; fill: currentColor; }
.social-link[data-platform="facebook"] .social-mark { border-color: rgba(24, 119, 242, 0.42); background: rgba(24, 119, 242, 0.11); color: #4d9cff; }
.social-link[data-platform="youtube"] .social-mark { border-color: rgba(255, 0, 51, 0.38); background: rgba(255, 0, 51, 0.1); color: #ff385c; }
.social-link[data-platform="telegram"] .social-mark { border-color: rgba(38, 165, 228, 0.42); background: rgba(38, 165, 228, 0.11); color: #43b9f3; }
.social-link[data-platform="website"] .social-mark { border-color: rgba(77, 221, 255, 0.42); background: rgba(77, 221, 255, 0.1); color: #4dddff; }
.social-link[data-platform="itch"] .social-mark { border-color: rgba(250, 92, 92, 0.42); background: rgba(250, 92, 92, 0.1); color: #ff7474; }
.social-link[data-platform="tiktok"] .social-mark { border-color: rgba(37, 244, 238, 0.32); background: linear-gradient(145deg, rgba(37, 244, 238, 0.09), rgba(254, 44, 85, 0.1)); color: #f5fbff; box-shadow: inset 2px 0 rgba(37, 244, 238, 0.12), inset -2px 0 rgba(254, 44, 85, 0.12); }
.social-link[data-platform="instagram"] .social-mark { border-color: rgba(225, 48, 108, 0.4); background: linear-gradient(145deg, rgba(131, 58, 180, 0.2), rgba(225, 48, 108, 0.16), rgba(252, 175, 69, 0.12)); color: #ff79ad; }
.social-link > span:nth-child(2) { display: grid; min-width: 0; gap: 1px; }
.social-link strong { overflow-wrap: anywhere; font-size: 0.78rem; }
.social-link small { color: var(--color-muted); overflow-wrap: anywhere; font-size: 0.63rem; }
.social-link i { color: var(--color-accent); font-size: 0.78rem; font-style: normal; }

.faq { padding-top: 50px; }
.faq-layout { display: grid; grid-template-columns: 0.55fr 1.45fr; align-items: start; gap: 70px; }
.faq-intro h2 { font-size: clamp(2rem, 3.8vw, 3.4rem); }
.faq-list { border-top: 1px solid var(--color-border); }
.faq-list details { border-bottom: 1px solid var(--color-border); }
.faq-list summary { position: relative; min-height: 60px; padding: 18px 48px 18px 0; cursor: pointer; color: #e5effc; font-size: 0.92rem; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 16px; right: 8px; content: "+"; color: var(--color-accent); font-size: 1.25rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; margin: -3px 44px 19px 0; color: var(--color-muted); font-size: 0.84rem; }

.site-footer { padding: 38px 0 max(24px, env(safe-area-inset-bottom)); border-top: 1px solid var(--color-border); background: var(--color-bg-deep); }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a, .footer-bottom a { display: inline-flex; align-items: center; min-width: 44px; min-height: 44px; color: var(--color-muted); text-decoration: none; font-size: 0.74rem; font-weight: 750; }
.footer-links a:hover, .footer-links a:focus-visible, .footer-bottom a:hover, .footer-bottom a:focus-visible { color: var(--color-accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(112, 207, 255, 0.1); color: #7488a3; font-size: 0.72rem; }

.error-page { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100dvh; padding: 30px; text-align: center; }
.error-page img { margin-bottom: 24px; border: 1px solid var(--color-border-strong); border-radius: 20px; }
.error-page h1 { margin-bottom: 10px; color: transparent; font-size: clamp(5rem, 25vw, 10rem); -webkit-text-stroke: 2px var(--color-accent); }
.error-page > p:not(.eyebrow) { margin-bottom: 26px; color: var(--color-muted); }

@media (max-width: 1000px) {
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr); gap: 42px; }
  .product-grid { gap: 13px; }
  .product-body { padding: 18px; }
  .value-panel { grid-template-columns: 1fr; gap: 30px; }
  .studio-panel { gap: 34px; }
}

@media (max-width: 860px) {
  .shell { width: min(calc(100% - 30px), var(--shell)); }
  .header-inner { min-height: 66px; }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; top: calc(100% + 1px); right: 15px; left: 15px; display: none; align-items: stretch; gap: 2px; padding: 10px; border: 1px solid var(--color-border); border-radius: 12px; background: rgba(3, 8, 22, 0.98); box-shadow: var(--shadow-panel); }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { display: flex; align-items: center; min-height: 44px; padding: 8px 10px; }
  .primary-nav .nav-cta { margin-top: 3px; }
  .hero { padding-top: 120px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .latest-panel { max-width: 720px; }
  .section { padding: 70px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading > p { max-width: 680px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
  .product-card:last-child .product-media { height: 100%; aspect-ratio: auto; border-right: 1px solid var(--color-border); border-bottom: 0; }
  .product-card:last-child .product-body { align-self: center; }
  .catalog-note { grid-template-columns: 1fr auto; }
  .catalog-note strong { grid-column: 1 / -1; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { padding: 18px 0; }
  .value-grid article + article { padding-left: 0; border-top: 1px solid var(--color-border); border-left: 0; }
  .studio-panel { grid-template-columns: 1fr; }
  .studio-visual { max-width: 720px; }
  .profile-grid { grid-template-columns: 1fr; }
  .social-links-studio { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-layout { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 600px) {
  .brand small { display: none; }
  .brand strong { font-size: 0.7rem; letter-spacing: 0.055em; }
  .hero { padding: 108px 0 58px; }
  h1 { font-size: clamp(2.65rem, 13vw, 3.55rem); }
  .hero-lede { font-size: 0.96rem; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; gap: 8px; }
  .latest-panel { padding: 12px; }
  .latest-grid { gap: 5px; }
  .latest-grid span { padding: 6px 5px; font-size: 0.56rem; }
  .latest-panel > p { align-items: flex-start; overflow-wrap: anywhere; }
  .section { padding: 58px 0; }
  h2 { font-size: 2.25rem; overflow-wrap: anywhere; }
  .catalog-tags { gap: 6px; }
  .catalog-tags li { padding: 6px 9px; font-size: 0.57rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card:last-child { grid-column: auto; display: block; }
  .product-card:last-child .product-media { aspect-ratio: 1.26; border-right: 0; border-bottom: 1px solid var(--color-border); }
  .product-body > p { min-height: 0; }
  .catalog-note { grid-template-columns: 1fr; }
  .catalog-note strong { grid-column: auto; }
  .catalog-note a { display: flex; align-items: center; }
  .developer-value { padding-top: 28px; }
  .value-panel { padding: 26px 20px; }
  .studio { padding-top: 34px; }
  .studio-visual img { height: min(62vw, 230px); object-position: center; }
  .studio-visual figcaption { align-items: flex-start; overflow-wrap: anywhere; }
  .contact-actions .button { width: 100%; }
  .connect { padding-top: 34px; }
  .profile-card { padding: 20px 16px; }
  .profile-header { align-items: flex-start; }
  .social-links-studio { grid-template-columns: 1fr; }
  .faq { padding-top: 34px; }
  .faq-list summary { font-size: 0.86rem; }
  .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; gap: 7px 16px; }
}

@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; }
}
