:root {
  --cc-heading-en: "Poppins", "Arial Rounded MT Bold", "Hiragino Maru Gothic ProN", "Hiragino Sans", system-ui, sans-serif;
  --cc-ink: #111314;
  --cc-muted: #6b7280;
  --cc-toolbar: #070707;
  --cc-panel: #f5f5f5;
  --cc-grid: #e4e4e4;
  --cc-grid-bold: #cfcfcf;
  --cc-blue: #7bbcff;
  --cc-purple: #b98cff;
  --cc-pink: #ff8fbd;
  --cc-mint: #c8ff2e;
  --cc-accent-pink: #ff7fca;
  --cc-accent-mint: #c8ff2e;
  --cc-accent-blue: #7bbcff;
  --cc-accent-purple: #b98cff;
  --cc-paper: #fffdf8;
  --cc-display-en: "Arial Rounded MT Bold", "Hiragino Maru Gothic ProN", "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  --cc-serif-en: Georgia, "Times New Roman", Times, serif;
  --cc-max: 1120px;
  --cc-gutter: clamp(24px, 4vw, 48px);
  --cc-radius: 24px;
  --cc-shadow: 0 18px 54px rgba(17, 19, 20, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cc-ink);
  overflow-x: hidden;
  background-color: var(--cc-paper);
  background-image:
    linear-gradient(rgba(17, 19, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 20, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.75;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 20;
  background: #fff;
  padding: 8px 12px;
}
.skip-link:focus { top: 12px; }

.top-marquee {
  display: none;
}

.home .top-marquee {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: block;
  overflow: hidden;
  width: 100%;
  contain: paint;
  height: 28px;
  border-bottom: 1px solid rgba(17,19,20,0.16);
  background: var(--cc-mint);
  color: var(--cc-ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 28px;
  white-space: nowrap;
}
.top-marquee__track {
  display: flex;
  width: max-content;
  max-width: none;
  animation: marqueeSlide 22s linear infinite;
  will-change: transform;
}
.top-marquee__group {
  display: flex;
  flex: 0 0 auto;
}
.top-marquee__group span {
  flex: 0 0 auto;
  padding: 0 34px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    backdrop-filter 0.24s ease;
}
.home .site-header {
  position: fixed;
  top: 28px;
  left: 0;
  right: 0;
}
.home .site-header__inner {
  min-height: 68px;
}
.is-scrolled .site-header,
.nav-open .site-header {
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  box-shadow: none;
}
.site-header__inner {
  position: relative;
  max-width: var(--cc-max);
  margin: 0 auto;
  min-height: 68px;
  padding: 12px var(--cc-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}
.brand {
  order: 1;
  color: var(--cc-ink);
  visibility: hidden;
}
.brand__logo {
  display: block;
  width: 80px;
  height: auto;
}
.brand__logo .cls-1 {
  fill: currentColor;
}
.blend-logo {
  position: fixed;
  top: 34px;
  left: max(var(--cc-gutter), calc((100vw - var(--cc-max)) / 2 + var(--cc-gutter)));
  z-index: 60;
  display: inline-flex;
  width: 80px;
  color: var(--cc-ink);
  text-decoration: none;
  pointer-events: auto;
  transform: translateY(-50%);
}
.home .blend-logo {
  top: 62px;
}
.is-scrolled .blend-logo,
.nav-open .blend-logo {
  color: #fff;
  mix-blend-mode: difference;
}
.blend-logo__svg {
  display: block;
  width: 100%;
  height: auto;
}
.blend-logo__svg .cls-1 {
  fill: currentColor;
}
.brand span { font-size: 15px; }
.nav-toggle {
  order: 3;
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--cc-toolbar);
  border-radius: var(--cc-radius);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition:
    opacity 0.22s ease,
    transform 0.26s ease,
    border-radius 0.22s ease;
}
.nav-toggle[aria-expanded="true"] {
  border-radius: 999px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 0;
  transition: transform 0.22s ease, opacity 0.16s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.primary-nav {
  order: 2;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
  transition: padding-right 0.28s ease;
}
.nav-menu-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}
.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a { text-decoration: none; }
.nav-download,
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--cc-radius);
  font-weight: 600;
  text-decoration: none;
}
.nav-download,
.button-primary {
  background: var(--cc-toolbar);
  color: #fff;
}
.nav-download {
  transition: background 0.22s ease, color 0.22s ease;
}
.mobile-download {
  display: none;
  gap: 8px;
}
.button-icon {
  width: 1.18em;
  height: 1.18em;
  flex: 0 0 auto;
  fill: currentColor;
}
.button-secondary {
  background: #fff;
  color: var(--cc-ink);
  border: 1px solid rgba(17,19,20,0.14);
}
.button-light {
  background: var(--cc-mint);
  color: var(--cc-ink);
}
.language-switcher,
.language-switcher ul {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.language-switcher span,
.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 34px;
  padding: 0 10px;
  border: 1px solid rgba(17, 19, 20, 0.12);
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  color: var(--cc-ink);
}
.language-switcher .is-current {
  background: var(--cc-toolbar);
  border-color: var(--cc-toolbar);
  color: #fff;
}
.language-switcher .is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.hero {
  position: relative;
  isolation: isolate;
  max-width: var(--cc-max);
  margin: 0 auto;
  padding: 160px var(--cc-gutter) 136px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 34px;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse 96% 72% at 18% 12%, rgba(255, 127, 202, 0.82), transparent 66%),
    radial-gradient(ellipse 82% 66% at 90% 18%, rgba(200, 255, 46, 0.88), transparent 62%),
    radial-gradient(ellipse 88% 64% at 70% 88%, rgba(123, 188, 255, 0.50), transparent 64%),
    radial-gradient(ellipse 80% 62% at 4% 92%, rgba(255, 205, 235, 0.72), transparent 58%),
    linear-gradient(125deg, #ff7fca 0%, #fff6d9 34%, #efffc3 58%, #c8ff2e 100%);
  background-size: 150% 150%, 140% 140%, 160% 160%, 150% 150%, 180% 180%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V92 C1320 84 1200 84 1080 92 C960 100 840 100 720 92 C600 84 480 84 360 92 C240 100 120 100 0 92 Z' fill='white'/%3E%3C/svg%3E");
  mask-position: 0 100%;
  mask-repeat: repeat-x;
  mask-size: 1440px 100%;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V92 C1320 84 1200 84 1080 92 C960 100 840 100 720 92 C600 84 480 84 360 92 C240 100 120 100 0 92 Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-position: 0 100%;
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-size: 1440px 100%;
  animation: heroGradientShift 10s ease-in-out infinite alternate;
}
.hero::after {
  content: none;
}
.hero__copy h1,
.page-hero h1,
.section-heading h2,
.download-band h2,
.info-grid h2 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}
.hero__copy h1 {
  font-family: var(--cc-heading-en);
  font-size: clamp(50px, 8.4vw, 92px);
  font-weight: 800;
  line-height: 0.92;
}
.hero__copy p {
  margin: 22px 0 0;
  font-size: 17px;
  color: #303437;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--cc-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero .eyebrow {
  font-family: var(--cc-serif-en);
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}
.device-shot {
  padding: 18px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), transparent),
    var(--cc-toolbar);
  box-shadow: var(--cc-shadow);
  animation: deviceFloat 5.5s ease-in-out infinite;
}
.hero-devices {
  position: relative;
  min-width: 0;
  aspect-ratio: 1.18 / 1;
}
.hero-device {
  position: absolute;
  display: block;
  height: auto;
  filter: drop-shadow(0 26px 34px rgba(17, 19, 20, 0.18));
  will-change: transform;
}
.hero-device--ipad {
  width: 96%;
  right: -1%;
  top: 2%;
  animation: deviceFloat 5.8s ease-in-out infinite;
}
.hero-device--iphone {
  z-index: 2;
  width: 34%;
  left: 4%;
  bottom: 2%;
  animation: deviceFloatOffset 4.8s ease-in-out infinite;
}
.device-shot__screen {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  background: #fff;
  display: grid;
  grid-template-rows: 58px 1fr 70px;
  border: 1px solid rgba(255,255,255,0.24);
}
.mock-toolbar,
.mock-panel {
  background: var(--cc-toolbar);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
}
.mock-toolbar span,
.mock-panel span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.mock-toolbar span:first-child { background: #fff; }
.mock-canvas {
  position: relative;
  background-color: #fff;
  background-image:
    linear-gradient(var(--cc-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--cc-grid) 1px, transparent 1px),
    linear-gradient(var(--cc-grid-bold) 1px, transparent 1px),
    linear-gradient(90deg, var(--cc-grid-bold) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px, 96px 96px, 96px 96px;
}
.stitch {
  position: absolute;
  font-size: 34px;
  font-weight: 800;
  animation: stitchPop 3.8s ease-in-out infinite;
}
.s1 { left: 26%; top: 36%; color: var(--cc-pink); }
.s2 { left: 40%; top: 24%; color: var(--cc-blue); animation-delay: 0.3s; }
.s3 { left: 56%; top: 40%; color: var(--cc-toolbar); transform: rotate(28deg); animation-delay: 0.6s; }
.s4 { left: 66%; top: 58%; color: var(--cc-mint); transform: rotate(-18deg); animation-delay: 0.9s; }
.guide-circle {
  position: absolute;
  inset: 17% 28%;
  border: 2px dashed var(--cc-blue);
  border-radius: 50%;
}
.note-card {
  position: absolute;
  left: 24px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: var(--cc-radius);
  background: var(--cc-mint);
  font-weight: 800;
  font-size: 13px;
}

.content-section {
  max-width: var(--cc-max);
  margin: 0 auto;
  padding: 64px var(--cc-gutter);
}
.narrow { max-width: 820px; }
.page-hero {
  margin: 0 auto;
  padding: 58px var(--cc-gutter) 20px;
}
.page-hero > .eyebrow {
  display: none;
}
.section-heading h2,
.download-band h2,
.info-grid h2 {
  font-size: clamp(30px, 4vw, 40px);
}
.page-hero h1 {
  font-size: clamp(32px, 4.4vw, 48px);
}
.page-hero p:not(.eyebrow) {
  color: var(--cc-muted);
  margin: 14px 0 0;
}
.section-heading {
  margin-bottom: 44px;
}
.section-heading p {
  color: var(--cc-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  margin: 18px auto 0;
}
.feature-lead > .section-heading,
.plan-section > .section-heading {
  text-align: center;
}
.feature-grid,
.feature-showcase {
  display: grid;
  gap: 12px;
}
.feature-divider {
  display: flex;
  justify-content: center;
  margin: clamp(42px, 6vw, 74px) 0 clamp(56px, 7vw, 92px);
}
.feature-divider img {
  display: none;
}
.feature-divider::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background: var(--cc-accent-pink);
  -webkit-mask: url("../img/decor/feature-divider-symbol.png") center / contain no-repeat;
  mask: url("../img/decor/feature-divider-symbol.png") center / contain no-repeat;
  transform: rotate(-12deg);
}
.feature-showcase {
  gap: clamp(44px, 6vw, 78px);
}
.feature-showcase article {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}
.feature-showcase article:nth-child(even) .feature-showcase__media {
  order: 2;
}
.feature-showcase article:nth-child(even) {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}
.feature-showcase__media {
  min-width: 0;
}
.feature-showcase__copy {
  max-width: 430px;
}
.feature-showcase__copy h3 {
  display: inline;
  margin: 0;
  background-image: linear-gradient(transparent 58%, rgba(200, 255, 46, 0.86) 58%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 0.82em;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.16;
  transition: background-size 0.72s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 180ms);
}
.feature-showcase article.is-visible .feature-showcase__copy h3 {
  background-size: 100% 0.82em;
}
.feature-showcase__copy p {
  margin: 18px 0 0;
  color: var(--cc-ink);
  font-size: 16px;
  line-height: 1.9;
}
.feature-grid--large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.info-grid article,
.post-card,
.form-shell,
.guide-list article {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--cc-radius);
  padding: 22px;
}
.feature-grid--large article {
  padding: 0;
  border: 1px solid rgba(17,19,20,0.12);
  border-radius: 26px;
  box-shadow: 0 10px 0 rgba(17, 19, 20, 0.06);
  overflow: hidden;
}
.feature-grid--large article:nth-child(1),
.feature-grid--large article:nth-child(2),
.feature-grid--large article:nth-child(3) {
  background: #111314;
  color: #fff;
}
.feature-grid span {
  display: block;
  font-weight: 900;
  color: var(--cc-muted);
  margin-bottom: 18px;
}
.feature-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
}
.feature-grid p {
  margin: 0;
  color: #4b5563;
}
.feature-grid--large article > span,
.feature-grid--large article > h3,
.feature-grid--large article > p {
  margin-left: 22px;
  margin-right: 22px;
}
.feature-grid--large article > p {
  margin-bottom: 22px;
}
.feature-grid--large article > span,
.feature-grid--large article > p,
.feature-grid--large article:nth-child(3) span,
.feature-grid--large article:nth-child(3) p {
  color: rgba(255,255,255,0.76);
}
.feature-shot {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 34px;
  box-shadow: 0 18px 0 rgba(17, 19, 20, 0.06);
  background-color: rgba(255,255,255,0.88);
  background-image:
    linear-gradient(rgba(17, 19, 20, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 20, 0.07) 1px, transparent 1px);
  background-size: 20px 20px;
}
.feature-shot--image {
  object-fit: cover;
  background: #fff;
}
.feature-shot::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px dashed rgba(123, 188, 255, 0.82);
  border-radius: 50%;
}
.feature-shot--symbols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  place-items: center;
}
.feature-shot--symbols span {
  margin: 0;
  color: var(--cc-ink);
  font-size: 24px;
}
.feature-shot--symbols span:nth-child(odd) { color: var(--cc-accent-pink); }
.feature-shot--symbols span:nth-child(2) { color: var(--cc-accent-mint); }
.feature-shot--symbols span:nth-child(4) { color: var(--cc-accent-purple); }
.feature-shot--radial span,
.feature-shot--export span {
  position: absolute;
  display: block;
  border-radius: var(--cc-radius);
  background: var(--cc-accent-pink);
}
.feature-shot--radial span:nth-child(1) {
  width: 38px;
  height: 38px;
  left: 26%;
  top: 32%;
  border-radius: 50%;
  background: var(--cc-accent-mint);
}
.feature-shot--radial span:nth-child(2) {
  width: 48px;
  height: 14px;
  right: 25%;
  top: 44%;
  transform: rotate(24deg);
  background: var(--cc-accent-purple);
}
.feature-shot--radial span:nth-child(3) {
  width: 42px;
  height: 14px;
  left: 38%;
  bottom: 26%;
  transform: rotate(-18deg);
}
.feature-shot--export span:nth-child(1) {
  width: 54%;
  height: 18px;
  left: 22%;
  top: 26%;
}
.feature-shot--export span:nth-child(2) {
  width: 42%;
  height: 18px;
  left: 30%;
  top: 48%;
  background: var(--cc-accent-mint);
}
.feature-shot--export span:nth-child(3) {
  width: 30%;
  height: 18px;
  left: 36%;
  top: 70%;
  background: var(--cc-accent-purple);
}
.feature-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}
.feature-grid--compact article {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(17,19,20,0.1);
  border-radius: 26px;
  background: #fff;
}
.feature-detail-heading {
  margin-top: 46px;
}
.feature-detail-heading h3 {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.16;
}
.feature-detail-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid rgba(17,19,20,0.08);
}
.feature-detail-media--placeholder {
  position: relative;
  overflow: hidden;
  background-color: #ffb1d8;
  background-image:
    linear-gradient(rgba(17, 19, 20, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 20, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.feature-detail-media--placeholder span {
  position: absolute;
  margin: 0;
  border-radius: 999px;
  background: var(--cc-accent-mint);
}
.feature-detail-media--placeholder span:nth-child(1) { width: 44%; height: 22%; left: 12%; top: 18%; }
.feature-detail-media--placeholder span:nth-child(2) { width: 30%; height: 30%; right: 12%; bottom: 14%; background: var(--cc-toolbar); }
.feature-detail-media--placeholder span:nth-child(3) { width: 24%; height: 24%; left: 30%; bottom: 16%; background: #fff; }
.feature-detail-media--2,
.feature-detail-media--6 { background-color: var(--cc-accent-mint); }
.feature-detail-media--3,
.feature-detail-media--7 { background-color: #d8c7ff; }
.feature-detail-media--4,
.feature-detail-media--8 { background-color: #fff; }
.feature-detail-copy {
  padding: 18px;
}
.feature-detail-copy > span {
  margin: 0 0 12px;
  font-size: 12px;
}
.feature-detail-copy h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.feature-detail-copy p {
  font-size: 14px;
  line-height: 1.65;
}
.plan-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(17,19,20,0.12);
  border-radius: 28px;
  background: #fff;
}
.plan-card__header h3 {
  margin: 5px 0 14px;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.14;
}
.plan-card__header > p:last-child {
  color: var(--cc-muted);
}
.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 8px;
}
.plan-card__price strong {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}
.plan-card__price span,
.plan-card__annual {
  font-weight: 800;
}
.plan-card__annual { margin: -2px 0 14px; }
.plan-card ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}
.plan-card li {
  position: relative;
  padding-left: 25px;
  color: #374151;
}
.plan-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cc-accent-mint);
  font-weight: 950;
}
.plan-card > .button { margin-top: auto; align-self: flex-start; }
.plan-detail-link {
  display: flex;
  justify-content: center;
  margin: 28px 0 8px;
}
.plan-detail-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cc-ink);
  font-weight: 400;
  text-decoration: none;
}
.plan-detail-link a:hover span { transform: translateX(4px); }
.plan-detail-link span { transition: transform 180ms ease; }
.plans-page-intro { padding-bottom: 8px; }
.plan-page-cards { padding-top: 32px; }
.plans-price-note { margin: 14px 0 0; color: var(--cc-muted); font-size: 13px; }
.plan-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(17,19,20,0.08);
  border-radius: var(--cc-radius);
}
.plan-table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
}
.plan-table th,
.plan-table td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(17,19,20,0.08);
}
.plan-table th {
  background: var(--cc-toolbar);
  color: #fff;
}
.plan-table td { background: #fff; }
.plan-table tr:nth-child(even) td { background: var(--cc-panel); }
.download-band {
  position: relative;
  width: 100vw;
  max-width: none;
  margin: 12px 50%;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 127, 202, 0.92), transparent 26%),
    radial-gradient(circle at 86% 74%, rgba(200, 255, 46, 0.86), transparent 30%),
    radial-gradient(circle at 72% 16%, rgba(185, 140, 255, 0.56), transparent 22%),
    linear-gradient(135deg, #050505 0%, #080808 58%, #111314 100%);
  color: #fff;
  border: 1px solid rgba(200, 255, 46, 0.45);
  transform: translateX(-50%);
}
.download-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  opacity: 0.42;
}
.download-band__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.download-band__shape {
  position: absolute;
  display: block;
  background: var(--cc-accent-mint);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  opacity: 0.92;
  animation: decorFloat 6s ease-in-out infinite;
}
.download-band__shape--drops {
  width: 126px;
  height: 126px;
  left: max(22px, calc((100vw - var(--cc-max)) / 2 + 18px));
  top: 26px;
  background: var(--cc-accent-pink);
  mask-image: url("../img/decor/shape-drops.png");
  -webkit-mask-image: url("../img/decor/shape-drops.png");
  transform: rotate(-12deg);
}
.download-band__shape--burst {
  width: 112px;
  height: 112px;
  right: max(24px, calc((100vw - var(--cc-max)) / 2 + 30px));
  top: 34px;
  mask-image: url("../img/decor/shape-burst.png");
  -webkit-mask-image: url("../img/decor/shape-burst.png");
  animation-delay: -1.4s;
}
.download-band__shape--sparkle {
  width: 74px;
  height: 74px;
  left: 22%;
  bottom: 34px;
  background: var(--cc-accent-purple);
  mask-image: url("../img/decor/shape-sparkle.png");
  -webkit-mask-image: url("../img/decor/shape-sparkle.png");
  animation-delay: -2.2s;
}
.download-band__shape--flower {
  width: 138px;
  height: 138px;
  right: 20%;
  bottom: -18px;
  background: var(--cc-accent-pink);
  mask-image: url("../img/decor/shape-flower.png");
  -webkit-mask-image: url("../img/decor/shape-flower.png");
  animation-delay: -3s;
}
.download-band__shape--ring {
  width: 84px;
  height: 84px;
  left: 11%;
  bottom: -8px;
  background: #fff;
  mask-image: url("../img/decor/shape-ring.png");
  -webkit-mask-image: url("../img/decor/shape-ring.png");
  opacity: 0.78;
  animation-delay: -4s;
}
.download-band__inner {
  position: relative;
  z-index: 1;
  max-width: var(--cc-max);
  margin: 0 auto;
  padding: 76px var(--cc-gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.download-band h2 {
  max-width: 760px;
  text-shadow: 0 4px 0 rgba(17, 19, 20, 0.24);
}
.download-band .eyebrow { color: rgba(255,255,255,0.72); }
.app-store-badge {
  display: inline-flex;
  flex: 0 0 auto;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.22));
  transition: transform 0.22s ease;
}
.app-store-badge:hover,
.app-store-badge:focus {
  transform: translateY(-2px) rotate(-1deg);
}
.app-store-badge img {
  display: block;
  width: 168px;
  max-width: 100%;
  height: auto;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.support-section {
  padding-top: 48px;
}
.support-heading {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
  text-align: center;
}
.support-heading h2 {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.16;
}
.support-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--cc-ink);
  font-size: 14px;
  line-height: 1.9;
}
.support-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 0.9fr));
  gap: 12px;
}
.support-card {
  min-height: 206px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border-radius: var(--cc-radius);
  background: var(--cc-panel);
}
.support-card--primary {
  background: var(--cc-toolbar);
  border: 1px solid rgba(17,19,20,0.12);
  color: #fff;
}
.support-card--primary .eyebrow,
.support-card--primary p {
  color: rgba(255,255,255,0.76);
}
.support-card:nth-child(2) {
  background: #ffb1d8;
}
.support-card:nth-child(3) {
  background: var(--cc-mint);
}
.support-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}
.plan-comparison-section .section-heading h2 {
  font-size: clamp(26px, 3.4vw, 40px);
}
.support-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--cc-ink);
}
.support-card--primary p {
  color: #fff;
}
.support-card .button {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
  background: var(--cc-mint);
  color: var(--cc-ink);
}
.support-card .support-wishlist-button {
  background: var(--cc-toolbar);
  color: #fff;
}
.support-bmc-button {
  display: inline-flex;
  max-width: 100%;
}
.support-bmc-button img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 44px;
}
.text-link {
  font-weight: 900;
}
.post-list {
  display: grid;
  gap: 12px;
}
.post-card time,
.single-post time {
  color: var(--cc-muted);
  font-size: 13px;
  font-weight: 800;
}
.post-card h2 {
  margin: 6px 0 8px;
}
.post-card h2 a {
  text-decoration: none;
}
.post-card p { margin: 0; color: var(--cc-muted); }
.guide-list {
  display: grid;
  gap: 12px;
}
.guide-list h2 {
  margin: 0 0 8px;
}
.guide-list p { margin: 0; color: #4b5563; }
.guide-overview {
  padding-bottom: 34px;
}
.guide-overview__intro {
  max-width: 720px;
  margin-bottom: 22px;
}
.guide-overview__intro h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.16;
}
.guide-overview__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.guide-overview__cards article,
.guide-step {
  border-radius: var(--cc-radius);
  background: var(--cc-panel);
}
.guide-overview__cards article {
  padding: 22px;
}
.guide-overview__cards article:nth-child(1) { background: #ffe4ef; }
.guide-overview__cards article:nth-child(2) { background: #e8f4ff; }
.guide-overview__cards article:nth-child(3) { background: #f1e8ff; }
.guide-overview__cards span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cc-muted);
  font-size: 13px;
  font-weight: 900;
}
.guide-overview__cards h3,
.guide-step h2 {
  margin: 0 0 10px;
  line-height: 1.22;
}
.guide-overview__cards h3 {
  font-size: 22px;
}
.guide-overview__cards p,
.guide-step p,
.guide-step li,
.guide-faq dd {
  color: #4b5563;
}
.guide-overview__cards p {
  margin: 0;
}
.guide-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding-top: 26px;
}
.guide-toc {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(17,19,20,0.08);
  border-radius: var(--cc-radius);
  background: #fff;
}
.guide-toc a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--cc-radius);
  color: var(--cc-ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.guide-toc a:hover,
.guide-toc a:focus {
  background: var(--cc-panel);
}
.guide-steps {
  display: grid;
  gap: 14px;
}
.guide-step {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
}
.guide-step__number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cc-toolbar);
  color: #fff;
  font-weight: 900;
}
.guide-step__number--text {
  width: auto;
  min-width: 58px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 15px;
}
.guide-step h2 {
  font-size: clamp(24px, 3vw, 34px);
}
.guide-step p {
  margin: 0 0 16px;
}
.guide-step ul {
  margin: 16px 0 0;
  padding-left: 1.2em;
}
.guide-step li + li {
  margin-top: 8px;
}
.guide-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.guide-icon-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.guide-tool-card,
.guide-action-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(17,19,20,0.07);
}
.guide-tool-card {
  padding: 18px;
}
.guide-action-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.guide-action-list article {
  padding: 16px;
}
.guide-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cc-toolbar);
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}
.guide-tool-card h3,
.guide-action-list h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.24;
}
.guide-tool-card p,
.guide-action-list p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
}
.guide-tool-grid,
.guide-export-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.guide-tool-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.guide-tool-grid span,
.guide-export-grid article {
  min-height: 64px;
  display: flex;
  align-items: center;
  border-radius: var(--cc-radius);
  background: #fff;
  font-weight: 900;
}
.guide-tool-grid span {
  padding: 14px;
}
.guide-export-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.guide-export-grid article {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
}
.guide-export-grid span {
  color: var(--cc-muted);
  font-size: 14px;
  font-weight: 700;
}
.guide-faq {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}
.guide-faq dt {
  font-weight: 900;
}
.guide-faq dd {
  margin: 0 0 10px;
}
.prose {
  font-size: 16px;
}
.prose h2,
.prose h3 {
  line-height: 1.25;
}
.privacy-content h2,
.privacy-content h3,
.privacy-content h4 {
  font-weight: 500;
}
.prose a {
  color: #0f62fe;
}
.site-footer {
  border-top: 0;
  background: var(--cc-toolbar);
  color: #fff;
}
.site-footer__inner {
  max-width: var(--cc-max);
  margin: 0 auto;
  padding: 32px var(--cc-gutter);
  display: grid;
  gap: 18px;
}
.footer-brand img { width: 80px; }
.site-footer .footer-brand img { filter: invert(1); }
.footer-social__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-social__list a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social__list a:hover {
  background: var(--cc-accent-mint);
  color: var(--cc-ink);
  transform: translateY(-2px);
}
.footer-social__list svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.footer-social__list span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.footer-links {
  display: block;
}
.footer-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 400;
}
.footer-links a,
.footer-links__list a { text-decoration: none; }
.copyright {
  margin: 0;
  color: rgba(255,255,255,0.66);
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition:
    opacity 0.62s cubic-bezier(.2,.8,.2,1),
    transform 0.62s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-pop {
  transform: translateY(26px) scale(0.92) rotate(-1deg);
}
.reveal-pop.is-visible {
  transform: translateY(0) scale(1) rotate(0deg);
}
.download-band.reveal,
.download-band.reveal-pop {
  opacity: 1;
  transform: translateX(-50%);
}
.download-band.reveal .download-band__inner {
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition:
    opacity 0.62s cubic-bezier(.2,.8,.2,1),
    transform 0.62s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.download-band.reveal.is-visible .download-band__inner {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes heroGradientShift {
  0% { background-position: 0% 20%, 100% 0%, 80% 80%, 0% 100%, 0% 50%; }
  100% { background-position: 22% 34%, 72% 28%, 42% 66%, 18% 72%, 100% 50%; }
}

@keyframes waveMaskDrift {
  0% {
    mask-position: 0 100%;
    -webkit-mask-position: 0 100%;
  }
  100% {
    mask-position: 180px 100%;
    -webkit-mask-position: 180px 100%;
  }
}

@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes deviceFloat {
  0%, 100% { transform: translateY(0) rotate(-0.4deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
}

@keyframes deviceFloatOffset {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}

@keyframes decorFloat {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 0 -12px; rotate: 4deg; }
}

@keyframes stitchPop {
  0%, 100% { scale: 1; }
  45% { scale: 1.08; }
  55% { scale: 0.98; }
}

@media (min-width: 901px) {
  .nav-toggle {
    position: absolute;
    top: 50%;
    right: var(--cc-gutter);
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translate(12px, -50%) scale(0.92);
  }
  .is-scrolled .nav-toggle {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, -50%) scale(1);
  }
  .is-scrolled .nav-toggle[aria-expanded="true"] { transform: translate(0, -50%); }
  .is-scrolled .primary-nav {
    padding-right: 50px;
  }
  .is-scrolled .nav-download {
    background: var(--cc-accent-mint);
    color: var(--cc-ink);
  }
  .is-scrolled .nav-menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    z-index: 12;
    display: flex;
    min-width: 220px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    background: var(--cc-paper);
    border: 1px solid rgba(17, 19, 20, 0.12);
    border-radius: var(--cc-radius);
    box-shadow: 0 16px 38px rgba(17, 19, 20, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transform-origin: top right;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
  }
  .is-scrolled:not(.nav-open) .nav-menu-panel {
    visibility: hidden;
  }
  .is-scrolled .primary-nav.is-open .nav-menu-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
  .is-scrolled .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .is-scrolled .primary-nav__list a {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 0 12px;
    border-radius: 16px;
  }
  .is-scrolled .primary-nav__list a:hover {
    background: rgba(200, 255, 46, 0.38);
  }
  .is-scrolled .language-switcher {
    justify-content: flex-start;
    padding: 8px 12px 0;
    border-top: 1px solid rgba(17, 19, 20, 0.1);
  }
}

@media (max-width: 1024px) {
  body {
    padding-bottom: 0;
  }
  .site-footer__inner {
    padding-bottom: calc(32px + 82px + env(safe-area-inset-bottom));
  }
  .mobile-download {
    position: fixed;
    left: var(--cc-gutter);
    right: var(--cc-gutter);
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 40;
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--cc-accent-mint);
    color: var(--cc-ink);
    box-shadow: 0 16px 36px rgba(17, 19, 20, 0.2);
    font-weight: 600;
    text-decoration: none;
  }
}

@media (max-width: 1024px) and (orientation: landscape), (max-width: 1024px) and (max-height: 640px) {
  .site-footer__inner {
    padding-bottom: 32px;
  }
  .mobile-download {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 96px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-menu-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
    background: var(--cc-paper);
    border: 1px solid rgba(17, 19, 20, 0.12);
    border-radius: var(--cc-radius);
    box-shadow: 0 16px 38px rgba(17, 19, 20, 0.12);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
  }
  .primary-nav__list a,
  .nav-download {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .language-switcher {
    padding-top: 8px;
    border-top: 1px solid rgba(17, 19, 20, 0.1);
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 126px;
    padding-bottom: 104px;
  }
  .device-shot,
  .hero-devices { order: -1; }
  .hero-devices {
    width: min(100%, 720px);
    margin: 0 auto;
  }
  .info-grid,
  .support-grid,
  .guide-overview__cards,
  .guide-layout {
    grid-template-columns: 1fr;
  }
  .feature-showcase {
    gap: 54px;
  }
  .feature-showcase article {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .feature-showcase article:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .feature-showcase article:nth-child(even) .feature-showcase__media {
    order: 0;
  }
  .feature-showcase__copy {
    max-width: none;
  }
  .feature-shot {
    border-radius: 28px;
  }
  .feature-grid--large,
  .feature-grid--compact {
    margin-left: calc(var(--cc-gutter) * -1);
    margin-right: calc(var(--cc-gutter) * -1);
    padding: 2px var(--cc-gutter) 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .feature-grid--large::-webkit-scrollbar,
  .feature-grid--compact::-webkit-scrollbar {
    display: none;
  }
  .feature-grid--large {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: clamp(320px, 76vw, 620px);
  }
  .feature-grid--large article {
    scroll-snap-align: center;
  }
  .feature-grid--compact {
    grid-template-columns: none;
    grid-template-rows: none;
    grid-auto-flow: column;
    grid-auto-columns: clamp(250px, 76vw, 340px);
    align-items: stretch;
  }
  .feature-grid--compact article {
    scroll-snap-align: start;
  }
  .plan-card-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: clamp(300px, 84vw, 520px);
    margin-left: calc(var(--cc-gutter) * -1);
    margin-right: calc(var(--cc-gutter) * -1);
    padding: 2px var(--cc-gutter) 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .plan-card-grid::-webkit-scrollbar { display: none; }
  .plan-card { scroll-snap-align: center; }
  .plan-table th:first-child,
  .plan-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
  }
  .plan-table th:first-child {
    z-index: 2;
  }
  .guide-toc {
    position: static;
    grid-template-columns: repeat(6, minmax(130px, 1fr));
    overflow-x: auto;
  }
  .guide-icon-grid,
  .guide-icon-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guide-tool-grid,
  .guide-export-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .download-band {
    margin-left: 50%;
    margin-right: 50%;
  }
  .download-band__inner {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 520px) {
  .site-header__inner { min-height: 62px; }
  .brand__logo,
  .blend-logo {
    width: 66px;
  }
  .brand span { font-size: 13px; }
  .hero__copy h1 { font-size: 43px; }
  .hero__actions .button { width: 100%; }
  .device-shot {
    padding: 10px;
    border-radius: 24px;
  }
  .device-shot__screen {
    border-radius: 16px;
    grid-template-rows: 48px 1fr 58px;
  }
  .mock-toolbar span,
  .mock-panel span {
    width: 28px;
    height: 28px;
  }
  .content-section { padding: 46px 18px; }
  .info-grid article,
  .support-card,
  .post-card,
  .form-shell,
  .guide-list article,
  .guide-overview__cards article,
  .guide-step {
    padding: 18px;
  }
  .guide-step {
    grid-template-columns: 1fr;
  }
  .guide-icon-grid,
  .guide-icon-grid--compact {
    grid-template-columns: 1fr;
  }
  .guide-tool-card,
  .guide-action-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    border-radius: 22px;
  }
  .guide-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  .guide-step__number {
    width: 42px;
    height: 42px;
  }
  .guide-toc {
    margin-left: -18px;
    margin-right: -18px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .guide-tool-grid,
  .guide-export-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal,
  .reveal-pop {
    opacity: 1;
    transform: none;
  }
}
