:root {
  --navy: #061a44;
  --navy-soft: #0b255f;
  --blue: #1eb5ee;
  --blue-strong: #118ce7;
  --blue-pale: #edf6ff;
  --page: #f6f8fc;
  --panel: #ffffff;
  --line: #dfe8f4;
  --line-strong: #cbd9ec;
  --text: #12254a;
  --muted: #61708e;
  --shadow: 0 12px 34px rgba(9, 35, 79, 0.05);
  --shadow-soft: 0 4px 18px rgba(9, 35, 79, 0.04);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --font-body: "Avenir Next", "Hiragino Sans", "Yu Gothic", sans-serif;
  --shell-width: 1360px;
  --guide-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(30, 181, 238, 0.1), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fd 26%, #f7faff 100%);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

.panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.site-header {
  background: linear-gradient(180deg, var(--navy) 0%, #072154 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(4, 16, 42, 0.14);
}

.nav-wrap,
.page-shell,
.site-footer,
.guide-page-shell,
.guide-shell-footer .footer-meta {
  width: min(var(--shell-width), calc(100% - 40px));
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-name {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 34%, #52e0ff 0, #52e0ff 26%, transparent 28%),
    radial-gradient(circle at 66% 42%, rgba(82, 224, 255, 0.92) 0, rgba(82, 224, 255, 0.92) 22%, transparent 24%),
    radial-gradient(circle at 46% 74%, rgba(82, 224, 255, 0.8) 0, rgba(82, 224, 255, 0.8) 17%, transparent 19%),
    linear-gradient(135deg, #1ac0ef 0%, #0a7cde 100%);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.1);
}


.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.main-nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.88;
}

.main-nav a.is-active,
.main-nav a:hover {
  opacity: 1;
}

.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 2px;
  background: #6fd6ff;
}

.request-page-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-search,
.hero-search {
  position: relative;
  display: block;
}

.header-search input,
.hero-search input,
.sort-box select,
.request-link,
.sidebar-group label,
.load-more-button,
.primary-action,
.upgrade-button,
.header-link,
.cta-band a {
  transition: 0.18s ease;
}

.header-search input {
  width: 244px;
  height: 42px;
  padding: 0 40px 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.header-search span,
.hero-search span {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--muted);
}

.header-search span {
  color: rgba(255, 255, 255, 0.9);
}

.upgrade-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 17px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1ec7ef 0%, #0f91e8 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(17, 140, 231, 0.18);
}

.avatar-button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
}

.avatar-button span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 20px 0 -8px #fff;
}


.page-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0 54px;
}

.sidebar {
  display: grid;
  gap: 16px;
  align-content: start;
}

.sidebar-summary,
.sidebar-group {
  padding: 20px 18px;
}

.sidebar-summary h1 {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.sidebar-count {
  margin-top: 12px;
  font-size: 1.45rem;
  font-weight: 800;
}

.sidebar-count strong {
  font-size: 2.5rem;
  letter-spacing: -0.06em;
}

.sidebar-copy,
.digest-line small,
.collection-item p,
.benefit-copy p,
.manage-card p,
.cta-band p,
.plugin-card .lead,
.featured-card .lead,
.footer-brand p,
.footer-meta p,
.footer-links a {
  color: var(--muted);
  line-height: 1.7;
}

.group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.group-head h2 {
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.filter-list,
.check-list {
  display: grid;
  gap: 8px;
}

.filter-button,
.check-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: #fbfdff;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.filter-button::before,
.check-item::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 5px;
  border: 1px solid var(--line-strong);
  background: #fff;
}

.filter-button .filter-count,
.check-item .filter-count {
  font-size: 0.78rem;
  color: var(--muted);
}

.filter-button.is-active,
.check-item.is-active {
  border-color: #9ed5ff;
  background: rgba(30, 181, 238, 0.1);
  color: #0d5db7;
}

.filter-button.is-active::before,
.check-item.is-active::before {
  background: linear-gradient(135deg, #1ec7ef 0%, #118ce7 100%);
  border-color: transparent;
  box-shadow: inset 0 0 0 4px #fff;
}

.primary-action,
.load-more-button,
.cta-band a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  font-weight: 800;
}

.header-link,
.request-link,
.load-more-button {
  border: 1px solid #9ec6f5;
  background: #fff;
  color: #0e66ca;
}


.content-area {
  display: grid;
  gap: 30px;
}


.search-row,
.toolbar-row,
.section-head,
.section-head.compact,
.rating-row,
.plugin-meta,
.cta-band,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-search {
  flex: 1;
}

.hero-search input {
  width: 100%;
  height: 50px;
  padding: 0 48px 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
}

.hero-search input::placeholder {
  color: #8795af;
}

.section-caption {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}


.tabs {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.tab {
  padding: 12px 0 10px;
  border-bottom: 2px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}

.tab.is-active {
  color: #0f6fd1;
  border-bottom-color: #0f8ae7;
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-box {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.sort-box select {
  min-width: 152px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
}

.view-toggle {
  display: inline-flex;
  padding: 3px;
  border-radius: 12px;
  background: #f6f9ff;
  border: 1px solid var(--line);
}

.view-button {
  width: 34px;
  height: 32px;
  border-radius: 9px;
  cursor: pointer;
  color: #6d7d97;
}

.view-button.is-active {
  background: #fff;
  color: #0f6fd1;
  box-shadow: 0 6px 12px rgba(9, 35, 79, 0.08);
}

.section-head {
  padding: 0 2px 2px;
}

.section-head a,
.digest-line a,
.collection-item a {
  color: #0e66ca;
  font-weight: 700;
}

.section-eyebrow {
  color: #0e66ca;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-head h1,
.section-head h2 {
  margin-top: 6px;
  font-size: 1.56rem;
  line-height: 1.24;
  letter-spacing: -0.035em;
}

.featured-grid,
.plugin-grid,
.digest-row,
.manage-grid,
.benefit-points,
.footer-links {
  display: grid;
  gap: 18px;
}

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

.featured-card,
.plugin-card,
.digest-card,
.benefit-hero,
.manage-card {
  padding: 22px;
}

.featured-card {
  display: grid;
  gap: 16px;
}

.featured-badge,
.free-badge,
.version-pill,
.plugin-meta span,
.rating,
.setup-minutes,
.pill-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.featured-badge {
  width: fit-content;
  padding: 6px 10px;
  background: rgba(30, 181, 238, 0.12);
  color: #0f7bd6;
}

.featured-head,
.plugin-card-head {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.plugin-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.title {
  font-size: 1.04rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.featured-card .title {
  font-size: 1.12rem;
  line-height: 1.42;
}

.featured-card .lead,
.plugin-card .lead {
  font-size: 0.92rem;
  margin-top: 10px;
}

.plugin-card-copy {
  min-width: 0;
}

.title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.download-count {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 140, 231, 0.12);
  color: #0e66ca;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.title-row .title {
  min-width: 0;
}

.pill-row {
  order: -1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pill-row span,
.plugin-meta span,
.rating,
.setup-minutes {
  padding: 6px 9px;
  background: #f5f8fd;
  color: #456189;
}

.stars {
  color: #f4a300;
  font-size: 1rem;
}

.rating-text {
  font-weight: 700;
}

.free-badge {
  margin-left: auto;
  padding: 6px 10px;
  background: rgba(17, 140, 231, 0.12);
  color: #0f6fd1;
}

.primary-action,
.cta-band a {
  background: #fff;
  border: 1px solid #7db8f0;
  color: #0f6fd1;
}

.featured-card,
.plugin-card,
.digest-card,
.manage-card,
.collection-item,
.digest-line {
  box-shadow: var(--shadow-soft);
}

.featured-card:hover,
.plugin-card:hover,
.digest-line:hover,
.collection-item:hover,
.manage-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(9, 35, 79, 0.08);
}

.primary-action:hover,
.header-link:hover,
.request-link:hover,
.load-more-button:hover,
.cta-band a:hover,
.upgrade-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(17, 140, 231, 0.16);
}

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

.plugin-grid.is-list {
  grid-template-columns: 1fr;
}

.plugin-card {
  display: grid;
  gap: 15px;
  align-content: start;
  min-height: 0;
}

.plugin-grid.is-list .plugin-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 0;
}

.plugin-grid.is-list .plugin-card-head,
.plugin-grid.is-list .pill-row,
.plugin-grid.is-list .plugin-meta {
  grid-column: 1;
}

.plugin-grid.is-list .primary-action {
  grid-column: auto;
  grid-row: auto;
}

.plugin-grid.is-list .card-actions {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.load-more-row {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.load-more-button {
  min-width: 200px;
  padding: 0 22px;
}

.digest-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.digest-card {
  display: grid;
  gap: 16px;
}

.section-head.compact {
  align-items: start;
}

.digest-list,
.collection-list {
  display: grid;
  gap: 12px;
}

.digest-line,
.collection-item {
  display: grid;
  gap: 6px;
  padding: 15px 16px;
  border-radius: 14px;
  background: #fbfdff;
  border: 1px solid var(--line);
}

.digest-line strong,
.collection-item strong {
  font-size: 0.98rem;
  line-height: 1.45;
}

.benefit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 34px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 255, 0.96) 100%),
    #fff;
}

.benefit-copy h2,
.cta-band h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  letter-spacing: -0.04em;
}

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

.benefit-points article {
  display: grid;
  gap: 8px;
}

.benefit-points span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(30, 181, 238, 0.12);
  color: #0f7bd6;
  font-weight: 800;
}

.benefit-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
}

.browser-card {
  width: min(100%, 420px);
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(9, 35, 79, 0.1);
}

.browser-bar {
  display: flex;
  gap: 8px;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d5e2f5;
}

.browser-layout {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.browser-layout aside {
  border-radius: 16px;
  background: linear-gradient(180deg, #0f8ae7 0%, #1466d3 100%);
}

.browser-lines {
  height: 14px;
  border-radius: 999px;
  background: #e7eff9;
}

.browser-lines.large {
  width: 72%;
  height: 18px;
  margin-bottom: 16px;
}

.browser-widget-row,
.browser-table {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.browser-widget-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.browser-widget-row span,
.browser-table span {
  min-height: 50px;
  border-radius: 14px;
  background: #eef5ff;
}

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

.floating-plus {
  position: absolute;
  right: 12px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1ec7ef 0%, #118ce7 100%);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 16px 28px rgba(17, 140, 231, 0.24);
}

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

.manage-card strong {
  font-size: 1rem;
  line-height: 1.5;
}

.cta-band {
  padding: 24px 26px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.cta-band a {
  min-width: 260px;
  padding: 0 22px;
}

.site-footer {
  display: flex;
  justify-content: center;
  padding: 28px 0 36px;
  border-top: 1px solid rgba(18, 37, 74, 0.08);
}

.footer-meta {
  text-align: center;
}

@media (max-width: 1220px) {
  .page-shell {
    grid-template-columns: 1fr;
  }

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

  .sidebar-summary {
    grid-column: 1 / -1;
  }

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

  .digest-row,
  .featured-grid,
  .benefit-points,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-hero,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .nav-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .header-link {
    width: 100%;
  }

  .main-nav,
  .request-page-actions,
  .search-row,
  .toolbar-row,
  .cta-band {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav {
    justify-content: start;
  }

  .page-shell,
  .nav-wrap,
  .site-footer {
    width: min(100% - 20px, 1380px);
  }

  .sidebar,
  .plugin-grid,
  .featured-grid,
  .digest-row,
  .manage-grid,
  .benefit-points,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .plugin-grid.is-list .plugin-card {
    grid-template-columns: 1fr;
  }

  .plugin-grid.is-list .card-actions {
    grid-column: 1;
    grid-row: auto;
    flex-direction: row;
    min-width: 0;
  }

  .plugin-grid.is-list .card-actions > * {
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
  }

  .section-head h2 {
    font-size: 1.42rem;
  }
}

@media (max-width: 640px) {
  .brand {
    gap: 10px;
  }

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

  .title-row {
    grid-template-columns: 1fr;
  }

  .download-count {
    justify-self: start;
  }

  .site-header {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }


  .header-search input,
  .hero-search input,
  .request-link,
  .upgrade-button,
  .primary-action,
  .load-more-button,
  .cta-band a {
    width: 100%;
  }

  .featured-head,
  .plugin-card-head {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .plugin-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .featured-card,
  .plugin-card,
  .digest-card,
  .benefit-hero,
  .manage-card,
  .sidebar-summary,
  .sidebar-group {
    padding: 16px;
  }

  .section-head h2 {
    font-size: 1.3rem;
  }
}

.title-link {
  color: inherit;
  text-decoration: none;
}

.title-link:hover {
  color: #1353e2;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  min-width: 168px;
}

.button-link,
.detail-link,
.primary-action,
.load-more-button,
.header-link,
.request-link,
.cta-band a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  font-weight: 800;
}

.detail-link {
  border: 1px solid #9ec6f5;
  background: #fff;
  color: #0e66ca;
  font-size: 0.92rem;
  text-decoration: none;
}

.detail-link:hover {
  color: #0f3db4;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(17, 140, 231, 0.12);
}

.is-mobile-experience .sidebar-group {
  display: none;
}


.guide-nav-shell,
.guide-meta-band,
.guide-summary {
  width: min(100%, 1120px);
  margin: 20px auto 0;
}

.guide-nav-shell {
  display: grid;
  gap: 14px;
  padding: 22px 26px;
  border: 1px solid rgba(21, 52, 112, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(9, 30, 66, 0.08);
}

.guide-breadcrumbs,
.guide-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.guide-breadcrumbs {
  color: #5c6b8a;
  font-size: 0.92rem;
}

.guide-breadcrumbs a,
.guide-mobile-note,
.guide-link {
  color: #26447e;
  text-decoration: none;
}

.guide-mobile-note {
  margin: 0;
  font-size: 0.92rem;
}

.guide-meta-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.guide-meta-band article,
.request-hero-points article {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 58, 122, 0.08);
  box-shadow: 0 16px 34px rgba(18, 39, 77, 0.08);
}

.guide-meta-band span,
.request-inline-status {
  display: block;
  color: #5e6e90;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.guide-meta-band strong {
  display: block;
  margin-top: 8px;
  color: #09224f;
  font-size: 1.08rem;
  line-height: 1.5;
}

.guide-detail-card {
  margin-top: 20px;
}

.request-page-shell {
  width: min(100% - 32px, 1180px);
  margin: 28px auto 64px;
  display: grid;
  gap: 22px;
}

.request-hero,
.request-form-shell {
  padding: 32px;
}

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

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

.request-form label {
  display: grid;
  gap: 8px;
  color: #17356a;
  font-size: 0.92rem;
  font-weight: 600;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 58, 122, 0.14);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  color: #09224f;
  background: #fff;
}

.request-form textarea {
  resize: vertical;
}

.request-form-wide {
  grid-column: 1 / -1;
}

.request-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.request-submit-row p {
  margin: 0;
  color: #5a6a8d;
  line-height: 1.7;
}

.request-inline-status[data-tone="pending"] {
  color: #8a5b00;
}

.request-inline-status[data-tone="success"] {
  color: #0f7a47;
}

.request-inline-status[data-tone="error"] {
  color: #b42318;
}

.btn.subtle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(19, 83, 226, 0.18);
  color: #1b4ddb;
  background: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 920px) {
  .guide-meta-band,
  .request-hero-points,
  .request-form {
    grid-template-columns: 1fr;
  }

  .request-submit-row {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .card-actions {
    grid-template-columns: 1fr;
  }

  .guide-nav-shell,
  .guide-meta-band,
  .guide-summary,
  .request-hero,
  .request-form-shell {
    width: min(100%, 1120px);
    padding: 18px;
  }

  .request-page-shell {
    width: min(100% - 20px, 1180px);
  }
}


.hero.compact {
  padding: 72px 0 28px;
}

.hero.compact .lead {
  max-width: 720px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1ec7ef 0%, #0f91e8 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(17, 140, 231, 0.18);
}

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

.link-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.link-list li span {
  color: var(--muted);
  font-size: 0.9rem;
}

.link-list li a {
  font-weight: 800;
}

@media (max-width: 720px) {
  .link-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}

.route-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 22px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(30, 181, 238, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 247, 255, 0.96) 100%);
}

.route-intro-copy {
  display: grid;
  gap: 10px;
}

.route-intro-eyebrow {
  color: #0e66ca;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-intro-copy h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.05em;
}

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

.route-intro-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: #35537f;
  font-weight: 700;
}

@media (max-width: 920px) {
  .route-intro {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}


.page-shell-highlights .sidebar-group {
  display: none;
}

.page-shell-highlights .sidebar-summary {
  padding: 24px 20px;
  background: linear-gradient(180deg, #fafdff 0%, #eef7ff 100%);
}

.page-shell-highlights .sidebar-summary h1 {
  font-size: 1.3rem;
}

.page-shell-highlights .toolbar-row {
  display: none;
}

.guide-page .background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.site-header-guide {
  position: sticky;
  top: 0;
  z-index: 20;
}

.guide-page-shell {
  padding: 28px 0 56px;
}

.guide-page .page {
  display: grid;
  gap: 16px;
  width: min(var(--guide-width), 100%);
  margin: 0 auto;
}

.guide-page .hero,
.guide-page .guide-detail-card {
  margin: 0;
}

.guide-page .guide-detail-card {
  padding: 28px;
}

.guide-shell-footer {
  padding-bottom: 28px;
}

.guide-shell-footer .footer-meta {
  padding: 18px 0 0;
}

@media (max-width: 640px) {
  .nav-wrap,
  .page-shell,
  .site-footer,
  .guide-page-shell,
  .guide-shell-footer .footer-meta {
    width: min(var(--shell-width), calc(100% - 20px));
  }

  .guide-page-shell {
    padding-top: 18px;
  }

  .guide-page .page {
    width: 100%;
  }

  .guide-page .guide-detail-card {
    padding: 20px;
  }
}


@media (max-width: 1220px) {
  .page-shell-highlights .plugin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .page-shell-highlights .plugin-grid {
    grid-template-columns: 1fr;
  }
}

.guide-page-clean .hero.guide-hero-clean {
  padding: 12px 0 8px;
}

.guide-page-clean .guide-meta-band,
.guide-page-clean .guide-detail-card {
  margin-top: 16px;
}

.guide-page-clean .guide-detail-card-clean {
  border-radius: 28px;
  box-shadow: 0 22px 46px rgba(9, 30, 66, 0.1);
}

.guide-page-clean .guide-detail-card-clean h2:first-child {
  margin-top: 0;
}

.subhead {
  margin-top: 12px;
  color: #0f6fd1;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-page-clean .guide-hero-clean {
  position: relative;
}

.guide-page-clean .guide-hero-clean::after {
  content: "";
  position: absolute;
  inset: auto 0 -12px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 181, 238, 0.2) 0%, rgba(30, 181, 238, 0) 72%);
  pointer-events: none;
}

.guide-hero-clean-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.guide-hero-copy {
  min-width: 0;
}

.guide-hero-clean-visual {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(9, 34, 79, 0.98) 0%, rgba(14, 111, 209, 0.92) 100%);
  color: #fff;
  box-shadow: 0 24px 44px rgba(9, 30, 66, 0.16);
  overflow: hidden;
}

.guide-hero-clean-visual::after {
  content: "";
  position: absolute;
  inset: auto -34px -42px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 72%);
}

.guide-hero-clean-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.guide-hero-clean-visual strong,
.guide-hero-clean-visual p,
.guide-hero-clean-visual span,
.guide-hero-clean-visual a {
  position: relative;
  z-index: 1;
}

.guide-hero-clean-visual p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.guide-hero-clean-tags,
.guide-hero-clean-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guide-hero-clean-tags span {
  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);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.guide-hero-clean-actions .btn {
  border-color: rgba(255, 255, 255, 0.2);
}

.guide-hero-clean-actions .btn.primary {
  background: #fff;
  color: #0f6fd1;
}

.guide-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.guide-hero-points article {
  padding: 16px 18px;
  border: 1px solid rgba(20, 58, 122, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 28px rgba(18, 39, 77, 0.08);
}

.guide-hero-points strong {
  display: block;
  color: #09224f;
  font-size: 1rem;
}

.guide-hero-points span {
  display: block;
  margin-top: 6px;
  color: #5e6e90;
  line-height: 1.6;
  font-size: 0.9rem;
}

.guide-page-clean .guide-detail-card-clean {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.98) 100%);
}

.guide-highlight-grid,
.guide-section-grid,
.release-grid {
  display: grid;
  gap: 16px;
}

.guide-highlight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 28px;
}

.guide-stat-card,
.guide-note-card,
.release-chip,
.release-entry {
  padding: 18px 20px;
  border: 1px solid rgba(20, 58, 122, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(18, 39, 77, 0.06);
}

.guide-stat-card strong,
.guide-note-card strong,
.release-chip strong,
.release-entry-head strong {
  display: block;
  color: #09224f;
  font-size: 1rem;
}

.guide-stat-card span,
.guide-note-card p,
.release-copy,
.release-fixed,
.release-chip p,
.change-log,
.guide-detail-card-clean p,
.guide-detail-card-clean li {
  color: #566887;
  line-height: 1.8;
  font-size: 0.96rem;
}

.guide-detail-card-clean h2 {
  margin: 34px 0 14px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.guide-detail-card-clean p + p {
  margin-top: 10px;
}

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

.guide-note-card ul,
.change-log {
  margin: 12px 0 0;
  padding-left: 20px;
}

.guide-note-card li + li,
.change-log li + li {
  margin-top: 8px;
}

.guide-step-list {
  margin: 0;
  padding-left: 20px;
}

.guide-step-list li + li {
  margin-top: 10px;
}

.release-panel {
  margin-top: 12px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(8, 32, 79, 0.97) 0%, rgba(15, 111, 209, 0.95) 100%);
  color: #fff;
  box-shadow: 0 22px 40px rgba(9, 30, 66, 0.16);
}

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

.release-chip {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.release-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-panel .release-copy,
.release-panel .release-fixed,
.release-panel .release-chip p,
.release-panel .release-chip strong,
.release-panel .release-fixed a {
  color: #fff;
}

.release-panel .btn {
  margin-top: 14px;
}

.release-entry-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.release-entry-head span {
  color: #6a7da0;
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .guide-hero-clean-shell,
  .guide-hero-points,
  .guide-highlight-grid,
  .guide-section-grid,
  .release-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .release-panel {
    padding: 18px;
  }

  .guide-page-clean .hero.guide-hero-clean {
    padding-top: 4px;
  }
}

/* ===== トップページ ランディング(LP) ===== */
.lp-hero {
  width: min(var(--shell-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 8px;
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 36px;
  align-items: center;
}

.lp-hero-copy {
  min-width: 0;
}

.lp-hero-copy h1 {
  margin-top: 12px;
  font-size: 2.6rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #09224f;
}

.lp-hero-lead {
  margin-top: 18px;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.lp-btn-primary,
.lp-btn-ghost,
.lp-btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  transition: 0.18s ease;
}

.lp-btn-primary {
  background: linear-gradient(135deg, #1ec7ef 0%, #0f91e8 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(17, 140, 231, 0.22);
}

.lp-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(17, 140, 231, 0.28);
}

.lp-btn-ghost {
  background: #fff;
  border: 1px solid var(--line-strong);
  color: #0e66ca;
}

.lp-btn-ghost:hover {
  border-color: #9ec6f5;
}

.lp-hero-note {
  margin-top: 16px;
  color: #8795af;
  font-size: 0.86rem;
}

.lp-hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(9, 34, 79, 0.98) 0%, rgba(14, 111, 209, 0.94) 100%);
  color: #fff;
  box-shadow: 0 26px 50px rgba(9, 30, 66, 0.2);
  overflow: hidden;
}

.lp-hero-visual::after {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 72%);
}

.lp-hero-badge {
  position: relative;
  z-index: 1;
  align-self: start;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 700;
}

.lp-hero-icons {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.lp-hero-icons span {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.lp-hero-icons img {
  width: 56%;
  height: 56%;
  object-fit: contain;
}

.lp-hero-price {
  position: relative;
  z-index: 1;
}

.lp-hero-price strong {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lp-hero-price strong small {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.lp-hero-price span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.lp-hero-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 700;
}

.lp-points {
  width: min(var(--shell-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lp-point {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.lp-point-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-pale);
  color: #0e66ca;
  font-size: 1.2rem;
  font-weight: 800;
}

.lp-point strong {
  display: block;
  margin-top: 16px;
  color: #09224f;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.lp-point p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.96rem;
}

.lp-pricing-band {
  width: min(var(--shell-width), calc(100% - 40px));
  margin: 16px auto 8px;
}

.lp-pricing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: 32px 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(8, 32, 79, 0.97) 0%, rgba(15, 111, 209, 0.95) 100%);
  color: #fff;
  box-shadow: 0 22px 44px rgba(9, 30, 66, 0.18);
}

.lp-pricing-copy {
  min-width: 0;
  flex: 1 1 360px;
}

.lp-pricing-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.lp-pricing-copy h2 {
  margin-top: 8px;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.lp-pricing-copy p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
  font-size: 0.96rem;
}

.lp-pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-pricing-band .lp-btn-primary {
  background: #fff;
  color: #0f6fd1;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.lp-btn-ghost-light {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.lp-btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-footer-rich {
  display: block;
  background: linear-gradient(180deg, #f4f8fd 0%, #eef4fb 100%);
  border-top: 1px solid var(--line);
  padding: 40px 0 28px;
  margin-top: 24px;
}

.footer-inner {
  width: min(var(--shell-width), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

.brand-name-dark {
  color: #09224f !important;
}

.site-footer-rich .footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 36px;
  align-content: start;
}

.site-footer-rich .footer-links a {
  color: #475569;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-footer-rich .footer-links a:hover {
  color: #0e66ca;
}

.site-footer-rich .footer-meta {
  width: min(var(--shell-width), calc(100% - 40px));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: left;
}

@media (max-width: 920px) {
  .lp-hero {
    padding-top: 28px;
  }

  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lp-hero-copy h1 {
    font-size: 2.1rem;
  }

  .lp-points {
    grid-template-columns: 1fr;
  }

  .lp-pricing-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
  }

  .lp-pricing-actions {
    width: 100%;
  }

  .lp-pricing-band .lp-btn-primary,
  .lp-btn-ghost-light {
    width: 100%;
  }

  .upgrade-button {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .lp-hero-copy h1 {
    font-size: 1.8rem;
  }

  .lp-hero-lead {
    font-size: 1rem;
  }

  .lp-cta-row {
    flex-direction: column;
  }

  .lp-cta-row a {
    width: 100%;
  }

  .site-footer-rich .footer-links {
    grid-template-columns: 1fr;
  }
}

/* クリーン版guide: ヒーロー ビジュアルのアイコン枠にプラグインSVGを表示 */
.guide-hero-clean-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

/* ===== DL時メール捕捉モーダル(初回DLのみ・スキップ可) ===== */
.dl-lead-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(6, 26, 68, 0.55);
  backdrop-filter: blur(2px);
}

.dl-lead-modal[hidden] {
  display: none;
}

.dl-lead-card {
  position: relative;
  width: min(440px, 100%);
  padding: 32px 28px 26px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 60px rgba(9, 30, 66, 0.3);
}

.dl-lead-x {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.dl-lead-x:hover {
  background: var(--blue-pale);
  color: #0e66ca;
}

.dl-lead-eyebrow {
  color: #0e66ca;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.dl-lead-card h2 {
  margin-top: 6px;
  color: #09224f;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.dl-lead-lead {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.dl-lead-card input {
  width: 100%;
  height: 48px;
  margin-top: 16px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  box-sizing: border-box;
}

.dl-lead-card input::placeholder {
  color: #8795af;
}

.dl-lead-msg {
  min-height: 18px;
  margin-top: 8px;
  color: #c0392b;
  font-size: 0.84rem;
}

.dl-lead-actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.dl-lead-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1ec7ef 0%, #0f91e8 100%);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(17, 140, 231, 0.22);
}

.dl-lead-skip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.dl-lead-skip:hover {
  color: var(--text);
}
