/* [project]/wout-landing/app/wout.css [app-client] (css) */
:root {
  --primary: #635bff;
  --primary-light: #7b74ff;
  --primary-dark: #4a43db;
  --bg: #fafafe;
  --surface: #fff;
  --text: #1a1a2e;
  --text2: #555568;
  --text3: #8888a0;
  --border: #e8e8f0;
  --green: #22c55e;
  --orange: #f5a623;
  --red: #ef4444;
  --blue: #3b82f6;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  font-family: Pretendard Variable, Pretendard, -apple-system, sans-serif;
  overflow-x: hidden;
}

.nav {
  z-index: 100;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  background: #fafafed9;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  height: 64px;
  padding: 0 48px;
  display: flex;
  position: sticky;
  top: 0;
}

.nav-logo {
  letter-spacing: -1px;
  font-size: 26px;
  font-weight: 900;
}

.nav-logo span {
  color: var(--primary);
}

.nav-right {
  align-items: center;
  gap: 40px;
  display: flex;
}

.nav-links {
  gap: 32px;
  display: flex;
}

.nav-links a {
  color: var(--text2);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

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

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

.nav-auth-link {
  color: var(--text2);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.nav-auth-link:hover {
  color: var(--primary);
}

.nav-auth-btn {
  cursor: pointer;
  border: 1.5px solid var(--border);
  color: var(--text);
  background: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}

.nav-auth-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.nav-auth-btn-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.nav-auth-btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: #fff;
}

.hero {
  text-align: center;
  background: linear-gradient(180deg, #f0eeff 0%, var(--bg) 100%);
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #635bff14 0%, #0000 70%);
  width: 800px;
  height: 800px;
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-badge {
  border: 1px solid var(--border);
  color: var(--text2);
  background: #fff;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  box-shadow: 0 2px 8px #0000000a;
}

.hero-badge:before {
  content: "";
  background: var(--primary);
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.hero h1 {
  letter-spacing: -2px;
  margin-bottom: 24px;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.2;
}

.hero h1 em {
  color: var(--primary);
  font-style: normal;
}

.hero-sub {
  color: var(--text2);
  margin-bottom: 44px;
  font-size: 17px;
  line-height: 1.7;
}

.hero-sub strong {
  color: var(--text);
}

.hero-btns {
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  display: flex;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 14px;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-size: 17px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s, background .2s;
  display: inline-flex;
  box-shadow: 0 4px 20px #635bff4d;
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px #635bff66;
}

.btn-secondary {
  color: var(--text);
  border: 1.5px solid var(--border);
  cursor: pointer;
  background: #fff;
  border-radius: 14px;
  align-items: center;
  padding: 16px 36px;
  font-size: 17px;
  font-weight: 600;
  transition: border-color .2s, transform .2s;
  display: inline-flex;
}

.btn-secondary:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.editor-preview {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 16px;
  max-width: 820px;
  margin: 60px auto 0;
  overflow: hidden;
  box-shadow: 0 20px 60px #00000014;
}

.editor-bar {
  border-bottom: 1px solid var(--border);
  background: #f7f7fa;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  display: flex;
}

.editor-dot {
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.editor-url {
  text-align: center;
  color: var(--text3);
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  flex: 1;
  padding: 6px 16px;
  font-size: 13px;
}

.editor-body {
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  display: flex;
}

.editor-badge {
  background: #ecfdf5;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.editor-badge svg {
  color: var(--green);
}

.editor-chips {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.chip {
  border: 1px solid var(--border);
  background: #f9f9fc;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
}

.chip-saved {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.chip-ai {
  border-color: #ddd;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 100px 24px;
}

.section-label {
  background: var(--primary);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  margin-bottom: 24px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
}

.section-title {
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.25;
}

.section-title em {
  color: var(--primary);
  font-style: normal;
}

.section-sub {
  color: var(--text2);
  margin-bottom: 56px;
  font-size: 16px;
  line-height: 1.7;
}

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

@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

.problem-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  transition: transform .3s, box-shadow .3s;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px #0000000f;
}

.problem-card-head {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.problem-icon {
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 22px;
  display: flex;
}

.problem-tag {
  color: var(--text2);
  background: #f4f4f8;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

.problem-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.problem-card p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.6;
}

.problem-quote {
  background: #f9f9fc;
  border-radius: 12px;
  margin-top: 20px;
  padding: 16px;
  position: relative;
}

.problem-quote-icon {
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 900;
  display: flex;
}

.problem-quote p {
  color: var(--text);
  font-size: 14px;
  font-style: italic;
}

.problem-quote-author {
  color: var(--text3);
  text-align: right;
  margin-top: 8px;
  font-size: 12px;
}

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

@media (max-width: 768px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }
}

.solution-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  transition: transform .3s, box-shadow .3s;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px #0000000f;
}

.solution-icon {
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  font-size: 24px;
  display: flex;
}

.solution-card h3 {
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 700;
}

.solution-card p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.65;
}

.solution-tag {
  color: var(--primary);
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.solution-tag svg {
  width: 16px;
  height: 16px;
}

.color-dots {
  gap: 6px;
  margin-top: 16px;
  display: flex;
}

.color-dots span {
  border-radius: 50%;
  width: 14px;
  height: 14px;
}

.compare-section {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 8px 40px #0000000a;
}

.compare-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-top: 40px;
}

.compare-table th, .compare-table td {
  text-align: center;
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  font-size: 14px;
}

.compare-table th {
  color: var(--text2);
  padding-bottom: 24px;
  font-weight: 600;
}

.compare-table th:first-child, .compare-table td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 600;
}

.compare-table td:last-child {
  background: #635bff0a;
}

.compare-table th:last-child {
  background: var(--primary);
  color: #fff;
  border-radius: 16px 16px 0 0;
  padding: 20px;
  font-size: 20px;
  font-weight: 800;
  position: relative;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr:last-child td:last-child {
  border-radius: 0 0 16px 16px;
}

.recommended-badge {
  background: var(--green);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 10px;
  font-weight: 700;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.icon-check {
  color: var(--green);
  font-weight: 700;
}

.icon-partial {
  color: var(--orange);
}

.icon-no {
  color: var(--text3);
}

.compare-header-icon {
  flex-direction: column;
  align-items: center;
  gap: 8px;
  display: flex;
}

.examples-section {
  background: #f4f3ff;
  border-radius: 24px;
  padding: 56px 48px;
}

.examples-grid {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  display: grid;
}

@media (max-width: 768px) {
  .examples-grid {
    grid-template-columns: 1fr;
  }
}

.example-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 20px;
  padding: 32px;
}

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

.grade-badge {
  background: var(--text);
  color: #fff;
  border-radius: 8px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
}

.example-type {
  color: var(--text3);
  font-size: 13px;
  font-weight: 500;
}

.example-topic {
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 700;
}

.before-after-label {
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 6px;
  margin-bottom: 8px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 800;
  display: inline-block;
}

.label-before {
  background: var(--text);
  color: #fff;
}

.label-after {
  background: var(--primary);
  color: #fff;
}

.before-text {
  color: var(--text2);
  background: #f9f9fc;
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 16px;
  font-size: 14px;
  line-height: 1.7;
}

.after-text {
  color: var(--text);
  border: 1.5px solid #635bff1f;
  border-left: 3px solid var(--primary);
  background: #635bff08;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 20px;
  font-size: 14px;
  line-height: 1.7;
  position: relative;
}

.after-text.green-border {
  border-color: #22c55e1f;
  border-left-color: var(--green);
  background: #22c55e08;
}

.after-text u {
  -webkit-text-decoration-color: var(--primary);
  text-decoration-color: var(--primary);
  text-underline-offset: 3px;
}

.feedback-row {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  display: flex;
}

.fb-chip {
  color: var(--text);
  background: #f4f4f8;
  border-radius: 8px;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.fb-chip .dot {
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.mapping-row {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.mapping-chip {
  color: var(--primary);
  background: #f0eeff;
  border-radius: 8px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
}

.color-legend {
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
  display: flex;
}

.color-legend span {
  color: var(--text2);
  align-items: center;
  gap: 6px;
  font-size: 13px;
  display: flex;
}

.color-legend .dot {
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.report-section {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 24px;
  padding: 40px 48px;
  box-shadow: 0 8px 40px #0000000a;
}

.report-header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  display: flex;
}

.report-header h2 {
  font-size: 28px;
  font-weight: 800;
}

.beta-badge {
  border: 2px solid var(--primary);
  color: var(--primary);
  vertical-align: middle;
  border-radius: 8px;
  margin-left: 12px;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.report-header-sub {
  color: var(--text2);
  margin-top: 4px;
  font-size: 14px;
}

.report-header-sub strong {
  color: var(--primary);
}

.report-btns {
  gap: 12px;
  display: flex;
}

.btn-report {
  cursor: pointer;
  border: 1.5px solid var(--border);
  color: var(--text);
  background: #fff;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

.btn-report:hover {
  border-color: var(--primary);
}

.btn-report-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.btn-report-primary:hover {
  background: #dc3545;
}

.report-grid {
  grid-template-rows: auto auto;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  display: grid;
}

@media (max-width: 900px) {
  .report-grid {
    grid-template-columns: 1fr;
  }
}

.report-profile {
  border: 1px solid var(--border);
  background: #fafaff;
  border-radius: 20px;
  grid-row: 1 / 3;
  padding: 28px;
}

.profile-avatar {
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 800;
  display: flex;
}

.profile-name {
  font-size: 17px;
  font-weight: 700;
}

.profile-meta {
  color: var(--text3);
  margin-top: 2px;
  margin-bottom: 24px;
  font-size: 12px;
}

.report-growth {
  border: 1px solid var(--border);
  background: #fafaff;
  border-radius: 20px;
  padding: 24px 28px;
}

.report-growth h4 {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
}

.growth-legend {
  color: var(--text2);
  gap: 16px;
  margin-bottom: 8px;
  font-size: 12px;
  display: flex;
}

.growth-legend span {
  align-items: center;
  gap: 4px;
  display: flex;
}

.report-stats {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  display: grid;
}

@media (max-width: 900px) {
  .report-stats {
    grid-template-columns: 1fr 1fr;
  }
}

.stat-card {
  border: 1px solid var(--border);
  background: #fafaff;
  border-radius: 16px;
  padding: 20px;
}

.stat-card h5 {
  color: var(--text2);
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
}

.bar-row {
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  display: flex;
}

.bar-label {
  color: var(--text2);
  min-width: 65px;
  font-size: 12px;
}

.bar-track {
  background: #eee;
  border-radius: 5px;
  flex: 1;
  height: 10px;
  overflow: hidden;
}

.bar-fill {
  border-radius: 5px;
  height: 100%;
}

.stat-big {
  font-size: 32px;
  font-weight: 800;
}

.stat-label {
  color: var(--text2);
  font-size: 12px;
}

.stat-delta {
  border-radius: 6px;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

.delta-up {
  color: var(--green);
  background: #ecfdf5;
}

.delta-down {
  color: var(--red);
  background: #fef2f2;
}

.donut-row {
  align-items: center;
  gap: 16px;
  display: flex;
}

.donut-legend {
  color: var(--text2);
  font-size: 12px;
  line-height: 1.8;
}

.donut-legend strong {
  color: var(--text);
}

.footer {
  text-align: center;
  color: var(--text3);
  padding: 60px 24px;
  font-size: 14px;
}

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

.alert-layer-overlay {
  z-index: 10000;
  background: #00000080;
  justify-content: center;
  align-items: center;
  animation: .2s alertFadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.alert-layer-box {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 360px;
  padding: 24px;
  animation: .25s alertScaleIn;
  box-shadow: 0 20px 60px #00000026;
}

.alert-layer-message {
  color: var(--text);
  white-space: pre-line;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.alert-layer-btn {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
}

.alert-layer-btn:hover {
  background: var(--primary-light);
}

@keyframes alertFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes alertScaleIn {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-overlay {
  z-index: 9999;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  background: #00000080;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 100dvh;
  padding: 16px;
  animation: .2s alertFadeIn;
  display: flex;
  position: fixed;
  inset: 0;
  overflow: hidden auto;
}

.modal-box {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: #fff;
  border-radius: 20px;
  flex-shrink: 0;
  width: 100%;
  min-width: 0;
  max-width: 420px;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 32px;
  animation: .25s alertScaleIn;
  overflow: hidden auto;
  box-shadow: 0 20px 60px #00000026;
}

.modal-title {
  text-align: center;
  color: var(--text);
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 800;
}

.modal-close {
  width: 36px;
  height: 36px;
  color: var(--text3);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  font-size: 24px;
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 16px;
}

.modal-close:hover {
  background: var(--border);
  color: var(--text);
}

.modal-field {
  margin-bottom: 16px;
}

.modal-field label {
  color: var(--text2);
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  display: block;
}

.modal-field input {
  border: 1.5px solid var(--border);
  width: 100%;
  color: var(--text);
  box-sizing: border-box;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
}

.modal-field input:focus {
  border-color: var(--primary);
  outline: none;
}

.modal-btn-primary {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  box-sizing: border-box;
  border: none;
  border-radius: 12px;
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
}

.modal-btn-primary:hover {
  background: var(--primary-light);
}

.modal-btn-secondary {
  border: 1.5px solid var(--border);
  width: 100%;
  color: var(--text);
  cursor: pointer;
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  margin-top: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
}

.modal-btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.modal-divider {
  text-align: center;
  color: var(--text3);
  margin: 20px 0;
  font-size: 13px;
}

.modal-social-btns {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.modal-social-btn {
  border: 1.5px solid var(--border);
  cursor: pointer;
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
}

.modal-social-btn:hover {
  border-color: var(--primary);
  background: #fafaff;
}

.modal-signup-link {
  text-align: center;
  color: var(--text2);
  margin-top: 20px;
  font-size: 14px;
}

.modal-signup-link button {
  color: var(--primary);
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 700;
  text-decoration: underline;
}

.modal-box-wrap {
  position: relative;
}

.feedback-result {
  max-width: 720px;
  margin: 0 auto;
}

.feedback-result-section {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 24px;
}

.feedback-result-section h3 {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
}

.feedback-score-section .feedback-score-charts {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  display: flex;
}

.feedback-score-gauge-wrap {
  flex-direction: column;
  align-items: center;
  gap: 8px;
  display: flex;
}

.feedback-score-gauge {
  background: conic-gradient(var(--primary) calc((var(--score) / var(--max)) * 360deg), var(--border) 0);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  display: flex;
  position: relative;
}

.feedback-score-gauge-inner {
  background: #fff;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 88px;
  display: flex;
}

.feedback-score-gauge-value {
  color: var(--text);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

.feedback-score-gauge-max {
  color: var(--text3);
  font-size: 13px;
  font-weight: 600;
}

.feedback-overall-level {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.feedback-score-bars {
  flex-direction: column;
  flex: 1;
  gap: 12px;
  min-width: 200px;
  display: flex;
}

.feedback-score-bar-row {
  grid-template-columns: 64px 1fr 32px;
  align-items: center;
  gap: 10px;
  display: grid;
}

.feedback-score-bar-label {
  color: var(--text2);
  font-size: 13px;
  font-weight: 600;
}

.feedback-score-bar-track {
  background: var(--border);
  border-radius: 6px;
  height: 10px;
  overflow: hidden;
}

.feedback-score-bar-fill {
  border-radius: 6px;
  min-width: 4px;
  height: 100%;
  transition: width .3s;
}

.feedback-score-bar-value {
  color: var(--text);
  text-align: right;
  font-size: 14px;
  font-weight: 700;
}

.feedback-original-text-section .feedback-original-text {
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.feedback-image-actions .feedback-image-buttons {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  display: flex;
}

.feedback-image-preview-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 320px;
  overflow: hidden;
}

.feedback-image-preview {
  width: 100%;
  height: auto;
  display: block;
}

.feedback-tabs-section {
  padding-top: 16px;
}

.feedback-tabs {
  border-bottom: 2px solid var(--border);
  gap: 0;
  margin-bottom: 20px;
  display: flex;
}

.feedback-tab {
  color: var(--text2);
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 3px solid #0000;
  margin-bottom: -2px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  transition: color .2s, border-color .2s;
}

.feedback-tab:hover {
  color: var(--primary);
}

.feedback-tab-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.feedback-tab-panel {
  min-height: 120px;
}

.feedback-tab-empty {
  color: var(--text3);
  padding: 20px 0;
  font-size: 14px;
}

.feedback-color-legend {
  background: var(--bg);
  border-radius: 10px;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  padding: 10px 14px;
  font-size: 12px;
  display: flex;
}

.feedback-legend-item {
  border-radius: 6px;
  padding: 4px 10px;
  font-weight: 500;
}

.feedback-legend-red {
  color: #b91c1c;
  background: #fef2f2;
}

.feedback-legend-orange {
  color: #854d0e;
  background: #fefce8;
}

.feedback-legend-blue {
  color: #1d4ed8;
  background: #eff6ff;
}

.feedback-legend-green {
  color: #059669;
  background: #ecfdf5;
}

.feedback-legend-purple {
  color: var(--primary-dark);
  background: #f5f3ff;
}

.feedback-sentence-highlights {
  line-height: 1.7;
}

.feedback-highlight {
  border-radius: 3px;
  padding: 0 2px;
  font-weight: 600;
}

.feedback-highlight-red {
  color: #b91c1c;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--red);
  text-decoration-color: var(--red);
  background: #fef2f2;
}

.feedback-highlight-orange, .feedback-highlight-yellow {
  color: #854d0e;
  background: #fefce8;
}

.feedback-highlight-blue {
  color: #1d4ed8;
  background: #eff6ff;
}

.feedback-highlight-green {
  color: #059669;
  background: #ecfdf5;
}

.feedback-highlight-purple {
  color: var(--primary-dark);
  background: #f5f3ff;
}

.feedback-annotation-purple {
  color: var(--primary-dark);
  border-left: 3px solid var(--primary);
  background: #f5f3ff;
}

.feedback-sentences {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.feedback-sentence {
  background: var(--bg);
  border-radius: 12px;
  padding: 14px;
}

.feedback-sentence-original {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 15px;
}

.feedback-annotation {
  border-radius: 8px;
  margin-top: 6px;
  padding: 8px 12px;
  font-size: 13px;
}

.feedback-annotation-red {
  color: #b91c1c;
  border-left: 3px solid var(--red);
  background: #fef2f2;
}

.feedback-annotation-green {
  color: #059669;
  border-left: 3px solid var(--green);
  background: #ecfdf5;
}

.feedback-annotation-blue {
  color: #1d4ed8;
  border-left: 3px solid var(--blue);
  background: #eff6ff;
}

.feedback-annotation-yellow {
  color: #854d0e;
  border-left: 3px solid var(--orange);
  background: #fefce8;
}

.feedback-correction {
  margin-bottom: 4px;
  font-weight: 600;
  display: block;
}

.feedback-explanation {
  display: block;
}

.feedback-subsection {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 20px;
}

.feedback-subsection h4 {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.feedback-encouragement {
  border-color: var(--primary);
  background: linear-gradient(135deg, #f0eeff, #e8e5ff);
}

.feedback-gap-list {
  list-style: none;
}

.feedback-gap-list li {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.feedback-gap-list li:last-child {
  border-bottom: none;
}

.feedback-gap-list ul {
  margin-top: 8px;
  padding-left: 20px;
}

.feedback-corrected-text {
  white-space: pre-wrap;
  color: var(--text);
  background: var(--bg);
  border-radius: 12px;
  padding: 16px;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .nav {
    padding: 0 24px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .section {
    padding: 72px 20px;
  }

  .compare-section, .examples-section {
    padding: 40px 24px;
  }

  .report-section {
    padding: 32px 24px;
  }

  .pricing-grid {
    max-width: 400px;
    margin: 0 auto;
    grid-template-columns: 1fr !important;
  }

  .pricing-grid > * {
    max-width: 100%;
  }

  .b2b-grid {
    gap: 32px;
    grid-template-columns: 1fr !important;
  }

  .b2b-section {
    padding: 40px 24px !important;
  }

  .faq-grid {
    grid-template-columns: 1fr !important;
  }

  .final-cta-section {
    padding: 56px 24px !important;
  }

  .final-cta-features {
    flex-wrap: wrap;
    gap: 24px !important;
  }
}

@media (max-width: 768px) {
  .nav {
    height: 56px;
    padding: 0 16px;
  }

  .nav-logo {
    font-size: 22px;
  }

  .nav-right {
    gap: 16px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .nav-auth-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .hero {
    padding: 60px 16px 48px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(28px, 6vw, 40px);
  }

  .hero-sub {
    margin-bottom: 28px;
    font-size: 15px;
  }

  .hero-btns {
    gap: 12px;
  }

  .btn-primary, .btn-secondary {
    padding: 14px 28px;
    font-size: 15px;
  }

  .editor-preview {
    max-width: 100%;
    margin-top: 32px;
  }

  .editor-body {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .editor-body > div:last-child {
    margin-left: 0;
  }

  .section {
    padding: 56px 16px;
  }

  .section-title {
    font-size: clamp(22px, 5vw, 32px);
  }

  .section-sub {
    margin-bottom: 40px;
    font-size: 15px;
  }

  .problem-card, .solution-card {
    padding: 24px;
  }

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

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

  .compare-section {
    border-radius: 16px;
    padding: 28px 16px;
  }

  .compare-table {
    -webkit-overflow-scrolling: touch;
    font-size: 13px;
    display: block;
    overflow-x: auto;
  }

  .compare-table th, .compare-table td {
    padding: 12px 14px;
  }

  .compare-table th:first-child, .compare-table td:first-child {
    min-width: 100px;
  }

  .examples-section {
    border-radius: 16px;
    padding: 28px 16px;
  }

  .example-card {
    padding: 24px;
  }

  .example-head {
    flex-wrap: wrap;
    gap: 8px;
  }

  .color-legend {
    gap: 12px;
  }

  .report-section {
    border-radius: 16px;
    padding: 24px 16px;
  }

  .report-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .report-header h2 {
    font-size: 22px;
  }

  .report-profile {
    padding: 20px;
  }

  .report-stats {
    grid-template-columns: 1fr !important;
  }

  .footer {
    padding: 48px 16px;
    font-size: 13px;
  }

  .pricing-grid {
    max-width: none;
    gap: 20px !important;
  }

  .final-cta-section {
    padding: 48px 24px !important;
  }

  .final-cta-section h2 {
    font-size: clamp(28px, 6vw, 44px) !important;
  }

  .final-cta-section p {
    font-size: 16px !important;
  }

  .modal-overlay {
    width: 100%;
    padding: 12px;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
    padding-top: max(12px, env(safe-area-inset-top));
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
  }

  .modal-box {
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    max-height: min(100dvh - 24px, 100vh - 24px);
    padding: 28px 20px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
    flex-shrink: 1;
    margin: auto;
    overflow: hidden auto;
  }

  .modal-title {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .modal-close {
    width: 40px;
    height: 40px;
    font-size: 22px;
    top: 12px;
    right: 12px;
  }

  .modal-field {
    margin-bottom: 12px;
  }

  .modal-field input {
    padding: 12px 14px;
  }

  .modal-btn-primary {
    margin-top: 6px;
    padding: 12px;
  }

  .modal-divider {
    margin: 14px 0;
  }

  .modal-social-btn {
    padding: 12px;
  }

  .modal-signup-link {
    margin-top: 14px;
    padding-bottom: 16px;
    font-size: 13px;
  }
}

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

  .hero-badge {
    padding: 6px 14px;
    font-size: 12px;
  }

  .hero-sub br {
    display: none;
  }

  .editor-bar {
    padding: 10px 12px;
  }

  .editor-url {
    padding: 4px 12px;
    font-size: 11px;
  }

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

  .b2b-section {
    padding: 28px 16px !important;
  }

  .b2b-grid .donut-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .b2b-stats-row, .b2b-charts-row {
    grid-template-columns: 1fr !important;
  }

  .b2b-dashboard-preview > div:last-child {
    padding: 16px !important;
  }

  .faq-grid {
    grid-template-columns: 1fr !important;
  }

  .final-cta-section {
    padding: 48px 24px !important;
  }

  .final-cta-features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px !important;
  }

  .final-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 12px 40px;
  }

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

  .btn-primary, .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .hero-btns {
    width: 100%;
  }

  .section {
    padding: 40px 12px;
  }

  .section-title {
    font-size: 22px;
  }

  .problem-grid, .solution-grid {
    gap: 16px;
  }

  .compare-table th, .compare-table td {
    padding: 10px 8px;
    font-size: 12px;
  }

  .modal-overlay {
    width: 100%;
    padding: 8px;
    padding-left: max(8px, env(safe-area-inset-left));
    padding-right: max(8px, env(safe-area-inset-right));
    padding-top: max(8px, env(safe-area-inset-top));
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    left: 0;
    right: 0;
  }

  .modal-box {
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    max-height: min(100dvh - 16px, 100vh - 16px);
    padding: 24px 16px;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
    flex-shrink: 1;
    margin: auto;
    overflow: hidden auto;
  }

  .modal-title {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .modal-close {
    width: 36px;
    height: 36px;
    font-size: 20px;
    top: 8px;
    right: 8px;
  }

  .modal-field {
    margin-bottom: 10px;
  }

  .modal-field input {
    padding: 10px 12px;
    font-size: 16px;
  }

  .modal-btn-primary, .modal-social-btn {
    padding: 12px;
    font-size: 14px;
  }

  .modal-divider {
    margin: 10px 0;
    font-size: 12px;
  }

  .modal-signup-link {
    margin-top: 10px;
    padding-bottom: 20px;
    font-size: 13px;
  }

  .alert-layer-box {
    max-width: 92%;
    padding: 20px;
  }

  .final-cta-section {
    padding: 36px 16px !important;
  }

  .final-cta-section h2 {
    font-size: 24px !important;
  }

  .final-cta-section p {
    font-size: 15px !important;
  }

  .final-cta-features {
    flex-direction: column;
    gap: 16px !important;
  }
}

/*# sourceMappingURL=wout-landing_app_wout_20dcfa60.css.map*/