:root {
  --bg: #07111f;
  --bg-soft: rgba(14, 25, 43, 0.75);
  --card: rgba(13, 22, 39, 0.86);
  --card-strong: rgba(18, 30, 52, 0.96);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f3f7ff;
  --muted: #9fb0cc;
  --accent: #7c8cff;
  --accent-2: #9b6cff;
  --warm: #ffb24b;
  --warm-strong: #ff8b3d;
  --success: #7df3b4;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 140, 255, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 139, 61, 0.14), transparent 20%),
    linear-gradient(180deg, #08111d 0%, #050b14 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: 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: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 90%);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 12px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
}

.brand-mark-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-weight: 800;
  font-size: 31px;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.brand-name-main {
  color: #f5efe7;
}

.brand-name-accent {
  color: #7374ff;
}

.brand-sub,
.footer-copy,
.hero-text,
.section-heading p,
.feature-card p,
.preset-card p,
.step-card p,
.benefit-item span,
.pricing-copy,
.faq-item p {
  color: var(--muted);
}

.topbar .brand-sub,
.footer-brand-wrap .brand-sub {
  margin-top: 4px;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(243, 247, 255, 0.7);
}

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

.nav-links a,
.footer-links a,
.brand-link {
  color: rgba(243, 247, 255, 0.76);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #516dff 42%, var(--accent-2));
  box-shadow: 0 18px 36px rgba(103, 107, 255, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line-strong);
}

.btn-block {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  padding: 64px 0 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(125, 243, 180, 0.2);
  border-radius: 999px;
  background: rgba(125, 243, 180, 0.08);
  color: #cbf8df;
  font-size: 13px;
  font-weight: 600;
}

.hero h1,
.section-heading h2,
.benefits-panel h2 {
  margin: 0;
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(46px, 7vw, 74px);
  line-height: 0.96;
  max-width: 700px;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 560px;
  font-size: 19px;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-helper-link {
  margin: 14px 0 0;
}

.hero-helper-link a {
  color: rgba(223,229,255,0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 26px;
  color: rgba(243, 247, 255, 0.76);
  font-size: 14px;
}

.hero-trust-list span::before {
  content: "•";
  margin-right: 8px;
  color: var(--warm);
}

.hero-visual {
  position: relative;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.65;
}

.hero-glow-a {
  top: 8%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(124, 140, 255, 0.4);
}

.hero-glow-b {
  right: 0;
  bottom: -4%;
  width: 180px;
  height: 180px;
  background: rgba(255, 139, 61, 0.32);
}

.editor-mockup,
.feature-card,
.preset-card,
.step-card,
.pricing-card,
.faq-item,
.benefits-panel,
.trust-pill {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.editor-mockup {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(13, 22, 39, 0.98), rgba(7, 13, 24, 0.96));
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-video-mockup {
  min-height: 100%;
}

.editor-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.editor-dots {
  display: flex;
  gap: 8px;
}

.editor-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

.editor-title,
.editor-badge,
.panel-head,
.preset-label,
.pricing-chip,
.step-num,
.mini-preview-title {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editor-badge,
.pricing-chip {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(124, 140, 255, 0.12);
  color: #d7deff;
}

.pricing-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 2px;
}

.hero-video-stage {
  position: relative;
  min-height: 420px;
  background: #09111c;
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  background: #09111c;
}

.hero-video-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(6, 10, 18, 0.72);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(243,247,255,0.88);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.editor-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  padding: 20px;
}

.editor-body-full {
  display: block;
  padding: 20px;
}

.panel-card,
.preview-frame,
.mini-preview-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.035);
}

.settings-card {
  padding: 18px;
}

.preset-mini {
  padding: 12px 14px;
  margin-top: 12px;
  border-radius: 16px;
  color: rgba(243,247,255,0.8);
  background: rgba(255,255,255,0.03);
}

.preset-mini.active {
  background: linear-gradient(135deg, rgba(124,140,255,0.22), rgba(155,108,255,0.18));
  color: white;
  border: 1px solid rgba(124, 140, 255, 0.28);
}

.settings-stack {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.setting-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(243,247,255,0.74);
}

.chip {
  width: 36px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
}

.chip-light { background: #f7f8fc; }
.chip-warm { background: linear-gradient(135deg, var(--warm), var(--warm-strong)); }
.chip-dark { background: #0c1118; }

.preview-stack {
  display: grid;
  gap: 14px;
}

.main-preview {
  padding: 18px;
}

.app-preview-image {
  display: block;
  width: 100%;
  min-height: 290px;
  max-height: 290px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
}

.app-preview-image-full {
  display: block;
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  object-fit: cover;
}

.caption-line,
.mini-preview-line,
.preset-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.caption-word,
.preset-preview span,
.mini-preview-line span {
  font-size: 26px;
}

.shown,
.filled {
  color: rgba(243,247,255,0.82);
}

.active,
.accent {
  color: var(--warm);
}

.ghost {
  color: rgba(243,247,255,0.22);
}

.boxed {
  padding: 4px 12px;
  border-radius: 12px;
  background: rgba(255, 178, 75, 0.18);
  border: 1px solid rgba(255, 178, 75, 0.35);
}

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

.mini-preview-card {
  padding: 16px;
}

.progress-line .filled {
  color: rgba(243,247,255,0.65);
}

.progress-line .accent {
  color: var(--warm-strong);
}

.section {
  padding: 42px 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 8px 0 14px;
}

.trust-pill {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(243,247,255,0.78);
  font-size: 14px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading-tight {
  max-width: 680px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2,
.benefits-panel h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
}

.section-heading p {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.7;
}

.feature-grid,
.preset-grid,
.steps-grid,
.comparison-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  border-radius: var(--radius-lg);
}

.feature-card-large {
  grid-column: span 2;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(124,140,255,0.16);
  margin-bottom: 16px;
}

.feature-card h3,
.preset-card h3,
.step-card h3,
.pricing-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.pricing-card h3 {
  margin-bottom: 4px;
  line-height: 1.08;
}

.feature-card p,
.preset-card p,
.step-card p,
.pricing-copy,
.faq-item p,
.benefit-item span {
  margin: 0;
  line-height: 1.7;
}

.pricing-copy {
  max-width: 34ch;
}

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

.preset-card,
.step-card,
.pricing-card,
.faq-item,
.benefits-panel {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  border-radius: var(--radius-lg);
}

.preset-card {
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.preset-card.preview-playing {
  border-color: rgba(124, 140, 255, 0.35);
  box-shadow: 0 18px 40px rgba(67, 84, 180, 0.18);
}

.preset-card.preview-playing::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124,140,255,0.9), rgba(255,178,75,0.55), rgba(155,108,255,0.9));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.95;
  pointer-events: none;
}

.preset-label,
.step-num {
  color: rgba(243,247,255,0.54);
  margin-bottom: 14px;
}

.preset-preview {
  margin-top: 18px;
  min-height: 78px;
  align-items: center;
  justify-content: flex-start;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}

.progress-preview-box {
  background: transparent;
  border: none;
}

.progress-line-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.preview-word {
  display: inline-block;
  color: rgba(243,247,255,0.84);
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.preview-word.preview-active {
  color: var(--warm);
}

.preview-word.preview-hidden {
  opacity: 0;
}

.preview-word.preview-boxed {
  position: relative;
  padding: 4px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  min-width: 1ch;
}

.preview-word.preview-tone-muted {
  color: rgba(243,247,255,0.56);
}

.preview-word.preview-tone-done {
  color: rgba(243,247,255,0.92);
}

.preview-word.preview-tone-active {
  color: var(--warm-strong);
}

.preview-word.preview-pop {
  transform: scale(1.08);
}

.preview-word.preview-moving {
  box-shadow: 18px 0 40px rgba(255,178,75,0.08);
}

.preview-word.preview-slide-from {
  transform: translateX(calc(12px * (1 - var(--slide-progress, 1))));
}

.box-preview,
.slide-preview {
  position: relative;
}

.box-preview.highlight-box-active::after,
.slide-preview.sliding-box-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--slide-left, 18px);
  transform: translateY(-50%);
  width: var(--slide-width, 52px);
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 178, 75, 0.18);
  border: 1px solid rgba(255, 178, 75, 0.35);
  box-shadow: 0 14px 32px rgba(255, 178, 75, 0.08);
  pointer-events: none;
}

.slide-preview.sliding-box-active::after {
  transition: left 180ms linear, width 180ms linear;
}

.slide-preview .preview-word {
  position: relative;
  z-index: 1;
}

.pop {
  display: inline-block;
  transform: scale(1.08);
}

.moving {
  box-shadow: 18px 0 40px rgba(255,178,75,0.08);
}

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

.step-card {
  position: relative;
}

.benefits-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: start;
}

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

.benefit-item {
  display: grid;
  gap: 6px;
}

.benefit-item strong {
  font-size: 18px;
}

.pricing-section {
  display: grid;
  gap: 22px;
}

.pricing-card {
  max-width: 620px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  align-content: start;
  background: linear-gradient(180deg, rgba(18,30,52,0.94), rgba(11,19,33,0.94));
  box-shadow: var(--shadow);
}

.pricing-price {
  margin: 18px 0 20px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.pricing-price span {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--muted);
}

.pricing-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(243,247,255,0.82);
  font-size: 13px;
}

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

.pricing-list li {
  color: rgba(243,247,255,0.84);
}

.pricing-list li::before {
  content: "✓";
  color: var(--success);
  margin-right: 10px;
}

.demo-section,
.delivery-section,
.feedback-section {
  display: grid;
  gap: 22px;
}

.feedback-section {
  padding-top: 18px;
}

.feedback-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 10px 18px;
  text-align: center;
}

.feedback-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(243,247,255,0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feedback-quote {
  margin: 0;
  font-size: clamp(26px, 3.3vw, 38px);
  line-height: 1.32;
  letter-spacing: -0.04em;
  color: #f7f9ff;
  text-wrap: balance;
}

.feedback-meta {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  justify-items: center;
}

.feedback-meta strong {
  font-size: 15px;
  color: #f7f9ff;
}

.feedback-meta span {
  color: var(--muted);
  font-size: 14px;
}

.demo-video-shell {
  width: 100%;
}

.centered-demo-video-shell {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.demo-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(18,30,52,0.94), rgba(11,19,33,0.94));
  box-shadow: var(--shadow);
}

.centered-demo-video-frame {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.demo-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

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

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.faq-item p {
  margin-top: 14px;
}

.legal-main {
  display: grid;
  gap: 18px;
  padding-bottom: 56px;
}

.legal-hero {
  max-width: 760px;
  display: grid;
  gap: 12px;
  margin-bottom: 6px;
}

.legal-hero h1,
.legal-card h2 {
  color: #f5f7fb;
}

.legal-meta,
.legal-intro,
.legal-card p,
.legal-card li,
.legal-card code,
.legal-card pre,
.legal-card ol,
.legal-card ul {
  color: rgba(243,247,255,0.78);
}

.legal-card {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.legal-card h2 {
  margin: 0 0 2px;
}

.legal-card p,
.legal-card li {
  line-height: 1.75;
}

.legal-card ol,
.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.legal-card code {
  color: rgba(243,247,255,0.9);
}

.legal-card a {
  color: #dfe5ff;
}

.code-block {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(7, 12, 20, 0.92);
}

.code-block-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.code-block-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243,247,255,0.68);
}

.code-copy-btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: #f5f7fb;
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.code-copy-btn:hover {
  background: rgba(255,255,255,0.1);
}

.code-block pre {
  margin: 0;
  padding: 16px 18px;
  overflow-x: auto;
}

.code-block code {
  color: #eef3ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 42px;
  color: rgba(243,247,255,0.76);
}

.footer-brand-wrap {
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 1100px) {
  .hero,
  .benefits-panel,
  .feature-grid,
  .preset-grid,
  .steps-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    grid-column: span 1;
  }

  .editor-body,
  .preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .topbar {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero {
    padding-top: 40px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

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

  .section-heading h2,
  .benefits-panel h2 {
    font-size: 32px;
  }

  .caption-word,
  .preset-preview span,
  .mini-preview-line span {
    font-size: 21px;
  }

  .footer,
  .hero-cta-row,
  .hero-trust-list {
    flex-direction: column;
    align-items: flex-start;
  }
}
