/* UK Wholesale — UKW Modern v6: brand display face (Sora, self-hosted) */
@font-face {
  font-family: 'Sora';
  src: url('/css/fonts/sora-var.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
:root { --display: 'Sora', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }

/* UK Wholesale — "UKW Modern" design system v1 (2026-08)
   Tokens: ink #101014 · purple #5F259E · white · grey-50 #F7F7F9
   Mobile-first. Replaces style.css. Legacy content classes render as neutral blocks. */

:root {
  --ink: #101014;
  --purple: #5F259E;
  --purple-dark: #4A1C7C;
  --purple-tint: #F3EEFA;
  --purple-lt: #C9A6F0;
  --grey-50: #F7F7F9;
  --grey-border: #ECECF1;
  --grey-mid: #5A5A66;
  --radius: 12px;
  --shadow-card: 0 12px 32px rgba(16,16,20,.08);
  --shadow-pop: 0 18px 44px rgba(16,16,20,.14);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: #fff; font-size: 16.5px; line-height: 1.65; }
img { max-width: 100%; height: auto; border: 0; }
table { border-collapse: collapse; max-width: 100%; }
ul { list-style: none; }
a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--purple-dark); }

/* ---------- animations ---------- */
@keyframes ukwFadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes ukwProp {
  0% { opacity: 0; transform: translateY(20px); }
  4% { opacity: 1; transform: none; }
  23% { opacity: 1; transform: none; }
  27% { opacity: 0; transform: translateY(-16px); }
  100% { opacity: 0; }
}
@keyframes ukwPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(95,37,158,.35); } 50% { box-shadow: 0 0 0 10px rgba(95,37,158,0); } }
.ukw-fu1 { animation: ukwFadeUp .7s cubic-bezier(.2,.7,.2,1) .05s both; }
.ukw-fu2 { animation: ukwFadeUp .7s cubic-bezier(.2,.7,.2,1) .2s both; }
.ukw-fu3 { animation: ukwFadeUp .7s cubic-bezier(.2,.7,.2,1) .35s both; }
.ukw-fu4 { animation: ukwFadeUp .7s cubic-bezier(.2,.7,.2,1) .5s both; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- buttons ---------- */
.ukw-btn, .ukw-btn-ghost, .ukw-btn-light {
  display: inline-block; font-weight: 700; font-size: 1rem; line-height: 1.2;
  padding: 14px 26px; border-radius: 10px; cursor: pointer; text-align: center;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease, background .22s ease;
}
.ukw-btn { background: var(--purple); color: #fff !important; box-shadow: 0 4px 14px rgba(95,37,158,.28); }
.ukw-btn:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 10px 26px rgba(95,37,158,.4); color: #fff; }
.ukw-btn-ghost { background: rgba(255,255,255,.06); color: #fff !important; border: 1.5px solid rgba(255,255,255,.45); }
.ukw-btn-ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.14); color: #fff; }
.ukw-btn-light { background: #fff; color: var(--purple) !important; }
.ukw-btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.2); }

/* ---------- header ---------- */
.ukw-head {
  position: sticky; top: 0; z-index: 900; background: #fff;
  border-bottom: 1px solid var(--grey-border);
  box-shadow: 0 2px 14px rgba(16,16,20,.06);
}
.ukw-head-in {
  max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.ukw-logo img { height: 34px; width: auto; display: block; }
.ukw-nav { display: none; }
.ukw-head-right { display: flex; align-items: center; gap: 12px; }
.ukw-head-tel { display: none; font-weight: 700; color: var(--ink); white-space: nowrap; }
.ukw-head-tel:hover { color: var(--purple); }
.ukw-head-cta { padding: 10px 18px; font-size: .92rem; }
.ukw-burger { display: flex; flex-direction: column; gap: 5px; padding: 10px; cursor: pointer; }
.ukw-burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
#ukw-navtoggle { display: none; }
#ukw-navtoggle:checked ~ .ukw-head-in .ukw-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
#ukw-navtoggle:checked ~ .ukw-head-in .ukw-burger span:nth-child(2) { opacity: 0; }
#ukw-navtoggle:checked ~ .ukw-head-in .ukw-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.ukw-sheet { display: none; background: #fff; border-bottom: 1px solid var(--grey-border); }
#ukw-navtoggle:checked ~ .ukw-sheet { display: block; }
.ukw-sheet ul { padding: 8px 20px 16px; }
.ukw-sheet a { display: block; padding: 13px 4px; font-size: 1.06rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--grey-50); }
.ukw-sheet a.ukw-on, .ukw-sheet a:hover { color: var(--purple); }
.ukw-sheet .ukw-sheet-tel { color: var(--purple); font-weight: 800; border-bottom: 0; }
@media (min-width: 992px) {
  .ukw-head-in { height: 76px; padding: 0 32px; }
  .ukw-logo img { height: 40px; }
  .ukw-burger, .ukw-sheet, #ukw-navtoggle:checked ~ .ukw-sheet { display: none; }
  .ukw-nav { display: flex; gap: 30px; align-items: center; }
  .ukw-nav a { font-size: .97rem; font-weight: 600; color: var(--ink); padding: 6px 0; position: relative; }
  .ukw-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--purple); transition: width .22s ease; }
  .ukw-nav a:hover::after, .ukw-nav a.ukw-on::after { width: 100%; }
  .ukw-nav a.ukw-on { color: var(--purple); }
  .ukw-head-tel { display: inline-block; }
}

/* ---------- heroes ---------- */
.ukw-hero { position: relative; overflow: hidden; background: var(--ink); }
.ukw-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.ukw-hero-veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,12,18,.9) 0%, rgba(13,12,18,.6) 46%, rgba(43,20,80,.2) 100%); }
.ukw-hero-in { position: relative; max-width: 1200px; margin: 0 auto; padding: 56px 20px; display: flex; flex-direction: column; gap: 18px; }
.ukw-hero-badge {
  display: inline-flex; align-self: flex-start; background: rgba(95,37,158,.32);
  border: 1px solid rgba(255,255,255,.3); color: #E9DDF8; font-size: .82rem;
  font-weight: 700; padding: 7px 14px; border-radius: 999px;
}
.ukw-hero-rot { position: relative; height: 150px; }
.ukw-hero-rot > span {
  position: absolute; top: 0; left: 0; right: 0; opacity: 0;
  animation: ukwProp 16s infinite;
  font-size: clamp(1.9rem, 5.5vw, 3.4rem); line-height: 1.1; font-weight: 800;
  letter-spacing: -.045em; color: #fff; display: block;
}
.ukw-hero-rot > span:nth-child(2) { animation-delay: 4s; }
.ukw-hero-rot > span:nth-child(3) { animation-delay: 8s; }
.ukw-hero-rot > span:nth-child(4) { animation-delay: 12s; }
.ukw-hero-rot em { font-style: normal; color: var(--purple-lt); }
.ukw-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.84); max-width: 640px; }
.ukw-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.ukw-hero--page .ukw-hero-in { padding: 44px 20px; }
.ukw-hero-eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .12em; color: var(--purple-lt); }
.ukw-hero-note { font-size: .84rem; color: rgba(255,255,255,.65); }
@media (min-width: 768px) { .ukw-hero-rot { height: 190px; } .ukw-hero-in { padding: 80px 32px; } }
@media (min-width: 992px) { .ukw-hero-rot { height: 200px; max-width: 820px; } }

/* ---------- trust band ---------- */
.ukw-trust { background: var(--grey-50); border-bottom: 1px solid var(--grey-border); }
.ukw-trust-in {
  max-width: 1200px; margin: 0 auto; padding: 18px 20px;
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 18px;
}
.ukw-trust-it { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 700; }
.ukw-trust-it svg { flex-shrink: 0; }
.ukw-trust-it small { display: block; font-weight: 400; color: var(--grey-mid); font-size: .8rem; }
@media (min-width: 992px) { .ukw-trust-in { grid-template-columns: repeat(4, minmax(0,1fr)); padding: 22px 32px; } }

/* ---------- layout: content + sidebar ---------- */
.main { background: #fff; }
.main-width { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.content { display: flex; flex-direction: column; gap: 28px; padding: 34px 0 30px; }
.column-center { order: 1; min-width: 0; }
.column-left { order: 2; }
@media (min-width: 992px) {
  .content { display: grid; grid-template-columns: 280px minmax(0,1fr); gap: 44px; padding: 44px 0 40px; }
  .column-left { order: 0; }
  .column-center { order: 0; }
}

/* sidebar widgets -> "Explore" cards */
.column-left .widget { margin-bottom: 18px; }
.column-left .widget-bg { background: var(--grey-50); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 20px; transition: box-shadow .25s ease, border-color .25s ease; }
.column-left .widget-bg:hover { border-color: #D9C8F0; box-shadow: var(--shadow-card); }
.column-left .title h2 { font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); margin-bottom: 10px; }
.column-left ul li { border-bottom: 1px solid #E6E6EC; }
.column-left ul li:last-child { border-bottom: 0; }
.column-left ul li a { display: block; padding: 9px 2px; font-size: .92rem; font-weight: 600; color: var(--ink); transition: color .18s, padding-left .18s; }
.column-left ul li a:hover { color: var(--purple); padding-left: 8px; }

/* ---------- content column ---------- */
.column-center .title h1, .column-center .title h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem); line-height: 1.15; font-weight: 800;
  letter-spacing: -.03em; color: var(--ink); margin: 0 0 8px;
}
.column-center .title h1 a, .column-center .title h2 a { color: inherit; }
.column-center .date { font-size: 1.02rem; color: var(--grey-mid); margin-bottom: 22px; }
.column-center h2, .column-center h3 { font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; margin: 26px 0 10px; }
.column-center p { margin: 0 0 16px; color: #2E2E36; }
.column-center li { color: #2E2E36; }
.column-center img { border-radius: var(--radius); }
.column-center table td { padding: 8px 12px; border: 1px solid var(--grey-border); font-size: .95rem; vertical-align: top; }
.column-center strong a, .column-center a strong { color: var(--purple); }

/* legacy structural classes -> neutral */
.bgr-left, .bgr-right, .bgr-top, .bgr-bot,
.corner-left-top, .corner-right-top, .corner-left-bot, .corner-right-bot,
.text-box, .box-img, .box-top, .indent-box, .post, .hentry, .indent { display: block; }
.text-box { font-size: 1rem; }
.line-height { line-height: 1.7; }
.fleft { float: none; }
.tail-right { display: none; }

/* legacy inline color classes: keep identity, fix AA contrast */
.column-center .style3, .column-center .style6 { color: #517422; }

/* old "comments" link -> CTA button */
.column-center .comments { margin: 26px 0 8px; }
.column-center .comments a {
  display: inline-block; background: var(--purple); color: #fff; font-weight: 700;
  padding: 13px 24px; border-radius: 10px; box-shadow: 0 4px 14px rgba(95,37,158,.28);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.column-center .comments a:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 10px 26px rgba(95,37,158,.4); }

/* prev/next navigation row */
.navigation { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin: 8px 0 26px; padding-top: 18px; border-top: 1px solid var(--grey-border); }
.navigation a { font-weight: 700; font-size: .95rem; }
.navigation .alignleft a::before { content: "← "; }
.navigation .alignright a::after { content: " →"; }

/* ---------- footer ---------- */
.ukw-foot { background: var(--ink); color: #DBDBE2; margin-top: 30px; }
.ukw-foot-in { max-width: 1200px; margin: 0 auto; padding: 44px 20px 30px; }
.ukw-foot-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.ukw-foot img { height: 44px; width: auto; }
.ukw-foot-blurb { font-size: .9rem; line-height: 1.6; color: #B9B9C2; max-width: 340px; }
.ukw-foot-tel { font-size: 1.15rem; font-weight: 800; color: #fff; display: inline-block; margin-top: 6px; }
.ukw-foot h3 { font-size: .78rem; font-weight: 800; letter-spacing: .12em; color: #7C7C88; margin-bottom: 10px; }
.ukw-foot ul li { margin-bottom: 8px; }
.ukw-foot ul a { color: #DBDBE2; font-size: .9rem; }
.ukw-foot ul a:hover { color: var(--purple-lt); }
.ukw-foot-legal { border-top: 1px solid #2A2A32; margin-top: 34px; padding-top: 18px; font-size: .8rem; color: #8B8B96; line-height: 1.8; }
.ukw-foot-legal a { color: #A9A9B4; }
.ukw-foot-legal a:hover { color: var(--purple-lt); }
@media (min-width: 768px) { .ukw-foot-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }

/* ---------- misc ---------- */
::selection { background: var(--purple); color: #fff; }
.ukw-skip { position: absolute; left: -9999px; }
.ukw-skip:focus { left: 12px; top: 12px; background: #fff; padding: 10px 16px; z-index: 1000; border-radius: 8px; box-shadow: var(--shadow-pop); }

/* ============ v2: sidebar retired, section system for rewritten bodies ============ */
.column-left { display: none; }
.content { display: block; padding: 0 0 30px; }
.column-center { max-width: 900px; margin: 0 auto; padding-top: 34px; }

/* full-bleed escape inside the content column */
.ukw-bleed { width: 100vw; margin-left: calc(50% - 50vw); }

/* generic section rhythm */
.ukw-sec { padding: 44px 0 10px; }
.ukw-sec-kicker { font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--purple); margin-bottom: 6px; }
.ukw-sec h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -.03em; margin: 0 0 8px; }
.ukw-sec-sub { color: var(--grey-mid); font-size: 1.05rem; margin-bottom: 26px; max-width: 640px; }

/* service cards */
.ukw-cards { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .ukw-cards { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .ukw-cards { grid-template-columns: repeat(4, minmax(0,1fr)); } .ukw-cards--3 { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.ukw-card { display: flex; flex-direction: column; border: 1px solid var(--grey-border); border-radius: var(--radius); overflow: hidden; background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.ukw-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); border-color: #D9C8F0; }
.ukw-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 0; }
.ukw-card-b { display: flex; flex-direction: column; gap: 8px; padding: 18px 18px 20px; flex: 1; }
.ukw-card-b strong { font-size: 1.08rem; font-weight: 800; letter-spacing: -.01em; color: var(--ink); }
.ukw-card-b p { font-size: .92rem; color: var(--grey-mid); margin: 0; flex: 1; }
.ukw-card-b a { font-size: .92rem; font-weight: 700; }

/* full-bleed feature strip (photo + veil) */
.ukw-feature { position: relative; overflow: hidden; background: var(--ink); margin-top: 44px; margin-bottom: 10px; }
.ukw-feature-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ukw-feature-veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(63,22,110,.95) 0%, rgba(63,22,110,.75) 52%, rgba(63,22,110,.3) 100%); }
.ukw-feature-in { position: relative; max-width: 1200px; margin: 0 auto; padding: 56px 20px; display: flex; flex-direction: column; gap: 16px; }
.ukw-feature-in > * { max-width: 660px; }
.ukw-feature-badge { display: inline-flex; align-self: flex-start; background: #fff; color: var(--purple); font-size: .8rem; font-weight: 800; padding: 7px 14px; border-radius: 999px; animation: ukwPulse 2.6s ease infinite; }
.ukw-feature h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); font-weight: 800; letter-spacing: -.03em; color: #fff; margin: 0; }
.ukw-feature p { color: rgba(255,255,255,.88); margin: 0; }
.ukw-feature-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }

/* stats band */
.ukw-stats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; text-align: center; padding: 40px 0 14px; }
@media (min-width: 768px) { .ukw-stats { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.ukw-stats b { display: block; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -.04em; color: var(--purple); }
.ukw-stats span { font-size: .88rem; color: var(--grey-mid); }

/* three-up benefits */
.ukw-3col { display: grid; grid-template-columns: 1fr; gap: 18px; padding-top: 8px; }
@media (min-width: 768px) { .ukw-3col { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.ukw-3col > div { background: var(--grey-50); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 22px; transition: box-shadow .25s ease, border-color .25s ease; }
.ukw-3col > div:hover { border-color: #D9C8F0; box-shadow: var(--shadow-card); }
.ukw-3col strong { display: block; font-size: 1.02rem; font-weight: 800; margin: 10px 0 6px; }
.ukw-3col p { font-size: .92rem; color: var(--grey-mid); margin: 0; }

/* checklist */
.ukw-checks { display: flex; flex-direction: column; gap: 10px; margin: 14px 0 8px; }
.ukw-checks li { display: flex; gap: 11px; align-items: flex-start; color: #2E2E36; }
.ukw-checks svg { flex-shrink: 0; margin-top: 4px; }

/* explore strip (link graph home, replaces sidebar) */
.ukw-explore { background: #17171D; border-bottom: 1px solid #26262E; }
.ukw-explore-in { max-width: 1200px; margin: 0 auto; padding: 36px 20px 10px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px 26px; }
@media (min-width: 900px) { .ukw-explore-in { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.ukw-explore h3 { font-size: .76rem; font-weight: 800; letter-spacing: .12em; color: #6F6F7C; margin: 14px 0 8px; }
.ukw-explore ul li { margin-bottom: 7px; }
.ukw-explore ul a { color: #C9C9D2; font-size: .87rem; }
.ukw-explore ul a:hover { color: var(--purple-lt); }
.ukw-foot { margin-top: 0; }

/* ============ v3: merged footer, comparison bars, close panels ============ */
.ukw-explore { display: none; } /* merged into footer */
.ukw-foot-top { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-start; justify-content: space-between; padding-bottom: 28px; border-bottom: 1px solid #26262E; margin-bottom: 26px; }
.ukw-foot-brand { max-width: 380px; display: flex; flex-direction: column; gap: 12px; }
.ukw-foot-blurb { color: #C2C2CC; }
.ukw-foot-links { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 26px; }
@media (min-width: 900px) { .ukw-foot-links { grid-template-columns: repeat(5, minmax(0,1fr)); } }
.ukw-foot-links h3 { margin-top: 12px; }
@media (min-width: 900px) { .ukw-foot-links h3 { margin-top: 0; } }

/* speed comparison bars (animate on scroll where supported) */
.ukw-compare { display: flex; flex-direction: column; gap: 16px; margin: 22px 0 6px; }
.ukw-compare-row { display: grid; grid-template-columns: 130px 1fr; gap: 12px; align-items: center; }
@media (min-width: 640px) { .ukw-compare-row { grid-template-columns: 170px 1fr; } }
.ukw-compare-row .lbl { font-weight: 800; font-size: .95rem; line-height: 1.25; }
.ukw-compare-row .lbl small { display: block; font-weight: 400; color: var(--grey-mid); font-size: .78rem; }
.ukw-bar { background: var(--grey-50); border: 1px solid var(--grey-border); border-radius: 999px; height: 36px; overflow: hidden; }
.ukw-bar-fill { height: 100%; border-radius: 999px; width: var(--w, 50%); min-width: 86px;
  background: linear-gradient(90deg, #8D5BC8, var(--purple));
  display: flex; align-items: center; justify-content: flex-end; padding: 0 12px;
  color: #fff; font-weight: 800; font-size: .85rem; white-space: nowrap;
  animation: ukwGrow 1.2s cubic-bezier(.2,.7,.2,1) both; }
.ukw-bar-fill--max { background: linear-gradient(90deg, var(--purple), #31135E); }
@keyframes ukwGrow { from { width: 0; min-width: 0; } }
@supports (animation-timeline: view()) {
  .ukw-bar-fill { animation: ukwGrow 1s cubic-bezier(.2,.7,.2,1) both; animation-timeline: view(); animation-range: entry 5% entry 45%; }
}
.ukw-compare-note { font-size: .8rem; color: var(--grey-mid); }

/* killer close panel */
.ukw-close { position: relative; overflow: hidden; border-radius: 16px; margin: 46px 0 12px;
  background: linear-gradient(120deg, #31135E, var(--purple)); color: #fff; padding: 42px 34px; box-shadow: var(--shadow-pop); }
.ukw-close::after { content: ""; position: absolute; right: -70px; top: -70px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.08); }
.ukw-close::before { content: ""; position: absolute; right: 60px; bottom: -90px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,.05); }
.ukw-close h2 { color: #fff; font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 800; letter-spacing: -.03em; margin: 0 0 8px; }
.ukw-close p { color: rgba(255,255,255,.87); margin: 0 0 20px; max-width: 580px; }
.ukw-close-ctas { display: flex; flex-wrap: wrap; gap: 12px; position: relative; }

/* theme pills */
.ukw-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 6px; }
.ukw-pills span { background: var(--purple-tint); color: var(--purple); font-weight: 700; font-size: .85rem; padding: 8px 15px; border-radius: 999px; }

/* ============ v4: footer legibility hard-fix, big page heroes, Trustpilot strip ============ */
.ukw-foot, .ukw-foot p, .ukw-foot .ukw-foot-blurb { color: #C6C6D0 !important; }
.ukw-foot-tel { color: #FFFFFF !important; }
.ukw-foot h3 { color: #8A8A96 !important; }
.ukw-foot ul a { color: #D6D6DE !important; }
.ukw-foot ul a:hover { color: #C9A6F0 !important; }
.ukw-foot-legal, .ukw-foot-legal a { color: #9A9AA6 !important; }
.ukw-foot-brand { gap: 14px; }
.ukw-foot-top { align-items: center; }

/* big per-page sales heroes */
.ukw-hero--page .ukw-hero-in { padding: 64px 20px; gap: 16px; }
@media (min-width: 768px) { .ukw-hero--page .ukw-hero-in { padding: 84px 32px; } }
.ukw-hero-title { font-size: clamp(1.8rem, 4.6vw, 3rem); line-height: 1.1; font-weight: 800; letter-spacing: -.04em; color: #fff; max-width: 780px; }
.ukw-hero--page .ukw-hero-sub { max-width: 620px; }

/* Trustpilot strip */
.ukw-tp { background: var(--grey-50); border-top: 1px solid var(--grey-border); }
.ukw-tp-in { max-width: 1200px; margin: 0 auto; padding: 26px 20px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 22px; text-align: center; }
.ukw-tp-stars { display: inline-flex; gap: 3px; }
.ukw-tp-stars span { width: 26px; height: 26px; background: #00B67A; display: inline-flex; align-items: center; justify-content: center; }
.ukw-tp-stars svg { display: block; }
.ukw-tp-txt { font-size: 1rem; color: var(--ink); }
.ukw-tp-txt strong { font-weight: 800; }
.ukw-tp-in a { font-weight: 700; }

/* ============ v5: real Trustpilot review cards ============ */
.ukw-reviews { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 768px) { .ukw-reviews { grid-template-columns: repeat(3, minmax(0,1fr)); } .ukw-reviews--2 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.ukw-review { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 10px; transition: box-shadow .25s ease, border-color .25s ease; }
.ukw-review:hover { border-color: #D9C8F0; box-shadow: var(--shadow-card); }
.ukw-review-stars { display: inline-flex; gap: 2px; }
.ukw-review-stars i { width: 18px; height: 18px; background: #00B67A; display: inline-flex; align-items: center; justify-content: center; }
.ukw-review p { font-size: .95rem; line-height: 1.6; color: #2E2E36; margin: 0; flex: 1; }
.ukw-review footer { font-size: .82rem; color: var(--grey-mid); font-weight: 600; }
.ukw-reviews-more { margin-top: 14px; font-weight: 700; display: inline-block; }


/* ============ v6: typographic cohesion ============ */
h1, h2, h3,
.column-center .title h1, .column-center .title h2, .column-center h2, .column-center h3,
.ukw-hero-title, .ukw-hero-rot > span,
.ukw-sec h2, .ukw-feature h2, .ukw-close h2,
.ukw-stats b, .ukw-card-b strong, .ukw-3col strong,
.ukw-logo, .ukw-nav a, .ukw-btn, .ukw-btn-ghost, .ukw-btn-light {
  font-family: var(--display);
}
.column-center .title h1, .column-center .title h2, .ukw-sec h2, .ukw-feature h2, .ukw-close h2 { font-weight: 700; letter-spacing: -.025em; }
.ukw-hero-title, .ukw-hero-rot > span { font-weight: 700; letter-spacing: -.03em; }
.ukw-stats b { font-weight: 800; }
.ukw-nav a { font-weight: 600; font-size: .94rem; }
.ukw-btn, .ukw-btn-ghost, .ukw-btn-light { font-weight: 600; }
/* sub-text: darker, tighter, clearly subordinate */
.ukw-sec-sub, .column-center .date { color: #47474F; font-size: 1rem; line-height: 1.6; }
.ukw-hero-sub { font-size: 1.05rem; }
.ukw-sec-kicker { font-family: var(--display); letter-spacing: .14em; font-size: .74rem; }

/* ============ v7/v8: quote form popup (fast, composited animations only) ============ */
html { scrollbar-gutter: stable; }
.ukw-modal-x { display: none; }
body.ukw-modal-open { overflow: hidden; }
@keyframes ukwModalIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes ukwCardIn { from { opacity: 0; transform: translateY(18px) scale(.985); } to { opacity: 1; transform: none; } }
body.ukw-modal-open #get-quote {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1200;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 4vh 16px; overflow-y: auto;
  background: rgba(16,16,20,.66);
  margin: 0; max-width: none;
  animation: ukwModalIn .16s ease both;
}
body.ukw-modal-open #get-quote .ukwcta-card {
  position: relative; width: 100%; max-width: 720px; margin: auto 0;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  animation: ukwCardIn .24s cubic-bezier(.2,.7,.2,1) both;
  will-change: transform, opacity;
}
body.ukw-modal-open .ukw-modal-x {
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: 10px; right: 12px; width: 38px; height: 38px;
  border: 0; border-radius: 50%; background: #EFE7F8; color: #5F259E;
  font-size: 24px; line-height: 1; cursor: pointer; font-family: inherit;
  transition: background .2s ease, transform .2s ease;
}
body.ukw-modal-open .ukw-modal-x:hover { background: #5F259E; color: #fff; transform: rotate(90deg); }

/* ============ v9: ambient motion + CTA pulse ============ */
/* slow Ken Burns drift on hero & feature imagery — runs by itself */
@keyframes ukwDrift { from { transform: scale(1) translateX(0); } to { transform: scale(1.07) translateX(-1.5%); } }
.ukw-hero-img, .ukw-feature-img { animation: ukwDrift 26s ease-in-out infinite alternate; will-change: transform; }

/* decorative circles in close panels slowly breathe */
@keyframes ukwOrb { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-14px, 10px) scale(1.12); } }
.ukw-close::after { animation: ukwOrb 9s ease-in-out infinite; }
.ukw-close::before { animation: ukwOrb 12s ease-in-out infinite reverse; }

/* scroll-driven section reveals (self-running; older browsers simply show content) */
@supports (animation-timeline: view()) {
  .ukw-sec, .ukw-stats, .ukw-reviews .ukw-review, .ukw-cards .ukw-card, .ukw-3col > div, .ukw-close {
    animation: ukwFadeUp .7s cubic-bezier(.2,.7,.2,1) both;
    animation-timeline: view();
    animation-range: entry 0% entry 34%;
  }
  .ukw-cards .ukw-card:nth-child(2), .ukw-3col > div:nth-child(2), .ukw-reviews .ukw-review:nth-child(2) { animation-range: entry 6% entry 40%; }
  .ukw-cards .ukw-card:nth-child(3), .ukw-3col > div:nth-child(3), .ukw-reviews .ukw-review:nth-child(3) { animation-range: entry 12% entry 46%; }
  .ukw-cards .ukw-card:nth-child(4) { animation-range: entry 18% entry 52%; }
}

/* gentle pulse on primary CTAs — draws the eye without shouting */
@keyframes ukwBtnBreathe {
  0%, 100% { box-shadow: 0 4px 14px rgba(95,37,158,.28); transform: scale(1); }
  50% { box-shadow: 0 6px 26px rgba(95,37,158,.5); transform: scale(1.015); }
}
.ukw-btn, .ukwcta .ukwcta-btn, .column-center .comments a, .ukw-btn-light {
  animation: ukwBtnBreathe 2.6s ease-in-out infinite;
}
.ukw-btn:hover, .ukwcta .ukwcta-btn:hover, .column-center .comments a:hover, .ukw-btn-light:hover {
  animation-play-state: paused;
}
.ukw-btn-light { --btn-glow: rgba(255,255,255,.25); }
@keyframes ukwBtnBreatheLight {
  0%, 100% { box-shadow: 0 4px 14px rgba(0,0,0,.18); transform: scale(1); }
  50% { box-shadow: 0 6px 26px rgba(255,255,255,.35); transform: scale(1.015); }
}
.ukw-btn-light { animation-name: ukwBtnBreatheLight; }

/* ============ v10: digital phone lines showcase (.ukw-dp-*) ============
   Long-form product-story page. All motion is pure CSS (composited transforms/
   opacity only) so the global prefers-reduced-motion wildcard neutralises it;
   base (unanimated) states are always the "settled" look. */

/* --- dark full-bleed canvas --- */
.ukw-dp-dark { background: #0B0B12; color: #fff; }
.ukw-dp-pad { max-width: 1200px; margin: 0 auto; padding: 76px 20px; }
.ukw-dp-dark .ukw-sec-kicker { color: var(--purple-lt); }
.ukw-dp-dark h2 { color: #fff; }
.ukw-dp-dark .ukw-sec-sub, .ukw-dp-dark p { color: rgba(255,255,255,.78); }

/* --- opening hero (in-body, meets the header) --- */
.ukw-dp-hero { position: relative; overflow: hidden; background: #08080E; margin-top: -34px; }
.ukw-dp-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center right; animation: ukwDrift 26s ease-in-out infinite alternate; will-change: transform; }
.ukw-dp-hero-veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,14,.94) 0%, rgba(8,8,14,.72) 44%, rgba(43,20,80,.18) 100%); }
.ukw-dp-hero-in { position: relative; max-width: 1200px; margin: 0 auto; padding: 92px 20px 108px; display: flex; flex-direction: column; gap: 20px; }
.ukw-dp-hero-title { font-family: var(--display); font-weight: 700; letter-spacing: -.035em; line-height: 1.05; color: #fff; font-size: clamp(2.2rem, 6.4vw, 4.2rem); max-width: 760px; }
.ukw-dp-hero-title em { font-style: normal; color: var(--purple-lt); }
.ukw-dp-hero-sub { font-size: 1.12rem; color: rgba(255,255,255,.84); max-width: 560px; }
@media (min-width: 768px) { .ukw-dp-hero-in { padding: 128px 32px 148px; } }

/* --- big statement interlude --- */
.ukw-dp-state { padding: 84px 0 30px; max-width: 860px; }
.ukw-dp-state p { font-family: var(--display); font-size: clamp(1.35rem, 3.2vw, 2.2rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.3; color: var(--ink); margin: 0 0 30px; }
.ukw-dp-state em { font-style: normal; color: var(--purple); }
.ukw-dp-state .ukw-dp-quiet { color: var(--grey-mid); font-weight: 700; }
@supports (animation-timeline: view()) {
  .ukw-dp-state p { animation: ukwFadeUp .7s cubic-bezier(.2,.7,.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 30%; }
}

/* --- turntable: four frames crossfade into a slow spin.
       Frame 1 is the base (visible when motion is off). --- */
.ukw-dp-spin { position: relative; width: min(540px, 82vw); aspect-ratio: 1 / 1; margin: 34px auto 6px; }
.ukw-dp-spin::before { content: ""; position: absolute; left: 8%; right: 8%; bottom: 2%; height: 16%; border-radius: 50%; background: radial-gradient(closest-side, rgba(95,37,158,.55), rgba(95,37,158,0)); filter: blur(14px); }
.ukw-dp-spin img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.ukw-dp-spin img:nth-child(1) { opacity: 1; animation: ukwSpinA 14s linear infinite; }
.ukw-dp-spin img:nth-child(2), .ukw-dp-spin img:nth-child(3), .ukw-dp-spin img:nth-child(4) { opacity: 0; animation: ukwSpinB 14s linear infinite; }
.ukw-dp-spin img:nth-child(2) { animation-delay: 3.5s; }
.ukw-dp-spin img:nth-child(3) { animation-delay: 7s; }
.ukw-dp-spin img:nth-child(4) { animation-delay: 10.5s; }
@keyframes ukwSpinA { /* visible first quarter, out, back in at the end */
  0% { opacity: 1; } 22% { opacity: 1; } 28% { opacity: 0; }
  72% { opacity: 0; } 97% { opacity: 0; } 100% { opacity: 1; }
}
@keyframes ukwSpinB {
  0% { opacity: 0; } 3% { opacity: 1; } 22% { opacity: 1; } 28% { opacity: 0; } 100% { opacity: 0; }
}
.ukw-dp-spin-cap { text-align: center; font-size: .88rem; color: rgba(255,255,255,.6); margin-top: 18px; }

/* --- split feature rows (image + copy) --- */
.ukw-dp-row { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; padding: 58px 0; }
@media (min-width: 900px) {
  .ukw-dp-row { grid-template-columns: 1fr 1fr; gap: 60px; }
  .ukw-dp-row--rev .ukw-dp-copy { order: -1; }
}
.ukw-dp-row img { border-radius: 16px; box-shadow: var(--shadow-pop); width: 100%; height: auto; }
.ukw-dp-copy .ukw-sec-kicker { margin-bottom: 8px; }
.ukw-dp-copy h2 { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: -.025em; margin: 0 0 12px; }
.ukw-dp-copy p { margin: 0 0 14px; }
.ukw-dp-dark .ukw-dp-copy h2 { color: #fff; }
@supports (animation-timeline: view()) {
  .ukw-dp-row > * { animation: ukwFadeUp .7s cubic-bezier(.2,.7,.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 32%; }
  .ukw-dp-row > *:nth-child(2) { animation-range: entry 8% entry 40%; }
}

/* --- live caller toast over the screen close-up --- */
.ukw-dp-shot { position: relative; }
.ukw-dp-toast { position: absolute; left: 16px; top: 16px; display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.97); color: var(--ink); border-radius: 13px; padding: 12px 18px 12px 13px;
  box-shadow: 0 14px 38px rgba(0,0,0,.4); font-size: .88rem; line-height: 1.35;
  animation: ukwToast 7.5s cubic-bezier(.2,.7,.2,1) infinite; max-width: calc(100% - 32px); }
.ukw-dp-toast b { display: block; font-weight: 800; }
.ukw-dp-toast small { color: var(--grey-mid); font-size: .8rem; }
.ukw-dp-toast-ring { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--purple); display: flex; align-items: center; justify-content: center; position: relative; }
.ukw-dp-toast-ring::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(95,37,158,.55); animation: ukwRingPulse 1.4s ease-out infinite; }
@keyframes ukwToast { 0% { opacity: 0; transform: translateY(-14px); } 7% { opacity: 1; transform: none; }
  78% { opacity: 1; transform: none; } 88% { opacity: 0; transform: translateY(-10px); } 100% { opacity: 0; } }
@keyframes ukwRingPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.75); opacity: 0; } }
.ukw-dp-toast--done { top: auto; bottom: 16px; left: auto; right: 16px; animation: ukwToastDone 7.5s cubic-bezier(.2,.7,.2,1) infinite; }
.ukw-dp-toast--done .ukw-dp-toast-ring { background: #1E7B45; }
.ukw-dp-toast--done .ukw-dp-toast-ring::after { content: none; }
@keyframes ukwToastDone { 0% { opacity: 0; transform: translateY(12px); } 38% { opacity: 0; transform: translateY(12px); }
  46% { opacity: 1; transform: none; } 78% { opacity: 1; } 88% { opacity: 0; } 100% { opacity: 0; } }

/* --- busy-lamp legend dots --- */
.ukw-dp-lamps { display: flex; flex-direction: column; gap: 12px; margin: 18px 0 6px; }
.ukw-dp-lamps li { display: flex; align-items: center; gap: 12px; }
.ukw-dp-lamp { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }
.ukw-dp-lamp--free { background: #35C06B; box-shadow: 0 0 10px rgba(53,192,107,.7); }
.ukw-dp-lamp--busy { background: #E04438; box-shadow: 0 0 10px rgba(224,68,56,.7); animation: ukwLampBlink 2.2s ease-in-out infinite; }
.ukw-dp-lamp--ring { background: #35C06B; box-shadow: 0 0 10px rgba(53,192,107,.7); animation: ukwLampBlink .9s ease-in-out infinite; }
@keyframes ukwLampBlink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* --- admin portal mockup (pure HTML/CSS, self-animating) --- */
.ukw-dp-portal { position: relative; background: #fff; border: 1px solid var(--grey-border); border-radius: 16px; box-shadow: var(--shadow-pop); overflow: hidden; max-width: 560px; margin: 0 auto; }
.ukw-dp-portal-bar { display: flex; align-items: center; gap: 6px; padding: 13px 16px; background: var(--grey-50); border-bottom: 1px solid var(--grey-border); }
.ukw-dp-portal-bar i { width: 11px; height: 11px; border-radius: 50%; background: #DCDCE4; }
.ukw-dp-portal-bar span { margin-left: 10px; font-size: .8rem; color: var(--grey-mid); font-weight: 600; }
.ukw-dp-portal-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 17px 20px; border-bottom: 1px solid var(--grey-50); }
.ukw-dp-portal-row:last-child { border-bottom: 0; }
.ukw-dp-portal-row b { font-size: .95rem; font-weight: 700; display: block; }
.ukw-dp-portal-row small { display: block; color: var(--grey-mid); font-size: .8rem; }
.ukw-dp-chip { font-size: .78rem; font-weight: 700; color: var(--purple); background: var(--purple-tint); border-radius: 999px; padding: 5px 12px; white-space: nowrap; }
/* the toggle that "gets clicked" on a loop — base state: on */
.ukw-dp-tog { width: 46px; height: 26px; border-radius: 999px; background: var(--purple); position: relative; flex-shrink: 0; animation: ukwTogBg 9s infinite; }
.ukw-dp-tog::after { content: ""; position: absolute; top: 3px; left: 23px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.25); animation: ukwTogKnob 9s infinite; }
@keyframes ukwTogBg { 0%, 30% { background: #D5D5DD; } 34%, 100% { background: var(--purple); } }
@keyframes ukwTogKnob { 0%, 30% { transform: translateX(-20px); } 34%, 100% { transform: none; } }
/* roaming "cursor" that performs the click */
.ukw-dp-cursor { position: absolute; z-index: 3; width: 22px; height: 22px; border-radius: 50%; background: rgba(95,37,158,.35); border: 2px solid var(--purple); top: 30%; right: 44px; animation: ukwCursor 9s cubic-bezier(.4,.1,.2,1) infinite; }
@keyframes ukwCursor {
  0% { transform: translate(-160px, 130px); opacity: 0; }
  16% { transform: translate(-40px, 44px); opacity: 1; }
  27% { transform: none; opacity: 1; }
  30% { transform: scale(.72); }
  34% { transform: scale(1); }
  55% { transform: translate(-10px, 90px); opacity: 1; }
  70% { transform: translate(-10px, 90px); opacity: 0; }
  100% { transform: translate(-160px, 130px); opacity: 0; }
}
/* "saved" confirmation chip — base state: visible */
.ukw-dp-saved { position: absolute; right: 14px; bottom: 12px; display: inline-flex; align-items: center; gap: 7px; background: #EAF7EF; color: #1E7B45; font-size: .8rem; font-weight: 800; border-radius: 999px; padding: 6px 13px; animation: ukwSaved 9s infinite; }
@keyframes ukwSaved { 0%, 36% { opacity: 0; transform: translateY(8px); } 42%, 88% { opacity: 1; transform: none; } 94%, 100% { opacity: 0; } }
.ukw-dp-portal-note { text-align: center; font-size: .85rem; color: var(--grey-mid); margin-top: 16px; }

/* --- call-flow diagram (HTML cards + flowing connectors) --- */
.ukw-dp-flow { display: grid; grid-template-columns: 1fr; gap: 0; align-items: center; margin-top: 34px; }
@media (min-width: 900px) { .ukw-dp-flow { grid-template-columns: 1fr 90px 1.1fr 90px 1.2fr; } }
.ukw-dp-node { background: #14141D; border: 1px solid #26263A; border-radius: 16px; padding: 24px 22px; text-align: center; }
.ukw-dp-node b { display: block; color: #fff; font-family: var(--display); font-size: 1.02rem; font-weight: 700; margin-top: 12px; }
.ukw-dp-node p { font-size: .86rem; color: rgba(255,255,255,.6); margin: 6px 0 0; }
.ukw-dp-node--hub { border-color: rgba(95,37,158,.75); box-shadow: 0 0 44px rgba(95,37,158,.28); position: relative; }
.ukw-dp-hubicon { width: 62px; height: 62px; margin: 0 auto; border-radius: 50%; background: var(--purple); display: flex; align-items: center; justify-content: center; position: relative; }
.ukw-dp-hubicon::before, .ukw-dp-hubicon::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(201,166,240,.6); animation: ukwRingPulse 2.6s ease-out infinite; }
.ukw-dp-hubicon::after { animation-delay: 1.3s; }
/* flowing dashes between nodes */
.ukw-dp-pipe { height: 46px; width: 3px; margin: 0 auto; background: repeating-linear-gradient(180deg, var(--purple-lt) 0 7px, transparent 7px 15px); background-size: 100% 30px; animation: ukwPipeV 1.1s linear infinite; opacity: .85; }
@keyframes ukwPipeV { to { background-position: 0 30px; } }
@media (min-width: 900px) {
  .ukw-dp-pipe { height: 3px; width: auto; margin: 0 6px; background: repeating-linear-gradient(90deg, var(--purple-lt) 0 7px, transparent 7px 15px); background-size: 30px 100%; animation: ukwPipeH 1.1s linear infinite; }
  @keyframes ukwPipeH { to { background-position: 30px 0; } }
}
/* destination stack: each lights in turn */
.ukw-dp-dests { display: flex; flex-direction: column; gap: 12px; }
.ukw-dp-dest { display: flex; align-items: center; gap: 13px; background: #14141D; border: 1px solid #26263A; border-radius: 13px; padding: 15px 17px; animation: ukwDestGlow 7.5s ease-in-out infinite; }
.ukw-dp-dest:nth-child(2) { animation-delay: 2.5s; }
.ukw-dp-dest:nth-child(3) { animation-delay: 5s; }
@keyframes ukwDestGlow { 0%, 100% { border-color: #26263A; box-shadow: none; } 12% { border-color: rgba(201,166,240,.9); box-shadow: 0 0 26px rgba(95,37,158,.45); } 30% { border-color: #26263A; box-shadow: none; } }
.ukw-dp-dest b { color: #fff; font-size: .95rem; font-weight: 700; display: block; }
.ukw-dp-dest small { color: rgba(255,255,255,.58); font-size: .8rem; display: block; }
.ukw-dp-dest svg { flex-shrink: 0; }
.ukw-dp-flow-note { text-align: center; font-size: .85rem; color: rgba(255,255,255,.55); margin-top: 26px; }

/* --- animated feature tiles --- */
.ukw-dp-grid { display: grid; grid-template-columns: 1fr; gap: 18px; padding-top: 10px; }
@media (min-width: 640px) { .ukw-dp-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .ukw-dp-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.ukw-dp-tile { background: var(--grey-50); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 24px 22px; transition: box-shadow .25s ease, border-color .25s ease; }
.ukw-dp-tile:hover { border-color: #D9C8F0; box-shadow: var(--shadow-card); }
.ukw-dp-tile strong { display: block; font-family: var(--display); font-size: 1.04rem; font-weight: 800; margin: 12px 0 6px; }
.ukw-dp-tile p { font-size: .92rem; color: var(--grey-mid); margin: 0; }
.ukw-dp-ico { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
@supports (animation-timeline: view()) {
  .ukw-dp-grid .ukw-dp-tile { animation: ukwFadeUp .7s cubic-bezier(.2,.7,.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 34%; }
  .ukw-dp-grid .ukw-dp-tile:nth-child(3n+2) { animation-range: entry 6% entry 40%; }
  .ukw-dp-grid .ukw-dp-tile:nth-child(3n) { animation-range: entry 12% entry 46%; }
}
/* per-icon micro-animations (all transform/opacity) */
.ukw-dp-ico .arc1 { animation: ukwArc 2.4s ease-in-out infinite; transform-origin: bottom left; }
.ukw-dp-ico .arc2 { animation: ukwArc 2.4s ease-in-out .3s infinite; transform-origin: bottom left; }
.ukw-dp-ico .arc3 { animation: ukwArc 2.4s ease-in-out .6s infinite; transform-origin: bottom left; }
@keyframes ukwArc { 0%, 100% { opacity: .25; } 30% { opacity: 1; } }
.ukw-dp-ico .recdot { animation: ukwLampBlink 1.6s ease-in-out infinite; transform-origin: center; }
.ukw-dp-ico .eq1 { animation: ukwEq 1.1s ease-in-out infinite; transform-origin: center bottom; }
.ukw-dp-ico .eq2 { animation: ukwEq 1.1s ease-in-out .2s infinite; transform-origin: center bottom; }
.ukw-dp-ico .eq3 { animation: ukwEq 1.1s ease-in-out .4s infinite; transform-origin: center bottom; }
@keyframes ukwEq { 0%, 100% { transform: scaleY(.45); } 50% { transform: scaleY(1); } }
.ukw-dp-ico .hand { animation: ukwHand 6s linear infinite; transform-origin: 12px 12px; }
@keyframes ukwHand { to { transform: rotate(360deg); } }
.ukw-dp-ico .fly { animation: ukwFly 2.8s ease-in-out infinite; }
@keyframes ukwFly { 0%, 100% { transform: none; opacity: 1; } 45% { transform: translate(7px, -7px); opacity: 0; } 55% { transform: translate(-7px, 7px); opacity: 0; } }
.ukw-dp-ico .blf1 { animation: ukwLampBlink 2s ease-in-out infinite; }
.ukw-dp-ico .blf2 { animation: ukwLampBlink 2s ease-in-out .5s infinite; }
.ukw-dp-ico .blf3 { animation: ukwLampBlink 2s ease-in-out 1s infinite; }

/* --- scenario cards: the answer fades up beneath each mishap --- */
.ukw-dp-scen { display: grid; grid-template-columns: 1fr; gap: 18px; padding-top: 10px; }
@media (min-width: 640px) { .ukw-dp-scen { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .ukw-dp-scen { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.ukw-dp-scen > div { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 22px; transition: box-shadow .25s ease, border-color .25s ease; }
.ukw-dp-scen > div:hover { border-color: #D9C8F0; box-shadow: var(--shadow-card); }
.ukw-dp-scen b { display: block; font-family: var(--display); font-weight: 800; font-size: 1.02rem; }
.ukw-dp-scen small { display: block; color: var(--grey-mid); font-size: .84rem; margin-top: 2px; }
.ukw-dp-scen-ans { display: flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--purple); font-weight: 700; font-size: .9rem; }
.ukw-dp-scen-ans svg { animation: ukwNudge 1.8s ease-in-out infinite; }
@keyframes ukwNudge { 0%, 100% { transform: none; } 50% { transform: translateX(5px); } }

/* --- migration steps --- */
.ukw-dp-steps { counter-reset: dpstep; display: grid; grid-template-columns: 1fr; gap: 20px; padding-top: 12px; }
@media (min-width: 900px) { .ukw-dp-steps { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.ukw-dp-step { position: relative; background: var(--grey-50); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 24px 20px 22px; }
.ukw-dp-step::before { counter-increment: dpstep; content: counter(dpstep); display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--purple); color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.05rem; margin-bottom: 12px; box-shadow: 0 4px 14px rgba(95,37,158,.35); }
.ukw-dp-step b { display: block; font-family: var(--display); font-weight: 800; font-size: 1rem; margin-bottom: 6px; }
.ukw-dp-step p { font-size: .9rem; color: var(--grey-mid); margin: 0; }
@supports (animation-timeline: view()) {
  .ukw-dp-steps .ukw-dp-step { animation: ukwFadeUp .7s cubic-bezier(.2,.7,.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 34%; }
  .ukw-dp-steps .ukw-dp-step:nth-child(2) { animation-range: entry 6% entry 40%; }
  .ukw-dp-steps .ukw-dp-step:nth-child(3) { animation-range: entry 12% entry 46%; }
  .ukw-dp-steps .ukw-dp-step:nth-child(4) { animation-range: entry 18% entry 52%; }
}

/* ============ v11: sitewide showcase rollout ============
   Pillar router cards, switch-off timeline, live-status mockups, 5-line hero
   rotator, dark-section checks, and ambient micro-reveals for existing
   components (checks/pills/stats) — all pure CSS, reduced-motion safe. */

/* --- hero rotator, five-line variant (20s cycle) --- */
@keyframes ukwProp5 {
  0% { opacity: 0; transform: translateY(20px); }
  3.2% { opacity: 1; transform: none; }
  18.4% { opacity: 1; transform: none; }
  21.6% { opacity: 0; transform: translateY(-16px); }
  100% { opacity: 0; }
}
.ukw-hero-rot--5 > span { animation-name: ukwProp5; animation-duration: 20s; }
.ukw-hero-rot--5 > span:nth-child(2) { animation-delay: 4s; }
.ukw-hero-rot--5 > span:nth-child(3) { animation-delay: 8s; }
.ukw-hero-rot--5 > span:nth-child(4) { animation-delay: 12s; }
.ukw-hero-rot--5 > span:nth-child(5) { animation-delay: 16s; }

/* --- three-pillar router cards (homepage) --- */
.ukw-pillars { display: grid; grid-template-columns: 1fr; gap: 20px; padding-top: 12px; }
@media (min-width: 900px) { .ukw-pillars { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.ukw-pillar { position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: 18px;
  background: #0B0B12; color: #fff; border: 1px solid #26263A;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.ukw-pillar:hover { transform: translateY(-6px); border-color: rgba(201,166,240,.7); box-shadow: 0 18px 44px rgba(95,37,158,.28); }
.ukw-pillar > img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.ukw-pillar-tag { position: absolute; top: 14px; left: 14px; background: rgba(16,16,20,.72); border: 1px solid rgba(201,166,240,.5);
  color: #E9DDF8; font-family: var(--display); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px); }
.ukw-pillar-b { display: flex; flex-direction: column; gap: 9px; padding: 22px 22px 24px; flex: 1; }
.ukw-pillar-b b { font-family: var(--display); font-size: 1.22rem; font-weight: 700; letter-spacing: -.02em; line-height: 1.25; }
.ukw-pillar-b p { font-size: .93rem; color: rgba(255,255,255,.72); margin: 0; flex: 1; }
.ukw-pillar-cta { font-family: var(--display); font-weight: 700; font-size: .95rem; color: var(--purple-lt) !important; display: inline-flex; align-items: center; gap: 8px; }
.ukw-pillar-cta svg { animation: ukwNudge 1.8s ease-in-out infinite; }
@supports (animation-timeline: view()) {
  .ukw-pillars .ukw-pillar { animation: ukwFadeUp .7s cubic-bezier(.2,.7,.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 34%; }
  .ukw-pillars .ukw-pillar:nth-child(2) { animation-range: entry 6% entry 40%; }
  .ukw-pillars .ukw-pillar:nth-child(3) { animation-range: entry 12% entry 46%; }
}

/* --- switch-off timeline (2025 → Jan 2027 → 2030) --- */
.ukw-tl { position: relative; margin: 40px 0 8px; }
.ukw-tl-track { position: relative; height: 8px; border-radius: 999px; background: var(--grey-50); border: 1px solid var(--grey-border); }
.ukw-dp-dark .ukw-tl-track { background: #1C1C28; border-color: #26263A; }
.ukw-tl-fill { position: absolute; inset: 0; border-radius: 999px; background: linear-gradient(90deg, #8D5BC8, var(--purple)); transform-origin: left; animation: ukwTlGrow 1.6s cubic-bezier(.2,.7,.2,1) both; }
@keyframes ukwTlGrow { from { transform: scaleX(0); } }
@supports (animation-timeline: view()) {
  .ukw-tl-fill { animation: ukwTlGrow 1.2s cubic-bezier(.2,.7,.2,1) both; animation-timeline: view(); animation-range: entry 10% entry 60%; }
}
.ukw-tl-dot { position: absolute; top: 50%; transform: translate(-50%, -50%); width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 5px solid var(--purple); z-index: 1; }
.ukw-tl-dot--pulse::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid rgba(95,37,158,.6); animation: ukwRingPulse 2s ease-out infinite; }
.ukw-tl-labels { display: flex; justify-content: space-between; gap: 8px; margin-top: 18px; }
.ukw-tl-labels > div { flex: 1; }
.ukw-tl-labels > div:nth-child(2) { text-align: center; }
.ukw-tl-labels > div:last-child { text-align: right; }
.ukw-tl-labels b { display: block; font-family: var(--display); font-weight: 800; font-size: 1.05rem; letter-spacing: -.02em; }
.ukw-tl-labels small { color: var(--grey-mid); font-size: .8rem; line-height: 1.45; display: inline-block; max-width: 200px; }
.ukw-dp-dark .ukw-tl-labels b { color: #fff; }
.ukw-dp-dark .ukw-tl-labels small { color: rgba(255,255,255,.6); }

/* --- live status rows (mock screenshots reuse .ukw-dp-portal) --- */
.ukw-live { width: 10px; height: 10px; border-radius: 50%; background: #35C06B; box-shadow: 0 0 9px rgba(53,192,107,.8); display: inline-block; animation: ukwLampBlink 2.2s ease-in-out infinite; }
.ukw-dp-portal .ukw-bar { margin-top: 8px; height: 26px; }
.ukw-dp-portal .ukw-bar-fill { font-size: .78rem; min-width: 64px; }

/* --- checks on dark surfaces --- */
.ukw-dp-dark .ukw-checks li { color: rgba(255,255,255,.85); }
.ukw-dp-dark .ukw-checks li strong { color: #fff; }
.ukw-dp-dark a:not(.ukw-btn):not(.ukw-btn-light):not(.ukw-btn-ghost) { color: var(--purple-lt); }

/* --- ambient micro-reveals for existing components (free sitewide upgrade) --- */
@keyframes ukwPillPop { from { opacity: 0; transform: scale(.7); } 70% { opacity: 1; transform: scale(1.06); } to { opacity: 1; transform: none; } }
@supports (animation-timeline: view()) {
  .ukw-checks li { animation: ukwFadeUp .6s cubic-bezier(.2,.7,.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 26%; }
  .ukw-checks li:nth-child(2) { animation-range: entry 5% entry 31%; }
  .ukw-checks li:nth-child(3) { animation-range: entry 10% entry 36%; }
  .ukw-checks li:nth-child(4) { animation-range: entry 15% entry 41%; }
  .ukw-checks li:nth-child(5) { animation-range: entry 20% entry 46%; }
  .ukw-pills span { animation: ukwPillPop .55s cubic-bezier(.2,.7,.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 30%; }
  .ukw-pills span:nth-child(2) { animation-range: entry 6% entry 36%; }
  .ukw-pills span:nth-child(3) { animation-range: entry 12% entry 42%; }
  .ukw-pills span:nth-child(4) { animation-range: entry 18% entry 48%; }
  .ukw-pills span:nth-child(5) { animation-range: entry 24% entry 54%; }
  .ukw-stats > div { animation: ukwPillPop .6s cubic-bezier(.2,.7,.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 34%; }
  .ukw-stats > div:nth-child(2) { animation-range: entry 6% entry 40%; }
  .ukw-stats > div:nth-child(3) { animation-range: entry 12% entry 46%; }
  .ukw-stats > div:nth-child(4) { animation-range: entry 18% entry 52%; }
}

/* ============ v12: display typography — set like a headline, not a paragraph ============
   Big display headings were inheriting the body's 1.65 line-height, and multi-line
   headlines could strand a lone word on the last line. Tight leading to match the
   heroes (the brand's tight/heavy signature) + balanced wrapping (progressive). */
.ukw-sec h2, .ukw-feature h2, .ukw-close h2,
.column-center .title h1, .column-center .title h2,
.ukw-dp-copy h2 { line-height: 1.15; text-wrap: balance; }
.column-center h2, .column-center h3 { line-height: 1.3; }
.ukw-hero-title, .ukw-dp-hero-title, .ukw-hero-rot > span,
.ukw-dp-state p, .ukw-pillar-b b { text-wrap: balance; }
.ukw-sec-sub, .ukw-hero-sub, .ukw-dp-hero-sub { text-wrap: pretty; }

/* ============ v13: heading weight, optically matched per surface ============
   White-on-dark text renders optically heavier than black-on-white at the same
   weight. Dark-section headings stay 700 (the approved look); light-surface
   display headings go to Sora 800 with tighter tracking so both surfaces read
   as the same headline style. Colour stays brand ink — no extra purple. */
.ukw-sec h2, .ukw-feature h2, .ukw-close h2,
.column-center .title h1, .column-center .title h2,
.ukw-dp-copy h2 { font-weight: 800; letter-spacing: -.03em; }
.ukw-dp-dark .ukw-sec h2, .ukw-dp-dark .ukw-dp-copy h2,
.ukw-feature h2, .ukw-close h2 { font-weight: 700; letter-spacing: -.025em; }

/* ============ v14: dark-surface text legibility fix ============
   In-body dark sections sit inside .column-center, whose legacy content rule
   (.column-center p, specificity 0-1-1) beats single-class colours (0-1-0) —
   so light-on-dark text was rendering near-black on near-black. Re-assert the
   intended colours at higher specificity. Any future single-class <p> colour
   on a dark surface needs the .column-center prefix too. */
.column-center .ukw-dp-hero-sub { color: rgba(255,255,255,.84); }
.column-center .ukw-dp-spin-cap { color: rgba(255,255,255,.6); }
.column-center .ukw-dp-flow-note { color: rgba(255,255,255,.55); }
.column-center .ukw-dp-portal-note { color: var(--grey-mid); }
.column-center .ukw-dp-dark .ukw-compare-note { color: rgba(255,255,255,.55); }
