*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --ink: #2a2a2a;
  --gray: #454545;
  --line: #e8e8e4;
  --off: #f6f6f4;
  --white: #ffffff;
  --deep: #153830;
  --green: #0d6b3a;
  --forest: #285d4f;
  --lime: #c3ff73;
  --font-jp: "Noto Sans JP", "Yu Gothic", "Hiragino Sans", sans-serif;
  --font-en: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-jp);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
}

.header.scrolled {
  box-shadow: 0 16px 40px rgba(10, 10, 10, 0.08);
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 28px;
  height: 76px;
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 28px;
}

.brand img {
  height: 36px;
  width: auto;
}

.brand {
  align-items: center;
  background: #ffffff;
  display: flex;
  padding: 4px 0;
}

.nav {
  align-items: center;
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.nav-link,
.text-link {
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 12px;
}

.nav-link:hover,
.text-link:hover {
  color: var(--green);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}

.hamburger span {
  background: var(--black);
  display: block;
  height: 2px;
  width: 24px;
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--forest);
  color: var(--white);
}

.btn-lime {
  background: var(--forest);
  box-shadow: 0 16px 30px rgba(40, 93, 79, 0.18);
  color: var(--white);
}

.final-cta .btn-lime {
  background: var(--lime);
  color: var(--black);
}

.btn-outline {
  border: 1px solid rgba(10, 10, 10, 0.18);
  color: var(--black);
}

.btn-outline.light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.section,
.hero-inner,
.footer-inner {
  margin: 0 auto;
  max-width: 1600px;
  padding-left: 28px;
  padding-right: 28px;
}

.section {
  padding-bottom: 76px;
  padding-top: 76px;
}

.section-bleed {
  padding-top: 76px;
}

.hero {
  background:
    linear-gradient(110deg, rgba(195, 255, 115, 0.18), rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 82% 26%, rgba(40, 93, 79, 0.12), transparent 31%),
    var(--off);
  min-height: 640px;
  overflow: hidden;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(360px, 0.82fr) minmax(480px, 1.18fr);
  min-height: 560px;
  padding-bottom: 46px;
  padding-top: 50px;
}

.eyebrow,
.section-label {
  color: var(--green);
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 0.82rem;
}

.hero h1,
.section h2,
.final-cta h2 {
  color: var(--black);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.28;
}

.hero h1 {
  font-size: clamp(2rem, 3.25vw, 3.45rem);
  margin-bottom: 20px;
  max-width: 610px;
}

.hero h1 span {
  color: var(--forest);
}

.lead {
  color: var(--ink);
  font-size: clamp(0.86rem, 0.92vw, 0.98rem);
  line-height: 1.9;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  background: linear-gradient(150deg, #edf8f3, #dcefe8);
  border: 1px solid rgba(40, 93, 79, 0.16);
  border-radius: 20px;
  box-shadow: 0 28px 58px rgba(21, 56, 48, 0.18);
  color: var(--black);
  padding: 24px;
}

.hero h1.hero-title-compact {
  font-size: clamp(1.65rem, 2.25vw, 2.5rem);
  line-height: 1.42;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-line-accent {
  color: var(--forest);
}

.hero-title-compact small {
  color: var(--black);
  display: inline-block;
  font-size: 0.66em;
  font-weight: 800;
}

.product-illustration {
  position: relative;
}

.device-frame {
  background: #0c211c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.device-bar {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
}

.device-bar span {
  background: rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  height: 7px;
  width: 7px;
}

.device-bar strong {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-en);
  font-size: 0.72rem;
  margin-left: auto;
}

.device-body {
  display: grid;
  grid-template-columns: 68px 1fr;
  min-height: 285px;
}

.device-sidebar {
  background: rgba(255, 255, 255, 0.05);
  padding: 22px 14px;
}

.device-sidebar i {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  display: block;
  height: 30px;
  margin-bottom: 12px;
}

.device-main {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.2fr 0.8fr;
  padding: 18px;
}

.ai-search-card,
.article-card,
.rank-mini {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px;
}

.ai-search-card {
  grid-column: 1 / -1;
}

.ai-search-card small,
.article-card small,
.rank-mini span,
.hero-cost-note span,
.hero-cost-note small {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-search-card strong {
  color: var(--lime);
  display: block;
  font-family: var(--font-en);
  font-size: 2.1rem;
  line-height: 1;
  margin: 10px 0 6px;
}

.ai-search-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.article-card strong,
.rank-mini strong {
  color: var(--white);
  display: block;
  font-size: 1rem;
  margin: 8px 0 12px;
}

.article-card div span {
  background: rgba(195, 255, 115, 0.28);
  border-radius: 999px;
  display: block;
  height: 8px;
  margin-top: 8px;
}

.article-card div span:nth-child(2) {
  width: 78%;
}

.article-card div span:nth-child(3) {
  width: 58%;
}

.rank-mini strong {
  color: var(--lime);
  font-family: var(--font-en);
  font-size: 2rem;
}

.hero-cost-note {
  align-items: end;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: -22px;
  box-shadow: 0 20px 44px rgba(21, 56, 48, 0.18);
  color: var(--black);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  left: 26px;
  padding: 16px 18px;
  position: absolute;
  right: 26px;
}

.hero-cost-note span,
.hero-cost-note small {
  color: var(--gray);
}

.hero-cost-note strong {
  color: var(--forest);
  font-family: var(--font-en);
  font-size: 1rem;
  line-height: 1.55;
}

.screenshot-slot {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(195, 255, 115, 0.2), transparent 48%),
    repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(40, 93, 79, 0.045) 32px),
    #f7fbf9;
  border: 2px dashed rgba(40, 93, 79, 0.28);
  border-radius: 16px;
  color: var(--deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 42px;
  text-align: center;
}

.screenshot-slot-hero {
  min-height: 340px;
}

.screenshot-object {
  background: var(--white);
  border: 0;
  border-radius: 16px;
  display: block;
  height: auto;
  min-height: 360px;
  object-fit: contain;
  overflow: hidden;
  width: 100%;
}

.screenshot-object[type="image/png"] {
  aspect-ratio: 8 / 5;
}

.screenshot-frame {
  position: relative;
  width: 100%;
}

.screenshot-zoom {
  background: rgba(21, 56, 48, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  bottom: 16px;
  box-shadow: 0 10px 24px rgba(10, 10, 10, 0.16);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 14px;
  position: absolute;
  right: 16px;
  z-index: 3;
}

.screenshot-zoom:hover {
  background: var(--green);
}

.screenshot-slot strong {
  display: block;
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  line-height: 1.45;
  margin: 16px 0 10px;
}

.screenshot-slot p,
.screenshot-slot small {
  color: var(--gray);
  font-size: 0.84rem;
  max-width: 480px;
}

.screenshot-slot small {
  margin-top: 16px;
}

.screenshot-badge {
  background: var(--forest);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  padding: 6px 12px;
}

.proof-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.proof-strip-inner {
  align-items: center;
  display: grid;
  gap: 16px 32px;
  grid-template-columns: auto auto minmax(260px, 1fr);
  margin: 0 auto;
  max-width: 1600px;
  padding: 44px 28px;
}

.proof-score {
  align-items: center;
  display: flex;
  gap: 14px;
}

.proof-score strong {
  color: var(--forest);
  font-family: var(--font-en);
  font-size: 4.25rem;
  line-height: 1;
}

.proof-score strong small {
  font-size: 1.8rem;
}

.proof-score span {
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.4;
  white-space: nowrap;
}

.proof-stars {
  color: #f4aa00;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.proof-stars b {
  color: var(--black);
  font-family: var(--font-en);
  margin-left: 8px;
}

.proof-strip-inner > p {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.proof-source {
  color: var(--gray);
  font-size: 0.67rem;
  grid-column: 1 / -1;
  text-align: right;
}

.price-shift {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 28px;
}

.price-shift span,
.price-shift small,
.hero-stats span,
.rank-card span,
.rank-card strong,
.mock-top small,
.plan span,
.step-grid span,
.quality-grid span {
  color: rgba(255, 255, 255, 0.64);
  display: block;
  font-family: var(--font-en);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-shift strong {
  align-items: center;
  color: var(--lime);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 2.45vw, 2.75rem);
  font-weight: 900;
  gap: 16px;
  line-height: 1.05;
  margin: 14px 0 4px;
}

.price-shift i {
  background: rgba(255, 255, 255, 0.36);
  display: inline-block;
  height: 2px;
  width: 48px;
}

.hero-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 22px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 18px;
}

.hero-stats strong {
  color: var(--white);
  display: block;
  font-family: var(--font-en);
  font-size: 1.38rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 6px;
}

.split {
  align-items: start;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.section h2 {
  font-size: clamp(1.45rem, 2.05vw, 2.25rem);
  letter-spacing: 0;
}

.section-text,
.wide-copy p,
.section-head p,
.plan p,
.more-grid p,
.step-grid p,
.quality-grid p,
.cost-compare p,
.shift-card p,
.note,
.faq-answer p,
.final-cta p {
  color: var(--gray);
  font-size: 0.96rem;
  line-height: 1.9;
}

.search-shift {
  align-items: stretch;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto 1.35fr;
  margin-top: 70px;
}

.shift-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
}

.shift-card.active {
  background: var(--forest);
  color: var(--white);
}

.shift-card span {
  color: var(--green);
  display: block;
  font-family: var(--font-en);
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.shift-card strong {
  display: block;
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  line-height: 1.25;
  margin-bottom: 12px;
}

.shift-card.active p {
  color: rgba(255, 255, 255, 0.72);
}

.shift-card.active span {
  color: var(--lime);
}

.situation .split {
  align-items: start;
}

.situation .section-text {
  max-width: 520px;
  padding-top: 28px;
}

.aio-section {
  background: linear-gradient(145deg, var(--deep), var(--forest));
  color: var(--white);
  max-width: none;
  padding-left: max(28px, calc((100vw - 1600px) / 2 + 28px));
  padding-right: max(28px, calc((100vw - 1600px) / 2 + 28px));
}

.aio-section h2,
.aio-section .section-head p,
.aio-section .section-label {
  color: var(--white);
}

.aio-section .section-head p {
  opacity: 0.78;
}

.aio-section .cost-compare > div:not(.compare-mark) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.aio-section .cost-compare p,
.aio-section .cost-compare span {
  color: rgba(255, 255, 255, 0.72);
}

.aio-section .compare-mark {
  color: var(--lime);
}

.aio-section .cost-compare .highlight {
  background: rgba(195, 255, 115, 0.16) !important;
  border-color: rgba(195, 255, 115, 0.28) !important;
}

.aio-section .cost-compare .highlight strong {
  color: var(--lime);
}

.aio-section .cost-compare .highlight p,
.aio-section .cost-compare .highlight span {
  color: rgba(255, 255, 255, 0.82);
}

.shift-arrow,
.compare-mark {
  align-items: center;
  color: var(--green);
  display: flex;
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
}

.what {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--black);
  max-width: none;
  padding-left: max(28px, calc((100vw - 1600px) / 2 + 28px));
  padding-right: max(28px, calc((100vw - 1600px) / 2 + 28px));
}

.what h2 {
  color: var(--black);
}

.wide-copy {
  max-width: 700px;
}

.wide-copy p {
  color: var(--gray);
  max-width: 680px;
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 54px;
}

.feature-strip span {
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--forest);
  font-weight: 800;
  padding: 14px 18px;
}

.section-head {
  margin: 0 auto 44px;
  max-width: 720px;
  text-align: center;
}

.section-head.compact {
  max-width: 680px;
}

.section-head p {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

.section-head h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}

.section-head-left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-head-left h2,
.section-head-left p {
  margin-left: 0;
  margin-right: 0;
}

.split h2 {
  max-width: 560px;
}

.what-head {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.what-head h2,
.what-head p {
  margin-left: 0;
  margin-right: 0;
}

.what-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.what-grid div {
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.what-grid span {
  color: var(--green);
  display: block;
  font-family: var(--font-en);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.what-grid strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.what-grid p {
  color: var(--gray);
  font-size: 0.86rem;
}

.quality-grid,
.more-grid,
.step-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.quality-grid div,
.more-grid div,
.step-grid div,
.plan,
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

#value {
  background: linear-gradient(180deg, #f8faf7 0%, #ffffff 100%);
}

#value .section-label {
  background: rgba(13, 107, 58, 0.09);
  border-radius: 999px;
  color: var(--green);
  padding: 5px 10px;
}

#value .section-head-left h2 span,
#value .section-head-left h2 em {
  color: var(--forest);
}

#value .quality-grid div {
  border-color: rgba(40, 93, 79, 0.18);
  box-shadow: 0 12px 28px rgba(21, 56, 48, 0.06);
}

#value .quality-grid div:nth-child(1),
#value .quality-grid div:nth-child(4) {
  background: #f3fbef;
}

.quality-grid div {
  min-height: 172px;
  padding: 22px;
}

.quality-grid span,
.step-grid span {
  color: var(--green);
}

.quality-grid strong,
.more-grid strong,
.step-grid strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.45;
  margin-bottom: 12px;
}

.ai-balance {
  background: linear-gradient(90deg, var(--off), #ffffff);
  max-width: none;
  padding-left: max(28px, calc((100vw - 1600px) / 2 + 28px));
  padding-right: max(28px, calc((100vw - 1600px) / 2 + 28px));
}

.product-showcase {
  max-width: none;
  padding-left: max(28px, calc((100vw - 1600px) / 2 + 28px));
  padding-right: max(28px, calc((100vw - 1600px) / 2 + 28px));
}

.showcase-list {
  display: grid;
  gap: 34px;
  margin: 0 auto;
  max-width: 1544px;
}

.showcase-row {
  align-items: center;
  background: #eef7fb;
  border-radius: 24px;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(280px, 0.62fr) minmax(520px, 1.38fr);
  padding: 48px;
}

.showcase-row:nth-child(2) {
  background: #f5f1fb;
}

.showcase-row:nth-child(3) {
  background: #eff8f1;
}

.showcase-row.reverse .showcase-copy {
  order: 2;
}

.showcase-copy > span {
  color: var(--green);
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.showcase-copy h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.4;
  margin: 12px 0 18px;
}

.showcase-copy p,
.showcase-copy li {
  color: var(--gray);
  font-size: 0.88rem;
}

.showcase-copy ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin-top: 22px;
}

.showcase-copy li::before {
  color: var(--green);
  content: "✓";
  font-weight: 900;
  margin-right: 9px;
}

.showcase-row .screenshot-slot {
  background-color: var(--white);
  box-shadow: 0 18px 42px rgba(21, 56, 48, 0.09);
  min-height: 380px;
}

.showcase-row .screenshot-object {
  box-shadow: 0 18px 42px rgba(21, 56, 48, 0.09);
}

.ai-balance .section-label {
  background: var(--forest);
  border-radius: 4px;
  color: var(--white);
  padding: 4px 8px;
}

.ai-balance h2 {
  color: var(--deep);
}

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

.balance-visual div {
  align-items: end;
  background: var(--deep);
  border-radius: 8px;
  color: var(--white);
  display: flex;
  font-size: 1rem;
  font-weight: 900;
  min-height: 142px;
  padding: 22px;
}

.balance-visual div:nth-child(2),
.balance-visual div:nth-child(3) {
  background: var(--forest);
}

.balance-visual div:nth-child(4) {
  background: var(--lime);
  color: var(--black);
}

.quality-flow {
  background: linear-gradient(180deg, #edf5ef, var(--off));
  border: 1px solid rgba(40, 93, 79, 0.18);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.quality-flow div {
  background: var(--white);
  border: 1px solid rgba(40, 93, 79, 0.16);
  border-radius: 8px;
  padding: 18px 20px;
  position: relative;
}

.quality-flow div:not(:last-child)::after {
  background: var(--green);
  bottom: -13px;
  content: "";
  height: 16px;
  left: 34px;
  position: absolute;
  width: 2px;
}

.quality-flow span {
  background: var(--forest);
  border-radius: 999px;
  color: var(--white);
  display: block;
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  padding: 3px 9px;
  width: fit-content;
}

.quality-flow strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.quality-flow p {
  color: var(--gray);
  font-size: 0.84rem;
}

.cost-compare {
  align-items: stretch;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 48px;
}

.cost-compare > div:not(.compare-mark) {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.cost-compare .highlight {
  background: var(--lime) !important;
  border-color: transparent !important;
}

.cost-compare span {
  color: var(--gray);
  display: block;
  font-weight: 800;
  margin-bottom: 16px;
}

.cost-compare strong {
  display: block;
  font-size: clamp(1.1rem, 1.5vw, 1.55rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.rank-card {
  background: linear-gradient(150deg, var(--forest), var(--deep));
  border-radius: 8px;
  color: var(--white);
  padding: 28px;
}

.rank-card strong {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 42px;
}

.rank-card em {
  color: var(--lime);
  display: block;
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 3.6vw, 3.8rem);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  margin-top: 10px;
}

.metric-board {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(40, 93, 79, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(21, 56, 48, 0.08);
  display: grid;
  gap: 22px;
  grid-template-columns: 1.4fr 0.8fr;
  margin-top: 50px;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.analytics {
  background:
    radial-gradient(circle at 86% 22%, rgba(195, 255, 115, 0.2), transparent 24%),
    linear-gradient(180deg, #f8faf7 0%, #ffffff 100%);
  overflow: hidden;
  position: relative;
}

.analytics::before {
  background:
    linear-gradient(90deg, rgba(40, 93, 79, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(40, 93, 79, 0.1) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  height: 260px;
  opacity: 0.45;
  position: absolute;
  right: -40px;
  top: 44px;
  transform: rotate(-8deg);
  width: 360px;
}

.analytics::after {
  border: 1px solid rgba(13, 107, 58, 0.2);
  border-radius: 999px;
  content: "";
  height: 190px;
  position: absolute;
  right: 118px;
  top: 94px;
  width: 190px;
}

.analytics-intro {
  max-width: 660px;
  position: relative;
  z-index: 1;
}

.analytics .section-label {
  background: rgba(13, 107, 58, 0.09);
  border-radius: 999px;
  color: var(--green);
  padding: 5px 10px;
}

.pricing,
.steps,
.faq,
.more {
  background: var(--off);
}

.chart-area {
  border: 1px solid rgba(40, 93, 79, 0.1);
  border-radius: 8px;
  min-height: 220px;
  overflow: hidden;
  position: relative;
}

.chart-area::before {
  border-radius: 999px;
  content: "";
  height: 42px;
  left: 12%;
  position: absolute;
  right: 10%;
  top: 52%;
  transform: rotate(-9deg);
}

.chart-line {
  border-bottom: 4px solid var(--green);
  border-right: 4px solid var(--green);
  bottom: 58px;
  filter: drop-shadow(0 10px 16px rgba(13, 107, 58, 0.16));
  height: 56%;
  left: 9%;
  position: absolute;
  transform: skew(-28deg);
  width: 74%;
}

.chart-line::before,
.chart-line::after {
  background: var(--lime);
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(13, 107, 58, 0.18);
  content: "";
  height: 14px;
  position: absolute;
  width: 14px;
}

.chart-line::before {
  bottom: -9px;
  left: -7px;
}

.chart-line::after {
  right: -9px;
  top: -7px;
}

.chart-days {
  bottom: 14px;
  color: var(--gray);
  display: flex;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: space-around;
  left: 0;
  position: absolute;
  right: 0;
}

.metric-cards {
  display: grid;
  gap: 14px;
}

.metric-cards div,
.dashboard-stats div {
  background: var(--off);
  border-radius: 8px;
  padding: 22px;
}

.metric-cards div {
  background: linear-gradient(180deg, #ffffff, #f3fbef);
  border: 1px solid rgba(40, 93, 79, 0.14);
  box-shadow: 0 10px 24px rgba(21, 56, 48, 0.06);
  position: relative;
}

.metric-cards div::before {
  background: var(--forest);
  border-radius: 999px;
  content: "";
  height: 8px;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 8px;
}

.metric-cards strong,
.dashboard-stats strong {
  display: block;
  font-family: var(--font-en);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-cards span,
.dashboard-stats span {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 700;
}

.dashboard-section {
  background: linear-gradient(145deg, var(--deep), var(--forest));
  color: var(--white);
  max-width: none;
  padding-left: max(28px, calc((100vw - 1600px) / 2 + 28px));
  padding-right: max(28px, calc((100vw - 1600px) / 2 + 28px));
}

.dashboard-section h2,
.dashboard-section .section-head p {
  color: var(--white);
}

.dashboard-section h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.35rem);
}

.dashboard-section .section-head p {
  opacity: 0.72;
}

.dashboard-mock {
  background: #0d211b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 430px;
  overflow: hidden;
}

.dashboard-title-single {
  max-width: none !important;
  white-space: nowrap;
}

.dashboard-mock.screenshot-slot-dashboard {
  background-color: #f7fbf9;
  color: var(--deep);
  display: flex;
  min-height: 430px;
}

.dashboard-mock.screenshot-slot-dashboard strong {
  color: var(--deep);
}

.dashboard-mock.screenshot-slot-dashboard p,
.dashboard-mock.screenshot-slot-dashboard small {
  color: var(--gray);
}

.dashboard-screen-frame {
  margin: 0 auto;
  max-width: 1480px;
}

.mock-sidebar {
  background: rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px;
}

.mock-sidebar strong {
  display: block;
  font-family: var(--font-en);
  font-size: 1.3rem;
  margin-bottom: 42px;
}

.mock-sidebar span {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  display: block;
  height: 42px;
  margin-bottom: 12px;
}

.mock-sidebar span.active {
  background: rgba(195, 255, 115, 0.28);
}

.mock-main {
  padding: 26px;
}

.mock-top {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mock-top div {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 18px;
}

.mock-top strong {
  color: var(--lime);
  display: block;
  font-family: var(--font-en);
  font-size: 1.9rem;
  line-height: 1;
  margin-top: 8px;
}

.mock-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.25fr 0.75fr;
  margin-top: 12px;
}

.mock-chart,
.mock-list {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  min-height: 250px;
}

.mock-chart {
  align-items: end;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 100% 25%, 25% 100%;
  display: flex;
  padding: 24px;
}

.bar-chart {
  align-items: end;
  display: flex;
  gap: 18px;
  height: 100%;
  width: 100%;
}

.bar-chart i {
  background: linear-gradient(180deg, var(--lime), rgba(195, 255, 115, 0.36));
  border-radius: 999px 999px 0 0;
  flex: 1;
}

.mock-list {
  padding: 22px;
}

.mock-list strong {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 0.86rem;
  margin-bottom: 16px;
}

.mock-list span {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  display: block;
  height: 50px;
  margin-bottom: 14px;
}

.dashboard-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.dashboard-stats div {
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-stats strong,
.dashboard-stats span {
  color: var(--white);
}

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto 36px;
  max-width: 1520px;
}

.plan {
  padding: 34px;
}

.plan.featured {
  background: var(--white);
  border: 2px solid var(--forest);
  color: var(--black);
  position: relative;
}

.plan.featured::before {
  background: var(--forest);
  border-radius: 999px;
  color: var(--white);
  content: "POPULAR";
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 800;
  left: 32px;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  position: absolute;
  top: -15px;
}

.plan span {
  color: var(--gray);
}

.plan.featured span,
.plan.featured p {
  color: var(--gray);
}

.plan strong {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1;
  margin: 18px 0;
}

.plan small {
  font-size: 1rem;
}

.plan-points {
  color: var(--ink) !important;
  font-size: 1rem !important;
  margin-bottom: 18px;
}

.article-conversion {
  background: var(--off);
  border-radius: 8px;
  color: var(--ink) !important;
  font-size: 0.95rem !important;
  margin-bottom: 20px;
  padding: 14px 16px;
}

.article-conversion b {
  color: var(--forest);
}

.plan-audience {
  align-items: center;
  background: var(--off);
  border-radius: 8px;
  color: var(--ink) !important;
  display: flex;
  font-size: 0.95rem !important;
  font-weight: 800;
  min-height: 74px;
  padding: 14px 16px;
}

.plan-button {
  align-items: center;
  border: 1px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  display: flex;
  font-weight: 800;
  justify-content: center;
  margin-top: 28px;
  min-height: 52px;
  padding: 12px 18px;
}

.plan-button.primary {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.cost-table-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 22px;
  overflow-x: auto;
  padding: 30px;
}

.cost-table-wrap h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.7rem);
  line-height: 1.3;
  margin-bottom: 24px;
}

.cost-table {
  border-collapse: collapse;
  min-width: 820px;
  width: 100%;
}

.cost-table th,
.cost-table td {
  border-bottom: 1px solid var(--line);
  padding: 16px 12px;
  text-align: right;
  vertical-align: middle;
}

.cost-table th:first-child,
.cost-table td:first-child {
  text-align: left;
}

.cost-table th {
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 900;
}

.table-highlight td {
  background: var(--lime);
  color: var(--black);
  font-weight: 900;
}

.note {
  font-size: 0.84rem;
  margin-top: 18px;
}

.closing-copy {
  display: block;
  font-size: clamp(1.15rem, 1.9vw, 1.8rem);
  line-height: 1.2;
  margin-top: 26px;
}

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

.step-grid div {
  min-height: 200px;
  padding: 26px;
}

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

.more-grid div {
  padding: 28px;
}

.latest-columns {
  border-top: 1px solid var(--line);
}

.latest-columns__head {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 44px;
  max-width: none;
  text-align: center;
  width: 100%;
}

.latest-columns__head > div {
  max-width: 900px;
  width: 100%;
}

.section-head.latest-columns__head h2 {
  font-size: clamp(1.65rem, 2.65vw, 2.65rem);
  line-height: 1.35;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  text-wrap: balance;
}

.section-head.latest-columns__head p {
  line-height: 1.85;
  margin-left: auto;
  margin-right: auto;
  margin-top: 14px;
  max-width: 760px;
  text-wrap: pretty;
}

.latest-columns__more {
  align-items: center;
  border: 1px solid rgba(40, 93, 79, 0.24);
  border-radius: 999px;
  color: var(--forest);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  padding: 10px 16px;
}

.latest-columns__more::after {
  content: "→";
}

.latest-columns__more:hover {
  background: var(--forest);
  color: var(--white);
}

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

.column-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(21, 56, 48, 0.07);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.column-card:hover {
  box-shadow: 0 20px 44px rgba(21, 56, 48, 0.13);
  transform: translateY(-4px);
}

.column-card__image {
  aspect-ratio: 1200 / 630;
  background:
    linear-gradient(135deg, rgba(195, 255, 115, 0.22), transparent 56%),
    linear-gradient(145deg, var(--deep), var(--forest));
  overflow: hidden;
}

.column-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.column-card:hover .column-card__image img {
  transform: scale(1.035);
}

.column-card__placeholder {
  align-items: center;
  color: var(--lime);
  display: flex;
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 900;
  height: 100%;
  justify-content: center;
}

.column-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.column-card__date {
  color: var(--green);
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.column-card__title {
  color: var(--black);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.55;
  margin-top: 10px;
}

.column-card__link {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
  margin-top: auto;
  padding-top: 18px;
}

.column-card__link::after {
  content: " →";
}

.column-card--loading {
  box-shadow: none;
  pointer-events: none;
}

.column-card--loading .column-card__image,
.column-card--loading .column-card__body span,
.column-card--loading .column-card__body strong {
  animation: column-loading 1.3s ease-in-out infinite;
  background: linear-gradient(90deg, #eef1ed 25%, #f8faf7 50%, #eef1ed 75%);
  background-size: 200% 100%;
}

.column-card--loading .column-card__body span,
.column-card--loading .column-card__body strong {
  border-radius: 999px;
  display: block;
}

.column-card--loading .column-card__body span {
  height: 10px;
  width: 35%;
}

.column-card--loading .column-card__body strong {
  height: 18px;
  margin-top: 15px;
  width: 88%;
}

.latest-columns__fallback {
  background: var(--off);
  border-radius: 12px;
  color: var(--gray);
  grid-column: 1 / -1;
  padding: 24px;
  text-align: center;
}

.latest-columns__fallback a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
}

@keyframes column-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.faq-list {
  margin: 0 auto;
  max-width: 920px;
}

.faq-item {
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  font-weight: 500;
  justify-content: space-between;
  line-height: 1.6;
  padding: 22px 24px;
  text-align: left;
  width: 100%;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--font-en);
  font-size: 1.4rem;
  margin-left: 16px;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
}

.faq-answer.open {
  display: block;
}

.final-cta {
  background: radial-gradient(circle at 50% 0%, rgba(195, 255, 115, 0.16), transparent 34%), linear-gradient(150deg, var(--forest), var(--deep));
  color: var(--white);
  padding: 88px 28px;
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3.15rem);
  margin-bottom: 24px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
  max-width: 680px;
}

.final-cta .hero-cta {
  justify-content: center;
}

.footer {
  background: #071410;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding-bottom: 30px;
  padding-top: 30px;
}

.footer-brand {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 900;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.footer a,
.footer small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .nav,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav.open {
    background: var(--off);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0;
    left: 0;
    padding: 16px 28px 24px;
    position: fixed;
    right: 0;
    top: 76px;
  }

  .nav.open .nav-link {
    padding: 14px 0;
  }

  .hero-inner,
  .split,
  .split.reverse,
  .metric-board,
  .cost-compare,
  .search-shift,
  .dashboard-mock,
  .showcase-row {
    grid-template-columns: 1fr;
  }

  .showcase-row.reverse .showcase-copy {
    order: 0;
  }

  .dashboard-title-single {
    white-space: normal;
  }

  .proof-strip-inner {
    grid-template-columns: auto 1fr;
  }

  .proof-strip-inner > p {
    grid-column: 1 / -1;
  }

  .hero-inner {
    gap: 36px;
  }

  .shift-arrow,
  .compare-mark {
    justify-content: center;
  }

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

  .what-grid,
  .mock-top,
  .latest-columns__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-mock {
    min-height: auto;
  }

  .mock-sidebar {
    display: none;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .section,
  .hero-inner,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-bottom: 76px;
    padding-top: 76px;
  }

  .hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero h1.hero-title-compact {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .hero-title-line {
    white-space: normal;
  }

  .proof-strip-inner {
    grid-template-columns: 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }

  .proof-source {
    text-align: left;
  }

  .showcase-row {
    gap: 28px;
    padding: 24px;
  }

  .showcase-row .screenshot-slot,
  .screenshot-slot {
    min-height: 280px;
    padding: 26px;
  }

  .lead,
  .section-text,
  .wide-copy p,
  .section-head p {
    font-size: 0.96rem;
  }

  .hero-panel,
  .shift-card,
  .cost-compare > div:not(.compare-mark),
  .rank-card,
  .metric-board,
  .cost-table-wrap,
  .plan {
    padding: 22px;
  }

  .hero-cost-note {
    bottom: auto;
    left: auto;
    margin-top: 16px;
    position: relative;
    right: auto;
  }

  .hero-stats,
  .pricing-grid,
  .quality-grid,
  .step-grid,
  .more-grid,
  .dashboard-stats,
  .mock-top,
  .mock-grid,
  .what-grid {
    grid-template-columns: 1fr;
  }

  .latest-columns__head {
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .section-head.latest-columns__head h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    max-width: 18em;
  }

  .section-head.latest-columns__head p {
    max-width: 34em;
  }

  .latest-columns__grid {
    grid-template-columns: 1fr;
  }

  .quality-grid div,
  .step-grid div {
    min-height: auto;
  }

  .quality-grid span,
  .step-grid span {
    margin-bottom: 24px;
  }

  .balance-visual {
    grid-template-columns: 1fr;
  }

  .balance-visual div {
    min-height: 110px;
  }

  .price-shift strong {
    font-size: 2.55rem;
  }

  .metric-cards strong,
  .dashboard-stats strong {
    font-size: 2rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
