:root {
  --ink: #1f3440;
  --muted: #687078;
  --paper: #ffffff;
  --linen: #f7f1e7;
  --blush: #ebe1d2;
  --rose: #2f6f8f;
  --terracotta: #6f9fbc;
  --gold: #cbb58b;
  --teal: #496b78;
  --sage: #b9c3c5;
  --deep: #1f3440;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --border: rgba(31, 52, 64, 0.12);
  --shadow: 0 18px 48px rgba(31, 52, 64, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf7ef 58%, #f3ebdd 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.site-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px clamp(18px, 4vw, 56px);
  color: var(--deep);
  background: linear-gradient(90deg, #f4ede1 0%, #ffffff 52%, #efe5d6 100%);
  border-bottom: 1px solid rgba(47, 111, 143, 0.16);
  font-size: 13px;
  text-align: center;
}

.site-notice strong {
  color: var(--rose);
}

.success-notice {
  margin: 18px 0;
  border: 1px solid rgba(47, 111, 143, 0.16);
  border-radius: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #fffdfb;
  background: var(--deep);
  font-size: 13px;
  letter-spacing: 0;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 50px;
  height: 42px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(32, 31, 34, 0.08);
  overflow: hidden;
}

.brand-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--rose);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 16px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.action-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.action-icon svg {
  width: 100%;
  height: 100%;
}

.header-action,
.button.primary {
  color: #fffdfb;
  background: var(--rose);
  box-shadow: 0 12px 28px rgba(47, 111, 143, 0.18);
}

.button.secondary {
  color: var(--ink);
  background: #f4ede1;
  border-color: rgba(47, 111, 143, 0.18);
}

.button.ghost {
  color: var(--rose);
  background: #ffffff;
  border-color: var(--border);
  box-shadow: none;
}

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

.header-action:hover .action-icon,
.button:hover .action-icon,
.copy-only-button:hover .action-icon {
  transform: translateX(2px);
}

.header-action:focus-visible,
.button:focus-visible,
.copy-only-button:focus-visible,
.feature-card:focus-visible,
.card-link:focus-visible {
  outline: 3px solid rgba(47, 111, 143, 0.26);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 6vw, 78px) 70px;
  overflow: hidden;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(48, 42, 47, 0.72) 0%, rgba(48, 42, 47, 0.48) 42%, rgba(48, 42, 47, 0.08) 100%),
    linear-gradient(0deg, rgba(48, 42, 47, 0.48) 0%, rgba(48, 42, 47, 0) 40%);
}

.hero-content {
  position: relative;
  max-width: 860px;
  color: #fffdfb;
}

.eyebrow,
.feature-tag,
.template-type {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d8e8ef;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(34px, 5.2vw, 68px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3.6vw, 44px);
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 253, 251, 0.88);
  font-size: clamp(18px, 2vw, 22px);
}

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

.section {
  padding: 92px clamp(20px, 6vw, 78px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.section-heading > p:not(.eyebrow),
.about-section > p,
.contact-section p,
.subscribe-copy p {
  color: var(--muted);
  font-size: 18px;
}

.starter-section {
  background: #ffffff;
}

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

.starter-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.starter-card:hover {
  border-color: rgba(47, 111, 143, 0.22);
  box-shadow: 0 28px 80px rgba(32, 31, 34, 0.1);
  transform: translateY(-2px);
}

.starter-card:hover .card-link .action-icon {
  transform: translateX(4px);
}

.starter-number {
  width: fit-content;
  margin-bottom: 48px;
  color: var(--terracotta);
  font-weight: 900;
}

.starter-card p {
  color: var(--muted);
}

.page-directory {
  background: #ffffff;
}

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

.directory-card {
  display: flex;
  flex-direction: column;
  min-height: 255px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.directory-card:hover {
  border-color: rgba(47, 111, 143, 0.2);
  box-shadow: 0 28px 80px rgba(32, 31, 34, 0.1);
  transform: translateY(-2px);
}

.directory-card p {
  color: var(--muted);
}

.directory-card:hover .card-link .action-icon {
  transform: translateX(4px);
}

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

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

.feature-card,
.template-card,
.help-grid article {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 24px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

a.feature-card:hover {
  border-color: rgba(47, 111, 143, 0.2);
  box-shadow: 0 28px 80px rgba(32, 31, 34, 0.12);
  transform: translateY(-2px);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--rose);
  font-size: 14px;
  font-weight: 900;
}

a.feature-card:hover .card-link .action-icon {
  transform: translateX(4px);
}

.feature-card p,
.template-card p,
.automation-item p,
.help-grid p,
.site-footer p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 34px;
  background: linear-gradient(180deg, #ffffff, var(--linen));
}

.sticky-panel {
  position: sticky;
  top: 88px;
  align-self: start;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.chip {
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--muted);
  background: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

.chip.active {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

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

.template-card {
  padding: 22px;
  scroll-margin-top: 120px;
}

.template-instructions {
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid rgba(47, 111, 143, 0.18);
  border-radius: 8px;
  background: #f4ede1;
}

.template-instructions h4 {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.2;
}

.template-instructions ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

.template-builder {
  display: grid;
  gap: 16px;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(47, 111, 143, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f1e7 100%);
}

.template-builder h4 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.2;
}

.template-builder p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.template-field {
  display: grid;
  gap: 6px;
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.template-field input,
.template-field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(32, 31, 34, 0.14);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-weight: 500;
  resize: vertical;
}

.template-field input:focus,
.template-field textarea:focus {
  border-color: var(--rose);
  outline: 3px solid rgba(47, 111, 143, 0.16);
}

.template-card pre {
  max-height: 300px;
  overflow: auto;
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid rgba(32, 31, 34, 0.1);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  white-space: pre-wrap;
}

.template-card code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.template-actions {
  display: grid;
  grid-template-columns: minmax(190px, 280px) minmax(190px, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding-top: 4px;
}

.tool-picker {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.tool-picker select {
  min-height: 44px;
  margin-top: 6px;
  background: #ffffff;
}

.tool-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.copy-only-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--rose);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.copy-only-button:hover {
  background: #f4ede1;
  transform: translateY(-1px);
}

.use-template-button:hover .action-icon {
  transform: translate(2px, -2px);
}

.automation-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.automation-item {
  min-height: 280px;
  padding: 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.automation-item span {
  display: block;
  margin-bottom: 50px;
  color: var(--terracotta);
  font-weight: 900;
}

.community-section {
  background: #ffffff;
}

.panel-form,
.subscribe-form,
.feedback-form {
  max-width: 980px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.subscribe-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 34px;
  background: var(--deep);
  color: #fffdfb;
}

.subscribe-copy p,
.subscribe-section .form-note {
  color: rgba(255, 250, 244, 0.72);
}

.subscribe-form {
  color: var(--ink);
}

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

label,
legend {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(72, 54, 50, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(47, 111, 143, 0.18);
  border-color: var(--gold);
}

.audit-box {
  margin: 10px 0 18px;
  padding: 18px;
  border: 1px solid rgba(47, 111, 143, 0.18);
  border-radius: 8px;
}

.audit-box label,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.audit-box input,
.consent input {
  width: auto;
  margin-top: 3px;
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.about-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.help-grid article {
  padding: 24px;
}

.feedback-form {
  max-width: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 78px);
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.site-footer p {
  margin-bottom: 0;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--linen);
}

.success-panel {
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.success-panel .brand {
  margin-bottom: 44px;
}

.success-panel h1 {
  font-size: clamp(34px, 5vw, 60px);
}

.success-panel p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  font-size: 18px;
}

.confirmation-page {
  background: #ffffff;
}

.confirmation-hero {
  min-height: 66vh;
  display: grid;
  align-content: center;
  padding: 110px clamp(20px, 6vw, 78px) 72px;
  color: #fffdfb;
  background:
    linear-gradient(90deg, rgba(48, 42, 47, 0.84), rgba(48, 42, 47, 0.58)),
    url("assets/gtm-launch-workspace-hero-v2.png") center / cover;
}

.confirmation-hero .eyebrow {
  color: #d8e8ef;
}

.subscribe-confirmation-hero {
  background:
    linear-gradient(90deg, rgba(48, 42, 47, 0.84), rgba(48, 42, 47, 0.6)),
    url("assets/gtm-launch-workspace-hero-v2.png") center / cover;
}

.confirmation-hero h1 {
  max-width: 760px;
}

.confirmation-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 250, 244, 0.86);
  font-size: 20px;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.confirmation-downloads {
  background: #ffffff;
}

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

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

.download-card,
.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.download-card p,
.pricing-card p {
  color: var(--muted);
}

.download-card .button,
.pricing-card .button {
  margin-top: auto;
}

.purchase-section {
  background: #ffffff;
}

.pricing-card strong {
  display: block;
  margin-top: auto;
  color: var(--ink);
  font-size: 22px;
}

.pricing-card.featured {
  border-color: rgba(47, 111, 143, 0.24);
  background: #f4ede1;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .feature-grid,
  .feature-grid.offer-grid,
  .automation-board,
  .help-grid,
  .starter-grid,
  .directory-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .subscribe-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .sticky-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .header-action {
    width: 100%;
  }

  .hero {
    min-height: 82vh;
    padding-top: 80px;
  }

  .hero-scrim {
    background: linear-gradient(0deg, rgba(48, 42, 47, 0.72) 0%, rgba(48, 42, 47, 0.44) 100%);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding-block: 64px;
  }

  .feature-grid,
  .feature-grid.offer-grid,
  .automation-board,
  .help-grid,
  .starter-grid,
  .directory-grid,
  .download-grid,
  .pricing-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .automation-item {
    min-height: auto;
  }

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

  .automation-item span {
    margin-bottom: 24px;
  }

  .site-notice {
    display: block;
    text-align: left;
  }

  .site-footer,
  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* GTM Craft Studio layer: PM Craft Studio remains the primary visual system. */
.brand small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav a.active {
  color: var(--rose);
}

.header-action.active {
  color: #fffdfb;
}

.section-heading h1,
.sticky-panel h1 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3.6vw, 44px);
}


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

.metric {
  margin-top: auto;
  color: var(--rose);
  font-size: 34px;
  font-weight: 900;
}

.process-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fffdfb;
  background: var(--deep);
  font-weight: 900;
}

.price-card,
.proof-card {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.price-card p,
.proof-card p {
  color: var(--muted);
}

.price-card .button {
  margin-top: auto;
}

.price-card.featured {
  border-color: rgba(47, 111, 143, 0.24);
  background: #f4ede1;
}

.price {
  margin: 4px 0 12px;
  color: var(--ink);
  font-size: 42px;
  font-weight: 900;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.clean-list li {
  color: var(--muted);
}

.clean-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--rose);
  font-weight: 900;
}

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

.cta-band {
  color: #fffdfb;
  background: linear-gradient(135deg, #2f6f8f 0%, #6f9fbc 100%);
}

.cta-band .eyebrow,
.cta-band .section-heading > p:not(.eyebrow) {
  color: rgba(255, 253, 251, 0.88);
}

.capture-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  max-width: 620px;
  margin-top: 26px;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
}

.capture-form input {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
  background: var(--linen);
  color: var(--ink);
  outline: none;
  font-weight: 700;
}

.capture-form button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  color: #fffdfb;
  background: var(--deep);
  cursor: pointer;
  font-weight: 900;
}

.form-note {
  grid-column: 1 / -1;
  padding: 0 6px 4px;
  color: rgba(32, 31, 34, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
}

th {
  color: #fffdfb;
  background: var(--deep);
  font-weight: 900;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.preview-actions {
  margin-top: 24px;
}

.site-notice .notice-link {
  color: var(--rose);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .feature-grid.four,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .feature-grid.four,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .brand small {
    display: none;
  }

  .capture-form {
    grid-template-columns: 1fr;
  }
}
