@charset "UTF-8";
/* ============================================================
   PaySpot ME — Contact page
   Used ONLY by contact-cg.html / contact-en.html.

   Self-contained + namespaced under .ct so it never collides with
   the legacy css/style.css. The shared header/footer keep
   css/site-chrome.css + js/site.js; the contact FORM keeps its legacy
   hook classes (.quote-form-inputs-contact / .contact-name / -email /
   -subject / .contact-message-box / .form-submit-contact / .form-messege)
   so js/main.js still submits it unchanged.

   Design: the PaySpot "ink vault" language — near-black surfaces,
   brand red, the diamond mark — shared with css/payments.css and
   css/transfer.css so every page reads as one family. Signature here is
   the form itself presented as a live "message slip": a draft reference
   code (PS-XXXX XXXX) ticks into place and an "online" status pulses the
   first time the slip scrolls into view. No content is invented — every
   line, link and number comes from the source page.
   Type roles: Space Grotesk (display), Poppins (body), Space Mono (codes).
   ============================================================ */

.ct {
  /* ---- tokens (mirror the brand system) ---- */
  --red: #e10000;
  --red-600: #c20000;
  --red-700: #a30000;
  --red-300: #ff6a62;
  --red-soft: #ffecec;

  --ink: #0e0f14;
  --ink-1: #14151a;
  --ink-2: #1a1c24;
  --panel: #15161d;
  --text: #1f2330;
  --muted: #626875;
  --muted-2: #8a909c;
  --line: #e9ebf0;
  --line-2: #f0f2f6;

  --paper: #ffffff;
  --soft: #eef0f4;

  --radius-xl: 30px;
  --radius: 20px;
  --radius-sm: 12px;
  --pill: 999px;

  --shadow-md: 0 16px 40px rgba(16, 18, 27, 0.1);
  --shadow-lg: 0 34px 80px rgba(16, 18, 27, 0.18);
  --shadow-red: 0 18px 40px rgba(225, 0, 0, 0.3);

  --grad-red: linear-gradient(120deg, #ff3b30 0%, #e10000 55%, #b00000 100%);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --disp: "Space Grotesk", "Poppins", system-ui, sans-serif;
  --body: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono: "Space Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;

  --mark-white: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath fill='%23ffffff' fill-opacity='.06' d='M94 16L16 94L76 94L94 76ZM106 16L184 94L124 94L106 76ZM184 106L136 154L106 124L124 106ZM16 106L140 230L170 200L76 106Z'/%3E%3C/svg%3E");
  --mark-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath fill='%23e6eaf1' d='M94 16L16 94L76 94L94 76ZM106 16L184 94L124 94L106 76ZM184 106L136 154L106 124L124 106ZM16 106L140 230L170 200L76 106Z'/%3E%3C/svg%3E");

  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}

.ct *,
.ct *::before,
.ct *::after {
  box-sizing: border-box;
}
.ct h1,
.ct h2,
.ct h3,
.ct h4,
.ct p {
  margin: 0;
}
/* The reset above (.ct p = spec 0,1,1) out-specifies single-class paragraph
   margins, so re-assert the few we rely on with the .ct prefix. */
.ct .ct-lead {
  margin-top: 24px;
}
.ct .ct-sub {
  margin-top: 14px;
}
.ct a {
  color: inherit;
  text-decoration: none;
}
.ct ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ct img {
  display: block;
  max-width: 100%;
}
.ct :focus-visible {
  outline: 3px solid rgba(225, 0, 0, 0.5);
  outline-offset: 3px;
  border-radius: 6px;
}

.ct-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* shared eyebrow — uppercase red micro-label with a leading bar */
.ct-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.ct-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}
.ct-eyebrow--light {
  color: var(--red-300);
}
.ct-eyebrow--light::before {
  background: var(--red-300);
}
.ct-eyebrow--center {
  justify-content: center;
}

/* section heading block */
.ct-head {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}
.ct-head .ct-eyebrow {
  margin-bottom: 16px;
}
.ct-title {
  font-family: var(--disp);
  font-size: clamp(27px, 3.6vw, 40px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ct-title .hl {
  color: var(--red);
}
.ct-title--light {
  color: #fff;
}
.ct-sub {
  margin-top: 14px;
  font-size: 16.5px;
  color: var(--muted);
}
.ct-sub--light {
  color: rgba(255, 255, 255, 0.66);
}

/* buttons */
.ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
/* scoped under .ct so the color wins over `.ct a { color: inherit }` */
.ct .ct-btn-primary {
  background: var(--grad-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.ct .ct-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(225, 0, 0, 0.4);
}
.ct .ct-btn-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.ct .ct-btn-light:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-3px);
}

/* ============================================================
   HERO  —  copy + live "message slip" form on an ink stage
   ============================================================ */
.ct-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
  background-image: radial-gradient(
      1000px 640px at 84% 14%,
      rgba(225, 0, 0, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, #15161d 0%, #0e0f14 60%, #101117 100%);
  color: #fff;
  /* clears the fixed header (top bar ~42 + nav ~84) and breathes */
  padding: clamp(132px, 15vh, 176px) 0 clamp(64px, 8vh, 104px);
}
.ct-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -140px;
  width: 520px;
  height: 620px;
  background: var(--mark-white) center / contain no-repeat;
  pointer-events: none;
}
.ct-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(760px, 86%);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(225, 0, 0, 0.75),
    transparent
  );
}
.ct-hero .ct-wrap {
  position: relative;
  z-index: 2;
}
.ct-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 54px;
  align-items: center;
}
.ct-hero-copy .ct-eyebrow {
  margin-bottom: 22px;
}
.ct-hero h1 {
  font-family: var(--disp);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
/* the key phrase in a solid red stamp — a marker swipe */
.ct-hero h1 .hl {
  display: inline-block;
  white-space: nowrap;
  background: var(--grad-red);
  color: #fff;
  padding: 0.02em 0.26em 0.1em;
  border-radius: 0.16em;
  box-shadow: 0 14px 36px rgba(225, 0, 0, 0.36);
}
.ct-lead {
  margin-top: 24px;
  max-width: 560px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.74);
  border-left: 3px solid var(--red);
  padding-left: 18px;
}
.ct-lead b {
  color: #fff;
  font-weight: 600;
}
.ct-lead + .ct-lead {
  margin-top: 16px;
}

/* three direct-channel tiles as a hairline-divided row */
.ct-channels {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.ct .ct-channel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s var(--ease);
}
.ct .ct-channel:first-child {
  border-left: 0;
}
.ct a.ct-channel:hover {
  background: rgba(255, 255, 255, 0.05);
}
.ct-channel-ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--red-300);
  background: rgba(225, 0, 0, 0.12);
  border: 1px solid rgba(255, 106, 98, 0.26);
  transform: rotate(45deg);
}
.ct-channel-ico svg {
  width: 17px;
  height: 17px;
  transform: rotate(-45deg);
}
.ct a.ct-channel:hover .ct-channel-ico {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.ct-channel-k {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.ct-channel-v {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  word-break: break-word;
}

/* ----- the live "message slip" (the actual contact form) ----- */
.ct-form-card {
  position: relative;
  margin-left: auto;
  width: 100%;
  max-width: 520px;
  border-radius: 26px;
  padding: 26px clamp(22px, 2.4vw, 32px) 28px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.02) 62%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.ct-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 106, 98, 0.6),
    transparent
  );
}
.ct-form-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
}
.ct-form-brand {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.66);
}
.ct-form-brand b {
  color: #fff;
}

/* the form fields on dark glass */
.ct-form-card .firstRowForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.ct-field-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}
.ct-field-label .req {
  color: var(--red-300);
}
.ct .ct-input,
.ct .ct-textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 13px 15px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
}
.ct .ct-input::placeholder,
.ct .ct-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.ct .ct-input:focus,
.ct .ct-textarea:focus {
  outline: none;
  border-color: var(--red-300);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(225, 0, 0, 0.18);
}
.ct .ct-textarea {
  min-height: 128px;
  resize: vertical;
  line-height: 1.55;
}

/* submit — full-width red pill (scoped to beat `.ct a/button` resets) */
.ct .form-submit-contact {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  font-family: var(--body);
  font-size: 15.5px;
  font-weight: 600;
  color: #fff;
  background: var(--grad-red);
  border: 0;
  border-radius: var(--pill);
  padding: 15px 26px;
  cursor: pointer;
  box-shadow: var(--shadow-red);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.ct .form-submit-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(225, 0, 0, 0.4);
}
.ct .form-submit-contact svg {
  width: 17px;
  height: 17px;
}
.ct .form-messege {
  margin-top: 12px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: #4ef0a8;
  min-height: 1.2em;
}
.ct-form-note {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.42);
}
.ct-form-note svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   DIRECT-CONTACT CARDS  — ink-vault tiles on a light slate canvas
   ============================================================ */
.ct-info {
  position: relative;
  background: var(--soft);
  background-image: var(--mark-light), var(--mark-light);
  background-repeat: no-repeat;
  background-position: right -150px top -90px, left -170px bottom -120px;
  background-size: 380px auto, 340px auto;
  padding: clamp(70px, 9vw, 110px) 0;
}
.ct-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.ct-info-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 26px;
  border-radius: var(--radius);
  background-color: var(--ink-1);
  background-image: radial-gradient(
    220px 160px at 120% -20%,
    rgba(225, 0, 0, 0.22),
    transparent 70%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  color: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.3s var(--ease);
}
.ct-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 98, 0.4);
  box-shadow: 0 28px 56px rgba(8, 9, 14, 0.4);
}
.ct-info-ico {
  width: 52px;
  height: 52px;
  margin: 2px 0 20px 6px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--red-300);
  background: rgba(225, 0, 0, 0.14);
  border: 1px solid rgba(255, 106, 98, 0.3);
  transform: rotate(45deg);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.ct-info-ico svg {
  width: 23px;
  height: 23px;
  transform: rotate(-45deg);
}
.ct-info-card:hover .ct-info-ico {
  background-color: var(--red);
  border-color: var(--red);
  color: #fff;
}
.ct-info-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.ct-info-card p,
.ct-info-card a {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}
.ct .ct-info-card a:hover {
  color: #fff;
}
.ct-info-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ct-info-list a,
.ct-info-list p {
  margin-top: 0;
  font-family: var(--mono);
  font-size: 13.5px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.78);
}
.ct-info-meta {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.ct-info-meta div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}
.ct-info-meta span {
  color: rgba(255, 255, 255, 0.5);
}
.ct-info-meta b {
  font-family: var(--mono);
  font-weight: 700;
  color: #fff;
}

/* ============================================================
   COMPLAINTS  — paper prose card + dark complaint-channel panel
   on a light canvas
   ============================================================ */
.ct-complaints {
  position: relative;
  background: linear-gradient(180deg, #f3eff1, #eef0f4 60%);
  background-image: var(--mark-light);
  background-repeat: no-repeat;
  background-position: left -160px top -110px;
  background-size: 360px auto;
  padding: clamp(66px, 8vw, 100px) 0;
}
.ct-complaints-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 24px;
  align-items: stretch;
}
/* white paper card — the regulatory prose (sits on slate, so it reads
   as a sheet of paper, never white-on-white) */
.ct-complaints-paper {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 3.4vw, 46px);
  border-radius: var(--radius-xl);
  background: var(--paper);
  background-image: var(--mark-light);
  background-repeat: no-repeat;
  background-position: right -70px top -80px;
  background-size: 230px auto;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.ct-complaints-paper .ct-eyebrow {
  margin-bottom: 16px;
}
.ct-complaints-paper h2 {
  font-family: var(--disp);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ct-prose {
  margin-top: 18px;
}
.ct .ct-prose p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.ct .ct-prose > p + p {
  margin-top: 14px;
}
.ct-prose b {
  color: var(--text);
  font-weight: 600;
}
.ct .ct-prose a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(225, 0, 0, 0.35);
  transition: text-decoration-color 0.25s var(--ease);
}
.ct .ct-prose a:hover {
  text-decoration-color: var(--red);
}
.ct-note {
  margin-top: 22px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--red-soft);
  border: 1px solid #ffd6d2;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--red-700);
}
.ct-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--red);
}

/* dark complaint-channels panel */
.ct-complaints-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3vw, 38px) clamp(26px, 2.8vw, 34px);
  border-radius: var(--radius-xl);
  background-color: var(--ink-1);
  background-image: radial-gradient(
      600px 320px at 110% -10%,
      rgba(225, 0, 0, 0.22),
      transparent 60%
    ),
    var(--mark-white);
  background-repeat: no-repeat;
  background-position: 0 0, right -100px bottom -120px;
  background-size: auto, 320px auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.ct-complaints-panel .ct-eyebrow {
  margin-bottom: 14px;
}
.ct-complaints-panel h3 {
  font-family: var(--disp);
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.ct-pchan {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ct .ct-pchan-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.ct a.ct-pchan-row:hover {
  border-color: rgba(255, 106, 98, 0.45);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(3px);
}
.ct-pchan-ico {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--red-300);
  background: rgba(225, 0, 0, 0.14);
  border: 1px solid rgba(255, 106, 98, 0.3);
  transform: rotate(45deg);
}
.ct-pchan-ico svg {
  width: 16px;
  height: 16px;
  transform: rotate(-45deg);
}
.ct-pchan-txt {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ct-pchan-k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.ct-pchan-v {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  word-break: break-word;
}

/* document download rows */
.ct-docs {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ct-docs-k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}
.ct .ct-doc {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.ct .ct-doc:hover {
  border-color: rgba(255, 106, 98, 0.45);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
.ct-doc-ico {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--red-300);
  background: rgba(225, 0, 0, 0.14);
  border: 1px solid rgba(255, 106, 98, 0.26);
}
.ct-doc-ico svg {
  width: 15px;
  height: 15px;
}
.ct-doc .ct-doc-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.4);
}
.ct-doc:hover .ct-doc-arrow {
  color: var(--red-300);
}
.ct-doc-arrow svg {
  width: 15px;
  height: 15px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.ct-band {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 160% at 0% 0%, #2a0d12, #0e0f14 60%);
}
.ct-band::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -70px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(225, 0, 0, 0.5), transparent 65%);
  filter: blur(54px);
}
.ct-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--mark-white) left -120px center / 320px auto no-repeat;
  pointer-events: none;
}
.ct-band .ct-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: clamp(56px, 7vw, 76px);
  padding-bottom: clamp(56px, 7vw, 76px);
}
.ct-band-copy {
  max-width: 560px;
}
.ct-band-copy .ct-eyebrow {
  margin-bottom: 14px;
}
.ct-band h2 {
  font-family: var(--disp);
  color: #fff;
  font-size: clamp(25px, 3.2vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.ct-band p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}
.ct-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   REVEAL  (driven by site.js [data-reveal] -> .in)
   ============================================================ */
.ct [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}
.ct [data-reveal].in {
  opacity: 1;
  transform: none;
}
.ct-head[data-reveal],
.ct-hero-copy[data-reveal],
.ct-form-card[data-reveal],
.ct-complaints-paper[data-reveal],
.ct-complaints-panel[data-reveal],
.ct-band-copy[data-reveal],
.ct-band-actions[data-reveal] {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
/* staggered grid entrances — restated so hover transform/shadow survive */
.ct-info-grid > [data-reveal] {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.3s var(--ease), opacity 0.6s var(--ease);
}
.ct-info-grid > [data-reveal]:nth-child(2) {
  transition-delay: 70ms;
}
.ct-info-grid > [data-reveal]:nth-child(3) {
  transition-delay: 140ms;
}
.ct-info-grid > [data-reveal]:nth-child(4) {
  transition-delay: 210ms;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .ct-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ct-form-card {
    max-width: 560px;
    margin: 0 auto;
  }
  .ct-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ct-complaints-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ct-wrap {
    padding: 0 18px;
  }
  .ct-channels {
    grid-template-columns: 1fr;
  }
  .ct .ct-channel {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .ct .ct-channel:first-child {
    border-top: 0;
  }
  .ct-info-grid {
    grid-template-columns: 1fr;
  }
  .ct-form-card .firstRowForm {
    grid-template-columns: 1fr;
  }
  .ct-band .ct-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ct * {
    transition-duration: 0.001ms !important;
    animation: none !important;
  }
  .ct [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
