/* RAAS Impact Theme — CSS Entry Point
   Load order: normalize → reset/base → typography/tokens → buttons →
               forms → tables → header → containers-dnd → helper →
               blog → theme-overrides
   Note: _macros.css must be imported per-file where used, not here.
*/

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}
/* ── BASE RESET & BODY ── */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  margin: 0;
}

/* Subtle noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 1.4rem;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
}

/* Strip HubSpot wrapper margins */
.body-wrapper,
.body-container-wrapper {
  margin: 0;
  padding: 0;
  max-width: none;
}
/* ── DESIGN TOKENS ── */

:root {
  --bg:            #080808;
  --surface:       #111111;
  --surface-2:     #181818;
  --accent:        #C8F135;
  --accent-dim:    #9BBF1A;
  --accent-2:      #22D3EE;   /* electric cyan — link colour, AMP, secondary highlights */
  --accent-2-dim:  #0891B2;   /* dimmed cyan — passes WCAG AA on white (AMP light bg) */
  --text:          #F0F0F0;
  --muted:         #909090;
  --border:        #1E1E1E;
  --border-bright: #666666;
  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;
}

/* ── TYPOGRAPHY UTILITIES ── */

.display {
  font-family: var(--font-display);
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-accent    { color: var(--accent)   !important; }
.text-accent-2  { color: var(--accent-2) !important; }
.text-muted-ri  { color: var(--muted)    !important; }
/* ── RAAS IMPACT BUTTONS ── */

.btn-raas {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border: 2px solid var(--accent);
  transition: all 0.22s;
  border-radius: 0;
  cursor: pointer;
}

.btn-raas:hover {
  background: transparent;
  color: var(--accent);
}

.btn-raas:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-ghost-raas {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-ghost-raas:hover {
  color: var(--text);
}

.btn-ghost-raas:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  color: var(--text);
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
/* ── RAAS IMPACT NAVIGATION ── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Desktop menu alignment modifiers (mobile unaffected — nav-links hidden ≤991px) ── */

/* LEFT: links start right after the logo; search/CTA pushed far right */
.site-nav--left { justify-content: flex-start; }
.site-nav--left .nav-links {
  margin-left: 32px;  /* gap between logo and first link */
  margin-right: auto; /* everything after (search, CTA) floats to the right */
}

/* CENTER: links fill the remaining space and centre within it */
.site-nav--center { justify-content: space-between; }
.site-nav--center .nav-links {
  flex: 1;
  justify-content: center;
  margin: 0 24px;
}

/* RIGHT: logo anchored left; links + search grouped at the right */
.site-nav--right { justify-content: flex-start; }
.site-nav--right .nav-links { margin-left: auto; }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo span { color: var(--accent); }
.nav-logo img { display: block; height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li { position: relative; }

.nav-links a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active { color: var(--text); }

.nav-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

/* Keyboard-accessible dropdown — also opens on focus-within */
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px 0 8px;
  z-index: 200;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--surface-2);
  color: var(--text);
}

/* CTA button in nav */
.nav-cta {
  background: var(--accent) !important;
  color: #000 !important;
  padding: 9px 20px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.85 !important; }

.nav-cta:focus-visible {
  outline: 2px solid #000 !important;
  outline-offset: 3px;
}

/* Language switcher */
.nav-lang { display: flex; align-items: center; }

.nav-lang .lang_switcher,
.nav-lang .hs-lang-switcher-list { display: flex; align-items: center; gap: 6px; }

.nav-lang .hs-lang-switcher-button,
.nav-lang .lang_switcher a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-lang .hs-lang-switcher-button:hover,
.nav-lang .lang_switcher a:hover { color: var(--text); }

.nav-mobile-lang {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.nav-mobile-lang .lang_switcher,
.nav-mobile-lang .hs-lang-switcher-list { display: flex; gap: 12px; flex-wrap: wrap; }

.nav-mobile-lang .hs-lang-switcher-button,
.nav-mobile-lang .lang_switcher a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  z-index: 999;
  padding: 40px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--text);
  font-size: 1.3rem;
  font-family: var(--font-display);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.nav-mobile-sub {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}

.nav-mobile-sub a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

@media (max-width: 991px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 767px) {
  .site-nav { padding: 0 20px; }
}

/* ── NAV SEARCH TRIGGER (desktop icon) ── */

.nav-search-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 6px;
  margin-left: 8px;
  flex-shrink: 0;
  transition: color 0.2s;
}

.nav-search-trigger:hover,
.nav-search-trigger:focus-visible { color: var(--accent); }

.nav-search-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Mobile variant — full-width text+icon row inside .nav-mobile */
.nav-search-trigger--mobile {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-search-trigger--mobile:hover { color: var(--accent); }

/* Hide desktop trigger on mobile (hamburger nav takes over) */
@media (max-width: 991px) {
  .nav-search-trigger:not(.nav-search-trigger--mobile) { display: none; }
}

/* ── SEARCH OVERLAY ── */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1010;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.25s ease;
}

/* Backdrop */
.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Panel — drops from the nav */
.search-overlay__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin-top: 64px; /* height of fixed nav */
  padding: 52px 48px 44px;
  background: var(--surface);
  border-bottom: 1px solid var(--border-bright);
  transform: translateY(-12px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.is-open .search-overlay__panel {
  transform: translateY(0);
}

/* Close button */
.search-overlay__close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  line-height: 0;
  transition: color 0.2s;
}

.search-overlay__close:hover,
.search-overlay__close:focus-visible { color: var(--accent); }

.search-overlay__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Label eyebrow */
.search-overlay__label {
  display: block;
  color: var(--muted);
  margin-bottom: 24px;
}

/* Input + submit row */
.search-overlay__input-row {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--border-bright);
  transition: border-color 0.2s;
}

.search-overlay__input-row:focus-within {
  border-color: var(--accent);
}

.search-overlay__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  padding: 8px 0;
  caret-color: var(--accent);
  /* Remove browser default search input decorations */
  -webkit-appearance: none;
  appearance: none;
}

.search-overlay__input::placeholder { color: var(--border-bright); }

/* Clear [×] button some browsers inject */
.search-overlay__input::-webkit-search-cancel-button { display: none; }

/* Submit arrow */
.search-overlay__submit {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 0 0 0 16px;
  flex-shrink: 0;
  line-height: 0;
  transition: color 0.2s, transform 0.2s;
}

.search-overlay__submit:hover,
.search-overlay__submit:focus-visible {
  color: var(--accent);
  transform: translateX(4px);
}

.search-overlay__submit:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Hint line */
.search-overlay__hint {
  color: var(--muted);
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 0.5rem; /* inherits .mono sizing from the class */
}

.search-overlay__hint kbd {
  font-family: var(--font-mono);
  font-size: inherit;
  border: 1px solid var(--border-bright);
  padding: 1px 5px;
  color: var(--text);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .search-overlay,
  .search-overlay__panel { transition: none; }
}

/* Responsive */
@media (max-width: 991px) {
  .search-overlay__panel { padding: 44px 24px 36px; }
}

@media (max-width: 767px) {
  .search-overlay__panel { padding: 40px 20px 32px; }
  .search-overlay__input { font-size: clamp(24px, 7vw, 36px); }
  .search-overlay__hint { display: none; }
}
/* ── DEFAULT MODULE OVERRIDES ──
   Keep HubSpot menu wrappers functional, add dark-theme form overrides.
*/

/* Menu wrapper resets (used by @hubspot/menu if referenced elsewhere) */
.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* HubSpot form dark-theme overrides */
.hs-form input,
.hs-form select,
.hs-form textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 0;
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
}

.hs-form input::placeholder,
.hs-form textarea::placeholder {
  color: var(--muted);
}

.hs-form input:focus,
.hs-form select:focus,
.hs-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}

.hs-form label {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 6px;
  display: block;
}

.hs-form .hs-button,
.hs-form input[type=submit] {
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--accent);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.22s;
  font-family: var(--font-body);
}

.hs-form .hs-button:hover,
.hs-form input[type=submit]:hover {
  background: transparent;
  color: var(--accent);
}

.hs-form .hs-button:focus-visible,
.hs-form input[type=submit]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hs-error-msgs {
  color: #ff6b6b;
  font-size: 0.78rem;
  margin-top: 4px;
  list-style: none;
  padding: 0;
}

/* CTA, logo, and rich text images */
.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* ── RICH TEXT MODULE — font overrides ──
   HubSpot's WYSIWYG editor injects inline style="font-family:…" on
   every element it saves, which overrides all stylesheet rules.
   !important is the only mechanism that beats inline styles.
*/
.hs-richtext,
.hs-richtext p,
.hs-richtext li,
.hs-richtext td,
.hs-richtext th,
.hs-richtext blockquote,
.hs-richtext figcaption {
  font-family: var(--font-body) !important;
}

.hs-richtext h1,
.hs-richtext h2,
.hs-richtext h3,
.hs-richtext h4,
.hs-richtext h5,
.hs-richtext h6 {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  color: var(--text) !important;
}

.hs-richtext a {
  color: var(--accent) !important;
}

.hs-richtext strong,
.hs-richtext b {
  font-weight: 600 !important;
}

.hs-richtext code,
.hs-richtext pre {
  font-family: var(--font-mono) !important;
  font-size: 0.88em !important;
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

/* Zero out HubSpot's platform-injected default padding on DnD wrappers.
   All vertical spacing is owned by .section-pad / .section-pad-sm on the
   module's own root element — letting both stack would create ~260px gaps. */
.dnd-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}
/* For content that needs to be visually hidden but stay visible for screenreaders */

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

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}