/* ====================================================================
   Wednesday Technology — Enterprise Systems Engineering Platform
   Elite Design System & UI v3.0
   ==================================================================== */

/* ── Core Design Tokens ── */
:root {
  --bg:           #08090c;
  --bg-alt:       #0d0f15;
  --bg-card:      #12141d;
  
  --surface:      rgba(255, 255, 255, 0.035);
  --surface-h:    rgba(255, 255, 255, 0.065);
  --border:       rgba(255, 255, 255, 0.08);
  --border-h:     rgba(255, 255, 255, 0.18);
  --border-cyan:  rgba(56, 189, 248, 0.25);

  --text:         #f3f4f6;
  --text-2:       rgba(243, 244, 246, 0.65);
  --text-3:       rgba(243, 244, 246, 0.38);

  --cyan:         #38bdf8;
  --cyan-glow:    rgba(56, 189, 248, 0.25);
  --orange:       #f07c40;
  --orange-glow:  rgba(240, 124, 64, 0.25);
  --green:        #34d399;
  --green-glow:   rgba(52, 211, 153, 0.25);

  --sans:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
  --mono:  'JetBrains Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Global Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img, svg {
  display: block;
}

button {
  cursor: none;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Container Layout ── */
.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-dark {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-alt {
  background: #0a0b10;
}

/* ====================================================================
   INTERACTIVE CURSOR
   ==================================================================== */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: left, top;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--cyan);
  top: 0; left: 0;
  transition: opacity .2s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(56, 189, 248, 0.45);
  top: 0; left: 0;
  transition: width .35s var(--ease), height .35s var(--ease),
              border-color .35s, opacity .2s;
}
.cursor-ring.hovered {
  width: 52px; height: 52px;
  border-color: var(--orange);
  background: rgba(240, 124, 64, 0.05);
}

/* ====================================================================
   TOP TICKER BANNER
   ==================================================================== */
.ticker-bar {
  background: rgba(13, 15, 21, 0.95);
  border-bottom: 1px solid var(--border);
  padding: .45rem 1rem;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--text-2);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 101;
}

.ticker-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  letter-spacing: .03em;
}

.ticker-item strong {
  color: var(--text);
}

.ticker-sep {
  color: var(--text-3);
}

.t-dot {
  width: 6px; height: 6px; border-radius: 50%; display: inline-block;
}
.t-green  { background: var(--green); box-shadow: 0 0 8px var(--green); }
.t-blue   { background: var(--cyan);  box-shadow: 0 0 8px var(--cyan); }
.t-orange { background: var(--orange); box-shadow: 0 0 8px var(--orange); }

/* ====================================================================
   NAVIGATION BAR
   ==================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform .6s var(--ease), opacity .6s;
}
.nav.show { transform: translateY(0); opacity: 1; }

.nav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 800;
  letter-spacing: -.02em;
  display: inline-flex; align-items: center; gap: .6rem;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .9; }

.site-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: transform .25s var(--ease);
}
.site-logo-img:hover {
  transform: scale(1.04);
}

.hero-title-group {
  display: inline-flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.25rem);
  flex-wrap: wrap;
}

.hero-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem .85rem;
  background: #000000;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
  margin-top: 1.2rem;
  transform: translateY(6px);
  transition: transform .35s var(--ease), border-color .3s, box-shadow .3s;
}
.hero-logo-card:hover {
  transform: translateY(4px) scale(1.03);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(56, 189, 248, 0.15);
}

.hero-card-img {
  height: clamp(3rem, 6.8vw, 5.4rem);
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 44px;
}

.logo-tag {
  font-family: var(--mono);
  font-size: .6rem; font-weight: 600;
  letter-spacing: .12em;
  color: var(--cyan);
  padding: .2rem .5rem;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 4px;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }

.nav-link {
  font-size: .875rem; font-weight: 500; color: var(--text-2);
  transition: color .2s;
}
.nav-link:hover { color: var(--text); }

.nav-btn {
  font-size: .85rem; font-weight: 600;
  color: #08090c; background: #ffffff;
  padding: .55rem 1.35rem; border-radius: 100px;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
  transition: transform .25s var(--ease), background .2s, box-shadow .25s;
}
.nav-btn:hover {
  transform: translateY(-1px) scale(1.02);
  background: var(--text);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.nav-hamburger {
  display: none; flex-direction: column;
  gap: 5px; width: 24px;
}
.nav-hamburger span {
  height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .3s;
}

/* ====================================================================
   HERO SECTION
   ==================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

/* Aurora Background Animated Wave Effect */
.aurora-bg {
  position: absolute;
  inset: -20px;
  opacity: 0.4;
  pointer-events: none;
  filter: blur(16px);
  will-change: transform;

  --dark-gradient: repeating-linear-gradient(100deg, #08090c 0%, #08090c 7%, transparent 10%, transparent 12%, #08090c 16%);
  --aurora: repeating-linear-gradient(100deg, #38bdf8 10%, #818cf8 15%, #60a5fa 20%, #c084fc 25%, #3b82f6 30%);

  background-image: var(--dark-gradient), var(--aurora);
  background-size: 300% 200%;
  background-position: 50% 50%, 50% 50%;
  mask-image: radial-gradient(ellipse at 50% 40%, black 25%, transparent 80%);
}

.aurora-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--dark-gradient), var(--aurora);
  background-size: 200% 100%;
  background-attachment: fixed;
  mix-blend-mode: difference;
  animation: auroraAnimation 45s linear infinite;
}

@keyframes auroraAnimation {
  from {
    background-position: 50% 50%, 50% 50%;
  }
  to {
    background-position: 350% 50%, 350% 50%;
  }
}


.glow-sphere {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
  animation: floatSpheres 14s ease-in-out infinite alternate;
}
.sphere-1 {
  width: 520px; height: 520px;
  background: rgba(56, 189, 248, 0.08);
  top: -140px; left: -100px;
}
.sphere-2 {
  width: 420px; height: 420px;
  background: rgba(240, 124, 64, 0.07);
  bottom: -100px; right: -80px;
  animation-delay: -6s;
}
.sphere-3 {
  width: 320px; height: 320px;
  background: rgba(52, 211, 153, 0.05);
  top: 35%; left: 50%;
  animation-delay: -10s;
}

@keyframes floatSpheres {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -25px) scale(1.05); }
  100% { transform: translate(-20px, 35px) scale(0.95); }
}

.tech-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 40%, black 40%, transparent 85%);
}

.hero-content {
  position: relative; z-index: 1;
  padding: 8rem 2rem 5rem;
  max-width: 1140px; margin: 0 auto; width: 100%;
}

.live-status-pill {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--mono);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: .45rem 1rem; border-radius: 100px;
  margin-bottom: 2.25rem;
  backdrop-filter: blur(12px);
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: livePulse 2.2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 6px var(--green); }
  50% { box-shadow: 0 0 16px var(--green), 0 0 24px rgba(52, 211, 153, 0.5); }
}

/* Hero Title */
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.75rem, 8.5vw, 7.25rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin-bottom: 2rem;
  overflow: visible;
}

.hero-word {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, rgba(243, 244, 246, 0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.hero-word.in {
  opacity: 1;
  transform: translateY(0);
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 300; line-height: 1.8;
  color: var(--text-2); max-width: 520px;
  margin-bottom: 2.75rem;
}

.hero-cta-group {
  display: flex; align-items: center; gap: 1.25rem;
  flex-wrap: wrap; margin-bottom: 3.5rem;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.85rem; border-radius: 100px;
  background: var(--orange); color: #fff;
  font-size: .92rem; font-weight: 600;
  box-shadow: 0 0 30px var(--orange-glow), 0 4px 16px rgba(240, 124, 64, 0.25);
  transition: transform .3s var(--ease), box-shadow .3s, gap .2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  gap: .85rem;
  box-shadow: 0 0 45px var(--orange-glow), 0 8px 24px rgba(240, 124, 64, 0.35);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.75rem; border-radius: 100px;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border);
  font-size: .92rem; font-weight: 500;
  transition: background .25s, border-color .25s, transform .25s var(--ease);
}
.btn-secondary:hover {
  background: var(--surface-h);
  border-color: var(--border-h);
  transform: translateY(-2px);
}

/* Metrics Dashboard Bar */
.hero-metrics {
  display: inline-flex; align-items: center; gap: 2rem;
  padding: 1.25rem 2rem;
  background: rgba(18, 20, 29, 0.7);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  margin-bottom: 3rem;
}

.metric-item { display: flex; flex-direction: column; gap: .2rem; }

.metric-val {
  font-family: var(--mono);
  font-size: 1.35rem; font-weight: 700;
  color: var(--cyan);
}

.metric-lbl {
  font-size: .75rem; font-weight: 500;
  color: var(--text-3); text-transform: uppercase;
  letter-spacing: .05em;
}

.metric-divider {
  width: 1px; height: 32px;
  background: var(--border);
}

.hero-scroll {
  display: flex; align-items: center; gap: .8rem;
}
.scroll-label {
  font-family: var(--mono);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-3);
}
.scroll-track {
  width: 40px; height: 1px;
  background: var(--border); position: relative; overflow: hidden;
}
.scroll-thumb {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--cyan);
  transform: translateX(-100%);
  animation: scanTrack 2.5s ease-in-out infinite;
}
@keyframes scanTrack {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ====================================================================
   SECTION HEADINGS & LABELS
   ==================================================================== */
.section-label {
  font-family: var(--mono);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.12;
  margin-bottom: 2.25rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-2); line-height: 1.75;
  margin-top: -1.25rem; margin-bottom: 3rem; max-width: 680px;
}

/* ====================================================================
   CAPABILITIES / SERVICES GRID
   ==================================================================== */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  display: flex; flex-direction: column; gap: 1.15rem;
  transition: transform .4s var(--ease), border-color .35s, box-shadow .35s;
}
.cap-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-cyan);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(56, 189, 248, 0.08);
}

.cap-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
}

.cap-title {
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: -.01em; color: var(--text);
}

.cap-desc {
  font-size: .92rem; line-height: 1.7;
  color: var(--text-2); flex: 1;
}

.cap-tags {
  display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .5rem;
}
.cap-tags span {
  font-family: var(--mono);
  font-size: .65rem; font-weight: 600;
  padding: .25rem .65rem; border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-3);
}

/* ====================================================================
   PRODUCTS SECTION
   ==================================================================== */
.products-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 4rem;
}

.pcard {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: transform .4s var(--ease), border-color .35s;
}
.pcard:hover { transform: translateY(-6px); border-color: var(--border-h); }

.pcard-top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
}
.pcard-slate .pcard-top-line {
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.pcard-blackfyre .pcard-top-line {
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.pcard-glow {
  position: absolute; inset: 0; border-radius: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.pcard-slate .pcard-glow {
  background: radial-gradient(ellipse at 30% 0%, var(--cyan-glow), transparent 65%);
}
.pcard-blackfyre .pcard-glow {
  background: radial-gradient(ellipse at 70% 0%, var(--orange-glow), transparent 65%);
}
.pcard:hover .pcard-glow { opacity: 1; }

.pcard-body {
  position: relative; z-index: 1;
  padding: 2.25rem; display: flex; flex-direction: column; gap: 1.25rem;
  min-height: 250px;
}

.pcard-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
}

.pcard-name {
  font-family: var(--serif);
  font-size: 1.85rem; font-weight: 700;
  letter-spacing: -.02em; display: block;
  margin-bottom: .25rem;
  transition: opacity .2s;
}
.pcard-name:hover { opacity: .8; }
.pcard-name-slate    { color: var(--cyan); }
.pcard-name-blackfyre { color: var(--orange); }

.pcard-tag {
  font-family: var(--mono);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-3);
}

.pcard-pill {
  font-family: var(--mono);
  font-size: .62rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 100px;
}
.pcard-pill-blue {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--cyan);
}
.pcard-pill-orange {
  background: rgba(240, 124, 64, 0.1);
  border: 1px solid rgba(240, 124, 64, 0.25);
  color: var(--orange);
}

.pcard-desc {
  font-size: .95rem; line-height: 1.75;
  color: var(--text-2); flex: 1;
}

.pcard-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .75rem; border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pcard-status {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: var(--text-3);
}

.dot-live {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: livePulse 2s ease-in-out infinite;
}

.pcard-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .875rem; font-weight: 600;
  color: var(--orange);
  transition: gap .2s, opacity .2s;
}
.pcard-link:hover { gap: .75rem; opacity: .85; }

/* Demos Preview Grid */
.demos {
  border-top: 1px solid var(--border); padding-top: 3rem;
}
.demos-caption {
  font-family: var(--mono);
  font-size: .78rem; color: var(--text-3);
  letter-spacing: .04em; margin-bottom: 1.5rem;
}
.demos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}

.demo-card { display: flex; flex-direction: column; gap: .75rem; }
.demo-card figcaption {
  font-size: .78rem; color: var(--text-3); text-align: center;
}

.mockup {
  background: #14161f;
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s;
}
.mockup:hover { transform: translateY(-4px); border-color: var(--border-h); }

.mockup-bar {
  display: flex; align-items: center; gap: 6px;
  padding: .65rem .85rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}
.mockup-bar i {
  width: 8px; height: 8px; border-radius: 50%;
  display: block;
}
.mockup-bar i:nth-child(1) { background: rgba(255, 95, 87, 0.8); }
.mockup-bar i:nth-child(2) { background: rgba(255, 189, 68, 0.8); }
.mockup-bar i:nth-child(3) { background: rgba(40, 200, 64, 0.8); }
.mockup-bar span {
  font-family: var(--mono);
  font-size: .62rem; color: var(--text-3);
  margin-left: .5rem; opacity: .7;
}

.mockup-body {
  padding: 1.1rem; display: flex;
  flex-direction: column; gap: .7rem;
  min-height: 140px;
}
.m-header {
  height: 10px; border-radius: 4px;
  background: rgba(255, 255, 255, 0.12); width: 60%;
}
.m-stats { display: flex; gap: .5rem; }
.m-stat {
  flex: 1; height: 40px; border-radius: 8px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.15);
}
.m-rows { display: flex; flex-direction: column; gap: 5px; }
.m-row {
  height: 8px; border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
}
.m-fields { display: flex; flex-direction: column; gap: .5rem; }
.m-field {
  height: 22px; border-radius: 5px; width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.m-cal { display: flex; flex-direction: column; gap: 4px; }
.m-cal-labels { display: flex; gap: 4px; margin-bottom: 4px; }
.m-cal-labels span {
  flex: 1; height: 8px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
}
.m-cal-row { display: flex; gap: 4px; }
.m-cell {
  flex: 1; height: 20px; border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}
.m-cell.filled { background: rgba(56, 189, 248, 0.12); border: 1px solid rgba(56, 189, 248, 0.2); }
.m-cell.accent { background: rgba(240, 124, 64, 0.25); border: 1px solid rgba(240, 124, 64, 0.4); }

/* ====================================================================
   CLIENT WORK SECTION
   ==================================================================== */
.work-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}

.wcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: transform .4s var(--ease), border-color .35s;
}
.wcard:hover { transform: translateY(-6px); border-color: var(--border-h); }

.wcard-visual {
  position: relative;
  overflow: hidden;
  background: #090a0f;
}

.wcard-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform .5s var(--ease);
}
.wcard:hover .wcard-img { transform: scale(1.02); }

.wcard-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 65%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}




.wcard-badge {
  position: absolute; top: 1rem; right: 1rem;
  font-family: var(--mono);
  font-size: .6rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 100px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--green);
  border: 1px solid rgba(52, 211, 153, 0.25);
  backdrop-filter: blur(8px);
}
.wcard-badge-blue {
  background: rgba(56, 189, 248, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.wcard-body { padding: 1.85rem 2rem; }

.wcard-category {
  font-family: var(--mono);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: .4rem; display: block;
}

.wcard-title {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 700;
  color: var(--orange); margin-bottom: 1.15rem; letter-spacing: -.01em;
}

.wcard-facts { display: flex; flex-direction: column; gap: .75rem; }
.wcard-facts li {
  font-size: .9rem; line-height: 1.6;
  color: var(--text-2); display: flex; gap: .45rem; align-items: baseline;
}
.wcard-facts li b { color: var(--text); font-weight: 600; white-space: nowrap; }
.wcard-facts li span { color: var(--orange); flex-shrink: 0; }

/* ── Featured Wide Card (Jeyam Traders) ── */
.wcard-featured {
  margin-top: 1.5rem;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .35s;
}
.wcard-featured:hover { border-color: var(--border-cyan); }

.wcard-featured-inner {
  display: flex;
  flex-direction: column;
}

.wcard-featured-visual {
  position: relative; overflow: hidden;
  background: #090a0f;
}
.wcard-featured-visual .wcard-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform .5s var(--ease);
}
.wcard-featured:hover .wcard-featured-visual .wcard-img {
  transform: scale(1.02);
}

.wcard-featured-body {
  padding: 2.25rem 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  border-top: 1px solid var(--border);
}

.wcard-industry {
  font-family: var(--mono);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan); opacity: .9;
}

.wcard-title-blue { color: var(--cyan) !important; font-size: 1.45rem !important; }

.wcard-tags {
  display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .5rem;
}
.wcard-tags span {
  font-family: var(--mono);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .04em;
  padding: .3rem .75rem; border-radius: 100px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.18);
  color: var(--cyan);
}

/* ====================================================================
   PROCESS / HOW WE WORK
   ==================================================================== */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem; position: relative; padding-top: .5rem;
}

/* Timeline Horizontal Rule */
.steps-grid::before {
  content: '';
  position: absolute; top: 1.6rem; left: 0; right: 25%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan) 0%, transparent 100%);
  opacity: .4;
}

.step { padding-right: 1rem; }

.step-badge {
  font-family: var(--mono);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1.1rem;
}
.step-title {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  margin-bottom: .65rem; letter-spacing: -.01em;
}
.step-desc {
  font-size: .9rem; line-height: 1.7; color: var(--text-2);
}

/* ====================================================================
   CTA SECTION
   ==================================================================== */
.cta-section {
  position: relative; overflow: hidden;
  background: #08090c;
  padding: 8.5rem 0; text-align: center;
  border-top: 1px solid var(--border);
}

.cta-bg-glow {
  position: absolute; border-radius: 50%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; filter: blur(80px);
}

.cta-inner { position: relative; z-index: 1; }

.cta-badge {
  font-family: var(--mono);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; color: var(--orange);
  margin-bottom: 1.25rem;
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
  margin-bottom: 1.25rem;
}

.cta-sub {
  font-size: 1.1rem; color: var(--text-2); margin-bottom: 2.75rem;
}

.cta-btn {
  display: inline-flex; align-items: center; gap: .85rem;
  padding: 1.1rem 2.35rem;
  background: var(--orange); color: #ffffff;
  font-size: 1rem; font-weight: 600;
  border-radius: 100px; letter-spacing: .01em;
  box-shadow: 0 0 40px var(--orange-glow), 0 6px 24px rgba(240, 124, 64, 0.3);
  transition: transform .3s var(--ease), gap .2s, box-shadow .3s;
}
.cta-btn:hover {
  transform: scale(1.04);
  gap: 1.2rem;
  box-shadow: 0 0 60px var(--orange-glow), 0 10px 32px rgba(240, 124, 64, 0.4);
}

/* ====================================================================
   ENTERPRISE FOOTER
   ==================================================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  background: #050608;
}

.footer-inner {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
}

.footer-left { display: flex; flex-direction: column; gap: .5rem; }

.footer-logo {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 800;
}

.footer-tagline {
  font-size: .85rem; color: var(--text-2);
}

.footer-copy {
  font-family: var(--mono); font-size: .75rem; color: var(--text-3); margin-top: .5rem;
}

.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: .85rem; color: var(--text-2); font-weight: 500;
  transition: color .2s;
}
.footer-links a:hover { color: var(--cyan); }

/* ====================================================================
   SCROLL REVEAL ANIMATIONS
   ==================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 120ms; }
.delay-2 { transition-delay: 240ms; }
.delay-3 { transition-delay: 360ms; }
.delay-4 { transition-delay: 480ms; }
.delay-5 { transition-delay: 600ms; }

/* ====================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ==================================================================== */
@media (max-width: 1100px) {
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .capabilities-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .capabilities-grid { grid-template-columns: 1fr; }
  .products-grid     { grid-template-columns: 1fr; }
  .work-grid         { grid-template-columns: 1fr; }
  .steps-grid        { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .demos-grid        { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .hero-metrics      { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .metric-divider    { width: 100%; height: 1px; }
}

@media (max-width: 600px) {
  .section { padding: 4.5rem 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(3rem, 13vw, 4.8rem); }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; }
}

/* ====================================================================
   GRAPHICAL VISUAL EXTENSIONS & MOCKUPS (Inspired by Slate Design)
   ==================================================================== */

/* ── Hero Graphical Showcase Console ── */
.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 3.5rem auto 0;
  z-index: 2;
}

/* Floating Status Badges around Hero Mockup */
.floating-badge {
  position: absolute;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 25px var(--cyan-glow);
  backdrop-filter: blur(16px);
  animation: slFloat 5s ease-in-out infinite alternate;
}
.floating-badge-tr { top: -18px; right: -12px; }
.floating-badge-bl { bottom: -18px; left: -12px; animation-delay: -2.5s; }

@keyframes slFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.hero-mockup {
  background: rgba(13, 15, 21, 0.92);
  border: 1px solid var(--border-cyan);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(56, 189, 248, 0.12);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.mockup-window-header {
  height: 44px;
  background: rgba(8, 9, 12, 0.8);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}
.window-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }

.window-title {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--text-3);
  display: flex; align-items: center; gap: .5rem;
}

.window-status-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: .65rem; font-weight: 700;
  color: var(--green); background: rgba(52, 211, 153, 0.1);
  padding: .2rem .6rem; border-radius: 100px;
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.hero-mockup-grid {
  display: grid;
  grid-template-columns: 240px 1fr 220px;
  min-height: 380px;
}

.mockup-sidebar {
  background: rgba(8, 9, 12, 0.4);
  border-right: 1px solid var(--border);
  padding: 1.25rem 1rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.sidebar-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--serif); font-weight: 800; font-size: 1.05rem;
  padding-bottom: .85rem; border-bottom: 1px solid var(--border);
  margin-bottom: .5rem;
}
.sidebar-item {
  display: flex; align-items: center; gap: .65rem;
  padding: .55rem .75rem; border-radius: 8px;
  font-size: .8rem; font-weight: 500; color: var(--text-2);
  transition: background .2s, color .2s;
}
.sidebar-item.active {
  background: rgba(56, 189, 248, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(56, 189, 248, 0.2);
  font-weight: 600;
}
.sidebar-item svg { width: 15px; height: 15px; }

.mockup-center {
  padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.center-header {
  display: flex; align-items: center; justify-content: space-between;
}
.center-title {
  font-size: .95rem; font-weight: 700; color: var(--text);
}
.center-sub {
  font-family: var(--mono); font-size: .68rem; color: var(--text-3);
}

/* System Stats Cards Grid inside Mockup */
.mockup-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem;
}
.m-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .85rem 1rem;
}
.m-stat-lbl {
  font-family: var(--mono); font-size: .62rem; text-transform: uppercase;
  color: var(--text-3); letter-spacing: .05em;
}
.m-stat-val {
  font-family: var(--mono); font-size: 1.2rem; font-weight: 700;
  color: var(--text); margin-top: .2rem;
}
.m-stat-change {
  font-size: .68rem; font-weight: 600; margin-top: .15rem;
}
.m-stat-change.green { color: var(--green); }
.m-stat-change.cyan  { color: var(--cyan); }

/* SVG Live Throughput Chart */
.mockup-chart-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.chart-header {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .78rem; font-weight: 600; color: var(--text-2);
}

.chart-svg {
  width: 100%; height: 120px;
}

.mockup-sidebar-right {
  background: rgba(8, 9, 12, 0.4);
  border-left: 1px solid var(--border);
  padding: 1.25rem 1rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.right-panel-title {
  font-family: var(--mono); font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--cyan);
}
.node-status-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px; padding: .65rem .75rem;
  display: flex; flex-direction: column; gap: .2rem;
}
.node-name { font-size: .75rem; font-weight: 600; color: var(--text); }
.node-meta { font-family: var(--mono); font-size: .62rem; color: var(--text-3); display: flex; justify-content: space-between; }

/* ── MARQUEE TECH STRIP ── */
.marquee-section {
  padding: 1.5rem 0;
  background: rgba(13, 15, 21, 0.8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 1.25rem; width: max-content;
  animation: slMarquee 35s linear infinite;
}
.marquee-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1.15rem; border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-family: var(--mono); font-size: .75rem; font-weight: 600;
  color: var(--text-2); white-space: nowrap;
}
.marquee-pill svg { width: 14px; height: 14px; color: var(--cyan); }
.marquee-pill.cyan-accent {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.25);
  color: var(--cyan);
}

@keyframes slMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── GRAPHICAL ENHANCEMENTS FOR CAPABILITY CARDS ── */
.cap-card-graphic {
  background: rgba(8, 9, 12, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem .85rem;
  margin-top: .4rem;
  font-family: var(--mono);
  font-size: .72rem;
}

.cap-browser-header {
  display: flex; align-items: center; gap: 5px; margin-bottom: .5rem;
}
.cap-browser-header span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--border-h);
}

.cap-code-snippet {
  color: var(--cyan); font-size: .7rem; line-height: 1.4;
}

.cap-ai-widget {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 8px; padding: .5rem .75rem;
  color: var(--text-2); font-size: .7rem;
}
.cap-ai-spark { color: var(--cyan); }

.cap-receipt-widget {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(240, 124, 64, 0.08);
  border: 1px solid rgba(240, 124, 64, 0.2);
  border-radius: 8px; padding: .5rem .75rem;
  color: var(--orange); font-size: .7rem; font-weight: 600;
}

/* ── GRAPHICAL BROWSER BARS FOR CLIENT WORK CARDS ── */
.wcard-browser-bar {
  height: 28px;
  background: rgba(13, 15, 21, 0.95);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px; padding: 0 .85rem;
}
.wcard-browser-bar span {
  width: 8px; height: 8px; border-radius: 50%;
}
.wcard-browser-url {
  font-family: var(--mono); font-size: .62rem; color: var(--text-3); margin-left: .5rem;
}

/* ── RICH GRAPHICAL DEMOS MOCKUPS (SLATE & PRODUCTS) ── */
.demo-card-rich {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s;
}
.demo-card-rich:hover { transform: translateY(-4px); border-color: var(--border-cyan); }

.demo-rich-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem .85rem; background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border); font-family: var(--mono); font-size: .65rem; color: var(--text-3);
}

.demo-rich-body {
  padding: 1rem; display: flex; flex-direction: column; gap: .75rem;
}

.demo-rich-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .45rem .65rem; border-radius: 6px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  font-size: .75rem;
}

.demo-pill-green {
  font-family: var(--mono); font-size: .6rem; font-weight: 700;
  color: var(--green); background: rgba(52, 211, 153, 0.12);
  padding: .15rem .5rem; border-radius: 100px;
}
.demo-pill-cyan {
  font-family: var(--mono); font-size: .6rem; font-weight: 700;
  color: var(--cyan); background: rgba(56, 189, 248, 0.12);
  padding: .15rem .5rem; border-radius: 100px;
}
.demo-pill-orange {
  font-family: var(--mono); font-size: .6rem; font-weight: 700;
  color: var(--orange); background: rgba(240, 124, 64, 0.12);
  padding: .15rem .5rem; border-radius: 100px;
}

/* ── TERMINAL MOCKUP FOR BLACKFYRE ── */
.terminal-box {
  background: #090a0f;
  border: 1px solid rgba(240, 124, 64, 0.25);
  border-radius: 10px; overflow: hidden;
  font-family: var(--mono); font-size: .72rem;
  margin-top: .75rem;
}
.terminal-header {
  height: 26px; background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 .65rem; gap: 5px;
  color: var(--text-3); font-size: .6rem;
}
.terminal-body {
  padding: .75rem; color: var(--text-2); line-height: 1.6;
}
.terminal-cmd { color: var(--orange); }
.terminal-out { color: var(--green); }

/* Responsive adjustments for Graphical Elements */
@media (max-width: 960px) {
  .hero-mockup-grid { grid-template-columns: 1fr; }
  .mockup-sidebar, .mockup-sidebar-right { display: none; }
  .floating-badge { display: none; }
}


/* ====================================================================
   RATES — published pricing tables
   ==================================================================== */
#rates { background: var(--bg); }

.rt-block, .rt-terms-block { margin-top: 4.5rem; }

.rt-heading {
  display: flex; align-items: baseline; gap: 0.85rem;
  font-family: var(--sans); font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 600; letter-spacing: -0.01em; color: var(--text);
  margin: 0 0 0.5rem;
}
.rt-num {
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  color: var(--cyan); letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem; border: 1px solid var(--border-cyan);
  border-radius: 4px; flex: none;
}
.rt-note {
  color: var(--text-2, #9aa0ac); font-size: 0.95rem; line-height: 1.6;
  max-width: 56ch; margin: 0 0 1.75rem;
}

/* wide table scrolls inside its own box — page never scrolls sideways */
.rt-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--surface);
}
.rt-table { width: 100%; border-collapse: collapse; min-width: 40rem; }
.rt-table thead th {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-2, #9aa0ac); text-align: left;
  padding: 0.95rem 1.35rem; border-bottom: 1px solid var(--border);
  white-space: nowrap; background: rgba(255,255,255,0.02);
}
.rt-table thead th:nth-child(2) { text-align: right; }
.rt-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.045); }
.rt-table tbody tr:last-child { border-bottom: 0; }
.rt-table tbody tr:hover { background: rgba(255,255,255,0.022); }
.rt-table td { padding: 1.05rem 1.35rem; vertical-align: top; }

.rt-svc strong {
  display: block; font-size: 0.97rem; font-weight: 600;
  color: var(--text); letter-spacing: -0.005em;
}
.rt-scope {
  display: block; margin-top: 0.28rem;
  font-size: 0.83rem; line-height: 1.5; color: var(--text-2, #9aa0ac);
}
.rt-price {
  font-family: var(--mono); font-size: 1.02rem; font-weight: 500;
  color: var(--cyan); text-align: right; white-space: nowrap;
}
.rt-per { font-size: 0.76rem; color: var(--text-2, #9aa0ac); font-weight: 400; }
.rt-terms {
  font-family: var(--mono); font-size: 0.78rem;
  color: var(--text-2, #9aa0ac); white-space: nowrap;
}

/* commercial terms */
.rt-terms-block {
  border: 1px solid var(--border); border-radius: 12px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}
.rt-list { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.rt-list li {
  position: relative; padding-left: 1.6rem; margin-bottom: 0.9rem;
  font-size: 0.95rem; line-height: 1.65; color: var(--text-2, #9aa0ac);
  max-width: 68ch;
}
.rt-list li::before {
  content: ''; position: absolute; left: 0; top: 0.62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}
.rt-list strong { color: var(--text); font-weight: 600; }
.rt-intl {
  margin: 1.75rem 0 0; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.92rem; color: var(--text-2, #9aa0ac);
}
.rt-intl a { color: var(--cyan); text-decoration: none; border-bottom: 1px solid var(--border-cyan); }
.rt-intl a:hover { border-bottom-color: var(--cyan); }

/* ── WhatsApp + CTA buttons ── */
.rt-cta-row, .cta-row {
  display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem;
  justify-content: center;
}
.rt-cta-row { justify-content: flex-start; }
.rt-cta, .cta-btn-wa, .cta-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.5rem; border-radius: 999px;
  font-size: 0.94rem; font-weight: 600; text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.rt-cta-wa, .cta-btn-wa { background: #25D366; color: #06240f; border: 1px solid #25D366; }
.rt-cta-wa:hover, .cta-btn-wa:hover { background: #1fbb59; transform: translateY(-2px); }
.rt-cta-alt, .cta-btn-ghost {
  background: transparent; color: var(--text); border: 1px solid var(--border-h);
}
.rt-cta-alt:hover, .cta-btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.cta-rates-link { color: var(--cyan); text-decoration: none; border-bottom: 1px solid var(--border-cyan); }
.cta-rates-link:hover { border-bottom-color: var(--cyan); }

.nav-btn-wa {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: #25D366 !important; color: #06240f !important;
  border-color: #25D366 !important;
}
.nav-btn-wa:hover { background: #1fbb59 !important; }

/* floating WhatsApp */
.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff; text-decoration: none;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.34);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.07); box-shadow: 0 12px 34px rgba(37,211,102,0.46); }

@media (max-width: 600px) {
  .rt-table td, .rt-table thead th { padding: 0.85rem 1rem; }
  .rt-cta-row, .cta-row { flex-direction: column; align-items: stretch; }
  .rt-cta, .cta-btn-wa, .cta-btn-ghost { justify-content: center; }
  .wa-float { width: 50px; height: 50px; right: 1rem; bottom: 1rem; }
}

/* restraint pass: let the aurora carry the hero — dial back competing layers */
.glow-sphere { opacity: 0.42 !important; }
.tech-grid-pattern { opacity: 0.28 !important; }

@media (prefers-reduced-motion: reduce) {
  .rt-cta, .cta-btn-wa, .cta-btn-ghost, .wa-float { transition: none; }
  .wa-float:hover, .rt-cta-wa:hover, .cta-btn-wa:hover { transform: none; }
}

/* ── Rates: stack to cards on narrow screens so the PRICE is never off-screen ── */
@media (max-width: 700px) {
  .rt-scroll { overflow-x: visible; border: 0; background: transparent; border-radius: 0; }
  .rt-table { min-width: 0; display: block; }
  .rt-table thead { display: none; }
  .rt-table tbody { display: block; }
  .rt-table tbody tr {
    display: block; border: 1px solid var(--border); border-radius: 10px;
    background: var(--surface); padding: 1rem 1.1rem; margin-bottom: 0.7rem;
  }
  .rt-table tbody tr:last-child { margin-bottom: 0; }
  .rt-table tbody tr:hover { background: var(--surface); }
  .rt-table td { display: block; padding: 0; border: 0; }

  .rt-svc { margin-bottom: 0.7rem; }
  .rt-svc strong { font-size: 1rem; }

  /* price + payment share one row, price dominant */
  .rt-price {
    display: inline-block; text-align: left;
    font-size: 1.22rem; font-weight: 600; letter-spacing: -0.01em;
  }
  .rt-terms {
    display: inline-block; margin-left: 0.7rem;
    padding: 0.2rem 0.5rem; border-radius: 4px;
    background: rgba(255,255,255,0.05); font-size: 0.7rem;
    position: relative; top: -2px;
  }
}

/* ── Rates: entry-tier badges ── */
.rt-badge {
  display: inline-block; margin-left: 0.55rem;
  font-family: var(--mono); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--green); background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.28);
  padding: 0.16rem 0.4rem; border-radius: 3px;
  vertical-align: middle; position: relative; top: -1px;
}
.rt-row-entry .rt-price { color: var(--green); }
.rt-note-em { color: var(--text); font-weight: 600; }
