:root {
  --bg: #f3ebdf;
  --bg-deep: #decfbd;
  --paper: rgba(252, 248, 242, 0.9);
  --paper-strong: rgba(255, 252, 247, 0.96);
  --ink: #15181d;
  --muted: #58606b;
  --line: rgba(21, 24, 29, 0.12);
  --line-strong: rgba(21, 24, 29, 0.28);
  --accent: #a14c2b;
  --accent-soft: #e6af77;
  --cool: #234257;
  --cool-soft: #d7e3ea;
  --shadow: 0 22px 44px rgba(17, 20, 26, 0.08);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", sans-serif;
  line-height: 1.68;
  background:
    linear-gradient(90deg, rgba(21, 24, 29, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(21, 24, 29, 0.03) 1px, transparent 1px),
    radial-gradient(circle at top left, rgba(161, 76, 43, 0.1), transparent 24%),
    linear-gradient(180deg, #f8f4ed 0%, var(--bg) 46%, var(--bg-deep) 100%);
  background-size: 28px 28px, 28px 28px, auto, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.3), transparent 20%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.2), transparent 22%);
}

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

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

.container {
  width: min(calc(100% - 34px), var(--container));
  margin: 0 auto;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px 0 12px;
  backdrop-filter: blur(7px);
}

.topbar__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 14px 0;
  border-top: 2px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: "Georgia", "Palatino Linotype", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.brand__dot {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 4px 4px 0 rgba(21, 24, 29, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  min-width: 0;
}

.nav a {
  position: relative;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

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

.nav a:hover::after {
  transform: scaleX(1);
}

.lang-menu {
  position: relative;
  z-index: 60;
}

.lang-menu__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 76px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.lang-menu__button:hover {
  background: rgba(255, 255, 255, 0.86);
}

.lang-menu__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.lang-menu__list {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 190px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  background: rgba(252, 248, 242, 0.98);
  box-shadow: var(--shadow);
  display: none;
}

.lang-menu.is-open .lang-menu__list {
  display: block;
}

.lang-menu__list a {
  display: block;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
}

.lang-menu__list a:hover,
.lang-menu__list a.is-current {
  color: var(--ink);
  background: rgba(35, 66, 87, 0.08);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: "Georgia", "Palatino Linotype", serif;
  font-weight: 700;
  letter-spacing: -0.05em;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(40px, 8vw, 78px);
  line-height: 0.92;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.lead,
.section-head p,
.section-card p,
.compare-card p,
.faq-item p,
.cta-card p,
.lang-card p,
.masthead__feature p,
.hero__card p {
  color: var(--muted);
}

.eyebrow,
.compare-label,
.article-card__type,
.masthead__edition {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  color: var(--cool);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-page {
  display: grid;
  gap: 0;
}

.masthead,
.editorial-section,
.article-page,
.article-hero,
.lang-page {
  position: relative;
  z-index: 1;
}

.masthead {
  padding: 32px 0 60px;
}

.masthead__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.masthead__copy,
.masthead__feature,
.hero__card,
.section-card,
.compare-card,
.faq-item,
.cta-card,
.lang-card,
.article-side,
.article-content.section-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  animation: rise 0.7s ease both;
}

.masthead__copy {
  padding: 36px 36px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(235, 223, 206, 0.9));
}

.masthead__copy::before,
.masthead__feature::before,
.section-card::before,
.compare-card::before,
.faq-item::before,
.article-content.section-card::before,
.article-side::before,
.lang-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--cool), var(--accent), var(--accent-soft));
}

.masthead__copy::after,
.masthead__feature::after,
.section-card::after,
.compare-card::after,
.faq-item::after,
.lang-card::after,
.article-side::after,
.article-content.section-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, transparent 49%, rgba(21, 24, 29, 0.08) 50%);
}

.masthead__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.lead {
  margin: 0 0 24px;
  max-width: 760px;
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.masthead__actions {
  margin-bottom: 28px;
}

.masthead__brief {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.masthead__brief-head {
  display: grid;
  gap: 10px;
}

.masthead__brief-head h2 {
  margin-bottom: 0;
  font-size: clamp(22px, 3vw, 30px);
}

.masthead__brief p {
  margin: 0;
}

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

.masthead__brief-point {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(251, 247, 241, 0.88);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(21, 24, 29, 0.08);
}

.btn--primary {
  border-color: rgba(161, 76, 43, 0.42);
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff9f3;
}

.btn--secondary {
  color: var(--ink);
}

.hero__stats {
  display: grid;
  gap: 12px;
}

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

.stat,
.checklist li {
  padding: 16px;
}

.stat {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Georgia", "Palatino Linotype", serif;
  font-size: 24px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.masthead__side {
  display: grid;
  gap: 20px;
}

.masthead__feature {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.masthead__feature-copy {
  display: grid;
  gap: 10px;
}

.masthead__media {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #11161d;
}

.hero__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  color: #f8f4ee;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(135deg, #172635 0%, #234257 48%, #315d76 100%);
}

.hero__card h2,
.hero__card h3,
.hero__card p,
.hero__card li {
  color: inherit;
}

.hero__card .compare-label,
.hero__card .eyebrow {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 244, 238, 0.76);
}

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

.checklist li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.editorial-section {
  padding: 0 0 66px;
}

.section-head {
  margin-bottom: 24px;
  padding-top: 18px;
  max-width: 860px;
  border-top: 2px solid var(--line-strong);
}

.section-head h2::before {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#features .section-head h2::before {
  content: "Motion Use Cases";
}

#workflow .section-head h2::before {
  content: "Production Path";
}

#compare .section-head h2::before {
  content: "Visual Formats";
}

#guides .section-head h2::before {
  content: "Editorial Library";
}

#benefits .section-head h2::before {
  content: "Audience Fit";
}

#faq .section-head h2::before {
  content: "Key Questions";
}

#start .section-head h2::before {
  content: "Launch CTA";
}

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

.feature-card {
  min-height: 100%;
  padding: 26px;
}

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

.workflow-card {
  padding: 24px;
}

.compare {
  display: grid;
  gap: 18px;
}

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

.compare-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.compare-text-zone {
  display: grid;
  gap: 10px;
}

.compare-card h3,
.article-card h3 {
  margin: 0;
}

.compare-card p,
.article-card p {
  margin: 0;
}

.compare-image,
.compare-video {
  width: 100%;
  margin-top: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #10161e;
}

.articles-grid {
  display: grid;
  gap: 18px;
}

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

.article-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(242, 232, 219, 0.92));
}

.article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.article-card__type {
  color: var(--accent);
}

.article-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card__stats span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.article-card__highlights {
  display: grid;
  gap: 10px;
}

.article-card__highlight {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(251, 247, 241, 0.88);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.article-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.article-card__bot-link {
  color: var(--cool);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card .btn {
  margin-top: 0;
}

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

.benefit-column {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.benefit-column__head {
  display: grid;
  gap: 10px;
}

.benefit-column .checklist li {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.faq {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: end;
  gap: 18px;
  padding: 28px;
  color: #fbf7f1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(135deg, var(--cool) 0%, #30566f 52%, var(--accent) 100%);
}

.cta-card p {
  color: rgba(251, 247, 241, 0.86);
}

.cta-card__actions {
  justify-content: flex-end;
}

.cta-card .btn--secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.footer {
  padding: 0 0 28px;
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 0;
  border-top: 2px solid var(--line-strong);
  color: var(--muted);
  font-size: 14px;
}

.lang-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}

.lang-card {
  max-width: 760px;
  padding: 34px;
}

.lang-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.lang-link:hover {
  transform: translate(-2px, -2px);
  background: rgba(255, 255, 255, 0.94);
}

.article-hero {
  padding: 28px 0 34px;
}

.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.article-hero__wrap,
.article-hero__panel {
  display: grid;
  gap: 14px;
}

.article-hero__wrap {
  padding: 26px 28px 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 32%),
    linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(234, 224, 208, 0.9));
  box-shadow: var(--shadow);
}

.article-hero__panel {
  padding: 26px 26px 24px;
}

.article-hero__panel-head {
  display: grid;
  gap: 12px;
}

.article-hero__panel-head h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
}

.article-hero__meta {
  margin-top: 4px;
}

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

.article-hero__fact {
  display: grid;
  gap: 6px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.article-hero__fact strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.1;
}

.article-hero__fact span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-hero__panel-actions {
  display: flex;
  flex-wrap: wrap;
}

.article-hero__panel .btn {
  width: 100%;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cool);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-page {
  padding-bottom: 58px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.68fr);
  gap: 28px;
  align-items: start;
}

.article-content.section-card {
  display: grid;
  gap: 0;
  padding: 30px 34px;
}

.article-intro {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.8;
}

.article-quick {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.article-quick__head {
  display: grid;
  gap: 10px;
}

.article-quick h3 {
  margin: 0;
  font-size: 18px;
}

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

.article-quick .checklist li {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.article-section {
  display: grid;
  gap: 12px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.article-section:first-of-type {
  margin-top: 10px;
}

.article-section__eyebrow {
  display: flex;
}

.article-section h2 {
  margin-bottom: 0;
  max-width: 780px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.12;
}

.article-section p {
  margin: 0;
  max-width: 780px;
  font-size: 16px;
  line-height: 1.8;
}

.article-section p + p {
  margin-top: 14px;
}

.article-faq {
  display: grid;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-side {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 16px;
  align-self: start;
  padding: 22px;
}

.article-side__block {
  display: grid;
  gap: 12px;
}

.article-side__block h2 {
  margin: 0;
  font-size: 22px;
}

.article-side__block--cta {
  padding-top: 6px;
}

.article-side .checklist li {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.article-side .checklist a {
  color: var(--ink);
  font-weight: 700;
}

.article-cta {
  margin-top: 26px;
}

.article-more {
  padding-top: 18px;
}

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

.article-more .article-card {
  min-height: 100%;
}

.article-card--related .article-card__stats {
  margin-top: -4px;
}

@media (max-width: 980px) {
  .topbar {
    position: relative;
  }

  .topbar__row,
  .masthead__grid,
  .article-hero__grid,
  .feature-split,
  .workflow-grid,
  .compare--editorial,
  .articles-grid--editorial,
  .benefit-columns,
  .cta-card,
  .article-layout,
  .article-more .articles-grid,
  .masthead__stats,
  .article-quick .checklist,
  .lang-grid {
    grid-template-columns: 1fr;
  }

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

  .brand {
    font-size: 18px;
  }

  .nav {
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    white-space: nowrap;
  }

  .masthead__copy,
  .masthead__feature,
  .hero__card,
  .section-card,
  .compare-card,
  .faq-item,
  .cta-card,
  .lang-card,
  .article-side,
  .article-content.section-card {
    padding: 20px;
  }

  .btn {
    width: 100%;
  }

  .article-side {
    position: static;
  }

  .article-hero__facts {
    grid-template-columns: 1fr;
  }

  .article-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .masthead__brief-points {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: clamp(32px, 11vw, 50px);
  }
}
