:root {
  --mkt-ink: #033744;
  --mkt-brand: #84d1bf;
  --mkt-brand-text: #2f7d6e;
  --mkt-accent: #e55938;
  --mkt-accent-hover: #c54d30;
  --mkt-cream: #f2e5dd;
  --mkt-canvas: #f5f7f7;
  --mkt-muted: #64787e;
  --mkt-line: #ebeeee;
  --mkt-text: #1f2937;
  --mkt-header-h: 4.5rem;
}
*, *::before, *::after { box-sizing: border-box; }
.mkt-body {
  margin: 0;
  font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
  color: var(--mkt-text);
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.mkt-skip {
  position: absolute;
  left: -999px;
}
.mkt-skip:focus {
  left: 8px;
  top: 8px;
  z-index: 20;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--mkt-ink);
}
.mkt-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--mkt-line);
  backdrop-filter: blur(12px);
}
.mkt-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--mkt-header-h);
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 20px;
}
.mkt-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: var(--mkt-ink);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}
.mkt-wordmark img {
  height: 28px;
  width: auto;
  display: block;
}
.mkt-nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}
.mkt-nav-desktop a {
  color: var(--mkt-ink);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 999px;
}
.mkt-nav-desktop a:hover { background: #e8f6f2; }
.mkt-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mkt-btn-ghost {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--mkt-line);
  background: #fff;
  color: var(--mkt-ink);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}
.mkt-cta,
.mkt-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  background: var(--mkt-accent);
  color: #fff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.mkt-cta:hover,
.mkt-btn-primary:hover { background: var(--mkt-accent-hover); }
.mkt-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--mkt-line);
  border-radius: 999px;
  background: #fff;
  color: var(--mkt-ink);
  cursor: pointer;
}
.mkt-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 20px 20px;
  border-top: 1px solid var(--mkt-line);
  background: #fff;
}
.mkt-nav-mobile.is-open { display: flex; }
.mkt-nav-mobile a {
  color: var(--mkt-ink);
  text-decoration: none;
  font-weight: 500;
  padding: 12px 8px;
  border-radius: 12px;
  min-height: 44px;
}
@media (min-width: 1024px) {
  .mkt-nav-desktop { display: flex; }
  .mkt-menu-toggle, .mkt-nav-mobile { display: none !important; }
}
.mkt-main {
  flex: 1;
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding: calc(var(--mkt-header-h) * 0.15) 20px 64px;
}
.mkt-main--landing {
  max-width: 72rem;
  padding-left: 0;
  padding-right: 0;
}
.mkt-article--landing .mkt-prose,
.mkt-article--landing .mkt-form,
.mkt-article--landing .mkt-faq,
.mkt-article--landing .mkt-related,
.mkt-article--landing .mkt-cta-wrap,
.mkt-article--landing .mkt-quote,
.mkt-article--landing .mkt-figure,
.mkt-article--landing .mkt-h,
.mkt-article--landing .mkt-video {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.mkt-index-title,
.mkt-h1,
.mkt-hero-title,
.mkt-h {
  color: var(--mkt-ink);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.mkt-index-title, .mkt-h1, .mkt-hero-title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin: 8px 0 12px; }
.mkt-lede, .mkt-hero-sub { color: var(--mkt-muted); font-size: 1.05rem; line-height: 1.6; }
.mkt-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mkt-brand-text);
}
.mkt-date { display: block; margin: 0 0 16px; font-size: 0.875rem; color: var(--mkt-muted); }
.mkt-cover, .mkt-figure { margin: 0 0 24px; }
.mkt-cover img, .mkt-figure img, .mkt-hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}
.mkt-cards { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 16px; }
.mkt-card {
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--mkt-line);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  box-shadow: 0 1px 2px rgba(3, 55, 68, 0.04);
}
.mkt-card:hover { border-color: var(--mkt-brand); }
.mkt-card-img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: linear-gradient(160deg, #c5ebe3, var(--mkt-brand));
}
.mkt-card-body { padding: 16px 20px 20px; }
.mkt-card h2 { margin: 0 0 8px; color: var(--mkt-ink); font-size: 1.15rem; }
.mkt-card p { margin: 0 0 8px; color: var(--mkt-muted); }
.mkt-card time { font-size: 0.8rem; color: var(--mkt-muted); }
.mkt-prose p { line-height: 1.7; }
.mkt-prose a { color: var(--mkt-brand-text); }
.mkt-quote {
  border-left: 4px solid var(--mkt-brand);
  margin: 24px 0;
  padding-left: 16px;
  color: #374151;
}
.mkt-hr { border: 0; border-top: 1px solid var(--mkt-line); margin: 32px 0; }
.mkt-cta-wrap { margin: 28px 0; }
.mkt-hero { margin: 0 0 32px; }
.mkt-main--landing .mkt-hero { padding: 24px 20px 8px; }
.mkt-video { position: relative; padding-bottom: 56.25%; height: 0; margin: 24px auto; }
.mkt-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.mkt-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--mkt-line);
  border-radius: 16px;
  margin: 32px auto;
  background: var(--mkt-canvas);
}
.mkt-form-title { margin: 0; color: var(--mkt-ink); }
.mkt-label { display: grid; gap: 4px; font-size: 0.9rem; font-weight: 600; }
.mkt-label input, .mkt-label textarea {
  font: inherit;
  font-weight: 400;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
}
.mkt-check { font-size: 0.9rem; }
.mkt-hp { position: absolute; left: -9999px; }
.mkt-faq-item { border-bottom: 1px solid var(--mkt-line); padding: 12px 0; }
.mkt-faq h2 { color: var(--mkt-ink); }
.mkt-preview-banner {
  background: #fef3c7;
  color: #92400e;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
}
.mkt-preview-note { font-size: 0.875rem; color: var(--mkt-muted); margin: 0 0 16px; }
.mkt-ok { background: #ecfdf5; color: #065f46; padding: 8px 12px; border-radius: 8px; }
.mkt-error { background: #fef2f2; color: #991b1b; padding: 12px 16px; border-radius: 8px; }
.mkt-error ul { margin: 8px 0 0; padding-left: 1.1rem; }
.mkt-empty { color: var(--mkt-muted); }
.mkt-related { margin: 40px 0 8px; }
.mkt-related-title { color: var(--mkt-ink); font-size: 1.25rem; }
.mkt-footer {
  border-top: 1px solid var(--mkt-line);
  background: #fff;
  padding: 48px 20px 28px;
}
.mkt-footer-inner { max-width: 72rem; margin: 0 auto; }
.mkt-footer-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 768px) {
  .mkt-footer-grid { grid-template-columns: 1.2fr 2fr; }
  .mkt-footer-cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
}
.mkt-footer h3 {
  margin: 0 0 12px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mkt-muted);
}
.mkt-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.mkt-footer a { color: var(--mkt-muted); text-decoration: none; font-size: 0.9rem; }
.mkt-footer a:hover { color: var(--mkt-ink); }
.mkt-footer-brand p { color: var(--mkt-muted); font-size: 0.9rem; max-width: 20rem; line-height: 1.5; }
.mkt-store { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.mkt-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  line-height: 1.15;
}
.mkt-store-badge strong { display: block; font-size: 0.9rem; }
.mkt-legal {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--mkt-line);
  font-size: 0.8rem;
  color: var(--mkt-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
}
.mkt-form[inert] { opacity: 0.72; }

.mkt-editor-canvas {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 20px;
  overflow: hidden;
}
.mkt-editor-canvas .mkt-header { position: static; }
.mkt-editor-canvas .mkt-header-inner { min-height: 3.5rem; }
.mkt-editor-canvas .mkt-main { padding-top: 8px; }
.mkt-editor-canvas img { max-width: 100%; height: auto; }
.mkt-editor-canvas p { margin: 0.6em 0; line-height: 1.65; }
.mkt-editor-canvas h1,
.mkt-editor-canvas h2,
.mkt-editor-canvas h3 {
  color: var(--mkt-ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.mkt-editor-canvas h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.mkt-editor-canvas h2 { font-size: 1.35rem; }
.mkt-editor-canvas h3 { font-size: 1.15rem; }
.mkt-editor-canvas a { color: var(--mkt-ink); text-decoration: underline; }
.mkt-editor-canvas ul,
.mkt-editor-canvas ol { margin: 0.6em 0; padding-left: 1.25em; }
.mkt-editor-canvas blockquote {
  margin: 1em 0;
  padding-left: 1em;
  border-left: 3px solid var(--mkt-line);
}
.mkt-editor-canvas hr {
  border: 0;
  border-top: 1px solid var(--mkt-line);
  margin: 1.5em 0;
}
