@charset "UTF-8";
/* ============================================================
   PaySpot ME — POS terminali (card acceptance) page
   Used ONLY by pos-terminal.html / pos-terminal-en.html.

   Self-contained + namespaced under .pt so it never collides with
   the legacy css/style.css. The shared header/footer keep
   css/site-chrome.css + js/site.js; this file styles the page body
   that lives inside the fixed-scroll .root.

   Design: the PaySpot "ink vault" language — near-black surfaces,
   brand red, the diamond mark — shared with css/transfer.css,
   css/payments.css, css/credit.css and css/cash.css so every service
   page reads as one family. Sibling of .mt / .pp / .cr / .up.

   Signature here is a faithful, live render of the real device — the
   Castles Saturn 1000 Android POS terminal. Its screen runs a single
   contactless sale: the card is tapped, the terminal reads → processes
   → APPROVED, an approval code locks in, then the takings settle to the
   merchant's chosen bank. The artifact IS the value proposition (card
   acceptance + secure transfer to a bank of your choice). No fees or
   specs are invented — the source page quotes none; all hero/body copy
   is preserved.
   Type roles: Space Grotesk (display/figures), Poppins (body, matches
   the site), Space Mono (codes + amounts + status).
   ============================================================ */

.pt {
  /* ---- 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;

  --green: #18e08a;
  --green-700: #0c8f57;

  --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;
}

.pt *,
.pt *::before,
.pt *::after {
  box-sizing: border-box;
}
.pt h1,
.pt h2,
.pt h3,
.pt h4,
.pt p {
  margin: 0;
}
/* The reset above (.pt p = spec 0,1,1) out-specifies single-class paragraph
   margins, so they silently collapse to 0. Re-assert with the .pt prefix. */
.pt .pt-lead {
  margin-top: 22px;
}
.pt .pt-sub {
  margin-top: 14px;
}
/* .pt-device-note is a <p>, so the reset above (spec 0,1,1) would zero its
   margin; re-assert with the .pt prefix so the bobbing terminal keeps a clear
   gap to the caption below it */
.pt .pt-device-note {
  margin-top: 34px;
}
.pt a {
  color: inherit;
  text-decoration: none;
}
.pt ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pt img {
  display: block;
  max-width: 100%;
}
.pt :focus-visible {
  outline: 3px solid rgba(225, 0, 0, 0.5);
  outline-offset: 3px;
  border-radius: 6px;
}

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

/* shared eyebrow — uppercase red micro-label with a leading bar */
.pt-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);
}
.pt-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}
.pt-eyebrow--light {
  color: var(--red-300);
}
.pt-eyebrow--light::before {
  background: var(--red-300);
}
.pt-eyebrow--center {
  justify-content: center;
}

/* section heading block */
.pt-head {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}
.pt-head .pt-eyebrow {
  margin-bottom: 16px;
}
.pt-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);
}
.pt-title .hl {
  color: var(--red);
}
.pt-title--light {
  color: #fff;
}
.pt-sub {
  margin-top: 14px;
  font-size: 16.5px;
  color: var(--muted);
}
.pt-sub--light {
  color: rgba(255, 255, 255, 0.66);
}

/* buttons */
.pt-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 .pt so the color wins over `.pt a { color: inherit }` */
.pt .pt-btn-primary {
  background: var(--grad-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.pt .pt-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(225, 0, 0, 0.4);
}
.pt .pt-btn-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.pt .pt-btn-light:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-3px);
}
.pt .pt-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.pt .pt-btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
}

/* ============================================================
   HERO  —  copy + live Castles Saturn 1000 terminal on an ink stage
   ============================================================ */
.pt-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; the top
     floor is generous so the floating terminal never bobs into the navbar */
  padding: clamp(156px, 16vh, 188px) 0 clamp(72px, 9vh, 112px);
}
/* diamond watermark on the stage */
.pt-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -140px;
  width: 520px;
  height: 620px;
  background: var(--mark-white) center / contain no-repeat;
  pointer-events: none;
}
/* closing red hairline beam */
.pt-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
  );
}
.pt-hero .pt-wrap {
  position: relative;
  z-index: 2;
}
.pt-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}
.pt-hero-copy .pt-eyebrow {
  margin-bottom: 20px;
}
.pt-hero h1 {
  font-family: var(--disp);
  font-size: clamp(34px, 5vw, 58px);
  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, not the
   gradient-text default */
.pt-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);
}
/* the device name, set as a mono kicker under the title */
.pt-tag {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
}
.pt-tag::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--red-300);
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.pt-lead {
  margin-top: 22px;
  max-width: 568px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.74);
  border-left: 3px solid var(--red);
  padding-left: 18px;
}
.pt-lead b {
  color: #fff;
  font-weight: 600;
}
.pt-lead a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 106, 98, 0.7);
}

.pt-cta {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* three quick proofs under the CTA — hairline-divided row */
.pt-trust {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.pt-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.pt-trust span svg {
  width: 17px;
  height: 17px;
  color: var(--red-300);
  flex: 0 0 auto;
}

/* ====================================================================
   THE DEVICE  —  Castles Saturn 1000, rendered + live transaction
   ==================================================================== */
.pt-device {
  justify-self: center;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pt-term {
  position: relative;
  width: 296px;
  max-width: 100%;
  border-radius: 30px 30px 26px 26px;
  padding: 12px 12px 16px;
  background: linear-gradient(165deg, #fbfbfd 0%, #e4e6ec 46%, #cfd2da 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.7) inset,
    0 -2px 0 rgba(0, 0, 0, 0.06) inset, 0 40px 90px rgba(0, 0, 0, 0.5),
    0 10px 30px rgba(0, 0, 0, 0.4);
  animation: pt-float 7s var(--ease) infinite;
}
/* subtle side sheen on the plastic */
.pt-term::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.5) 0%,
    transparent 22%,
    transparent 78%,
    rgba(0, 0, 0, 0.07) 100%
  );
  pointer-events: none;
}

/* printer lid + contactless landing zone */
.pt-term-top {
  position: relative;
  height: 96px;
  border-radius: 20px 20px 12px 12px;
  background: linear-gradient(170deg, #eef0f4 0%, #dcdfe6 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  display: grid;
  place-items: center;
  overflow: hidden;
}
/* the printer slot hairline */
.pt-term-top::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 64%;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #c2c5cd, #aeb2bb 50%, #c2c5cd);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}
.pt-nfc {
  color: #9aa0ab;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
.pt-nfc svg {
  width: 50px;
  height: 50px;
}
/* the contactless zone "wakes" red the moment a card is presented */
.pt-screen.is-reading ~ * .pt-nfc,
.pt-term.is-reading .pt-nfc {
  color: var(--red);
}

/* CASTLES brand strip */
.pt-term-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 26px;
  margin: 9px 0;
  font-family: var(--disp);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #777c86;
}
.pt-term-brand::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 2px;
  background: conic-gradient(from 45deg, #b9bcc4, #8c9099, #b9bcc4);
  transform: rotate(45deg);
}

/* ---- the screen ---- */
.pt-screen {
  position: relative;
  border-radius: 20px;
  padding: 0;
  background: #0b0c10;
  border: 1px solid #05060a;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.3), 0 10px 24px rgba(0, 0, 0, 0.4) inset;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-variant-numeric: tabular-nums;
}
/* the live pixels */
.pt-glass {
  position: relative;
  margin: 8px;
  border-radius: 13px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 392px;
}

/* Android status bar */
.pt-sbar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px 4px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: #0b0c10;
}
.pt-sicons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pt-sicons svg {
  width: 14px;
  height: 12px;
  color: #0b0c10;
}

/* the scene stage holds both the payment view and the approved view */
.pt-stage {
  position: relative;
  flex: 1 1 auto;
}

/* ----- payment view ----- */
.pt-pay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 6px 16px 16px;
  opacity: 1;
  transition: opacity 0.45s var(--ease);
}
.pt-screen.is-approved .pt-pay {
  opacity: 0;
}
.pt-merchant {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pt-logo {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--red);
}
.pt-logo svg {
  width: 22px;
  height: 22px;
}
.pt-merchant-name {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pt-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  padding: 3px 7px;
  border-radius: var(--pill);
  background: var(--red-soft);
}
.pt-live::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  animation: pt-pulse 1.8s var(--ease) infinite;
}

.pt-amount {
  margin-top: 14px;
  text-align: center;
}
.pt-amount-lbl {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.pt-amount-val {
  display: block;
  margin-top: 2px;
  font-family: var(--disp);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* the tap zone — a dashed landing pad with the NFC mark, a card that
   glides up, a processing ring, and a status line */
.pt-tap {
  position: relative;
  margin: 14px 0 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 14px;
  border: 1.5px dashed #d3d8e0;
  background: radial-gradient(
    120% 90% at 50% 36%,
    rgba(225, 0, 0, 0.05),
    transparent 70%
  );
  overflow: hidden;
}
.pt-tap-nfc {
  color: var(--red);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  animation: pt-tap-pulse 1.9s var(--ease) infinite;
}
.pt-tap-nfc svg {
  width: 46px;
  height: 46px;
}
.pt-screen.is-processing .pt-tap-nfc,
.pt-screen.is-reading .pt-tap-nfc {
  animation: none;
}
.pt-screen.is-processing .pt-tap-nfc {
  opacity: 0;
}

/* the contactless card that slides up to the reader while reading */
.pt-card {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 116px;
  height: 73px;
  border-radius: 9px;
  background: linear-gradient(135deg, #2a2d39 0%, #3c4150 48%, #23262f 100%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, 40px) rotate(-7deg);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
}
.pt-card::before {
  /* the chip */
  content: "";
  position: absolute;
  top: 26px;
  left: 14px;
  width: 18px;
  height: 14px;
  border-radius: 3px;
  background: linear-gradient(135deg, #f2c14e, #d79a26);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset;
}
.pt-card::after {
  /* the contactless glyph on the card */
  content: "";
  position: absolute;
  top: 26px;
  left: 40px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 50%,
    transparent 0 3px,
    rgba(255, 255, 255, 0.55) 3px 4px,
    transparent 4px 6px,
    rgba(255, 255, 255, 0.4) 6px 7px,
    transparent 7px
  );
}
.pt-screen.is-reading .pt-card,
.pt-screen.is-processing .pt-card {
  opacity: 1;
  transform: translate(-50%, -6px) rotate(-7deg);
}
.pt-screen.is-processing .pt-card {
  opacity: 0.35;
}

/* processing ring */
.pt-spin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  border-radius: 50%;
  border: 3px solid rgba(225, 0, 0, 0.18);
  border-top-color: var(--red);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.pt-screen.is-processing .pt-spin {
  opacity: 1;
  animation: pt-spin 0.8s linear infinite;
}

.pt-status {
  position: relative;
  z-index: 2;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  padding: 3px 10px;
  border-radius: var(--pill);
  margin-top: 2px;
}

/* card-network marks */
.pt-brands {
  flex: 0 0 auto;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0.85;
}
.pt-brand-visa {
  font-family: var(--disp);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #1a1f71;
}
.pt-brand-mc {
  position: relative;
  width: 34px;
  height: 16px;
}
.pt-brand-mc::before,
.pt-brand-mc::after {
  content: "";
  position: absolute;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.pt-brand-mc::before {
  left: 0;
  background: #eb001b;
}
.pt-brand-mc::after {
  right: 0;
  background: #f79e1b;
  mix-blend-mode: multiply;
}
.pt-brand-maestro {
  position: relative;
  width: 34px;
  height: 16px;
}
.pt-brand-maestro::before,
.pt-brand-maestro::after {
  content: "";
  position: absolute;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.pt-brand-maestro::before {
  left: 0;
  background: #0099df;
}
.pt-brand-maestro::after {
  right: 0;
  background: #ed0006;
  mix-blend-mode: multiply;
}

/* ----- approved view ----- */
.pt-done {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 18px 16px;
  background: linear-gradient(180deg, #f3fff8 0%, #eafff4 100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0s linear 0.5s;
}
.pt-screen.is-approved .pt-done {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s var(--ease);
}
.pt-check {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(24, 224, 138, 0.16),
    0 12px 26px rgba(12, 143, 87, 0.3);
}
.pt-check svg {
  width: 30px;
  height: 30px;
}
.pt-screen.is-approved .pt-check {
  animation: pt-pop 0.55s var(--ease);
}
.pt-done-title {
  margin-top: 14px;
  font-family: var(--disp);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-700);
}
.pt-done-amt {
  margin-top: 2px;
  font-family: var(--disp);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pt-done-rows {
  width: 100%;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pt-done-rows > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  padding: 0 4px;
}
.pt-done-rows span {
  color: var(--muted);
}
.pt-done-rows b {
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.pt-done-rows .pt-auth {
  color: var(--red-700);
}
.pt-settle {
  width: 100%;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--green-700);
  padding: 9px 12px;
  border-radius: 11px;
  background: rgba(24, 224, 138, 0.12);
  border: 1px solid rgba(24, 224, 138, 0.3);
}
.pt-settle svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}
/* the whole label is one flex item so it wraps as a centered unit, not
   split between the text node and the bold bank name */
.pt-settle-t {
  text-align: center;
  line-height: 1.35;
}
.pt-settle b {
  font-weight: 700;
}

/* home indicator */
.pt-home {
  flex: 0 0 auto;
  height: 22px;
  display: grid;
  place-items: center;
  color: #b7bcc6;
}
.pt-home::after {
  content: "";
  width: 96px;
  height: 4px;
  border-radius: 4px;
  background: #c9cdd6;
}

/* device caption — extra gap so the bobbing terminal never reaches it */
.pt-device-note {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}
.pt-device-note svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   BENEFITS — "Šta dobijate?"
   light slate canvas, ink-vault tiles + one red feature tile
   ============================================================ */
.pt-ben {
  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;
}
.pt-ben-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pt-ben-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);
}
.pt-ben-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 98, 0.4);
  box-shadow: 0 28px 56px rgba(8, 9, 14, 0.4);
}
.pt-ben-ico {
  width: 54px;
  height: 54px;
  margin: 2px 0 22px 6px;
  border-radius: 15px;
  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);
}
.pt-ben-ico svg {
  width: 24px;
  height: 24px;
  transform: rotate(-45deg);
}
.pt-ben-card:hover .pt-ben-ico {
  background-color: var(--red);
  border-color: var(--red);
  color: #fff;
}
.pt-ben-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.pt-ben-card p {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}
/* the lead red feature tile — "Konkurentne provizije" */
.pt-ben-card--feature {
  background-color: var(--red-600);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath fill='%23ffffff' fill-opacity='.14' d='M94 16L16 94L76 94L94 76ZM106 16L184 94L124 94L106 76ZM184 106L136 154L106 124L124 106ZM16 106L140 230L170 200L76 106Z'/%3E%3C/svg%3E"),
    var(--grad-red);
  background-repeat: no-repeat;
  background-position: right -40px bottom -60px, 0 0;
  background-size: 180px auto, auto;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-red);
}
.pt-ben-card--feature .pt-ben-ico {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}
.pt-ben-card--feature:hover .pt-ben-ico {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.55);
}
.pt-ben-card--feature p {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   HOW IT WORKS — numbered steps on an ink stage
   ============================================================ */
.pt-how {
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
  background-image: radial-gradient(
      900px 540px at 12% 0%,
      rgba(225, 0, 0, 0.14),
      transparent 60%
    ),
    var(--mark-white);
  background-repeat: no-repeat;
  background-position: 0 0, right -120px bottom -150px;
  background-size: auto, 420px auto;
  color: #fff;
  padding: clamp(70px, 9vw, 110px) 0;
}
.pt-how .pt-title {
  color: #fff;
}
.pt-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
/* dashed flight-line behind the step icons */
.pt-steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 2px;
  background-image: linear-gradient(
    90deg,
    var(--red-300) 0 14px,
    transparent 14px 26px
  );
  background-size: 26px 2px;
  opacity: 0.5;
  z-index: 0;
}
.pt-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 24px 28px;
  border-radius: var(--radius);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.02) 70%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.3s var(--ease), opacity 0.6s var(--ease);
}
.pt-step:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 98, 0.4);
}
.pt-step-ico {
  width: 54px;
  height: 54px;
  margin: 0 0 22px 6px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad-red);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(45deg);
  box-shadow: 0 12px 26px rgba(225, 0, 0, 0.34);
}
.pt-step-ico svg {
  width: 24px;
  height: 24px;
  transform: rotate(-45deg);
}
.pt-step-n {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red-300);
}
.pt-step h3 {
  margin-top: 6px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.pt-step p {
  margin-top: 9px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

/* ============================================================
   SUPPORT — dark "more than technology" card + light get-started card
   carries the source's support + interest paragraphs verbatim
   ============================================================ */
.pt-support {
  background: var(--soft);
  background-image: var(--mark-light);
  background-repeat: no-repeat;
  background-position: left -170px top -110px;
  background-size: 380px auto;
  padding: clamp(66px, 8vw, 100px) 0;
}
.pt-support-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.pt-support-dark {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 3.4vw, 46px);
  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;
}
.pt-support-dark .pt-eyebrow {
  margin-bottom: 16px;
}
.pt-support-dark h3 {
  font-family: var(--disp);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.pt-support-dark p {
  margin-top: 16px;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 52ch;
}
.pt-support-dark p b {
  color: #fff;
  font-weight: 600;
}
.pt-support-chips {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pt-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  padding: 9px 14px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.pt-chip svg {
  width: 15px;
  height: 15px;
  color: var(--red-300);
}

/* light "get started / interested" card */
.pt-support-light {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 3.4vw, 44px);
  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);
  display: flex;
  flex-direction: column;
}
.pt-support-mark {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid #ffd6d2;
  margin-bottom: 22px;
}
.pt-support-mark svg {
  width: 28px;
  height: 28px;
}
.pt-support-light .pt-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.pt-support-light h3 {
  margin-top: 10px;
  font-family: var(--disp);
  font-size: clamp(20px, 2.3vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pt-support-light p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
}
.pt-support-light p b {
  color: var(--ink);
  font-weight: 600;
}
.pt-support-light .pt-btn {
  margin-top: 22px;
  align-self: flex-start;
}

/* ============================================================
   CONTACT FORM — ink stage, the conversion finale
   keeps the legacy JS-hook classes (#contact-form-id,
   .quote-form-inputs-contact, .contact-*, .post-submit-contact2,
   .form-messege) so js/main.js still wires + submits it.
   ============================================================ */
.pt-form-sec {
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
  background-image: radial-gradient(
      900px 560px at 84% 100%,
      rgba(225, 0, 0, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, #101117 0%, #0e0f14 60%, #14151a 100%);
  color: #fff;
  padding: clamp(70px, 9vw, 110px) 0;
}
.pt-form-sec::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -150px;
  width: 460px;
  height: 540px;
  background: var(--mark-white) center / contain no-repeat;
  pointer-events: none;
}
.pt-form-sec .pt-wrap {
  position: relative;
  z-index: 2;
}
.pt-form-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: start;
}

/* left reassurance column */
.pt-form-aside .pt-eyebrow {
  margin-bottom: 16px;
}
.pt-form-aside h2 {
  font-family: var(--disp);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.pt-form-aside h2 .hl {
  color: var(--red-300);
}
.pt-form-aside > p {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 46ch;
}
.pt-form-aside > p b {
  color: #fff;
  font-weight: 600;
}
.pt-promise {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pt-promise li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
}
.pt-promise li svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--red-300);
}
.pt-form-direct {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.pt-form-direct a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}
.pt-form-direct a svg {
  width: 16px;
  height: 16px;
  color: var(--red-300);
}
.pt-form-direct a:hover {
  color: #fff;
}

/* the form card — dark glass */
.pt-form-card {
  position: relative;
  padding: clamp(24px, 2.6vw, 34px);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02) 70%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
}
.pt-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
  );
}
.pt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.pt-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.pt-form-row .pt-field {
  margin-bottom: 0;
}
.pt-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.66);
}
/* style the inputs generically so we don't depend on the legacy classes;
   js/main.js sets an inline border on invalid submit, which simply
   overrides these — by design */
.pt-form-card input,
.pt-form-card textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 14.5px;
  color: #fff;
  background: rgba(8, 9, 14, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.pt-form-card textarea {
  min-height: 128px;
  resize: vertical;
  line-height: 1.55;
}
.pt-form-card input::placeholder,
.pt-form-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.pt-form-card input:focus,
.pt-form-card textarea:focus {
  outline: none;
  border-color: var(--red-300);
  background: rgba(8, 9, 14, 0.7);
  box-shadow: 0 0 0 3px rgba(225, 0, 0, 0.18);
}
/* submit button — keeps .post-submit-contact2 for the JS handler */
.pt-form-card .submit-btn {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.pt .pt-form-card .post-submit-contact2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--grad-red);
  border: none;
  border-radius: var(--pill);
  padding: 15px 30px;
  cursor: pointer;
  box-shadow: var(--shadow-red);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pt .pt-form-card .post-submit-contact2::after {
  content: "→";
  font-size: 17px;
  line-height: 1;
}
.pt .pt-form-card .post-submit-contact2:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(225, 0, 0, 0.4);
}
.pt-form-card .form-messege {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red-300);
}
.pt-form-consent {
  margin-top: 4px;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   REVEAL  (driven by site.js [data-reveal] -> .in)
   ============================================================ */
.pt [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}
.pt [data-reveal].in {
  opacity: 1;
  transform: none;
}
.pt-head[data-reveal],
.pt-hero-copy[data-reveal],
.pt-device[data-reveal],
.pt-support-dark[data-reveal],
.pt-support-light[data-reveal],
.pt-form-aside[data-reveal],
.pt-form-card[data-reveal] {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
/* staggered grid entrances — restated so hover transform/shadow survive */
.pt-ben-grid > [data-reveal],
.pt-steps > [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);
}
.pt-ben-grid > [data-reveal]:nth-child(2),
.pt-steps > [data-reveal]:nth-child(2) {
  transition-delay: 70ms;
}
.pt-ben-grid > [data-reveal]:nth-child(3),
.pt-steps > [data-reveal]:nth-child(3) {
  transition-delay: 140ms;
}
.pt-ben-grid > [data-reveal]:nth-child(4),
.pt-steps > [data-reveal]:nth-child(4) {
  transition-delay: 210ms;
}
.pt-ben-grid > [data-reveal]:nth-child(5) {
  transition-delay: 280ms;
}
.pt-ben-grid > [data-reveal]:nth-child(6) {
  transition-delay: 350ms;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes pt-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes pt-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 0, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(225, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(225, 0, 0, 0);
  }
}
@keyframes pt-tap-pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}
@keyframes pt-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pt-pop {
  0% {
    transform: scale(0.4);
  }
  60% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .pt-hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .pt-device {
    margin: 0 auto;
  }
  .pt-ben-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pt-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pt-steps::before {
    display: none;
  }
  .pt-support-grid {
    grid-template-columns: 1fr;
  }
  .pt-form-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .pt-wrap {
    padding: 0 18px;
  }
  /* let the red hero stamp wrap into per-line fragments instead of
     overflowing the narrowest phones */
  .pt-hero h1 {
    font-size: clamp(26px, 8.2vw, 42px);
    line-height: 1.2;
  }
  .pt-hero h1 .hl {
    white-space: normal;
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0.04em 0.2em 0.14em;
  }
  .pt-ben-grid {
    grid-template-columns: 1fr;
  }
  .pt-steps {
    grid-template-columns: 1fr;
  }
  .pt-form-row {
    grid-template-columns: 1fr;
  }
  .pt-form-card {
    padding: 22px 18px;
  }
}

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