:root {
  --ink: #18211f;
  --ink-soft: #53605d;
  --green: #173f3a;
  --green-2: #245b52;
  --mint: #bfe7d5;
  --mint-light: #ebf6f0;
  --lime: #d9f26a;
  --cream: #f8f5ee;
  --white: #fff;
  --line: #dce4df;
  --orange: #f08b5a;
  --blue: #4e7be8;
  --shadow: 0 24px 80px rgba(21, 56, 50, 0.14);
  --radius: 28px;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: var(--font-jp);
}

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

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

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(220, 228, 223, 0.72);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  font-family: var(--font-en);
}

.brand-mark {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 5px;
  overflow: hidden;
  border-radius: 9px;
  background: var(--green);
}

.brand-mark span {
  display: block;
  border-radius: 4px 4px 2px 2px;
  background: var(--lime);
}

.brand-mark span:nth-child(1) {
  height: 9px;
}

.brand-mark span:nth-child(2) {
  height: 17px;
}

.brand-mark span:nth-child(3) {
  height: 13px;
}

.brand-name {
  color: var(--green);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-name b {
  color: #e46c4c;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #384542;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  background: var(--green);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

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

.button-small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 13px;
}

.button-line {
  color: var(--white);
  background: #12b75b;
  box-shadow: 0 8px 20px rgba(18, 183, 91, 0.2);
}

.line-dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 4px solid #12b75b;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 2px var(--white);
}

.button-line .line-dot,
.mobile-cta .line-dot {
  border-color: var(--white);
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 70px;
  background:
    linear-gradient(rgba(23, 63, 58, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 63, 58, 0.035) 1px, transparent 1px),
    linear-gradient(150deg, #fbfdfb 0%, #eff7f2 55%, #f8f5ee 100%);
  background-size:
    44px 44px,
    44px 44px,
    auto;
}

.hero::before {
  position: absolute;
  top: -55%;
  left: 48%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(36, 91, 82, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-orb-one {
  top: 90px;
  right: 8%;
  width: 170px;
  height: 170px;
  background: rgba(217, 242, 106, 0.36);
}

.hero-orb-two {
  bottom: -70px;
  left: -50px;
  width: 220px;
  height: 220px;
  background: rgba(191, 231, 213, 0.38);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(480px, 1.07fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--green-2);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.hero h1 {
  margin-bottom: 26px;
  color: var(--green);
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.22;
}

.hero h1 em {
  position: relative;
  color: var(--green);
  font-style: normal;
  z-index: 0;
}

.hero h1 em::after {
  position: absolute;
  right: -4px;
  bottom: 3px;
  left: -2px;
  height: 17px;
  content: "";
  background: var(--lime);
  z-index: -1;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.platform {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid rgba(23, 63, 58, 0.1);
  border-radius: 999px;
  color: #34423e;
  background: rgba(255, 255, 255, 0.66);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
}

.platform i {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 5px;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.platform-instagram i {
  border: 2px solid #db477d;
}

.platform-x i {
  color: #fff;
  background: #111;
}

.platform-google i {
  color: #fff;
  background: #4e7be8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.button-primary {
  color: var(--green);
  background: var(--lime);
  box-shadow: 0 14px 32px rgba(130, 155, 41, 0.24);
}

.button-primary:hover {
  background: #e3f77f;
  box-shadow: 0 18px 36px rgba(130, 155, 41, 0.32);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(23, 63, 58, 0.3);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.hero-note {
  margin: 12px 0 0 16px;
  color: #6d7976;
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.photo-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: 86%;
  height: 430px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.76);
  border-radius: 30px 90px 30px 30px;
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(17, 43, 39, 0.36));
}

.time-chip {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  color: var(--white);
  background: rgba(20, 54, 49, 0.82);
  backdrop-filter: blur(12px);
}

.time-chip span {
  font-size: 10px;
  opacity: 0.78;
}

.time-chip strong {
  font-family: var(--font-en);
  font-size: 15px;
}

.composer-card {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 69%;
  min-width: 390px;
  overflow: hidden;
  border: 1px solid rgba(23, 63, 58, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 28px 70px rgba(23, 63, 58, 0.22);
  backdrop-filter: blur(18px);
}

.composer-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  border-bottom: 1px solid #e7ece8;
  color: #48534f;
  font-size: 10px;
  font-weight: 700;
}

.composer-top b {
  margin-left: auto;
  color: #8a9691;
  letter-spacing: 2px;
}

.mini-logo {
  display: flex;
  width: 22px;
  height: 22px;
  align-items: end;
  gap: 2px;
  padding: 5px;
  border-radius: 7px;
  background: var(--green);
}

.mini-logo i {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: var(--lime);
}

.mini-logo i:nth-child(1) {
  height: 5px;
}

.mini-logo i:nth-child(2) {
  height: 10px;
}

.mini-logo i:nth-child(3) {
  height: 7px;
}

.message-row {
  display: flex;
  gap: 12px;
  padding: 16px 18px 10px;
}

.thumb {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #f4c77f, #c57d42);
  font-size: 25px;
}

.message {
  padding: 9px 13px;
  border-radius: 3px 13px 13px 13px;
  background: #f1f4f2;
}

.message small,
.generating small {
  display: block;
  margin-bottom: 2px;
  color: #7a8782;
  font-size: 8px;
  font-weight: 700;
}

.message p,
.generating p {
  margin: 0;
  color: #3a4642;
  font-size: 10px;
  line-height: 1.6;
}

.generating {
  display: flex;
  gap: 10px;
  margin: 0 18px 14px 84px;
  padding: 11px 13px;
  border: 1px solid #d8eee3;
  border-radius: 12px;
  background: #f4fbf7;
}

.spark {
  color: #2e7869;
}

.publish-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--green);
}

.publish-icons {
  display: flex;
}

.publish-icons span {
  display: grid;
  width: 24px;
  height: 24px;
  margin-right: -4px;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-en);
  font-size: 8px;
  font-weight: 800;
}

.publish-icons .ig {
  background: #d64a80;
}

.publish-icons .ex {
  background: #111;
}

.publish-icons .go {
  background: #4e7be8;
}

.ready {
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
}

.ready i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--lime);
}

.proof-bar {
  color: var(--white);
  background: var(--green);
}

.proof-grid {
  display: grid;
  min-height: 126px;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  align-items: center;
}

.proof-context,
.proof-stat {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-context {
  justify-content: flex-start;
}

.proof-label {
  padding: 6px 10px;
  border: 1px solid rgba(217, 242, 106, 0.4);
  border-radius: 999px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.proof-context p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.proof-context strong {
  font-size: 15px;
}

.proof-stat:last-child {
  border-right: 0;
}

.proof-stat strong {
  color: var(--lime);
  font-family: var(--font-en);
  font-size: 36px;
  line-height: 1;
}

.proof-stat small {
  margin-left: 2px;
  font-family: var(--font-jp);
  font-size: 14px;
}

.proof-stat span {
  font-size: 11px;
  font-weight: 600;
}

.section {
  padding: 120px 0;
}

.section-problem {
  background: var(--cream);
}

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

.section-heading .section-kicker {
  justify-content: center;
}

.section-kicker {
  margin-bottom: 14px;
}

.section-heading h2,
.heading-row h2,
.results-copy h2,
.faq-heading h2 {
  margin-bottom: 20px;
  color: var(--green);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.35;
}

.section-heading > p:last-child,
.heading-row > p,
.faq-heading > p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.problem-card {
  position: relative;
  overflow: hidden;
  padding: 38px 40px;
  border: 1px solid rgba(23, 63, 58, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.problem-card::after {
  position: absolute;
  top: -45px;
  right: -45px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  opacity: 0.46;
}

.problem-owner::after {
  background: #dbe8f7;
}

.problem-staff::after {
  background: #f6dfd1;
}

.problem-card-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.role-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: var(--green);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
}

.problem-staff .role-icon {
  color: var(--green);
  background: var(--mint);
}

.problem-card small {
  display: block;
  margin-bottom: 4px;
  color: #798480;
  font-size: 11px;
  font-weight: 700;
}

.problem-card h3 {
  margin: 0;
  color: var(--green);
  font-size: 20px;
  line-height: 1.5;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #44504d;
  font-size: 14px;
  font-weight: 500;
}

.check-list li::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: var(--green);
  background: var(--mint);
  font-size: 10px;
  font-weight: 800;
}

.check-list-problem li::before {
  content: "−";
  color: #bd624b;
  background: #f9e6de;
}

.section-how {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}

.section-how::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 20% 25%, rgba(217, 242, 106, 0.08), transparent 24%),
    radial-gradient(circle at 85% 90%, rgba(191, 231, 213, 0.08), transparent 28%);
}

.section-heading-light {
  position: relative;
}

.section-heading-light .section-kicker {
  color: var(--lime);
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr;
  align-items: center;
  gap: 12px;
}

.step-card {
  position: relative;
  min-height: 430px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
}

.step-number,
.feature-index {
  color: var(--lime);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.step-visual {
  position: relative;
  display: grid;
  height: 190px;
  margin: 22px 0 26px;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.step-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.8;
}

.step-arrow {
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--font-en);
  font-size: 26px;
  text-align: center;
}

.camera-icon {
  position: relative;
  width: 96px;
  height: 72px;
  border: 3px solid var(--mint);
  border-radius: 16px;
}

.camera-icon::before {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 32px;
  height: 15px;
  border-radius: 7px 7px 0 0;
  content: "";
  background: var(--mint);
}

.camera-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  border: 7px solid var(--mint);
  border-radius: 50%;
}

.photo-mini {
  position: absolute;
  right: 21px;
  bottom: 18px;
  display: grid;
  width: 68px;
  height: 68px;
  transform: rotate(8deg);
  place-items: center;
  border: 4px solid var(--white);
  color: var(--green);
  background: var(--lime);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.chat-bubble {
  position: relative;
  padding: 17px 22px;
  border-radius: 18px 18px 4px 18px;
  color: var(--green);
  background: var(--mint);
  font-size: 12px;
  font-weight: 700;
}

.typing {
  position: absolute;
  right: 25px;
  bottom: 24px;
  color: var(--lime);
  letter-spacing: 3px;
}

.publish-center {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 20px;
  color: var(--green);
  background: var(--lime);
  font-size: 25px;
  box-shadow: 0 0 0 14px rgba(217, 242, 106, 0.08);
}

.publish-orbit {
  position: absolute;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 3px solid rgba(23, 63, 58, 0.15);
  border-radius: 50%;
  color: var(--green);
  background: var(--white);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
}

.orbit-one {
  top: 27px;
  left: 30px;
}

.orbit-two {
  top: 26px;
  right: 34px;
  color: var(--white);
  background: #111;
}

.orbit-three {
  right: 38px;
  bottom: 23px;
  color: var(--white);
  background: #4e7be8;
}

.section-features {
  background: #fbfcfb;
}

.heading-row {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 56px;
}

.heading-row h2 {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-main {
  display: grid;
  min-height: 430px;
  grid-column: 1 / -1;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  border: 0;
  color: var(--white);
  background: var(--green);
}

.feature-main .feature-index {
  color: var(--lime);
}

.feature-label {
  margin: 10px 0 18px;
  color: #70807b;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.feature-main .feature-label {
  color: rgba(255, 255, 255, 0.44);
}

.feature-card h3 {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 27px;
  letter-spacing: -0.025em;
}

.feature-main h3 {
  color: var(--white);
  font-size: 34px;
}

.feature-card p:last-child {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}

.feature-main p:last-child {
  color: rgba(255, 255, 255, 0.63);
}

.network-visual {
  position: relative;
  min-height: 320px;
}

.network-phone {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 154px;
  height: 248px;
  transform: translate(-50%, -50%) rotate(-3deg);
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 54px;
  border: 7px solid #d9e6df;
  border-radius: 30px;
  color: var(--green);
  background: #f5f8f5;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  z-index: 2;
}

.network-phone::before {
  position: absolute;
  top: 7px;
  width: 52px;
  height: 7px;
  border-radius: 6px;
  content: "";
  background: #c5d0cb;
}

.network-phone i {
  position: relative;
  width: 66px;
  height: 66px;
  border: 2px solid #b8d9c9;
  border-radius: 16px;
  background: var(--mint);
}

.network-phone i::before,
.network-phone i::after {
  position: absolute;
  content: "";
  background: var(--green);
}

.network-phone i::before {
  top: 18px;
  left: 19px;
  width: 26px;
  height: 4px;
  border-radius: 4px;
  box-shadow: 0 10px 0 var(--green), 0 20px 0 var(--green);
}

.network-phone b {
  padding: 8px 17px;
  border-radius: 999px;
  color: var(--green);
  background: var(--lime);
  font-size: 10px;
}

.network-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 210px;
  height: 1px;
  background: rgba(217, 242, 106, 0.35);
  transform-origin: left;
}

.line-one {
  transform: rotate(-29deg);
}

.line-two {
  transform: rotate(5deg);
}

.line-three {
  transform: rotate(34deg);
}

.network-node {
  position: absolute;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  color: var(--green);
  background: var(--white);
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 800;
  background-clip: padding-box;
}

.node-one {
  top: 13%;
  right: 4%;
  color: #d64a80;
}

.node-two {
  top: 42%;
  right: -2%;
  color: var(--white);
  background: #111;
}

.node-three {
  right: 10%;
  bottom: 6%;
  color: var(--white);
  background: #4e7be8;
}

.feature-icon {
  position: absolute;
  top: 35px;
  right: 35px;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 24px;
  font-size: 30px;
}

.feature-icon-ai {
  color: var(--green);
  background: var(--lime);
  box-shadow: 0 10px 30px rgba(159, 185, 50, 0.18);
}

.feature-icon-check {
  background: var(--mint-light);
}

.feature-icon-check span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
}

.section-results {
  color: var(--white);
  background: #122f2b;
}

.results-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 80px;
}

.results-copy .section-kicker {
  color: var(--lime);
}

.results-copy h2 {
  color: var(--white);
}

.results-lead {
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 2;
}

.before-after {
  display: flex;
  align-items: center;
  gap: 22px;
}

.before-after > div {
  display: flex;
  align-items: baseline;
  flex-direction: column;
}

.before-after small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.before-after strong {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-en);
  font-size: 60px;
  line-height: 1.1;
}

.before-after strong em {
  margin-left: 4px;
  font-family: var(--font-jp);
  font-size: 14px;
  font-style: normal;
}

.before-after span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.before-after .after strong {
  color: var(--lime);
  font-size: 76px;
}

.before-after .after span {
  color: rgba(255, 255, 255, 0.72);
}

.ba-arrow {
  color: rgba(255, 255, 255, 0.24) !important;
  font-size: 24px !important;
}

.results-caption {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
}

.results-panel {
  padding: 45px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
}

.panel-label {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.result-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-ring {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 7px solid;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.ring-blue {
  border-color: #8bb8ff;
}

.ring-orange {
  border-color: #f0a277;
}

.ring-green {
  border-color: var(--mint);
}

.result-ring strong {
  font-family: var(--font-en);
  font-size: 27px;
  line-height: 1;
}

.result-ring small {
  margin-left: 1px;
  font-family: var(--font-jp);
  font-size: 9px;
}

.result-item h3 {
  margin-bottom: 5px;
  font-size: 17px;
}

.result-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.7;
}

.data-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}

.section-pricing {
  background: var(--cream);
}

.pricing-card {
  display: grid;
  max-width: 1000px;
  grid-template-columns: 1.12fr 0.88fr;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(23, 63, 58, 0.12);
}

.pricing-main {
  padding: 52px;
}

.pricing-title span {
  color: var(--green-2);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.pricing-title h3 {
  margin: 7px 0 4px;
  color: var(--green);
  font-size: 28px;
}

.pricing-title p {
  color: #75807d;
  font-size: 12px;
}

.price-blocks {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 34px 0;
}

.price-block {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
}

.price-block > span {
  grid-column: 1 / -1;
  color: #6c7773;
  font-size: 11px;
  font-weight: 700;
}

.price-block strong {
  color: var(--green);
  font-family: var(--font-en);
  font-size: 36px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.price-block strong small {
  margin-left: 3px;
  font-family: var(--font-jp);
  font-size: 12px;
}

.price-block em {
  margin: 0 0 8px 5px;
  color: #9ba29f;
  font-size: 8px;
  font-style: normal;
}

.price-plus {
  color: #9aa4a0;
  font-size: 20px;
}

.button-dark {
  width: 100%;
  color: var(--white);
  background: var(--green);
}

.button-dark:hover {
  box-shadow: 0 14px 30px rgba(23, 63, 58, 0.2);
}

.pricing-note {
  margin: 12px 0 0;
  color: #8a9591;
  font-size: 9px;
  text-align: center;
}

.pricing-includes {
  display: flex;
  padding: 52px 44px;
  flex-direction: column;
  background: var(--mint-light);
}

.includes-title {
  margin-bottom: 24px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.pricing-includes .check-list {
  gap: 15px;
}

.pricing-includes .check-list li {
  font-size: 12px;
}

.unit-price {
  display: grid;
  margin-top: auto;
  padding: 18px 20px;
  border-radius: 16px;
  color: var(--white);
  background: var(--green);
}

.unit-price span,
.unit-price small {
  font-size: 9px;
  opacity: 0.6;
}

.unit-price strong {
  color: var(--lime);
  font-size: 22px;
}

.section-voices {
  background: #fbfcfb;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.voice-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.voice-card-accent {
  background: var(--mint-light);
}

.quote-mark {
  height: 50px;
  color: var(--mint);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 1;
}

.voice-card-accent .quote-mark {
  color: #9fcfba;
}

.voice-text {
  min-height: 138px;
  margin-bottom: 26px;
  color: #3f4a47;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.05;
}

.voice-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.avatar {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--green);
  font-family: var(--font-en);
  font-weight: 800;
}

.avatar-b {
  color: var(--green);
  background: var(--lime);
}

.voice-profile strong,
.voice-profile span {
  display: block;
}

.voice-profile strong {
  color: var(--green);
  font-size: 11px;
}

.voice-profile span {
  color: #8a9591;
  font-size: 9px;
}

.section-faq {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-heading h2 {
  font-size: 42px;
}

.text-link-dark {
  margin-top: 28px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(23, 63, 58, 0.1);
  border-radius: 18px;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 16px;
  padding: 20px 62px 20px 24px;
  color: var(--green);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-q {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--green);
  background: var(--mint);
  font-family: var(--font-en);
}

.faq-list summary i {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 7px;
  left: 1px;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--green);
  transition: transform 0.2s ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 60px 25px 74px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.9;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: var(--white);
  background: var(--green);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.cta-glow-one {
  top: -220px;
  left: -160px;
  width: 500px;
  height: 500px;
  background: rgba(217, 242, 106, 0.06);
}

.cta-glow-two {
  right: -180px;
  bottom: -280px;
  width: 600px;
  height: 600px;
  background: rgba(191, 231, 213, 0.06);
}

.cta-inner {
  position: relative;
  text-align: center;
}

.cta-inner .section-kicker {
  justify-content: center;
  color: var(--lime);
}

.cta-inner h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -0.05em;
  line-height: 1.35;
}

.cta-inner > p:not(.section-kicker) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 2;
}

.button-line-large {
  min-width: 350px;
  min-height: 66px;
  color: var(--white);
  background: #12b75b;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.line-bubble {
  display: grid;
  width: 38px;
  height: 27px;
  place-items: center;
  border-radius: 13px;
  color: #12b75b;
  background: var(--white);
  font-family: var(--font-en);
  font-size: 7px;
  font-weight: 800;
}

.cta-meta {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 22px;
}

.cta-meta span {
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

.cta-meta span:last-child {
  border-right: 0;
}

.site-footer {
  padding: 70px 0 28px;
  color: rgba(255, 255, 255, 0.68);
  background: #0d2421;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 80px;
  padding-bottom: 50px;
}

.brand-footer .brand-mark {
  background: rgba(255, 255, 255, 0.12);
}

.brand-footer .brand-name {
  color: var(--white);
}

.footer-brand p {
  margin: 18px 0 0;
  font-size: 11px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 32px;
}

.footer-links a {
  font-size: 11px;
}

.footer-company {
  display: grid;
  gap: 4px;
}

.footer-company small {
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}

.footer-company strong {
  color: var(--white);
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.32);
  font-family: var(--font-en);
  font-size: 9px;
}

.mobile-cta {
  display: none;
}

.sp-only {
  display: none;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 38px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-visual {
    min-height: 530px;
  }

  .photo-frame {
    width: 92%;
    height: 390px;
  }

  .composer-card {
    width: 76%;
    min-width: 350px;
  }

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

  .step-arrow {
    display: none;
  }

  .step-card {
    min-height: 420px;
  }

  .results-grid {
    gap: 45px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 36px, 680px);
  }

  .header-inner {
    min-height: 68px;
  }

  .header-inner .button {
    display: none;
  }

  .hero {
    padding: 54px 0 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .platform-list,
  .hero-actions {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-note {
    margin-left: 0;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 540px;
    margin: 12px auto 0;
  }

  .photo-frame {
    width: 88%;
  }

  .composer-card {
    width: 70%;
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 22px 0;
  }

  .proof-context {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .problem-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    display: grid;
    min-height: auto;
    grid-template-columns: 160px 1fr;
    column-gap: 24px;
    padding: 26px;
  }

  .step-number {
    position: absolute;
    top: 24px;
    right: 26px;
  }

  .step-visual {
    height: 145px;
    grid-row: 1 / 3;
    margin: 0;
  }

  .step-card h3 {
    align-self: end;
    margin-bottom: 8px;
  }

  .step-card p {
    align-self: start;
  }

  .heading-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-main {
    min-height: 600px;
    grid-template-columns: 1fr;
  }

  .network-visual {
    min-height: 290px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .results-copy {
    text-align: center;
  }

  .results-copy .section-kicker,
  .before-after {
    justify-content: center;
  }

  .pricing-card {
    grid-template-columns: 1fr;
  }

  .pricing-includes {
    min-height: 400px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .faq-heading {
    position: static;
    text-align: center;
  }

  .faq-heading .section-kicker {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 68px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .brand-name {
    font-size: 20px;
  }

  .hero {
    padding: 44px 0 58px;
  }

  .hero-grid {
    gap: 36px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 10px;
    line-height: 1.6;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 52px);
    line-height: 1.24;
  }

  .hero h1 em::after {
    height: 12px;
  }

  .hero-lead {
    font-size: 14px;
    text-align: left;
  }

  .platform-list {
    justify-content: flex-start;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .text-link {
    align-self: center;
  }

  .hero-visual {
    min-height: 420px;
  }

  .photo-frame {
    width: 94%;
    height: 290px;
    border-width: 5px;
    border-radius: 24px 58px 24px 24px;
  }

  .time-chip {
    right: 12px;
    bottom: 12px;
    padding: 8px 10px;
  }

  .time-chip strong {
    font-size: 12px;
  }

  .composer-card {
    width: 88%;
    min-width: 0;
  }

  .generating {
    margin-left: 66px;
  }

  .message p,
  .generating p {
    font-size: 9px;
  }

  .proof-grid {
    min-height: 100px;
  }

  .proof-stat {
    min-height: 54px;
    flex-direction: column;
    gap: 6px;
  }

  .proof-stat strong {
    font-size: 27px;
  }

  .proof-stat small {
    font-size: 10px;
  }

  .proof-stat span {
    font-size: 8px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .heading-row h2,
  .results-copy h2,
  .faq-heading h2 {
    font-size: 34px;
  }

  .section-heading > p:last-child,
  .heading-row > p,
  .faq-heading > p {
    font-size: 13px;
  }

  .problem-card,
  .feature-card,
  .voice-card {
    padding: 28px 24px;
  }

  .problem-card-top {
    align-items: flex-start;
  }

  .role-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 12px;
  }

  .problem-card h3 {
    font-size: 17px;
  }

  .step-card {
    display: block;
    padding: 24px;
  }

  .step-visual {
    height: 150px;
    margin: 24px 0 22px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-main {
    min-height: 620px;
    grid-column: auto;
  }

  .feature-card {
    min-height: 360px;
  }

  .feature-icon {
    width: 62px;
    height: 62px;
  }

  .network-phone {
    left: 37%;
    width: 130px;
    height: 218px;
  }

  .network-line {
    left: 37%;
    width: 145px;
  }

  .network-node {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    font-size: 17px;
  }

  .node-one {
    right: 2%;
  }

  .node-two {
    right: -3%;
  }

  .node-three {
    right: 5%;
  }

  .before-after {
    gap: 13px;
  }

  .before-after strong {
    font-size: 48px;
  }

  .before-after .after strong {
    font-size: 60px;
  }

  .results-panel {
    padding: 26px 22px;
  }

  .result-item {
    grid-template-columns: 85px 1fr;
    gap: 14px;
  }

  .result-ring {
    width: 82px;
    height: 82px;
    border-width: 5px;
  }

  .result-ring strong {
    font-size: 22px;
  }

  .result-item h3 {
    font-size: 14px;
  }

  .pricing-main,
  .pricing-includes {
    padding: 34px 24px;
  }

  .price-blocks {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .price-plus {
    display: none;
  }

  .price-block strong {
    font-size: 34px;
  }

  .pricing-includes {
    min-height: 390px;
  }

  .voice-text {
    min-height: 0;
  }

  .faq-list summary {
    min-height: 76px;
    align-items: flex-start;
    padding: 19px 52px 19px 18px;
    font-size: 13px;
  }

  .faq-list summary i {
    right: 18px;
  }

  .faq-q {
    width: 30px;
    height: 30px;
  }

  .faq-answer {
    padding: 0 22px 22px 64px;
    font-size: 12px;
  }

  .final-cta {
    padding: 86px 0;
  }

  .cta-inner h2 {
    font-size: 38px;
  }

  .button-line-large {
    width: 100%;
    min-width: 0;
    padding-inline: 20px;
  }

  .cta-meta {
    flex-wrap: wrap;
    gap: 8px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 80;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    color: var(--white);
    background: #12b75b;
    box-shadow: 0 14px 40px rgba(5, 45, 26, 0.26);
    font-size: 14px;
    font-weight: 800;
  }

  .sp-only {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
