.landing {
  --accent: #2f6fe1;
  --accent-orange: #f4b740;
  --accent-soft: rgba(47, 111, 225, 0.12);
  --accent-ghost: rgba(47, 111, 225, 0.08);
  --accent-strong: rgba(47, 111, 225, 0.2);
  --accent-cyan: #18a7d0;
  --accent-warm: #f47c24;
  --text-strong: #0f1b2d;
  --text: #42546b;
  --muted: #5f7187;
  --surface: #ffffff;
  --border: #d9e3ef;
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 0 0 88px;
  background: #f2f5fa;
  max-width: none;
  margin: 0;
}

.landing h1,
.landing h2,
.landing h3 {
  font-family: "Fraunces", "Sora", "Segoe UI", "Segoe UI Web", "Segoe UI Variable", Arial, sans-serif;
  color: var(--text-strong);
}

.landing p,
.landing li,
.landing span {
  color: var(--text);
}

.public-shell {
  padding: 0;
  max-width: none;
  margin: 0;
  background: #f2f5fa;
  min-height: 100vh;
}

.landing-hero {
  margin: 0;
  padding: 40px 0 64px;
  background: #ffffff;
  border-radius: 0;
  border: none;
  box-shadow: none;
  position: relative;
}

.landing-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.landing-brand img {
  height: 84px;
}

.landing-nav-links {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  padding: 8px 0 4px;
  border-top: 1px solid #e6edf6;
}

.landing-nav-links a {
  text-decoration: none;
  color: #3d4b61;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 2px;
}

.landing-nav-links a:hover {
  color: var(--accent);
}

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  margin-top: 20px;
  align-items: start;
}

.landing-hero-text h1 {
  font-size: clamp(38px, 4.8vw, 58px);
  margin: 12px 0 18px;
  line-height: 1.06;
}

.landing-hero-text .lead {
  font-size: 19px;
  color: #4c5a70;
  line-height: 1.6;
}

.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-orange);
  font-weight: 600;
  margin: 0 0 6px;
}

.landing-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cta-note {
  font-size: 13px;
  color: #6a7b91;
}

.landing .btn {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.landing .btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.landing .btn-accent {
  background: #16a34a;
  border: 1px solid #15803d;
  color: #fff;
  box-shadow: 0 16px 28px rgba(22, 163, 74, 0.22);
}

.landing .btn-accent:hover,
.landing .btn-accent:focus-visible {
  transform: translateY(-2px);
  background: #15803d;
  box-shadow: 0 20px 34px rgba(22, 163, 74, 0.28);
}

.landing .btn-outline {
  border: 1px solid #d7e2f0;
  background: #ffffff;
  color: var(--text-strong);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.05);
}

.landing .btn-outline:hover,
.landing .btn-outline:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-ghost);
}

.landing .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-ghost);
}

.landing-hero-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.panel-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e4ecf5;
  padding: 18px 20px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.panel-card.subtle {
  background: #f3f8f4;
}

.panel-title {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-strong);
}

.panel-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.panel-card li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}

.panel-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-orange);
}

.landing-section {
  padding: 64px 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.band-soft {
  background: #eef3f9;
}

.band-alt {
  background: #ffffff;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  align-items: start;
}

.landing-section.problem {
  padding-bottom: 52px;
}

.landing-section.audience {
  padding: 56px 0;
}

.problem-visual {
  display: grid;
  gap: 14px;
}

.visual-card {
  background: #ffffff;
  border: 1px solid #e4ecf5;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
}

.visual-card.soft {
  background: #f6f9ff;
}

.visual-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9a6b10;
  background: #fdf3db;
}

.visual-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  background: #f3f6fb;
  border-radius: 14px;
  padding: 10px;
  display: grid;
  gap: 4px;
}

.metric-value {
  font-weight: 700;
  color: var(--text-strong);
  font-size: 18px;
}

.metric-label {
  font-size: 12px;
  color: #5b6d83;
}

.visual-note {
  margin: 0;
  color: #4c5a70;
  font-size: 14px;
}

.visual-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.visual-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  color: #4c5a70;
  font-size: 14px;
}

.visual-steps i {
  color: var(--accent-orange);
  font-size: 16px;
}

.section-title h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3.6vw, 38px);
}

.section-title p {
  margin: 0;
  color: #4c5a70;
}

.bullet-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.bullet-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bullet-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-orange);
  margin-top: 6px;
}

.card-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.what-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

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

.free-panel {
  background: #f6f9ff;
  border-radius: 18px;
  border: 1px solid #e4ecf5;
  padding: 22px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
}

.free-panel.flat {
  background: transparent;
  border: none;
  border-top: 1px solid #dfe7f3;
  border-radius: 0;
  box-shadow: none;
  padding: 24px 0 0;
}

.free-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.free-pill {
  background: #fff4dc;
  color: #9a6b10;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.free-benefit {
  background: #ffffff;
  border: 1px solid #e4ecf5;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff1d5;
  color: #b47b10;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.benefit-title {
  margin: 0 0 4px;
  font-weight: 600;
  color: var(--text-strong);
}

.benefit-body {
  margin: 0;
  color: #4c5a70;
}

.free-cta-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #5b6d83;
  font-size: 14px;
}

.free-kicker {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--accent-orange);
}

.free-subtitle {
  margin: 0;
  color: #4c5a70;
}

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

.free-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: #4c5a70;
}

.free-list i {
  color: var(--accent-orange);
  margin-top: 2px;
}

.info-card {
  background: #ffffff;
  border: 1px solid #e4ecf5;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 10px;
}

.info-card h3 {
  margin: 0;
  font-size: 18px;
}

.info-card p {
  margin: 0;
  color: #4c5a70;
}

.audience-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 20px;
  align-items: start;
}

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

.audience-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e4ecf5;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.audience-card h3 {
  margin: 0;
  font-size: 20px;
}

.audience-card p {
  margin: 0;
  color: #4c5a70;
}

.audience-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #fff1d5;
  display: grid;
  place-items: center;
  color: #b47b10;
  font-size: 18px;
}

.audience-panel {
  background: #ffffff;
  border: 1px solid #e4ecf5;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
}

.audience-panel ul {
  margin: 0;
  padding-left: 18px;
  color: #4c5a70;
}

.panel-kicker {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--accent-orange);
}

.difference-grid {
  align-items: stretch;
}

.difference-card {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.difference-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff1d5;
  display: grid;
  place-items: center;
  color: #b47b10;
  font-size: 20px;
}

.difference-layout {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: start;
}

.difference-list {
  display: grid;
  gap: 14px;
}

.difference-chat {
  display: grid;
  align-items: start;
}

.chat-window {
  background: #ffffff;
  border: 1px solid #e4ecf5;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  padding: 16px;
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chat-pill {
  background: #eef5ff;
  color: var(--accent);
  font-weight: 600;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chat-title {
  font-weight: 600;
  color: var(--text-strong);
  font-size: 14px;
}

.chat-body {
  display: grid;
  gap: 10px;
  min-height: 210px;
  animation: chatCycle 16s infinite;
}

.chat-bubble {
  max-width: 90%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  animation-duration: 16s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-fill-mode: both;
  display: grid;
  gap: 6px;
}

.chat-bubble.user {
  justify-self: end;
  background: #eef3f9;
  color: #2f3a4b;
}

.chat-bubble.agent {
  justify-self: start;
  background: #e8f5ec;
  color: #1f3327;
}

.chat-bubble.typing {
  background: #e8f5ec;
  width: 64px;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.chat-body .chat-bubble:nth-of-type(1) {
  animation-name: chatIn1;
}

.chat-body .chat-bubble:nth-of-type(2) {
  animation-name: chatIn2;
}

.chat-body .chat-bubble:nth-of-type(3) {
  animation-name: chatIn3;
}

.chat-body .chat-bubble:nth-of-type(4) {
  animation-name: chatIn4;
}

.chat-body .chat-bubble:nth-of-type(5) {
  animation-name: chatInTyping;
}

.chat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #5b6d83;
}

.chat-bubble.typing span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #3f6d4f;
  display: inline-block;
  animation: typing 1.1s infinite ease-in-out;
}

.chat-bubble.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-bubble.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

.chat-footer {
  border-top: 1px solid #e6edf6;
  padding-top: 10px;
  font-size: 12px;
  color: #6a7b91;
}

@keyframes chatCycle {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  92% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

.difference-layout {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: start;
}

.difference-list {
  display: grid;
  gap: 14px;
}

.difference-chat {
  display: grid;
  align-items: start;
}

.chat-window {
  background: #ffffff;
  border: 1px solid #e4ecf5;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  padding: 16px;
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chat-pill {
  background: #fff1d5;
  color: #9a6b10;
  font-weight: 600;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chat-title {
  font-weight: 600;
  color: var(--text-strong);
  font-size: 14px;
}

.chat-body {
  display: grid;
  gap: 10px;
  min-height: 210px;
  animation: chatCycle 16s infinite;
}

.chat-bubble {
  max-width: 90%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  animation-duration: 16s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-fill-mode: both;
  display: grid;
  gap: 6px;
}

.chat-bubble.user {
  justify-self: end;
  background: #eef3f9;
  color: #2f3a4b;
}

.chat-bubble.agent {
  justify-self: start;
  background: #e8f5ec;
  color: #1f3327;
}

.chat-bubble.typing {
  background: #e8f5ec;
  width: 64px;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.chat-body .chat-bubble:nth-of-type(1) {
  animation-name: chatIn1;
}

.chat-body .chat-bubble:nth-of-type(2) {
  animation-name: chatIn2;
}

.chat-body .chat-bubble:nth-of-type(3) {
  animation-name: chatIn3;
}

.chat-body .chat-bubble:nth-of-type(4) {
  animation-name: chatIn4;
}

.chat-body .chat-bubble:nth-of-type(5) {
  animation-name: chatInTyping;
}

.chat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #5b6d83;
}

.chat-bubble.typing span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #3f6d4f;
  display: inline-block;
  animation: typing 1.1s infinite ease-in-out;
}

.chat-bubble.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-bubble.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

.chat-footer {
  border-top: 1px solid #e6edf6;
  padding-top: 10px;
  font-size: 12px;
  color: #6a7b91;
}

@keyframes chatCycle {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  92% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes chatIn1 {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  10% {
    opacity: 0;
    transform: translateY(8px);
  }
  16% {
    opacity: 1;
    transform: translateY(0);
  }
  78% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes chatIn2 {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  18% {
    opacity: 0;
    transform: translateY(8px);
  }
  24% {
    opacity: 1;
    transform: translateY(0);
  }
  78% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes chatIn3 {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  26% {
    opacity: 0;
    transform: translateY(8px);
  }
  32% {
    opacity: 1;
    transform: translateY(0);
  }
  78% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes chatIn4 {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  34% {
    opacity: 0;
    transform: translateY(8px);
  }
  40% {
    opacity: 1;
    transform: translateY(0);
  }
  78% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes chatInTyping {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  52% {
    opacity: 0;
    transform: translateY(8px);
  }
  58% {
    opacity: 1;
    transform: translateY(0);
  }
  78% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes typing {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

.landing-cta-band {
  margin: 0;
  padding: 72px 0;
  background: #eef3f9;
  border: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 24px;
}

.cta-content {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.cta-trust {
  background: #ffffff;
  border: 1px solid #e4ecf5;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.cta-trust-title {
  margin: 0 0 8px;
  font-weight: 600;
  color: var(--text-strong);
}

.cta-trust ul {
  margin: 0;
  padding-left: 18px;
  color: #4c5a70;
  display: grid;
  gap: 6px;
}

.landing-footer {
  margin: 0;
  padding: 32px 0 24px;
  border-top: 1px solid #e4ecf5;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.footer-brand {
  font-weight: 600;
  color: var(--text-strong);
}

.footer-muted {
  margin: 6px 0 0;
  color: #6a7b91;
}

.footer-column h4 {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--text-strong);
}

.footer-column p {
  margin: 0 0 8px;
  color: var(--muted);
}

.footer-column a {
  color: var(--muted);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--accent);
}

@media (max-width: 960px) {
  .landing-hero {
    padding: 32px;
  }

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

  .landing-nav {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .landing-nav-links {
    justify-content: flex-start;
  }

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

  .landing-footer {
    flex-direction: column;
  }

  .problem-grid,
  .what-grid,
  .audience-grid,
  .difference-layout {
    grid-template-columns: 1fr;
  }

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

  .free-benefits {
    grid-template-columns: 1fr;
  }

  .free-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
