:root {
  --bg: #080b19;
  --bg-2: #0f1533;
  --bg-3: #121a42;
  --surface: rgba(255,255,255,0.08);
  --surface-strong: rgba(255,255,255,0.12);
  --surface-light: #ffffff;
  --text: #101827;
  --text-soft: #607089;
  --text-white: rgba(255,255,255,0.96);
  --text-white-soft: rgba(255,255,255,0.75);
  --line: rgba(255,255,255,0.10);
  --line-soft: rgba(12, 18, 38, 0.08);
  --purple: #7c6cff;
  --purple-2: #a988ff;
  --mint: #2dd4bf;
  --mint-2: #7cf5d6;
  --blue: #60a5fa;
  --pink: #ff7ecb;
  --pink-2: #ffb6df;
  --yellow: #ffd86b;
  --shadow-xl: 0 32px 80px rgba(2, 6, 23, 0.38);
  --shadow-lg: 0 24px 60px rgba(8, 15, 40, 0.18);
  --shadow-md: 0 16px 36px rgba(15, 23, 42, 0.10);
  --radius-2xl: 34px;
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 32px));
  --section-space: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(124,108,255,0.26), transparent 24%),
    radial-gradient(circle at 100% 15%, rgba(255,126,203,0.18), transparent 20%),
    radial-gradient(circle at 70% 28%, rgba(45,212,191,0.14), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 18%, #f6f8ff 18%, #f6f8ff 100%);
  line-height: 1.66;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: var(--container); margin: 0 auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: #fff;
  color: #111;
  padding: 10px 16px;
  border-radius: 999px;
}

.decoration {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  opacity: 0.8;
}
.decoration--top {
  top: -140px;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(124,108,255,0.36), rgba(124,108,255,0));
}
.decoration--side {
  top: 260px;
  right: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,126,203,0.26), rgba(255,126,203,0));
}

.hero,
.section,
.site-footer,
.floating-nav { position: relative; z-index: 1; }

.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(22px);
  border-radius: var(--radius-2xl);
}
.glass-card--subtle {
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
}

.hero {
  padding: 58px 0 34px;
  color: var(--text-white);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "main"
    "quick";
  gap: 18px;
  align-items: stretch;
}
.hero__main {
  grid-area: main;
  min-height: 420px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.hero__quick-grid { grid-area: quick; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.hero__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.micro-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.micro-badge--neutral {
  color: rgba(255,255,255,0.88);
}
.hero__title {
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.gradient-text {
  background: linear-gradient(135deg, var(--purple-2), #ffffff 45%, var(--pink-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-text--purple {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-text--mint {
  background: linear-gradient(135deg, var(--mint), #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-text--blue {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-text--pink {
  background: linear-gradient(135deg, var(--pink), #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-text--rainbow {
  background: linear-gradient(135deg, var(--purple), var(--blue), var(--mint), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  margin: 18px 0 0;
  color: var(--text-white);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.52;
}
.hero__lead strong { font-weight: 800; }
.hero__visual {
  position: absolute;
  right: 26px;
  bottom: 20px;
  width: 180px;
  pointer-events: none;
  opacity: 0.96;
}
.hero__visual-img {
  width: 100%;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,0.24));
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.quick-card {

  position: relative;
  overflow: hidden;
  min-height: 124px;
  padding: 18px;
  border-radius: 24px;
  text-decoration: none;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.quick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.24);
}
.quick-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -36% auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}
.quick-card__emoji {
  display: block;
  margin-bottom: 18px;
  font-size: 30px;
}
.quick-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}
.quick-card small {
  display: block;
  margin-top: 8px;
  max-width: 18ch;
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.quick-card__arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  font-size: 18px;
  font-weight: 800;
}
.quick-card--purple { background: linear-gradient(180deg, rgba(124,108,255,0.34), rgba(124,108,255,0.18)); }
.quick-card--mint { background: linear-gradient(180deg, rgba(45,212,191,0.28), rgba(45,212,191,0.16)); }
.quick-card--blue { background: linear-gradient(180deg, rgba(96,165,250,0.28), rgba(96,165,250,0.16)); }
.quick-card--pink { background: linear-gradient(180deg, rgba(255,126,203,0.32), rgba(255,126,203,0.16)); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, #ffffff, #f5f7ff);
  color: #111827;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}
.btn--secondary {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
  color: #ffffff;
}
.btn--glow {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.28), 0 18px 40px rgba(124,108,255,0.34);
}
.btn--large {
  min-height: 54px;
  padding: 0 24px;
}

.floating-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 12px 0;
  background: linear-gradient(180deg, rgba(8,11,25,0.56), rgba(8,11,25,0.24));
  backdrop-filter: blur(18px);
}
.floating-nav__inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  scrollbar-width: none;
}
.floating-nav__inner::-webkit-scrollbar { display: none; }
.floating-nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.floating-nav a.is-active {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.section {
  padding: var(--section-space) 0;
}
.section--alt {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
}
.section--support {
  overflow: hidden;
}
.section--about {
  padding-top: 72px;
}
.section-header {
  margin-bottom: 24px;
}
.section-header--center {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.section-header--support {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.section-header__body {
  flex: 1 1 auto;
  min-width: 0;
}
.section-header__art {
  flex: 0 0 130px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.section-header__art-img {
  width: 130px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,0.12));
}
.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(124,108,255,0.10);
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-title {
  margin: 14px 0 12px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}
.section-desc {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
}
.mobile-only { display: none; }

.bento-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: 18px;
}
.bento-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.bento-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  right: -42px;
  top: -42px;
  opacity: 0.18;
}
.bento-card--large { grid-row: auto; }
.bento-card--highlight { box-shadow: 0 22px 48px rgba(255,126,203,0.18); }
.bento-card--purple::before { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.bento-card--mint::before { background: linear-gradient(135deg, var(--mint), #0ea5e9); }
.bento-card--blue::before { background: linear-gradient(135deg, var(--blue), #4f46e5); }
.bento-card--pink::before { background: linear-gradient(135deg, var(--pink), #a855f7); }
.bento-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.bento-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.06);
  font-size: 12px;
  font-weight: 800;
}
.bento-emoji {
  font-size: 30px;
}
.bento-card h3,
.feature-card h3,
.tool-card h3,
.support-card h3,
.article-card h3,
.about-panel h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.16;
  letter-spacing: -0.03em;
}
.bento-card p,
.feature-card p,
.tool-card p,
.support-card p,
.article-card p,
.about-panel p {
  margin: 0;
  color: var(--text-soft);
}
.bento-card__tags,
.feature-card__tags,
.support-card__tags,
.tool-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}
.mini-tag,
.tool-tag,
.feature-card__tags span,
.support-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.06);
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}
.bento-card__link {
  margin-top: 14px;
  color: var(--purple);
  text-decoration: none;
  font-weight: 800;
}
.bento-decoration {
  position: absolute;
  right: 12px;
  bottom: -14px;
  width: 190px;
  pointer-events: none;
}
.bento-decoration__img {
  width: 100%;
  opacity: 0.94;
  filter: drop-shadow(0 26px 30px rgba(0,0,0,0.12));
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-card--primary {
  border-color: rgba(124,108,255,0.14);
  box-shadow: 0 20px 42px rgba(124,108,255,0.12);
}
.feature-card--highlight {
  border-color: rgba(255,126,203,0.14);
  box-shadow: 0 20px 42px rgba(255,126,203,0.14);
}
.feature-card--support {
  background: linear-gradient(180deg, #fff7fc, #ffffff);
}
.feature-card__corner,
.support-card__corner,
.tool-badge,
.article-badge,
.status-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}
.feature-card__corner,
.tool-badge,
.article-badge {
  background: rgba(124,108,255,0.10);
  color: var(--purple);
}
.status-badge {
  background: rgba(15,23,42,0.08);
  color: #475569;
}
.feature-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 28px;
  background: linear-gradient(135deg, rgba(124,108,255,0.16), rgba(255,126,203,0.10));
}
.feature-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: auto;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #8b5cf6);
}
.feature-card__btn--ghost {
  color: var(--purple);
  background: rgba(124,108,255,0.08);
}
.feature-card__note {
  font-size: 14px;
  color: #7a8799 !important;
}

.tool-grid,
.comparison-grid,
.support-grid,
.article-grid {
  display: grid;
  gap: 18px;
}
.tool-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tool-grid--two,
.comparison-grid,
.support-grid,
.article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tool-card,
.support-card,
.article-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tool-card--featured {
  border-color: rgba(124,108,255,0.14);
  box-shadow: 0 18px 38px rgba(124,108,255,0.12);
}
.tool-card--muted {
  background: linear-gradient(180deg, #f9fbff, #f3f6fd);
}
.tool-badge--muted {
  background: rgba(15,23,42,0.06);
  color: #475569;
}
.section-cta {
  margin-top: 26px;
}
.subsection {
  margin-top: 34px;
}
.subsection-title {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.2;
}

.support-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}
.support-intro__item {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.90));
  border: 1px solid rgba(255,126,203,0.10);
  box-shadow: var(--shadow-md);
}
.support-intro__icon {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 26px;
}
.support-intro__item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}
.support-grid {
  position: relative;
  z-index: 1;
}
.support-card--primary {
  border-color: rgba(255,126,203,0.14);
  box-shadow: 0 18px 40px rgba(255,126,203,0.14);
}
.support-card--secondary {
  border-color: rgba(124,108,255,0.14);
}
.support-card__note {
  font-size: 14px;
  color: #7a8799 !important;
}


.article-grid { align-items: stretch; }
.article-card--wide { grid-column: span 2; }
.article-card {
  background: linear-gradient(180deg, #ffffff, #fbfcff);
}

.about-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, #111832, #1a2550);
  border: 1px solid rgba(255,255,255,0.10);
}
.about-panel p {
  color: var(--text-white-soft);
}
.about-panel__links {
  display: grid;
  gap: 12px;
  align-content: start;
}
.about-panel__links a {
  display: block;
  padding: 16px 18px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

.site-footer {
  padding: 34px 0 96px;
  background: #080b19;
  color: rgba(255,255,255,0.82);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}
.footer-brand h3 {
  margin: 0 0 8px;
  color: #fff;
}
.footer-brand p {
  margin: 0;
  max-width: 54ch;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  text-decoration: none;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  box-shadow: 0 18px 36px rgba(124,108,255,0.32);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.is-revealed {
  animation: cardReveal .6s ease both;
}
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "quick";
  }
  .hero__quick-grid,
  .featured-grid,
  .tool-grid,
  .tool-grid--two,
  .comparison-grid,
  .support-grid,
  .article-grid,
  .about-panel,
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-card--wide { grid-column: auto; }
  .section-header__art {
    flex-basis: 110px;
  }
  .section-header__art-img {
    width: 110px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100%, calc(100% - 24px));
    --section-space: 62px;
  }
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(124,108,255,0.26), transparent 28%),
      linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 13%, #f6f8ff 13%, #f6f8ff 100%);
  }
  .mobile-only { display: inline; }
  .decoration--side { display: none; }
  .hero {
    padding: 46px 0 28px;
  }
  .hero__main,
  .tool-card,
  .support-card,
  .feature-card,
  .article-card,
  .bento-card,
  .about-panel {
    border-radius: 24px;
    padding: 22px 20px;
  }
  .hero__title {
    font-size: 42px;
  }
  .hero__lead {
    font-size: 18px;
    max-width: calc(100% - 92px);
  }
  .hero__visual {
    right: 14px;
    bottom: 16px;
    width: 96px;
  }
  .hero__cta {
    flex-direction: column;
    margin-top: 24px;
  }
  .btn {
    width: 100%;
  }
  .hero__quick-grid,
  .featured-grid,
  .tool-grid,
  .tool-grid--two,
  .comparison-grid,
  .support-grid,
  .article-grid,
  .about-panel,
  .support-intro,
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .floating-nav {
    padding: 8px 0;
  }
  .floating-nav__inner {
    padding: 6px;
  }
  .floating-nav a {
    min-height: 34px;
    font-size: 13px;
  }
  .section-title {
    font-size: 34px;
  }
  .section-header--support {
    display: block;
  }
  .section-header__art {
    margin-top: 10px;
    justify-content: center;
  }
  .section-header__art-img {
    width: 92px;
  }
  .bento-card h3,
  .feature-card h3,
  .tool-card h3,
  .support-card h3,
  .article-card h3 {
    font-size: 22px;
  }
  .footer-content {
    flex-direction: column;
  }
}


/* patch: requested refinements */
.hero__quick-grid small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}
.bento-card p {
  min-height: 4.8em;
}
.bento-card__link {
  margin-top: 14px;
}
.support-grid {
  margin-top: 8px;
}
.section-header--support .section-desc {
  max-width: 52rem;
}
.about-operator {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.about-operator__label {
  margin: 0 0 8px;
  color: rgba(255,255,255,0.72) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-operator h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
}
.about-operator__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.about-operator__links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
}
@media (max-width: 768px) {
  .bento-card p { min-height: 0; }
  .about-operator h3 { font-size: 21px; }
}


/* compact refinements + support normalization */
.section-desc {
  font-size: 15px;
  line-height: 1.72;
}
.bento-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(214px, auto));
  gap: 16px;
}
.bento-card {
  min-height: 214px;
  padding: 22px;
}
.bento-card__header { margin-bottom: 12px; }
.bento-card h3,
.feature-card h3,
.tool-card h3,
.support-card h3,
.article-card h3,
.about-panel h2 {
  margin: 0 0 8px;
  font-size: 26px;
}
.bento-card p,
.feature-card p,
.tool-card p,
.support-card p,
.article-card p,
.about-panel p {
  line-height: 1.68;
}
.bento-card__tags,
.feature-card__tags,
.support-card__tags,
.tool-card__footer {
  padding-top: 12px;
}
.featured-grid,
.tool-grid,
.comparison-grid,
.support-grid,
.article-grid {
  gap: 16px;
}
.feature-card,
.tool-card,
.support-card,
.article-card {
  padding: 22px;
  gap: 12px;
}
.section-cta { margin-top: 20px; }
.section-cta--support { text-align: left; }
.section-header--support {
  align-items: center;
  margin-bottom: 18px;
}
.section-header__art {
  flex: 0 0 118px;
}
.section-header__art-img {
  width: 118px;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.10));
}
.support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.support-card {
  min-height: 100%;
}
.about-panel {
  gap: 20px;
  padding: 24px;
}
.about-operator {
  margin-top: 18px;
  padding: 16px 18px;
}
.about-operator--with-image {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}
.about-operator__figure {
  margin: 0;
}
.about-operator__figure img {
  width: 96px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 24px rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.08);
}
.about-operator__body { min-width: 0; }
.about-operator__links { margin-top: 14px; }
.site-footer { padding: 28px 0 72px; }
@media (max-width: 1100px) {
  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { padding: 42px 0 24px; }
  .hero__main, .hero__character, .hero__trust { padding: 22px; }
  .hero__quick-grid,
  .bento-grid,
  .featured-grid,
  .tool-grid,
  .comparison-grid,
  .support-grid,
  .article-grid,
  .about-panel {
    grid-template-columns: 1fr;
  }
  .section-header--support {
    display: grid;
    grid-template-columns: 1fr 88px;
    gap: 12px;
    align-items: end;
  }
  .section-header__art {
    margin-top: 0;
    justify-content: flex-end;
    flex: 0 0 88px;
  }
  .section-header__art-img {
    width: 88px;
  }
  .about-operator--with-image {
    grid-template-columns: 78px 1fr;
    gap: 14px;
  }
  .about-operator__figure img {
    width: 78px;
    border-radius: 18px;
  }
}
@media (max-width: 560px) {
  .section { padding: 48px 0; }
  .hero__lead,
  .section-desc,
  .bento-card p,
  .feature-card p,
  .tool-card p,
  .support-card p,
  .article-card p,
  .about-panel p {
    line-height: 1.6;
  }
  .hero__quick-grid small {
    font-size: 11px;
    line-height: 1.35;
  }
}


/* minor consistency fixes */
.feature-card--support .feature-card__btn,
.feature-card__btn--ghost {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #8b5cf6);
}
.section-cta--support { text-align: left; }
