:root {
  color-scheme: dark;
  --page: #08192d;
  --surface: rgba(10, 26, 44, 0.86);
  --surface-strong: #071c32;
  --text: #e7eff7;
  --muted: #c4d3e4;
  --border: rgba(203, 213, 225, 0.14);
  --green: #15965d;
  --green-deep: #0f7c4d;
  --navy: #071c32;
  --navy-soft: #0c2844;
  --shadow: 0 22px 70px rgba(2, 8, 23, 0.34);
  font-family: "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(21, 150, 93, 0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(59, 130, 246, 0.16), transparent 24%),
    linear-gradient(180deg, #06182d 0%, #081f36 48%, #09192d 100%);
}

a {
  color: #f8fbff;
}

.article-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.article-related-list a:hover {
  text-decoration: underline;
}

.article-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: 0 14px 30px rgba(21, 150, 93, 0.22);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.article-button.secondary {
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.article-shell {
  display: grid;
  gap: 26px;
  padding-bottom: 54px;
}

.article-hero,
.article-body,
.article-cta,
.article-related {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 36px;
  background:
    radial-gradient(circle at top right, rgba(21, 150, 93, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(10, 30, 51, 0.82), rgba(6, 21, 36, 0.95)),
    rgba(9, 24, 40, 0.82);
}

.article-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #dff7eb;
  background: rgba(21, 150, 93, 0.12);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 26px;
  align-items: start;
  margin-top: 20px;
}

.article-hero--photo {
  padding: 0;
}

.article-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.article-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.article-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(6, 14, 27, 0.97) 10%, rgba(6, 15, 28, 0.88) 38%, rgba(6, 15, 28, 0.5) 66%, rgba(6, 15, 28, 0.22) 100%),
    linear-gradient(0deg, rgba(4, 11, 21, 0.5), transparent 45%);
}

.article-hero-inner {
  position: relative;
  z-index: 2;
  padding: 36px;
}

.article-hero--photo .article-hero-grid {
  margin-top: 20px;
}

.article-hero h1 {
  margin: 14px 0 14px;
  color: #ffffff;
  font-size: clamp(2.6rem, 5.6vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

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

.article-proof {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  color: #e6f2ff;
  border: 1px solid rgba(226, 232, 240, 0.12);
  background:
    linear-gradient(180deg, rgba(10, 30, 51, 0.82), rgba(6, 21, 36, 0.95)),
    rgba(9, 24, 40, 0.82);
}

.article-proof h2,
.article-body h2,
.article-cta h2,
.article-related h2,
.article-faq h3 {
  margin: 0;
  color: #ffffff;
}

.article-proof h2 {
  color: #ffffff;
  font-size: 24px;
}

.article-proof p,
.article-proof li {
  margin: 0;
  color: #c5d7e8;
  line-height: 1.65;
}

.article-proof ul,
.article-checklist {
  margin: 0;
  padding-left: 20px;
}

.article-body {
  display: grid;
  gap: 24px;
  padding: 34px 36px;
}

.article-section {
  display: grid;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.article-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.article-body h2 {
  font-size: 28px;
}

.article-body p,
.article-body li {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.article-updated {
  color: #dff7eb;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-callout {
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: 18px;
  background: rgba(21, 150, 93, 0.12);
}

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

.article-faq-grid {
  display: grid;
  gap: 24px 28px;
}

.article-proof-grid {
  display: grid;
  gap: 22px;
}

.article-screenshot {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(10, 30, 51, 0.82), rgba(6, 21, 36, 0.95)),
    rgba(9, 24, 40, 0.82);
  box-shadow: 0 22px 70px rgba(2, 8, 23, 0.34);
}

.article-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

.article-screenshot-caption {
  padding: 16px 18px 18px;
  color: #c4d3e4;
  font-size: 15px;
  line-height: 1.6;
}

.article-faq {
  padding-left: 16px;
  border-left: 2px solid rgba(21, 150, 93, 0.45);
}

.article-faq h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.article-cta,
.article-related {
  display: grid;
  gap: 14px;
  padding: 28px 30px;
}

.article-support-form {
  display: grid;
  gap: 16px;
}

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

.article-support-form label {
  display: grid;
  gap: 8px;
  color: #e6f2ff;
  font-size: 14px;
  font-weight: 700;
}

.article-support-form input,
.article-support-form select,
.article-support-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(226, 232, 240, 0.18);
  border-radius: 16px;
  color: #eef6ff;
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
}

.article-support-form textarea {
  min-height: 180px;
  resize: vertical;
}

.article-support-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.article-support-form input::placeholder,
.article-support-form textarea::placeholder {
  color: #9fb3c9;
}

.article-support-form input:focus,
.article-support-form select:focus,
.article-support-form textarea:focus {
  outline: 2px solid rgba(21, 150, 93, 0.42);
  outline-offset: 1px;
  border-color: rgba(21, 150, 93, 0.55);
}

.article-form-status {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.article-form-status[data-variant='success'] {
  color: #dff7eb;
  background: rgba(21, 150, 93, 0.18);
  border: 1px solid rgba(21, 150, 93, 0.38);
}

.article-form-status[data-variant='error'] {
  color: #ffe5e5;
  background: rgba(196, 61, 61, 0.18);
  border: 1px solid rgba(196, 61, 61, 0.34);
}

.article-cta-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-related-list li {
  margin: 0;
}

.article-related-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.article-related-list a::after {
  content: '→';
  color: #7fe3b4;
}

.article-related-list a:hover {
  border-color: rgba(21, 150, 93, 0.5);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  text-decoration: none;
}

@media (max-width: 860px) {
  .article-cta-actions {
    display: grid;
    align-items: stretch;
  }

  .article-cta-actions .article-button {
    width: 100%;
    justify-content: center;
  }

  .article-support-grid,
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .article-hero,
  .article-body,
  .article-cta,
  .article-related {
    padding: 24px;
  }

  .article-summary {
    font-size: 16px;
    line-height: 1.6;
  }

  .article-proof {
    padding: 18px;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .article-hero,
  .article-body,
  .article-cta,
  .article-related {
    padding: 18px;
  }

  .article-hero h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .article-faq-grid,
  .article-proof-grid {
    grid-template-columns: 1fr;
  }

  .article-faq,
  .article-screenshot {
    padding: 0;
  }

  .article-support-form input,
  .article-support-form select,
  .article-support-form textarea {
    font-size: 16px;
  }
}
