/* ============================================================
   ProductTrio - Fractional Product Network
   Ground-up experience layer. Loaded after blog.css + services.css
   (tokens, lean nav/footer, buttons come from those).
   Concept: "the match, made visible" - a dark network-field hero
   where supply meets demand, then a calm cream operating surface.
   ============================================================ */

.fx-page {
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --deep: #14164e;
  --deep-2: #1c1f6e;
  --hairline: rgba(29, 29, 29, 0.12);
  overflow-x: hidden;
}

/* ============================================================
   HERO - dark network field
   ============================================================ */
.fxh {
  position: relative; overflow: hidden;
  background:
    radial-gradient(48% 52% at 78% 30%, rgba(77, 83, 196, 0.10), transparent 70%),
    radial-gradient(30% 34% at 62% 78%, rgba(220, 185, 88, 0.14), transparent 72%),
    var(--canvas);
  color: var(--ink);
  padding: clamp(64px, 10vh, 108px) 5vw clamp(48px, 7vh, 76px);
  min-height: min(74vh, 720px);
  display: flex; align-items: center;
}
.fxh-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 1.2s ease .2s;
}
.fxh-canvas.is-ready { opacity: 1; }
.fxh-inner {
  position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.fxh-copy { max-width: 640px; }
.fxh-media { position: relative; }
.fxh-media::after {
  content: ""; position: absolute; right: -6px; top: 0;
  width: 112px; height: 112px;
  background-image: radial-gradient(rgba(77, 83, 196, 0.35) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}
.fxh-media img {
  position: relative; z-index: 1; display: block;
  width: 100%; max-width: 520px; margin: 0 auto; height: auto;
}
.fxh-eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 2.8px; text-transform: uppercase;
  color: var(--ink-soft); display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.fxh-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--success); animation: fxPulse 2.4s ease infinite;
}
@keyframes fxPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.8); } }
.fxh h1 {
  font-size: clamp(36px, 4.6vw, 58px); font-weight: 800;
  line-height: 1.02; letter-spacing: -0.03em; margin: 0 0 22px; color: var(--ink);
}
.fxh h1 .line { display: block; overflow: hidden; }
.fxh h1 .line > span { display: inline-block; will-change: transform; }
.fxh h1 .em { color: var(--primary); font-style: normal; }
.fxh-sub {
  font-size: clamp(16.5px, 1.6vw, 19px); line-height: 1.6;
  color: var(--ink-muted); max-width: 560px; margin: 0 0 32px;
}
.fxh-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.fxh-ctas .btn { margin: 0; }
.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 100px; text-decoration: none;
  font-weight: 700; font-size: 16px; color: var(--ink);
  border: 1.5px solid rgba(29, 29, 29, 0.35); background: transparent;
  transition: border-color .25s ease, background-color .25s ease, color .25s ease;
}
.btn-ghost-light:hover { border-color: var(--primary); color: var(--primary); background: var(--tint-indigo); }
.fxh-friction {
  margin-top: 20px; font-family: var(--mono); font-size: 12px;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-soft);
}
.fxh-scroll {
  position: absolute; z-index: 2; left: 50%; bottom: 18px; transform: translateX(-50%);
  width: 26px; height: 40px; border: 1.5px solid rgba(29,29,29,0.25); border-radius: 14px;
}
.fxh-scroll::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  border-radius: 3px; background: var(--gold); transform: translateX(-50%);
  animation: fxDrop 1.8s ease infinite;
}
@keyframes fxDrop { 0% { opacity: 0; top: 6px; } 35% { opacity: 1; } 100% { opacity: 0; top: 20px; } }

/* ============================================================
   ROLE TICKER
   ============================================================ */
.fx-ticker {
  background: var(--canvas); color: var(--ink-soft);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  overflow: hidden; padding: 13px 0; position: relative; z-index: 2;
}
.fx-ticker-track {
  display: flex; gap: 44px; width: max-content; padding-right: 44px;
  animation: fxTicker 30s linear infinite;
  font-family: var(--mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: 2.4px; text-transform: uppercase; white-space: nowrap;
}
.fx-ticker:hover .fx-ticker-track { animation-play-state: paused; }
.fx-ticker-track b { color: var(--gold); font-weight: 600; }
@keyframes fxTicker { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION CHROME
   ============================================================ */
.fx-section { padding: clamp(76px, 10vh, 116px) 5vw; }
.fx-section.tint { background: var(--surface-mint); }
.fx-wrap { max-width: 1160px; margin: 0 auto; }
.fx-folio {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 2.4px; text-transform: uppercase; color: var(--primary);
  margin-bottom: 18px;
}
.fx-folio::before { content: ""; width: 34px; height: 1px; background: var(--gold); flex: none; }
.fx-folio .idx { color: var(--ink-soft); }
.fx-section h2 {
  font-size: clamp(28px, 3.8vw, 46px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 14px; color: var(--ink);
}
.fx-lead {
  font-size: clamp(16px, 1.5vw, 18.5px); line-height: 1.6; color: var(--ink-muted);
  max-width: 640px; margin: 0 0 44px;
}

/* ============================================================
   HOW IT WORKS - connected timeline
   ============================================================ */
.fx-steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 34px); }
.fx-steps::before {
  content: ""; position: absolute; top: 27px; left: 8%; right: 8%; height: 2px;
  background: var(--hairline); z-index: 0;
}
.fx-steps .fx-line {
  position: absolute; top: 27px; left: 8%; height: 2px; width: 84%;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform-origin: left; transform: scaleX(0); z-index: 0;
}
.fx-step { position: relative; z-index: 1; }
.fx-step .num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--primary);
  color: var(--primary); font-family: var(--mono); font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  box-shadow: 0 0 0 6px var(--canvas);
}
.fx-section.tint .fx-step .num { box-shadow: 0 0 0 6px var(--surface-mint); }
.fx-step h3 { font-size: clamp(18px, 1.9vw, 22px); font-weight: 800; margin: 0 0 8px; color: var(--ink); }
.fx-step p { font-size: 15px; line-height: 1.6; color: var(--ink-muted); margin: 0; }

/* stats row */
.fx-stats {
  margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
}
.fx-stat { padding: 26px clamp(14px, 2vw, 30px) 4px; border-left: 1px solid var(--hairline); }
.fx-stat:first-child { border-left: none; padding-left: 0; }
.fx-stat .n {
  font-family: var(--mono); font-weight: 700;
  font-size: clamp(30px, 3.6vw, 46px); color: var(--primary); line-height: 1;
  display: flex; align-items: baseline;
}
.fx-stat .n .suf { font-size: .55em; color: var(--gold); margin-left: 2px; }
.fx-stat .k { margin-top: 10px; font-size: 13.5px; line-height: 1.45; color: var(--ink-soft); }

/* ============================================================
   TWO-SIDED SPLIT
   ============================================================ */
.fx-split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fx-card {
  background: var(--surface); border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,0.07); box-shadow: var(--shadow-card);
  padding: 34px 32px; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s cubic-bezier(.2,.8,.2,1);
}
.fx-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.fx-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--primary); transform: scaleX(.35); transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.fx-card.gold::before { background: var(--gold); }
.fx-card:hover::before { transform: scaleX(1); }
.fx-aud {
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: 2.2px; text-transform: uppercase; color: var(--primary); margin-bottom: 12px;
}
.fx-card.gold .fx-aud { color: #a8842a; }
.fx-card h3 { font-size: clamp(20px, 2vw, 25px); font-weight: 800; letter-spacing: -0.01em; margin: 0 0 10px; color: var(--ink); }
.fx-card > p { font-size: 15.5px; line-height: 1.55; color: var(--ink-muted); margin: 0 0 18px; }
.fx-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.fx-card li { position: relative; padding-left: 28px; font-size: 15px; line-height: 1.5; color: var(--ink-muted); }
.fx-card li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 17px; height: 17px;
  border-radius: 50%; background: var(--tint-indigo);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234d53c4' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.fx-card.gold li::before {
  background: rgba(220, 185, 88, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8842a' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.fx-card .btn { margin: auto 0 0; align-self: flex-start; }
.fx-note { margin-top: 12px; font-size: 12.5px; color: var(--ink-soft); }
.fx-note a { color: var(--primary); }

/* ============================================================
   FORMS
   ============================================================ */
.fx-form-wrap { max-width: 760px; margin: 0 auto; }
.fx-tabs {
  display: flex; gap: 8px; justify-content: center;
  margin: 0 auto 28px; max-width: 560px; position: relative;
}
.fx-tab {
  flex: 1; cursor: pointer; border: 1.5px solid rgba(29,29,29,0.14);
  background: var(--surface); color: var(--ink-muted);
  font-family: inherit; font-size: 15px; font-weight: 700;
  padding: 13px 18px; border-radius: 100px;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}
.fx-tab:hover { border-color: var(--primary); color: var(--primary); }
.fx-tab:active { transform: scale(.97); }
.fx-tab.is-active { background: var(--primary); border-color: var(--primary); color: #fff; }

html.js .fx-panel[hidden] { display: none; }
.fx-panel { animation: fxFade .4s cubic-bezier(.2,.8,.2,1) both; }
@keyframes fxFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.fx-form {
  background: var(--surface); border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card);
  padding: 34px clamp(20px, 4vw, 38px);
}
.fx-form h3 { font-size: 22px; font-weight: 800; margin: 0 0 6px; color: var(--ink); }
.fx-form > p.fx-form-lead { font-size: 15px; line-height: 1.55; color: var(--ink-muted); margin: 0 0 26px; }

.fx-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fx-field { display: flex; flex-direction: column; gap: 6px; }
.fx-field.full { grid-column: 1 / -1; }
.fx-field label { font-size: 13px; font-weight: 700; letter-spacing: 0.2px; color: var(--ink); }
.fx-field .opt { font-weight: 500; color: var(--ink-soft); }
.fx-field input, .fx-field select, .fx-field textarea {
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--canvas); border: 1.5px solid rgba(29,29,29,0.12);
  border-radius: 12px; padding: 12px 14px; width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.fx-field textarea { min-height: 108px; resize: vertical; line-height: 1.5; }
.fx-field input:focus, .fx-field select:focus, .fx-field textarea:focus {
  outline: none; border-color: var(--primary); background: var(--surface);
  box-shadow: 0 0 0 4px rgba(77, 83, 196, 0.12);
}
.fx-field input::placeholder, .fx-field textarea::placeholder { color: var(--ink-soft); opacity: .7; }
.fx-field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23546681' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px;
}

/* money row: currency + from-to + period */
.fx-money { display: grid; grid-template-columns: 96px 1fr 1fr auto; gap: 8px; align-items: center; }
.fx-money .dash { text-align: center; color: var(--ink-soft); font-weight: 700; }
.fx-money select { padding-left: 12px; padding-right: 30px; background-position: right 10px center; }
.fx-money .per {
  font-family: var(--mono); font-size: 13px; color: var(--ink-soft); white-space: nowrap; padding: 0 4px;
}
.fx-money-note { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }

/* checkbox chips */
.fx-checks { display: flex; flex-wrap: wrap; gap: 8px; }
.fx-checks label {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  font-size: 13.5px; font-weight: 600; color: var(--ink-muted);
  background: var(--canvas); border: 1.5px solid rgba(29,29,29,0.12);
  border-radius: 100px; padding: 8px 14px;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease, transform .15s ease;
}
.fx-checks label:hover { border-color: var(--primary); color: var(--primary); }
.fx-checks label:active { transform: scale(.95); }
.fx-checks label:has(input:checked) { border-color: var(--primary); background: var(--tint-indigo); color: var(--primary); }
.fx-checks input { accent-color: var(--primary); width: 15px; height: 15px; margin: 0; }

.fx-consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 20px; font-size: 13.5px; line-height: 1.5; color: var(--ink-muted);
}
.fx-consent input { accent-color: var(--primary); width: 16px; height: 16px; margin-top: 2px; flex: none; }
.fx-consent a { color: var(--primary); }
.fx-form .btn { margin-top: 22px; }
.fx-form button[type="submit"] { border: none; cursor: pointer; font-family: inherit; }
.fx-form button[type="submit"][disabled] { opacity: .6; cursor: wait; }
.fx-hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 0 !important; }

.fx-result { margin-top: 18px; font-size: 15px; line-height: 1.55; border-radius: 12px; padding: 14px 16px; }
.fx-result.ok { background: var(--surface-mint); color: #1d4d2b; border: 1px solid rgba(45, 202, 115, 0.35); }
.fx-result.err { background: #fdeeee; color: #8a2222; border: 1px solid rgba(200, 60, 60, 0.28); }

/* success state with drawn check */
.fx-success { text-align: center; padding: 26px 4px; }
.fx-success svg { width: 64px; height: 64px; margin-bottom: 14px; }
.fx-success circle { stroke: var(--success); stroke-width: 2.5; fill: none;
  stroke-dasharray: 158; stroke-dashoffset: 158; animation: fxDraw .7s ease forwards; }
.fx-success path { stroke: var(--success); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 36; stroke-dashoffset: 36; animation: fxDraw .5s ease .5s forwards; }
@keyframes fxDraw { to { stroke-dashoffset: 0; } }
.fx-success h3 { font-size: 23px; margin: 0 0 8px; }
.fx-success p { font-size: 15.5px; line-height: 1.6; color: var(--ink-muted); margin: 0 auto; max-width: 460px; }

/* ============================================================
   WHY TRUST
   ============================================================ */
.fx-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fx-why .w {
  background: var(--surface); border-radius: 18px; padding: 28px 26px;
  border: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow-card);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s cubic-bezier(.2,.8,.2,1);
}
.fx-why .w:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.fx-why .w-ico {
  width: 44px; height: 44px; border-radius: 12px; background: var(--tint-indigo);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--primary);
}
.fx-why .w-ico svg { width: 24px; height: 24px; }
.fx-why h3 { font-size: 18px; font-weight: 800; margin: 0 0 8px; color: var(--ink); }
.fx-why p { font-size: 15px; line-height: 1.55; color: var(--ink-muted); margin: 0; }
.fx-why a { color: var(--primary); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.fx-faqs { max-width: 820px; margin: 0 auto; }
.fx-faqs details {
  background: var(--surface); border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px; margin-bottom: 12px; overflow: hidden;
  transition: box-shadow .3s ease;
}
.fx-faqs details:hover { box-shadow: var(--shadow-card); }
.fx-faqs summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 20px 24px; font-size: 16.5px; font-weight: 700; color: var(--ink);
}
.fx-faqs summary::-webkit-details-marker { display: none; }
.fx-faqs summary::after {
  content: ""; flex: none; width: 22px; height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234d53c4' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-size: contain; transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.fx-faqs details[open] summary::after { transform: rotate(45deg); }
.fx-faqs .a { padding: 0 24px 22px; font-size: 15px; line-height: 1.6; color: var(--ink-muted); }
.fx-faqs .a a { color: var(--primary); }

/* ============================================================
   cursor (desktop, motion-ok only)
   ============================================================ */
.fx-cursor-dot, .fx-cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%); will-change: transform;
}
.fx-cursor-dot { width: 7px; height: 7px; background: var(--primary); }
.fx-cursor-ring {
  width: 34px; height: 34px; border: 1.5px solid rgba(77, 83, 196, 0.45);
  transition: width .28s ease, height .28s ease, border-color .28s ease, background-color .28s ease;
}
.fx-cursor-ring.is-active {
  width: 56px; height: 56px;
  border-color: rgba(220, 185, 88, 0.9); background: rgba(220, 185, 88, 0.10);
}
@media (hover: none), (pointer: coarse) { .fx-cursor-dot, .fx-cursor-ring { display: none; } }

/* reveal gating (JS adds .in) */
html.js .fx-page [data-reveal] { opacity: 0; transform: translateY(26px); }
html.js .fx-page [data-reveal].in { opacity: 1; transform: none; transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
html.js.rm .fx-page [data-reveal] { opacity: 1; transform: none; }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 991px) {
  .fx-steps { grid-template-columns: 1fr; gap: 30px; }
  .fx-steps::before, .fx-steps .fx-line { display: none; }
  .fx-stats { grid-template-columns: 1fr; }
  .fx-stat { border-left: none; border-top: 1px solid var(--hairline); padding: 20px 0 4px; }
  .fx-stat:first-child { border-top: none; }
  .fx-why { grid-template-columns: 1fr; }
}
@media (max-width: 860px) { .fx-split { grid-template-columns: 1fr; } }
@media (max-width: 991px) {
  .fxh-inner { grid-template-columns: 1fr; }
  .fxh-media { max-width: 440px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .fx-grid { grid-template-columns: 1fr; }
  .fx-tabs { flex-direction: column; }
  .fx-money { grid-template-columns: 88px 1fr 1fr; }
  .fx-money .per { grid-column: 1 / -1; padding: 2px 4px 0; }
  .fxh { min-height: 0; }
}

/* ============================================================
   reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .fx-ticker-track { animation: none; }
  .fxh-scroll, .fx-cursor-dot, .fx-cursor-ring { display: none; }
  .fxh-eyebrow::before { animation: none; }
  .fx-success circle, .fx-success path { animation: none; stroke-dashoffset: 0; }
  .fx-card, .fx-why .w, .fx-checks label { transition: none; }
  .fxh-canvas { opacity: 1; transition: none; }
}


/* ============================================================
   PRICING - launch offer with anchor
   ============================================================ */
.fx-price { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.fx-price-card {
  position: relative; background: var(--surface);
  border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); padding: 32px 30px;
  display: flex; flex-direction: column;
}
.fx-price-card.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-hover); }
.fx-price-badge {
  position: absolute; top: -13px; left: 30px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  background: var(--primary); color: #fff;
  padding: 6px 14px; border-radius: 100px;
}
.fx-price-card h3 { font-size: 18px; font-weight: 800; margin: 0 0 4px; color: var(--ink); }
.fx-price-who { font-size: 14px; color: var(--ink-soft); margin: 0 0 20px; }
.fx-price-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.fx-price-was {
  font-family: var(--mono); font-size: 24px; font-weight: 600;
  color: var(--ink-soft); text-decoration: line-through;
  text-decoration-thickness: 2px; text-decoration-color: rgba(200, 60, 60, 0.6);
}
.fx-price-now {
  font-size: clamp(38px, 5vw, 52px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1; color: var(--primary);
}
.fx-price-unit { font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.fx-price-note { font-size: 14.5px; line-height: 1.55; color: var(--ink-muted); margin: 14px 0 0; }
.fx-price-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 9px; }
.fx-price-list li {
  position: relative; padding-left: 26px; font-size: 14.5px;
  line-height: 1.5; color: var(--ink-muted);
}
.fx-price-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 15px; height: 15px;
  border-radius: 50%; background: var(--tint-indigo);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234d53c4' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}
.fx-price-foot {
  max-width: 900px; margin: 22px auto 0; text-align: center;
  font-size: 14px; color: var(--ink-soft); line-height: 1.6;
}
@media (max-width: 860px) { .fx-price { grid-template-columns: 1fr; } }
