:root {
  color-scheme: light;
  --bg: #fffaf5;
  --bg-strong: #fff0e0;
  --surface: #ffffff;
  --surface-strong: #fff8f0;
  --text: #241714;
  --muted: #6d5b55;
  --line: rgba(91, 58, 42, 0.16);
  --primary: #f24a1f;
  --primary-strong: #c82d16;
  --primary-soft: #ffe2d2;
  --green: #2b8a67;
  --blue: #256f9f;
  --shadow: 0 24px 70px rgba(110, 58, 28, 0.18);
  --radius: 8px;
  --max: 1160px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(180deg, #fff6ec 0%, #fffaf5 520px, #ffffff 100%);
  color: var(--text);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, calc(var(--max) + 48px));
  margin: 0 auto;
  padding: 16px 24px;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(255, 250, 245, 0.86);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(88, 54, 36, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 760;
}

.brand img {
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a,
.header-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  white-space: nowrap;
}

.site-nav a:hover,
.header-action:hover {
  background: rgba(242, 74, 31, 0.08);
  color: var(--text);
}

.header-action {
  border: 1px solid rgba(242, 74, 31, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-strong);
  font-size: 14px;
  font-weight: 750;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  min-height: clamp(680px, 92vh, 900px);
  padding: 34px 24px 72px;
}

.hero-media {
  position: absolute;
  inset: 86px max(24px, calc((100vw - var(--max)) / 2)) 26px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.screenshot-frame {
  margin: 0;
  filter: drop-shadow(0 24px 46px rgba(110, 58, 28, 0.16));
  overflow: hidden;
}

.screenshot-frame img {
  width: 100%;
  height: auto;
}

.hero-showcase {
  width: min(420px, 42vw);
  min-width: 330px;
  display: grid;
  gap: 16px;
  transform: translate(42px, 8px);
}

.hero-selection-shot {
  width: min(300px, 78%);
  justify-self: start;
}

.hero-translation-shot {
  width: min(340px, 88%);
  justify-self: end;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-bottom: 42px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(66px, 11vw, 138px);
  line-height: 0.88;
  font-weight: 860;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: #4d3933;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(242, 74, 31, 0.24);
}

.button.primary:hover {
  background: var(--primary-strong);
}

.button.secondary {
  border: 1px solid rgba(98, 55, 36, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.trust-strip,
.section,
.feature-grid,
.workflow-section,
.platform-section,
.download-section,
.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.trust-strip span {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: #5f4d47;
  font-size: 14px;
  font-weight: 760;
  text-align: center;
}

.trust-strip span:last-child {
  border-right: 0;
}

.section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
  padding: 112px 0 42px;
}

.section h2,
.workflow-copy h2,
.platform-section h2,
.download-copy h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.06;
  font-weight: 840;
  letter-spacing: 0;
}

.section p:last-child,
.workflow-copy p:last-child,
.platform-list p,
.download-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 32px 0 96px;
}

.feature-card {
  position: relative;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(90, 58, 36, 0.06);
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 20px;
  font-weight: 800;
}

.feature-card h3 {
  margin: 24px 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.54fr);
  gap: 36px 56px;
  align-items: center;
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.workflow-copy p:last-child {
  max-width: 650px;
  margin-top: 22px;
}

.showcase-stack {
  justify-self: end;
  width: min(360px, 100%);
  display: grid;
  gap: 14px;
}

.showcase-card {
  filter: drop-shadow(0 22px 40px rgba(110, 58, 28, 0.14));
}

.showcase-card img {
  width: 100%;
}

.selection-popup-card {
  width: min(260px, 82%);
  justify-self: start;
}

.translation-window-card {
  width: min(300px, 92%);
  justify-self: end;
}

.workflow-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.workflow-steps div {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff, #fff8f1);
}

.workflow-steps span {
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 850;
}

.workflow-steps strong {
  font-size: 20px;
  line-height: 1.35;
}

.gallery-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.gallery-head {
  display: grid;
  gap: 0;
  max-width: 820px;
  margin-bottom: 30px;
}

.gallery-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 840;
  letter-spacing: 0;
}

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

.gallery-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(90, 58, 36, 0.06);
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
}

.gallery-grid figcaption {
  padding: 12px 4px 4px;
  color: #5d4a44;
  font-size: 14px;
  font-weight: 800;
}

.platform-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.platform-list {
  display: grid;
  gap: 18px;
}

.platform-list div {
  border-left: 3px solid var(--primary);
  padding-left: 18px;
}

.platform-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.roadmap-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.roadmap-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.roadmap-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 840;
  letter-spacing: 0;
}

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

.roadmap-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #fff8f1);
  box-shadow: 0 14px 36px rgba(90, 58, 36, 0.06);
}

.roadmap-grid span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 850;
}

.roadmap-grid h3 {
  margin: 10px 0 0;
  font-size: 22px;
  line-height: 1.25;
}

.roadmap-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.pricing-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.pricing-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.pricing-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 840;
  letter-spacing: 0;
}

.pricing-head p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

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

.pricing-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(90, 58, 36, 0.06);
}

.pricing-card .plan-badge {
  width: fit-content;
  min-width: 56px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 5px 14px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 850;
}

.pricing-card h3 {
  margin: 6px 0 0;
  font-size: 28px;
  line-height: 1.2;
}

.pricing-card .price {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
  font-weight: 860;
}

.pricing-card .price small {
  display: inline-block;
  margin-left: 8px;
  color: var(--primary-strong);
  font-size: 16px;
  font-weight: 850;
  vertical-align: middle;
}

.pricing-card .price-note {
  color: #8a6a5f;
  font-size: 14px;
  font-weight: 760;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.pricing-card .pricing-action {
  width: fit-content;
  margin-top: 2px;
}

.pricing-card .purchase-code {
  color: #5c4038;
  font-size: 14px;
  font-weight: 760;
}

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

.pricing-card li {
  position: relative;
  padding-left: 22px;
  color: #4d3933;
  font-size: 15px;
  font-weight: 700;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

.pricing-card.pro-card {
  border-color: rgba(242, 74, 31, 0.28);
  background: linear-gradient(180deg, #ffffff, #fff4ec);
}

.download-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 74px;
  border: 1px solid rgba(242, 74, 31, 0.22);
  border-radius: 8px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 239, 225, 0.92), rgba(255, 255, 255, 0.96)),
    var(--surface);
  box-shadow: 0 24px 64px rgba(112, 61, 35, 0.1);
}

.download-copy p {
  max-width: 620px;
  margin-top: 16px;
}

.download-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.download-card {
  display: grid;
  gap: 8px;
  min-height: 138px;
  border: 1px solid rgba(98, 55, 36, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.download-card:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 74, 31, 0.42);
  box-shadow: 0 18px 38px rgba(112, 61, 35, 0.12);
}

.download-card span {
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 850;
}

.download-card strong {
  font-size: 20px;
  line-height: 1.25;
}

.download-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.download-card.primary-download {
  border-color: rgba(242, 74, 31, 0.36);
  background: linear-gradient(180deg, #ffffff, #fff2e9);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 92px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-bottom: 36px;
  }

  .hero-media {
    position: relative;
    inset: auto;
    order: 2;
    width: min(100%, 760px);
    margin: 32px auto 0;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-showcase {
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .section,
  .workflow-section,
  .gallery-section,
  .platform-section,
  .roadmap-section,
  .pricing-section,
  .download-section {
    grid-template-columns: 1fr;
  }

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

  .workflow-steps,
  .gallery-grid,
  .roadmap-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .showcase-stack {
    justify-self: start;
  }

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

  .trust-strip span:nth-child(2) {
    border-right: 0;
  }

  .trust-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .download-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .site-nav {
    display: none;
  }

  .header-action {
    min-height: 38px;
    padding-inline: 12px;
  }

  .hero {
    padding: 28px 16px 34px;
  }

  .hero h1 {
    font-size: clamp(58px, 23vw, 108px);
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .pricing-card .pricing-action {
    width: 100%;
  }

  .trust-strip,
  .section,
  .feature-grid,
  .workflow-section,
  .gallery-section,
  .platform-section,
  .roadmap-section,
  .pricing-section,
  .download-section,
  .site-footer {
    width: calc(100% - 32px);
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip span:last-child {
    border-bottom: 0;
  }

  .section {
    gap: 22px;
    padding-top: 72px;
  }

  .section h2,
  .workflow-copy h2,
  .gallery-head h2,
  .platform-section h2,
  .roadmap-head h2,
  .pricing-head h2,
  .download-copy h2 {
    font-size: clamp(32px, 12vw, 46px);
  }

  .feature-grid {
    grid-template-columns: 1fr;
    padding-bottom: 72px;
  }

  .feature-card {
    min-height: 0;
  }

  .workflow-section,
  .gallery-section,
  .platform-section,
  .roadmap-section,
  .pricing-section {
    gap: 28px;
    padding: 64px 0;
  }

  .download-section {
    padding: 24px;
    margin-bottom: 44px;
  }

  .site-footer {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 24px 0;
  }
}
