@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&display=swap");

:root {
  --navy: #000066;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --dim: rgba(255, 255, 255, 0.5);
  --line: rgba(255, 255, 255, 0.14);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --pad-x: clamp(20px, 5vw, 96px);
  --section-y: clamp(72px, 10vw, 140px);
  --max: 1320px;
  --display: clamp(3.25rem, 11vw, 7.5rem);
  --statement: clamp(2rem, 5.5vw, 4.25rem);
  --statement-sm: clamp(1.75rem, 4vw, 3rem);
  --lead: clamp(1.05rem, 1.8vw, 1.35rem);
}

.tw-home {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--font);
  color: var(--white);
  background: var(--navy);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.tw-home *,
.tw-home *::before,
.tw-home *::after {
  box-sizing: border-box;
}

.tw-home a {
  color: inherit;
}

/* —— Header (matched to footer) —— */
.tw-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: clamp(14px, 2vw, 22px) var(--pad-x);
  background: var(--navy);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
  isolation: isolate;
}

.tw-site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    125% 125% at 50% 100%,
    rgba(15, 15, 17, 0.4) 50%,
    rgba(60, 162, 250, 0.2) 100%
  );
}

.tw-site-header.is-scrolled {
  padding: clamp(10px, 1.5vw, 16px) var(--pad-x);
  box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.45);
}

.tw-site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.tw-logo img {
  display: block;
  height: auto;
  width: clamp(140px, 18vw, 180px);
}

.tw-nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(37, 146, 213, 0.4);
  background: transparent;
  color: var(--white);
  font: 600 0.8rem/1 var(--font);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.tw-nav-toggle:hover {
  border-color: #2592d5;
  color: #2592d5;
}

.tw-nav-toggle-bars {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

.tw-site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.tw-site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.tw-site-nav a:hover,
.tw-site-nav a.tw-nav-active {
  color: #2592d5;
}

.tw-btn-header {
  padding: 0.65rem 1.25rem !important;
  border: 1px solid #2592d5 !important;
  color: #fff !important;
  font-weight: 600 !important;
  white-space: nowrap;
  border-radius: 6px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.tw-btn-header:hover {
  background: #2592d5 !important;
  color: #fff !important;
  border-color: #2592d5 !important;
}

/* —— Layout —— */
#tw-flow-art {
  width: 100%;
}

[data-flow-section] {
  position: relative;
  width: 100%;
}

.tw-section {
  padding: var(--section-y) var(--pad-x);
}

.tw-section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.tw-section-head {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.tw-section-head--center {
  text-align: center;
}

/* —— Portfolio grid (results-first) —— */
.tw-section-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2592d5;
}

.tw-portfolio .tw-section-head {
  max-width: 44rem;
}

.tw-portfolio-grid {
  list-style: none;
  padding: 0;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .tw-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1100px) {
  .tw-portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tw-pf-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  height: 100%;
  transition: border-color 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
  isolation: isolate;
}

.tw-pf-card:hover,
.tw-pf-card:focus-visible {
  border-color: rgba(37, 146, 213, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.4);
  outline: none;
}

.tw-pf-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #001a4d;
}

.tw-pf-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.tw-pf-card:hover .tw-pf-image img,
.tw-pf-card:focus-visible .tw-pf-image img {
  transform: scale(1.04);
}

.tw-pf-meta {
  flex: 1;
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.tw-pf-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2592d5;
}

.tw-pf-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.3;
}

.tw-pf-outcome {
  margin: 0.1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  flex: 1;
}

.tw-pf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  transition: gap 0.3s ease, color 0.3s ease;
}

.tw-pf-card:hover .tw-pf-link,
.tw-pf-card:focus-visible .tw-pf-link {
  gap: 0.6rem;
  color: #2592d5;
}

.tw-portfolio-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 44rem;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  padding: 1.5rem clamp(1rem, 2vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

@media (min-width: 600px) {
  .tw-portfolio-trust {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tw-trust-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tw-trust-stat strong {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.tw-trust-stat span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.tw-portfolio-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.75rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

@media (prefers-reduced-motion: reduce) {
  .tw-pf-card,
  .tw-pf-image img,
  .tw-pf-link {
    transition: none;
  }
}

/* —— Hero —— */
.tw-hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: clamp(120px, 16vh, 180px) var(--pad-x) clamp(72px, 10vh, 128px);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #00004d 0%, var(--navy) 40%, #000066 100%);
}

/* —— Global cursor spotlight —— */
.tw-cursor-spotlight {
  --cursor-x: 50vw;
  --cursor-y: 30vh;
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    640px circle at var(--cursor-x) var(--cursor-y),
    rgba(37, 146, 213, 0.16) 0%,
    rgba(59, 130, 246, 0.06) 30%,
    transparent 60%
  );
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: background;
}

.tw-cursor-spotlight.is-active {
  opacity: 1;
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .tw-cursor-spotlight { display: none; }
}

.tw-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 70% at 75% 15%, rgba(37, 146, 213, 0.14) 0%, transparent 50%);
}

.tw-hero-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: tw-aurora-drift 18s ease-in-out infinite;
}

.tw-hero-aurora--1 {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  top: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(37, 146, 213, 0.45) 0%, transparent 70%);
}

.tw-hero-aurora--2 {
  width: min(45vw, 400px);
  height: min(45vw, 400px);
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(0, 0, 102, 0.8) 0%, rgba(59, 130, 246, 0.25) 40%, transparent 70%);
  animation-duration: 22s;
  animation-delay: -6s;
}

@keyframes tw-aurora-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-4%, 3%) scale(1.05); }
  66% { transform: translate(3%, -2%) scale(0.98); }
}

.tw-hero-shimmer {
  background: linear-gradient(
    105deg,
    #fff 0%,
    #fff 38%,
    #2592d5 48%,
    #3b82f6 52%,
    #fff 62%,
    #fff 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: tw-headline-shimmer 6s ease-in-out infinite;
}

@keyframes tw-headline-shimmer {
  0%, 100% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
}

.tw-hero-display .tw-hero-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(37, 146, 213, 0.7);
  filter: drop-shadow(0 0 24px rgba(37, 146, 213, 0.25));
}

/* Trendwise unified hero */
.tw-hero--trendwise,
.tw-hero--command {
  align-items: stretch;
  padding: clamp(100px, 14vh, 140px) var(--pad-x) clamp(48px, 8vh, 80px);
  background: var(--navy);
  background: linear-gradient(165deg, #020208 0%, #000066 55%, #001a4d 100%);
}

.tw-hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.tw-hero--trendwise .tw-hero-grid {
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background-image:
    linear-gradient(rgba(37, 146, 213, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 146, 213, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: rotate(-12deg);
  animation: tw-grid-drift 24s linear infinite;
}

.tw-hero--trendwise .tw-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: tw-glow-pulse 10s ease-in-out infinite;
}

.tw-hero--trendwise .tw-hero-glow--1 {
  width: min(420px, 50vw);
  height: min(420px, 50vw);
  background: radial-gradient(circle, rgba(37, 146, 213, 0.2) 0%, transparent 70%);
  top: 15%;
  right: 5%;
  animation-delay: -2s;
}

.tw-hero--trendwise .tw-hero-glow--2 {
  width: min(320px, 40vw);
  height: min(320px, 40vw);
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  bottom: 20%;
  left: 10%;
  animation-delay: -5s;
}

.tw-hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.tw-hero-canvas-wrap canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.tw-hero-unified-inner,
.tw-hero-command-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-height: calc(100dvh - clamp(100px, 14vh, 140px) - clamp(48px, 8vh, 80px));
  opacity: 0;
}

@media (min-width: 900px) {
  .tw-hero-unified-inner,
  .tw-hero-command-inner {
    flex-direction: row;
    align-items: stretch;
    gap: 2.5rem;
  }
}

.tw-hero-main,
.tw-hero-command-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 2rem;
}

.tw-hero-eyebrow,
.tw-hero-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.tw-hero-status-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.tw-hero-status-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  animation: tw-status-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.35;
}

@keyframes tw-status-ping {
  0% { transform: scale(1); opacity: 0.35; }
  75%, 100% { transform: scale(2.2); opacity: 0; }
}

.tw-hero-status-label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}

.tw-hero-headline-block {
  max-width: 52rem;
  margin-top: auto;
  margin-bottom: auto;
  padding: 2rem 0;
}

@media (min-width: 900px) {
  .tw-hero-headline-block {
    transform: translateY(-2rem);
  }
}

.tw-hero-display-unified,
.tw-hero-command-title {
  margin: 0;
  font-size: var(--display);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #fff;
}

.tw-hero-display-unified .tw-hero-line {
  display: block;
  overflow: hidden;
}

.tw-hero-vaporize {
  width: 100%;
  min-height: clamp(48px, 8vw, 72px);
  margin-top: 0.75rem;
  opacity: 0.85;
}

.tw-hero-lead-unified {
  margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
  max-width: 34rem;
  font-size: var(--lead);
  line-height: 1.5;
  color: var(--muted);
}

.tw-hero-actions-unified {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.tw-hero-magnetic-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.75rem;
  will-change: transform;
}

.tw-hero-magnetic-cta .tw-hero-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.tw-hero-magnetic-cta:hover .tw-hero-cta-icon {
  background: #fff;
  border-color: #fff;
}

.tw-hero-magnetic-cta:hover .tw-hero-cta-icon svg {
  stroke: var(--navy);
}

.tw-hero-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--white);
  font-size: 1rem;
  transition: opacity 0.2s ease;
}

.tw-hero-secondary-cta:hover {
  opacity: 0.85;
}

.command-cell-list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.command-cell-list li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.command-cell-list li:last-child {
  border-bottom: none;
}

.tw-hero-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85);
  text-stroke: 1.5px rgba(255, 255, 255, 0.85);
}

.tw-hero-command-kicker {
  margin: 2rem 0 0;
  max-width: 22rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.tw-hero-command-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  width: fit-content;
  margin-top: 1rem;
  text-decoration: none;
  color: #fff;
  will-change: transform;
}

@media (min-width: 900px) {
  .tw-hero-command-cta {
    transform: translateY(-3rem);
  }
}

.tw-hero-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.5s ease, border-color 0.5s ease;
}

.tw-hero-command-cta:hover .tw-hero-cta-icon {
  background: #fff;
  border-color: #fff;
}

.tw-hero-command-cta:hover .tw-hero-cta-icon svg {
  stroke: #020202;
}

.tw-hero-cta-label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tw-hero-deck,
.tw-hero-command-deck {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  z-index: 20;
}

@media (min-width: 900px) {
  .tw-hero-deck,
  .tw-hero-command-deck {
    width: clamp(280px, 28vw, 384px);
  }
}

.glass-panel,
.command-cell {
  padding: 1.5rem 1.75rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.command-cell-id {
  display: block;
  margin-bottom: 0.75rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.command-cell-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 0.5rem;
}

.command-cell-val {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.command-cell-bar {
  width: 5rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
}

.command-cell-bar-fill {
  display: block;
  height: 100%;
  width: 60%;
  background: #fff;
  border-radius: 999px;
  animation: tw-bar-load 2s ease-in-out infinite alternate;
}

@keyframes tw-bar-load {
  0% { width: 55%; opacity: 0.8; }
  100% { width: 75%; opacity: 1; }
}

.command-cell-stats {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.command-cell-stat {
  display: flex;
  justify-content: space-between;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.command-cell-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.command-cell-text {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.command-cell-em {
  font-style: italic;
  color: #fff;
}

.tw-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.tw-hero-grid {
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background-image:
    linear-gradient(rgba(37, 146, 213, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 146, 213, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: rotate(-10deg);
  animation: tw-grid-drift 28s linear infinite;
  opacity: 0.7;
}

.tw-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: tw-glow-pulse 12s ease-in-out infinite;
}

.tw-hero-glow--1 {
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  background: radial-gradient(circle, rgba(37, 146, 213, 0.18) 0%, transparent 68%);
  top: 8%;
  right: 0;
  opacity: 0.5;
  animation-delay: -2s;
}

.tw-hero-glow--2 {
  width: min(360px, 42vw);
  height: min(360px, 42vw);
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  bottom: 15%;
  left: 5%;
  opacity: 0.35;
  animation-delay: -6s;
}

.tw-hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.tw-hero-label {
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.tw-hero-display {
  margin: 0;
}

.tw-hero-display h1 {
  margin: 0;
  font-size: clamp(3rem, 8.5vw, 6.75rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
  word-break: break-word;
}

.tw-hero-rotator {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  font-size: 1rem;
  color: var(--white);
  line-height: 1.3;
}

.tw-hero-rotator-prefix {
  opacity: 0.7;
  font-weight: 400;
}

.tw-hero-rotator-window {
  position: relative;
  display: inline-block;
  height: 1.4em;
  width: 0;
  overflow: hidden;
  vertical-align: middle;
  transition: width 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.tw-hero-rotator-phrase {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  color: #fff;
  font-weight: 600;
  will-change: transform, opacity;
  transition:
    transform 0.55s cubic-bezier(0.65, 0, 0.35, 1),
    opacity 0.4s ease;
}

.tw-hero-rotator-current {
  transform: translateY(0);
  opacity: 1;
}

.tw-hero-rotator-next {
  transform: translateY(100%);
  opacity: 0;
}

.tw-hero-rotator.is-rotating .tw-hero-rotator-current {
  transform: translateY(-100%);
  opacity: 0;
}

.tw-hero-rotator.is-rotating .tw-hero-rotator-next {
  transform: translateY(0);
  opacity: 1;
}

.tw-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tw-hero-line {
  display: block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(110%);
  animation: tw-slide-up 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.tw-hero-line--1 { animation-delay: 0.15s; }
.tw-hero-line--2 { animation-delay: 0.3s; }
.tw-hero-line--3 { animation-delay: 0.45s; }

.tw-hero-lead {
  margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
  max-width: 32rem;
  font-size: clamp(1.05rem, 1.65vw, 1.3rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.tw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2.5rem;
  margin-top: clamp(2rem, 3.5vw, 2.75rem);
}

/* —— Hero Animations —— */
@keyframes tw-grid-drift {
  0% { transform: rotate(-12deg) translateX(0) translateY(0); }
  100% { transform: rotate(-12deg) translateX(-48px) translateY(-48px); }
}

@keyframes tw-glow-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.92); }
  50% { opacity: 0.65; transform: scale(1.05); }
}

@keyframes tw-slide-up {
  0% { 
    opacity: 0; 
    transform: translateY(100%);
  }
  100% { 
    opacity: 1; 
    transform: translateY(0);
  }
}

@keyframes tw-fade-in-up {
  0% { 
    opacity: 0; 
    transform: translateY(24px);
  }
  100% { 
    opacity: 1; 
    transform: translateY(0);
  }
}

/* —— Typography —— */
.tw-statement {
  margin: 0;
  font-size: var(--statement);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.tw-statement--sm {
  font-size: var(--statement-sm);
}

.tw-section-kicker {
  margin: 1rem 0 0;
  max-width: 40rem;
  font-size: var(--lead);
  color: var(--muted);
}

.tw-section-kicker--center {
  margin-left: auto;
  margin-right: auto;
}

.tw-section-lead {
  margin: 0.75rem 0 0;
  font-size: var(--lead);
  color: var(--muted);
}

/* —— Buttons & links —— */
.tw-btn-primary {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid #2592d5;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  position: relative;
  border-radius: 6px;
}

.tw-btn-primary:hover {
  background: #2592d5;
  color: #fff;
  border-color: #2592d5;
}

.tw-btn-glow {
  --base: 220;
  --spread: 200;
  --radius: 6;
  --border: 2;
  --backdrop: rgba(255, 255, 255, 0.05);
  --backup-border: var(--backdrop);
  --size: 150;
  --border-size: calc(var(--border, 2) * 1px);
  --spotlight-size: calc(var(--size, 150) * 1px);
  --hue: calc(var(--base) + (var(--xp, 0) * var(--spread, 0)));
  background-image: radial-gradient(
    var(--spotlight-size) var(--spotlight-size) at
    calc(var(--x, 0) * 1px)
    calc(var(--y, 0) * 1px),
    hsl(var(--hue, 210) calc(var(--saturation, 100) * 1%) calc(var(--lightness, 70) * 1%) / var(--bg-spot-opacity, 0.1)), transparent
  );
  background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
  background-position: 50% 50%;
  background-attachment: fixed;
}

.tw-typewriter-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--white);
}

.tw-btn-text-static {
  opacity: 0.7;
}

.tw-typewriter-text {
  font-weight: 600;
  min-width: 120px;
  display: inline-block;
}

.tw-typewriter-cursor {
  font-weight: 300;
  opacity: 1;
  animation: tw-cursor-blink 1s infinite;
}

@keyframes tw-cursor-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.tw-btn-text {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
}

.tw-btn-text:hover {
  border-color: #2592d5;
  color: #2592d5;
}

.tw-btn-outline {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(37, 146, 213, 0.4);
  color: var(--white);
  border-radius: 6px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  font-weight: 600;
  text-decoration: none;
}

.tw-btn-outline:hover {
  background: #2592d5;
  border-color: #2592d5;
  color: #fff;
}

.tw-link-arrow {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--white);
  transition: color 0.2s ease;
  color: var(--white);
}

.tw-link-arrow::after {
  content: " →";
}

.tw-link-arrow:hover {
  color: #2592d5;
}

.tw-link-arrow::after {
  display: inline-block;
  transition: transform 0.25s ease;
}

.tw-link-arrow:hover::after {
  transform: translateX(4px);
}

/* —— Reviews —— */
.tw-section--reviews {
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(56px, 7vw, 88px);
}

.tw-reviews-wrap {
  text-align: center;
}

.tw-reviews-eyebrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
}

.tw-reviews-stars {
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: #fbbf24;
  text-shadow: 0 0 16px rgba(251, 191, 36, 0.35);
}

.tw-reviews-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2592d5;
}

.tw-reviews-panel {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.tw-reviews-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    80% 60% at 50% 0%,
    rgba(37, 146, 213, 0.08) 0%,
    transparent 60%
  );
}

.tw-reviews-panel > * {
  position: relative;
  z-index: 1;
}

/* —— Services (editorial rows) —— */
.tw-services-editorial {
  border-top: 1px solid var(--line);
}

.tw-service-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
}

.tw-service-index {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2592d5;
  padding-top: 0.35rem;
}

.tw-service-copy h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tw-service-copy p {
  margin: 0.65rem 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* —— Portfolio (ZoomParallax) —— */
.tw-section--portfolio {
  padding-left: 0;
  padding-right: 0;
}

.tw-portfolio-head {
  max-width: var(--max);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.tw-portfolio-stage {
  width: 100%;
  margin: 0 auto;
}

.tw-zoom-parallax-container {
  position: relative;
  height: 300vh;
  width: 100%;
}

.tw-zoom-parallax-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tw-zoom-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.tw-zoom-image > div {
  position: relative;
  width: 25vw;
  height: 25vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tw-zoom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tw-zoom-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  text-align: center;
}

.tw-zoom-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  display: block;
  margin-bottom: 0.25rem;
}

.tw-zoom-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.tw-zoom-desc {
  font-size: 0.85rem;
  margin: 0.25rem 0 0;
  opacity: 0.9;
}

/* Position variations for different images */
.tw-zoom-image[data-position="top-left"] > div {
  top: -30vh;
  left: 5vw;
  width: 35vw;
  height: 30vh;
}

.tw-zoom-image[data-position="top-right"] > div {
  top: -10vh;
  left: -25vw;
  width: 20vw;
  height: 45vh;
}

.tw-zoom-image[data-position="middle-left"] > div {
  left: 27.5vw;
  width: 25vw;
  height: 25vh;
}

.tw-zoom-image[data-position="middle-right"] > div {
  top: 27.5vh;
  left: 5vw;
  width: 20vw;
  height: 25vh;
}

.tw-zoom-image[data-position="bottom-left"] > div {
  top: 27.5vh;
  left: -22.5vw;
  width: 30vw;
  height: 25vh;
}

.tw-zoom-image[data-position="bottom-right"] > div {
  top: 22.5vh;
  left: 25vw;
  width: 15vw;
  height: 15vh;
}

.tw-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.pf-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pf-card--feature {
  grid-column: span 2;
}

.pf-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
}

.pf-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}

.pf-card--feature .pf-img {
  aspect-ratio: 21 / 9;
}

.pf-card:hover .pf-img {
  transform: scale(1.02);
}

.pf-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 1rem 1.15rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.pf-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}

.pf-title {
  font-size: 1rem;
  font-weight: 600;
}

/* —— Glow Card Effects —— */
.tw-glow-card {
  --base: 220;
  --spread: 200;
  --radius: 12;
  --border: 1;
  --backdrop: rgba(0, 0, 0, 0.1);
  --backup-border: rgba(255, 255, 255, 0.1);
  --size: 200;
  --border-size: calc(var(--border, 1) * 1px);
  --spotlight-size: calc(var(--size, 200) * 1px);
  --hue: calc(var(--base) + (var(--xp, 0) * var(--spread, 0)));
  
  background-image: radial-gradient(
    var(--spotlight-size) var(--spotlight-size) at
    calc(var(--x, 0) * 1px)
    calc(var(--y, 0) * 1px),
    hsl(var(--hue, 210) calc(var(--saturation, 100) * 1%) calc(var(--lightness, 70) * 1%) / var(--bg-spot-opacity, 0.05)), transparent
  );
  background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
  background-position: 50% 50%;
  background-attachment: fixed;
  border: var(--border-size) solid var(--backup-border);
}

.tw-glow-card[data-glow-color="blue"] { --base: 220; --spread: 200; }
.tw-glow-card[data-glow-color="purple"] { --base: 280; --spread: 300; }
.tw-glow-card[data-glow-color="green"] { --base: 120; --spread: 200; }
.tw-glow-card[data-glow-color="red"] { --base: 0; --spread: 200; }
.tw-glow-card[data-glow-color="orange"] { --base: 30; --spread: 200; }

.pf-glow-inner {
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) * 1px);
  border-width: calc(var(--border-size) * 20);
  filter: blur(calc(var(--border-size) * 10));
  background: none;
  pointer-events: none;
  border: none;
  opacity: 0.3;
}

.tw-portfolio-cta {
  max-width: var(--max);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  text-align: center;
}

/* —— Why —— */
.tw-why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.tw-why-item {
  position: relative;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(37, 146, 213, 0.35);
}

.tw-why-item h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.tw-why-item p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 28rem;
}

/* —— Contact —— */
.tw-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.tw-contact-copy p {
  margin: 1.25rem 0 0;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 28rem;
}

.tw-contact-copy a {
  color: var(--white);
  transition: color 0.2s ease;
}

.tw-contact-copy a:hover {
  color: #2592d5;
  text-decoration: underline;
}

.tw-contact-bullets {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.6rem;
}

.tw-contact-bullets li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.tw-contact-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: #2592d5;
  border-radius: 999px;
}

.tw-contact-direct {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.tw-contact-form .wpforms-container {
  margin: 0;
}

.tw-contact-form input,
.tw-contact-form textarea,
.tw-contact-form select {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid var(--line) !important;
  color: var(--white) !important;
  border-radius: 0 !important;
}

.tw-contact-form label {
  color: var(--muted) !important;
}

.tw-contact-form .wpforms-submit {
  background: #2592d5 !important;
  color: #fff !important;
  border: 1px solid #2592d5 !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  padding: 0.85rem 1.5rem !important;
  transition: background 0.25s ease, color 0.25s ease !important;
}

.tw-contact-form .wpforms-submit:hover {
  background: transparent !important;
  color: #2592d5 !important;
}

/* —— Clients —— */
.tw-clients-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.tw-clients-list > div {
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.25s ease;
}

.tw-clients-list > div:hover {
  border-bottom-color: rgba(37, 146, 213, 0.5);
}

.tw-clients-list h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  position: relative;
  padding-left: 1rem;
}

.tw-clients-list h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2592d5;
  transform: translateY(-50%);
  opacity: 0.7;
}

.tw-clients-list p {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.tw-cta-row {
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* —— FAQ —— */
.tw-faq {
  border-top: 1px solid var(--line);
}

.tw-faq-item {
  border-bottom: 1px solid var(--line);
}

.tw-faq-question,
.tw-faq-question:hover,
.tw-faq-question:focus,
.tw-faq-question:focus-visible,
.tw-faq-question:active {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.35rem 0;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  outline: none !important;
  color: var(--white);
  font: 600 1.05rem/1.35 var(--font);
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
}

.tw-faq-question:focus-visible {
  outline: 2px solid #2592d5 !important;
  outline-offset: 4px;
}

.tw-faq-toggle {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  color: #2592d5;
  transition: transform 0.25s ease;
}

.tw-faq-item.active .tw-faq-toggle {
  transform: rotate(180deg);
}

.tw-faq-question:hover span:first-child {
  color: #2592d5;
}

.tw-faq-answer {
  display: none;
  padding: 0 0 1.35rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 52rem;
}

.tw-faq-item.active .tw-faq-answer {
  display: block;
}

/* —— Footer —— */
.tw-site-footer {
  position: relative;
  padding: clamp(48px, 8vw, 80px) var(--pad-x) clamp(24px, 4vw, 40px);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.tw-footer-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(125% 125% at 50% 10%, rgba(15, 15, 17, 0.4) 50%, rgba(60, 162, 250, 0.2) 100%);
}

.tw-footer-bg-text {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.35;
  overflow: hidden;
}

.tw-text-hover-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  pointer-events: auto;
}

.tw-text-hover-svg {
  width: 100%;
  height: 100%;
}

.tw-text-base {
  fill: rgba(255, 255, 255, 0.1);
  stroke: rgba(255, 255, 255, 0.15);
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: clamp(18px, 4vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  stroke-width: 0.5;
  opacity: 1;
}

.tw-text-hover-wrapper:hover .tw-text-base {
  opacity: 0.7;
}

.tw-text-outline {
  fill: transparent;
  stroke: rgba(37, 146, 213, 0.15);
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: clamp(18px, 4vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  stroke-width: 0.5;
  opacity: 1;
}

.tw-text-gradient {
  fill: transparent;
  stroke: url(#textGradient);
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: clamp(18px, 4vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  stroke-width: 1.2;
  opacity: 1;
  paint-order: stroke fill;
}

@keyframes tw-text-draw {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes tw-color-sweep {
  0% {
    cx: 10%;
    cy: 50%;
  }
  25% {
    cx: 90%;
    cy: 30%;
  }
  50% {
    cx: 10%;
    cy: 70%;
  }
  75% {
    cx: 90%;
    cy: 50%;
  }
  100% {
    cx: 10%;
    cy: 50%;
  }
}

@media (max-width: 768px) {
  .tw-footer-bg-text {
    opacity: 0.1;
  }
  
  .tw-text-base,
  .tw-text-outline,
  .tw-text-gradient {
    font-size: clamp(14px, 6vw, 30px);
    letter-spacing: 0.15em;
  }
}

.tw-site-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.tw-footer-brand p {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 22rem;
}

.tw-footer-col h3 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

.tw-footer-col a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tw-footer-col a:hover {
  color: #2592d5;
}

.tw-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.tw-contact-icon {
  width: 18px;
  height: 18px;
  color: #2592d5;
  flex-shrink: 0;
}

.tw-contact-item a,
.tw-contact-item span {
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tw-contact-item a:hover {
  color: #2592d5;
}

.tw-footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.5rem;
}

.tw-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--dim);
}

.tw-footer-bottom p {
  margin: 0;
  flex: 1;
}

.tw-footer-legal {
  display: flex;
  gap: 1.5rem;
}

.tw-footer-legal a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.tw-footer-legal a:hover {
  color: #2592d5;
}

/* —— Reveal (enhanced) —— */
.tw-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tw-reveal[data-delay] {
  transition-delay: var(--reveal-delay, 0ms);
}

.tw-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* —— Glow Card Advanced Effects —— */
[data-glow]::before,
[data-glow]::after {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: calc(var(--border-size) * -1);
  border: var(--border-size) solid transparent;
  border-radius: calc(var(--radius) * 1px);
  background-attachment: fixed;
  background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
  background-repeat: no-repeat;
  background-position: 50% 50%;
  mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
  mask-clip: padding-box, border-box;
  mask-composite: intersect;
}

[data-glow]::before {
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.75) calc(var(--spotlight-size) * 0.75) at
    calc(var(--x, 0) * 1px)
    calc(var(--y, 0) * 1px),
    hsl(var(--hue, 210) calc(var(--saturation, 100) * 1%) calc(var(--lightness, 50) * 1%) / var(--border-spot-opacity, 0.8)), transparent 100%
  );
  filter: brightness(2);
}

[data-glow]::after {
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.5) calc(var(--spotlight-size) * 0.5) at
    calc(var(--x, 0) * 1px)
    calc(var(--y, 0) * 1px),
    hsl(0 100% 100% / var(--border-light-opacity, 0.6)), transparent 100%
  );
}

[data-glow] [data-glow] {
  position: absolute;
  inset: 0;
  will-change: filter;
  opacity: var(--outer, 1);
  border-radius: calc(var(--radius) * 1px);
  border-width: calc(var(--border-size) * 20);
  filter: blur(calc(var(--border-size) * 10));
  background: none;
  pointer-events: none;
  border: none;
}

[data-glow] > [data-glow]::before {
  inset: -10px;
  border-width: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .tw-reveal, .tw-hero-line, .tw-hero-grid, .tw-hero-glow, .tw-hero-aurora,
  .tw-hero-shimmer, .tw-hero-status-dot::after, .command-cell-bar-fill {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  
  [data-glow]::before,
  [data-glow]::after {
    display: none;
  }
}

/* —— Mobile —— */
@media (max-width: 900px) {
  .tw-nav-toggle {
    display: flex;
  }

  .tw-site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    background: var(--navy);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .tw-site-nav.is-open {
    transform: translateX(0);
  }

  .tw-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .pf-card--feature {
    grid-column: span 1;
  }

  .tw-why-list,
  .tw-contact-wrap,
  .tw-clients-list {
    grid-template-columns: 1fr;
  }

  .tw-site-footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tw-service-row {
    grid-template-columns: 2.5rem 1fr;
  }
  
  .tw-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .tw-footer-bottom p {
    flex: none;
  }
}

@media (max-width: 600px) {
  .tw-hero {
    align-items: center;
  }

  .tw-hero-display {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }
}

/* ===============================================
   Responsive touch-target fixes (WCAG AA / 44px)
   =============================================== */
@media (max-width: 900px) {
  .tw-svc-link,
  .tw-pf-link,
  .tw-link-arrow,
  .tw-hero-secondary-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.4rem 0;
  }

  .tw-cta-row,
  .tw-cta-row--center,
  .tw-hero-actions,
  .tw-hero-actions-unified,
  .tw-portfolio-cta {
    gap: 0.75rem 1.5rem;
    row-gap: 1rem;
  }

  .tw-cta-row .tw-link-arrow,
  .tw-cta-row--center .tw-link-arrow,
  .tw-portfolio-cta .tw-link-arrow {
    min-height: 44px;
  }

  .tw-contact-bullets li,
  .tw-pricing-card li,
  .tw-featured-content-list li {
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
  }

  /* Larger primary buttons on mobile so they're never less than 48px tall */
  .tw-btn-primary,
  .tw-btn-outline,
  .tw-btn-header {
    padding: 1rem 1.4rem !important;
    min-height: 48px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
}

/* —— Contact channels (contact page) —— */
.tw-contact-channels {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.tw-contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--light-line);
  border-radius: 12px;
  background: var(--light-surface);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.tw-contact-channel:hover,
.tw-contact-channel:focus-visible {
  border-color: rgba(37, 146, 213, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -14px rgba(0, 0, 102, 0.18);
  outline: none;
}

.tw-contact-channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(37, 146, 213, 0.1);
  color: #2592d5;
  flex-shrink: 0;
}

.tw-contact-channel div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.tw-contact-channel strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light-text);
  letter-spacing: -0.005em;
}

.tw-contact-channel span {
  font-size: 0.75rem;
  color: var(--light-text-dim);
  letter-spacing: 0.04em;
}

/* —— Compact hero (interior pages) —— */
.tw-hero--compact {
  min-height: 70vh;
  min-height: 70dvh;
}

.tw-hero--compact .tw-hero-display h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.95;
}

@media (max-width: 600px) {
  .tw-hero--compact {
    min-height: 60vh;
    min-height: 60dvh;
  }
}

/* —— Process timeline (plugin dev page) —— */
.tw-process-list {
  list-style: none;
  padding: 0;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tw-process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid var(--light-line);
}

.tw-process-list li:last-child {
  border-bottom: none;
}

.tw-process-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2592d5;
  line-height: 1;
  min-width: 3.5rem;
}

.tw-process-body h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--light-text);
}

.tw-process-body p {
  margin: 0;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.55;
  color: var(--light-text-soft);
  max-width: 42rem;
}

/* —— Pricing cards (plugin dev page) —— */
.tw-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 800px) {
  .tw-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}

.tw-pricing-card {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--light-surface);
  border: 1px solid var(--light-line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px -8px rgba(0, 0, 102, 0.08);
}

.tw-pricing-card--featured {
  border-color: #2592d5;
  box-shadow: 0 18px 40px -18px rgba(37, 146, 213, 0.3);
  position: relative;
}

.tw-pricing-card--featured::before {
  content: "Most projects";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2592d5;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

.tw-pricing-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2592d5;
}

.tw-pricing-card--featured .tw-pricing-tier {
  visibility: hidden;
}

.tw-pricing-amount {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--light-text);
  line-height: 1;
}

.tw-pricing-amount span {
  font-size: 0.55em;
  color: var(--light-text-soft);
  font-weight: 600;
  margin-left: 0.1em;
}

.tw-pricing-desc {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--light-text-soft);
}

.tw-pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  flex: 1;
}

.tw-pricing-card li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--light-text-soft);
}

.tw-pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 14px;
  height: 8px;
  border-left: 2px solid #2592d5;
  border-bottom: 2px solid #2592d5;
  transform: rotate(-45deg);
}

/* —— Legal pages (Privacy / Terms) —— */
.tw-legal-body {
  max-width: 48rem;
  margin: 0 auto;
  color: var(--light-text);
}

.tw-legal-intro {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: var(--light-text);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-line);
  margin: 0 0 2rem;
}

.tw-legal-toc {
  background: var(--light-surface);
  border: 1px solid var(--light-line);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin: 0 0 2.5rem;
}

.tw-legal-toc-label {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2592d5;
}

.tw-legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 600px) {
  .tw-legal-toc ul {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.25rem;
  }
}

.tw-legal-toc a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--light-text-soft);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.tw-legal-toc a:hover {
  color: #2592d5;
  border-bottom-color: #2592d5;
}

.tw-legal-body h2 {
  margin: 3rem 0 1rem;
  padding-top: 1.5rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--light-text);
  line-height: 1.25;
  scroll-margin-top: 6rem;
}

.tw-legal-body h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
}

.tw-legal-body h3 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--light-text);
  letter-spacing: -0.005em;
}

.tw-legal-body p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--light-text-soft);
}

.tw-legal-body ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--light-text-soft);
}

.tw-legal-body ul li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.tw-legal-body ul li::marker {
  color: #2592d5;
}

.tw-legal-body strong {
  color: var(--light-text);
  font-weight: 600;
}

.tw-legal-body a {
  color: #2592d5;
  text-decoration: underline;
  text-decoration-color: rgba(37, 146, 213, 0.3);
  text-underline-offset: 3px;
}

.tw-legal-body a:hover {
  text-decoration-color: #2592d5;
}

.tw-legal-foot {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-line);
  font-size: 0.9rem !important;
  color: var(--light-text-dim) !important;
}

/* —— Hosting callout (web dev page) —— */
.tw-hosting-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-top: clamp(2rem, 4vw, 2.5rem);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: linear-gradient(135deg, #2592d5 0%, #1a6fa5 100%);
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 18px 40px -18px rgba(37, 146, 213, 0.4);
}

.tw-hosting-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  flex-shrink: 0;
}

.tw-hosting-copy {
  min-width: 0;
}

.tw-hosting-tag {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.tw-hosting-headline {
  margin: 0 0 0.4rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.25;
}

.tw-hosting-price {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.1rem 0.5rem;
  border-radius: 6px;
  white-space: nowrap;
}

.tw-hosting-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.tw-hosting-cta {
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.tw-hosting-cta:hover {
  background: #fff !important;
  color: #2592d5 !important;
  border-color: #fff !important;
}

@media (max-width: 800px) {
  .tw-hosting-callout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .tw-hosting-icon {
    margin: 0 auto;
  }
  .tw-hosting-cta {
    justify-self: center;
  }
}

/* —— Final CTA (plugin dev page) —— */
.tw-final-cta {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}

.tw-final-cta h2 {
  margin: 0 0 1rem;
}

.tw-final-cta p {
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--light-text-soft);
}

.tw-cta-row--center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.75rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

/* ===============================================
   Light body theme
   Hero, header and footer stay dark navy.
   Body sections (services, portfolio, why, clients,
   FAQ, contact, reviews) lighten to a soft surface.
   =============================================== */

:root {
  --light-bg: #f5f6fb;
  --light-surface: #ffffff;
  --light-text: #0a1140;
  --light-text-soft: rgba(10, 17, 64, 0.72);
  --light-text-dim: rgba(10, 17, 64, 0.55);
  --light-line: rgba(0, 0, 102, 0.1);
  --light-line-strong: rgba(0, 0, 102, 0.18);
}

/* Section backgrounds */
.tw-section,
.tw-portfolio {
  background: var(--light-bg);
  color: var(--light-text);
}

/* Remove the prior dark depth gradients */
.tw-section--depth {
  background: linear-gradient(180deg, #f5f6fb 0%, #eef0f8 100%);
}

/* Reviews section: light card on light bg */
.tw-section--reviews {
  background: var(--light-bg);
}

.tw-reviews-panel {
  background: var(--light-surface);
  border-color: var(--light-line);
  box-shadow: 0 6px 30px -12px rgba(0, 0, 102, 0.1);
}

.tw-reviews-panel::before {
  background: radial-gradient(80% 60% at 50% 0%, rgba(37, 146, 213, 0.08) 0%, transparent 60%);
}

.tw-reviews-label {
  color: #2592d5;
}

/* Headings */
.tw-section .tw-statement,
.tw-portfolio .tw-statement {
  color: var(--light-text);
}

.tw-section .tw-section-lead,
.tw-section .tw-section-kicker,
.tw-portfolio .tw-section-lead {
  color: var(--light-text-soft);
}

.tw-section-eyebrow {
  color: #2592d5;
}

/* Services grid (2x2 cards) */
.tw-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 700px) {
  .tw-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.tw-svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--light-surface);
  border: 1px solid var(--light-line);
  border-radius: 14px;
  box-shadow: 0 4px 18px -8px rgba(0, 0, 102, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tw-svc-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 146, 213, 0.4);
  box-shadow: 0 18px 40px -18px rgba(0, 0, 102, 0.18);
}

.tw-svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(37, 146, 213, 0.1);
  color: #2592d5;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.tw-svc-card:hover .tw-svc-icon {
  background: #2592d5;
  color: #fff;
  transform: rotate(-3deg) scale(1.05);
}

.tw-svc-title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--light-text);
}

.tw-svc-desc {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--light-text-soft);
  flex: 1;
}

.tw-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2592d5;
  text-decoration: none;
  transition: gap 0.25s ease;
}

.tw-svc-card:hover .tw-svc-link {
  gap: 0.7rem;
}

/* Portfolio cards */
.tw-pf-card {
  background: var(--light-surface);
  border-color: var(--light-line);
  color: var(--light-text);
}

.tw-pf-card:hover,
.tw-pf-card:focus-visible {
  border-color: rgba(37, 146, 213, 0.45);
  box-shadow: 0 18px 40px -18px rgba(0, 0, 102, 0.2);
}

.tw-pf-image {
  background: #eef0f8;
}

.tw-pf-image::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(10, 17, 64, 0.55) 100%);
}

.tw-pf-name {
  color: var(--light-text);
}

.tw-pf-outcome {
  color: var(--light-text-soft);
}

.tw-pf-link {
  color: var(--light-text);
}

.tw-pf-card:hover .tw-pf-link,
.tw-pf-card:focus-visible .tw-pf-link {
  color: #2592d5;
}

/* Trust strip */
.tw-portfolio-trust {
  background: var(--light-surface);
  border-color: var(--light-line);
  box-shadow: 0 6px 24px -12px rgba(0, 0, 102, 0.08);
}

.tw-trust-stat strong {
  color: var(--light-text);
}

.tw-trust-stat span {
  color: var(--light-text-dim);
}

/* Why-us list */
.tw-why-item {
  border-left-color: rgba(37, 146, 213, 0.5);
}

.tw-why-item h3 {
  color: var(--light-text);
}

.tw-why-item p {
  color: var(--light-text-soft);
}

/* Clients list */
.tw-clients-list {
  border-top-color: var(--light-line);
}

.tw-clients-list > div {
  border-bottom-color: var(--light-line);
}

.tw-clients-list > div:hover {
  border-bottom-color: rgba(37, 146, 213, 0.5);
}

.tw-clients-list h3 {
  color: var(--light-text);
}

.tw-clients-list p {
  color: var(--light-text-soft);
}

/* FAQ */
.tw-faq {
  border-top-color: var(--light-line);
}

.tw-faq-item {
  border-bottom-color: var(--light-line);
}

.tw-faq-question,
.tw-faq-question:hover,
.tw-faq-question:focus,
.tw-faq-question:focus-visible,
.tw-faq-question:active {
  color: var(--light-text);
}

.tw-faq-question:hover span:first-child {
  color: #2592d5;
}

.tw-faq-answer {
  color: var(--light-text-soft);
}

/* Contact section */
.tw-contact-copy {
  color: var(--light-text);
}

.tw-contact-copy h2 {
  color: var(--light-text);
}

.tw-contact-copy p {
  color: var(--light-text-soft);
}

.tw-contact-copy a {
  color: #2592d5;
}

.tw-contact-bullets li {
  color: var(--light-text-soft);
}

.tw-contact-direct {
  color: var(--light-text-dim);
  border-top-color: var(--light-line);
}

/* Contact form (override the previous dark styling) */
.tw-contact-form input[type="text"],
.tw-contact-form input[type="email"],
.tw-contact-form input[type="tel"],
.tw-contact-form input[type="url"],
.tw-contact-form textarea,
.tw-contact-form select {
  background: var(--light-surface) !important;
  border: 1px solid var(--light-line-strong) !important;
  color: var(--light-text) !important;
}

.tw-contact-form input::placeholder,
.tw-contact-form textarea::placeholder {
  color: var(--light-text-dim) !important;
}

.tw-contact-form label {
  color: var(--light-text-soft) !important;
}

/* Buttons on light bg */
.tw-section .tw-btn-primary,
.tw-portfolio .tw-btn-primary {
  color: #2592d5;
  border-color: #2592d5;
}

.tw-section .tw-btn-primary:hover,
.tw-portfolio .tw-btn-primary:hover {
  background: #2592d5;
  color: #fff;
}

.tw-section .tw-btn-outline,
.tw-portfolio .tw-btn-outline {
  color: #2592d5;
  border-color: rgba(37, 146, 213, 0.4);
}

.tw-section .tw-btn-outline:hover,
.tw-portfolio .tw-btn-outline:hover {
  background: #2592d5;
  color: #fff;
  border-color: #2592d5;
}

.tw-section .tw-link-arrow,
.tw-portfolio .tw-link-arrow {
  color: var(--light-text);
}

.tw-section .tw-link-arrow:hover,
.tw-portfolio .tw-link-arrow:hover {
  color: #2592d5;
}

/* FAQ toggle stays brand blue, no change needed */

/* Disable global cursor spotlight blend on light sections (it does nothing visible) */
.tw-cursor-spotlight {
  /* leave as-is for hero/footer; the screen blend mode reads as nothing over light */
}
