/* ══════════════════════════════
   HOME PAGE
   ══════════════════════════════ */

.btn-teal {
  background: linear-gradient(135deg, #ff7520, #c44a00);
  color: #f5ede0;
  box-shadow: 0 0 18px rgba(255,117,32,.3);
}
.btn-teal:hover { opacity: .88; box-shadow: 0 0 30px rgba(255,117,32,.5); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  text-shadow: 0 0 20px rgba(255,255,255,.7), 0 0 40px rgba(255,255,255,.3);
  box-shadow: 0 0 24px rgba(255,255,255,.15), 0 0 60px rgba(255,255,255,.06), inset 0 0 20px rgba(255,255,255,.03);
}
.btn-outline:hover { border-color: rgba(255,117,32,.5); color: var(--teal); background: rgba(255,117,32,.07); }

.badge-teal { background: rgba(255,117,32,.12); color: #c44a00; border: 1px solid rgba(255,117,32,.25); }
.badge-muted-dark { background: #ede0d0; color: #7a5a42; border: 1px solid #e0ccb4; }

/* ── Hero ── */
.hero {
  position: relative;
  width: 100%;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(8,4,1,.65) 0%,
      rgba(12,6,2,.52) 40%,
      rgba(20,10,3,.60) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px 104px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,117,32,.1);
  border: 1px solid rgba(255,117,32,.28);
  color: #ffb830;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  padding: 5px 12px; border-radius: 20px;
  margin-bottom: 24px;
}
.hero-badge .material-icons-round { font-size: .9rem; }

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-accent {
  background: linear-gradient(90deg, #ffb830 0%, #ff7520 60%, #ff3d00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted2);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
  text-shadow: 0 1px 12px rgba(0,0,0,.8);
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(20,12,5,.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,117,32,.18);
  border-radius: 14px;
  padding: 16px 20px;
  max-width: 420px;
}
.hero-stat { flex: 1; text-align: center; }
.hero-stat-num { display: block; font-size: 1.5rem; font-weight: 800; color: var(--teal); letter-spacing: -.02em; }
.hero-stat-label { display: block; font-size: .72rem; color: var(--muted); margin-top: 2px; }
.hero-stat-divider { width: 1px; background: var(--border); align-self: stretch; margin: 0 4px; }

/* Mobile-only mini code card — hidden on desktop */
.hero-code-card--mobile { display: none; }

/* ── Hero visual (code card) ── */
.hero-visual { display: flex; align-items: center; justify-content: center; }

.hero-code-card {
  background: rgba(20,12,5,.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,117,32,.18);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5), 0 0 32px rgba(255,117,32,.08);
  width: 100%;
  max-width: 420px;
}
.hcc-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.hcc-dot { width: 10px; height: 10px; border-radius: 50%; }
.hcc-dot.r { background: #ff5f57; }
.hcc-dot.y { background: #febc2e; }
.hcc-dot.g { background: #28c840; }
.hcc-filename { font-size: .72rem; color: var(--muted); margin-left: 8px; font-family: 'Space Mono', monospace; }

.hcc-code {
  padding: 20px 20px 24px;
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  line-height: 1.8;
  color: var(--muted2);
  overflow: hidden;
}

/* Each line of code — typed left-to-right via clip-path */
.cl {
  display: block;
  white-space: pre;
  clip-path: inset(0 100% 0 0);
  animation-name: code-type;
  animation-timing-function: linear;
  animation-fill-mode: both;
}
@keyframes code-type {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 -4px 0 0); }
}

/* Blinking cursor */
.hcc-cursor {
  display: inline-block;
  color: #ffb830;
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  line-height: 1;
  animation: cur-blink .8s step-end infinite;
  animation-delay: .4s;
  margin-top: 2px;
}
@keyframes cur-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.c-keyword  { color: #ffb830; }
.c-class    { color: #ff9a55; }
.c-fn       { color: #ffd580; }
.c-type     { color: #ff7040; }
.c-str      { color: #d4aa70; }
.c-comment  { color: var(--muted); font-style: italic; }

/* ── Ticker ── */
.ticker {
  position: relative;
  background: linear-gradient(90deg, #c44a00 0%, #ff7520 30%, #ffb830 50%, #ff7520 70%, #c44a00 100%);
  background-size: 200% 100%;
  animation: ticker-bg 6s linear infinite;
  height: 46px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 24px rgba(255,117,32,.45), inset 0 1px 0 rgba(255,200,80,.3), inset 0 -1px 0 rgba(140,40,0,.4);
}
@keyframes ticker-bg {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* moving shine overlay */
.ticker-shine {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  animation: ticker-shine 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes ticker-shine {
  0%   { left: -120px; }
  100% { left: 100%; }
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  padding-right: 28px;
}
.ticker-track:hover { animation-play-state: paused; }

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

.ticker-track span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.ticker-track .td {
  font-size: .5rem;
  color: rgba(255,255,255,.45);
  letter-spacing: 0;
}

/* ── Glow divider ── */
.glow-div {
  position: relative;
  height: 1px;
  background: #ddc9a8;
  overflow: visible;
  z-index: 10;
}
.gd-spot {
  position: absolute;
  top: -28px;
  left: -280px;
  width: 280px;
  height: 57px;
  background: radial-gradient(ellipse at 50% 55%,
    rgba(255,195,100,.22) 0%,
    rgba(255,165,60,.1)  35%,
    transparent          70%);
  animation: gd-travel 7s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes gd-travel {
  0%   { left: -280px; opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { left: 100%;  opacity: 0; }
}

/* ── Services strip ── */
.services-strip {
  position: relative;
  background: #ede3d2;
  overflow: hidden;
}
.ss-bg { display: none; }

/* Background layer */
.ss-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Perspective grid */
.ss-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,117,32,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,117,32,.18) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 20%, transparent 75%);
}

/* Glowing orbs */
.ss-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ss-orb-1 {
  width: 500px; height: 320px;
  background: radial-gradient(ellipse, rgba(255,117,32,.45) 0%, transparent 70%);
  top: -120px; left: 5%;
  animation: orb1 9s ease-in-out infinite;
}
.ss-orb-2 {
  width: 420px; height: 380px;
  background: radial-gradient(ellipse, rgba(200,80,0,.38) 0%, transparent 70%);
  bottom: -100px; right: 8%;
  animation: orb2 12s ease-in-out infinite;
}
.ss-orb-3 {
  width: 300px; height: 220px;
  background: radial-gradient(ellipse, rgba(255,184,48,.25) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orb3 6s ease-in-out infinite;
}

@keyframes orb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(40px, 30px) scale(1.08); }
  70%       { transform: translate(-25px, 50px) scale(.94); }
}
@keyframes orb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-50px, -35px) scale(1.1); }
}
@keyframes orb3 {
  0%, 100% { opacity: .5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;  transform: translate(-50%, -50%) scale(1.3); }
}

/* Sweep scan line */
.ss-scan {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,117,32,.0) 15%,
    rgba(255,184,48,.55) 50%,
    rgba(255,117,32,.0) 85%,
    transparent 100%);
  box-shadow: 0 0 12px rgba(255,117,32,.4), 0 0 40px rgba(255,117,32,.15);
  animation: scan 7s linear infinite;
}
@keyframes scan {
  0%   { top: 0%;   opacity: 0; }
  4%   { opacity: 1; }
  96%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Corner bracket decorations */
.ss-corner {
  position: absolute;
  width: 22px; height: 22px;
  border-color: rgba(255,117,32,.4);
  border-style: solid;
}
.ss-corner-tl { top: 20px;  left: 20px;  border-width: 2px 0 0 2px; }
.ss-corner-tr { top: 20px;  right: 20px; border-width: 2px 2px 0 0; }
.ss-corner-bl { bottom: 20px; left: 20px;  border-width: 0 0 2px 2px; }
.ss-corner-br { bottom: 20px; right: 20px; border-width: 0 2px 2px 0; }

/* Service cards */
/* ── Service rows ── */
.sstrip-rows { display: flex; flex-direction: column; }

.ssr {
  display: grid;
  grid-template-columns: 44px 44px 1fr 28px;
  align-items: center;
  gap: 20px;
  padding: 22px 20px;
  border-bottom: 1px solid #dcc9ae;
  border-radius: 10px;
  cursor: pointer;
  transition: background .18s, padding-left .18s;
  animation: ssr-in .5s ease both;
  animation-delay: calc(var(--ri, 0) * 0.1s);
  text-decoration: none; color: inherit;
}
.ssr:first-child { border-top: 1px solid #dcc9ae; }
.ssr:hover { background: rgba(255,117,32,.05); padding-left: 28px; }

@keyframes ssr-in {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.ssr-num {
  font-size: 1rem; font-weight: 900;
  color: rgba(255,117,32,.28);
  font-family: 'Space Mono', monospace;
  letter-spacing: -.02em;
  transition: color .18s;
}
.ssr:hover .ssr-num { color: #ff7520; }

.ssr-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, box-shadow .25s;
}
.ssr-icon .material-icons-round { font-size: 1.35rem; color: #fff; }
.ssr:hover .ssr-icon { transform: rotate(-6deg) scale(1.1); }

.ssr-icon--design {
  background: linear-gradient(135deg, #ff7520, #c44a00);
  box-shadow: 0 4px 14px rgba(255,117,32,.3);
}
.ssr:hover .ssr-icon--design { box-shadow: 0 6px 22px rgba(255,117,32,.5); }

.ssr-icon--shop {
  background: linear-gradient(135deg, #ff9a3c, #e05c00);
  box-shadow: 0 4px 14px rgba(255,154,60,.3);
}
.ssr:hover .ssr-icon--shop { box-shadow: 0 6px 22px rgba(255,154,60,.5); }

.ssr-icon--pay {
  background: linear-gradient(135deg, #ffb830, #d47800);
  box-shadow: 0 4px 14px rgba(255,184,48,.3);
}
.ssr:hover .ssr-icon--pay { box-shadow: 0 6px 22px rgba(255,184,48,.5); }

.ssr-icon--seo {
  background: linear-gradient(135deg, #e06800, #a03800);
  box-shadow: 0 4px 14px rgba(200,90,0,.3);
}
.ssr:hover .ssr-icon--seo { box-shadow: 0 6px 22px rgba(200,90,0,.5); }

.ssr-icon--admin {
  background: linear-gradient(135deg, #c44a00, #8a2800);
  box-shadow: 0 4px 14px rgba(180,60,0,.3);
}
.ssr:hover .ssr-icon--admin { box-shadow: 0 6px 22px rgba(180,60,0,.5); }

.ssr-content h3 { font-size: .92rem; font-weight: 700; color: #1a0e06; margin-bottom: 3px; }
.ssr-content p  { font-size: .78rem; color: #8a6a50; line-height: 1.5; }

.ssr-arrow {
  font-size: 1.1rem !important;
  color: rgba(255,117,32,.3);
  transition: color .18s, transform .18s;
}
.ssr:hover .ssr-arrow { color: #ff7520; transform: translateX(4px); }

.sstrip-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.sstrip-heading {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #1a0e06;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.sstrip-heading span {
  background: linear-gradient(90deg, #ff7520, #c44a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section labels on light bg */
.services-strip .sec-title { color: #8a6a50; }
.services-strip .sec-link  { color: #ff7520; }

/* ══════════════════════════════
   FEATURED WORK
   ══════════════════════════════ */
.featured-work {
  position: relative;
  background: #f5ede0;
  padding: 0;
  overflow: hidden;
}

.fw-bg { display: none; }

/* Tiny drifting star-dots */
.fw-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,184,48,.75) 1px, transparent 1px),
    radial-gradient(rgba(255,117,32,.55) 1px, transparent 1px);
  background-size: 80px 80px, 130px 130px;
  background-position: 0 0, 40px 40px;
  animation: star-drift 28s linear infinite;
  opacity: .65;
}
@keyframes star-drift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

/* Aurora blobs */
.fw-aurora {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
.fw-aurora-1 {
  width: 600px; height: 260px;
  background: radial-gradient(ellipse, rgba(255,117,32,.38) 0%, transparent 70%);
  top: -80px; left: -80px;
  animation: aurora1 14s ease-in-out infinite;
}
.fw-aurora-2 {
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(200,80,0,.32) 0%, transparent 70%);
  bottom: -60px; right: -60px;
  animation: aurora2 18s ease-in-out infinite;
}
@keyframes aurora1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(80px, 40px) scale(1.15); }
}
@keyframes aurora2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(-60px, -50px) scale(1.1); }
}

/* Sweeping diagonal light beam */
.fw-beam {
  position: absolute;
  top: -40%; left: -20%;
  width: 60%; height: 200%;
  background: linear-gradient(105deg,
    transparent 40%,
    rgba(255,184,48,.03) 50%,
    rgba(255,117,32,.05) 55%,
    rgba(255,184,48,.03) 60%,
    transparent 70%);
  animation: beam-sweep 12s ease-in-out infinite;
  transform-origin: top left;
}
@keyframes beam-sweep {
  0%, 100% { transform: translateX(-30%) rotate(0deg); opacity: 0; }
  20%       { opacity: 1; }
  50%       { transform: translateX(160%) rotate(0deg); opacity: 1; }
  70%       { opacity: 0; }
}

/* Cards */
.fw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.fw-card {
  display: flex; flex-direction: column;
  background: #fdf6ee;
  border: 1.5px solid #e8d5be;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(180,80,0,.06);
  transition: border-color .25s, transform .25s, box-shadow .35s;
  animation: card-rise .6s ease both;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Coloured borders at rest */
.fw-card--green { border-color: rgba(15,100,40,.25); }
.fw-card--pink  { border-color: rgba(180,60,110,.25); }
.fw-card--red   { border-color: rgba(180,30,30,.25); }
.fw-card--blue  { border-color: rgba(30,70,180,.25); }

/* Coloured glow on hover */
.fw-card--green:hover { border-color: rgba(15,120,50,.55); box-shadow: 0 24px 70px rgba(15,100,40,.3), 0 0 0 1px rgba(15,120,50,.15); }
.fw-card--pink:hover  { border-color: rgba(180,60,110,.55); box-shadow: 0 24px 70px rgba(160,50,90,.3), 0 0 0 1px rgba(180,60,110,.15); }
.fw-card--red:hover   { border-color: rgba(180,30,30,.55); box-shadow: 0 24px 70px rgba(160,30,30,.3), 0 0 0 1px rgba(180,30,30,.15); }
.fw-card--blue:hover  { border-color: rgba(30,70,200,.55); box-shadow: 0 24px 70px rgba(30,60,180,.3), 0 0 0 1px rgba(30,70,200,.15); }
.fw-card:nth-child(2) { animation-delay: .1s; }
.fw-side .fw-card:first-child  { animation-delay: .15s; }
.fw-side .fw-card:last-child   { animation-delay: .25s; }

@keyframes card-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fw-card:hover {
  border-color: rgba(255,117,32,.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(180,80,0,.15);
}

/* Holographic shimmer on hover */
.fw-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(255,184,48,.06) 50%,
    transparent 70%);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.fw-card:hover::after {
  opacity: 1;
  animation: shimmer 1.2s ease infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Card image area */
.fw-card-img {
  height: 160px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.fw-card--large .fw-card-img { height: 480px; }

.fw-card-img--skelbiam { background: linear-gradient(160deg, #1e0900, #7a3200, #c44a00); }
.fw-card-img--fashion  { background: linear-gradient(160deg, #1a0d2e, #4a1942, #7b2c6e); }
.fw-card-img--reg      { background: #fff; }
.fw-card-img--uksk     { background: linear-gradient(160deg, #021a0e, #0a4a28, #127a45); }

/* Dot pattern overlay */
.fw-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

/* Browser chrome bar */
.fw-browser {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.fw-browser--green,
.fw-browser--blue,
.fw-browser--red,
.fw-browser--pink,
.fw-browser--warm {
  background: rgba(28,10,2,.92);
  border-bottom-color: rgba(255,117,32,.18);
}
.fw-br-dots { display: flex; gap: 5px; }
.fw-br-dots i {
  display: block;
  width: 9px; height: 9px;
  border-radius: 50%;
}
.fw-br-dots i.r { background: #ff5f57; }
.fw-br-dots i.y { background: #febc2e; }
.fw-br-dots i.g { background: #28c840; }
/* Live dot */
.fw-br-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: #28c840;
  box-shadow: 0 0 6px rgba(40,200,64,.9);
  flex-shrink: 0;
  animation: live-pulse 2s ease-in-out infinite;
}
.fw-br-live--pink { background: #f472b6; box-shadow: 0 0 6px rgba(244,114,182,.9); }
.fw-br-live--red  { background: #f87171; box-shadow: 0 0 6px rgba(248,113,113,.9); }
.fw-br-live--blue { background: #60a5fa; box-shadow: 0 0 6px rgba(96,165,250,.9); }
@keyframes live-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.75); }
}

.fw-br-addr {
  flex: 1;
  text-align: center;
  font-size: .65rem;
  color: rgba(255,255,255,.45);
  font-family: 'Space Mono', monospace;
  letter-spacing: .02em;
  background: rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 2px 10px;
}
.fw-br-icon { font-size: .85rem !important; color: rgba(255,255,255,.3); }

/* Icon + glow in center of image */
.fw-img-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.fw-icon-ring {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  animation: fw-ring-pulse 2.5s ease-in-out infinite;
}
.fw-icon-ring::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
}
@keyframes fw-ring-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.1); opacity: .6; }
}
.fw-card-icon {
  font-size: 2.8rem;
  color: rgba(255,255,255,.3);
  position: relative;
  z-index: 1;
  transition: transform .3s, color .3s;
}
.fw-card:hover .fw-card-icon { transform: scale(1.1); color: rgba(255,255,255,.55); }

/* Card body */
.fw-card-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.fw-card-desc { flex: 1; }
.fw-card-kicker {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ff7520;
}
.fw-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.fw-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a0e06;
  letter-spacing: -.02em;
}
.fw-card-desc { font-size: .8rem; color: #7a5a42; line-height: 1.6; }

/* Feature perks (large card only) */
.fw-card-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 12px;
}
.fw-card-perks span {
  display: flex; align-items: center; gap: 5px;
  font-size: .73rem; color: #8a6a50;
}
.fw-card-perks .material-icons-round {
  font-size: .8rem;
  color: #ff7520;
  flex-shrink: 0;
}

/* CTA button */
.fw-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 9px 18px;
  background: #1a0e06;
  color: #f5ede0;
  font-size: .78rem;
  font-weight: 700;
  border-radius: 10px;
  align-self: flex-start;
  transition: background .18s, transform .18s, box-shadow .18s;
}
.fw-card-btn .material-icons-round { font-size: .9rem; transition: transform .2s; }
.fw-card:hover .fw-card-btn {
  background: #ff7520;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,117,32,.35);
}
.fw-card:hover .fw-card-btn .material-icons-round { transform: translate(2px, -2px); }

/* Section labels on light bg */
.featured-work .sec-title { color: #8a6a50; }
.featured-work .sec-link  { color: #ff7520; }

/* wcp overrides for compact homepage cards */
.fw-card-img .wcp { min-height: unset; }
.fw-card-img .wcp-inner { gap: 7px; padding: 0 12px; }
.fw-card-img .wcp-icon-wrap { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 0; }
.fw-card-img .wcp-icon-wrap .material-icons-round { font-size: 1.4rem; }
.fw-card-img .wcp-name { font-size: .72rem; }
.fw-card-img .wcp-desc { font-size: .6rem; }
.fw-card-img .wcp-chips { display: none; }

/* ── Project screenshot preview ── */
.fw-preview-img {
  flex: 1;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.fw-preview-img.fw-preview-contain {
  object-fit: contain;
  object-position: center;
  background: #fff;
  width: 80%;
  height: 80%;
  flex: unset;
  align-self: center;
  margin: auto;
}
.fw-preview-img.fw-preview-full {
  object-fit: contain;
  object-position: center top;
}

/* ── Skelbiam.com hero mockup ── */
.sk-preview {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0e0e12;
  position: relative;
  z-index: 2;
  padding: 12px 14px 10px;
  gap: 9px;
  align-items: center;
  justify-content: center;
}

/* Subtle grid like real site */
.sk-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

/* Badge pills row */
.sk-pills {
  display: flex; gap: 5px; flex-wrap: wrap;
  justify-content: center;
  position: relative; z-index: 1; width: 100%;
}
.sk-pill {
  display: inline-flex; align-items: center; gap: 3px;
  border: 1px solid; border-radius: 20px;
  padding: 2px 8px;
  font-size: 5.5px; font-weight: 600;
  white-space: nowrap;
}
.sk-pill-green  { background: rgba(0,229,160,.1);   border-color: rgba(0,229,160,.35); color: #00e5a0; }
.sk-pill-purple { background: rgba(130,100,240,.12); border-color: rgba(130,100,240,.4); color: #a78bfa; }

/* Headline block */
.sk-headline {
  text-align: center;
  position: relative; z-index: 1;
}
.sk-h1 {
  font-size: 15px; font-weight: 900; color: #fff;
  letter-spacing: -.4px; line-height: 1.15;
}
.sk-h2 {
  font-size: 22px; font-weight: 900; line-height: 1.1;
  letter-spacing: -.5px;
  background: linear-gradient(90deg, #00e5a0 0%, #00c8c8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sk-ai {
  font-size: 6px; font-weight: 700; margin-top: 3px;
  background: linear-gradient(90deg, #00e5a0, #7c3aed);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sk-desc {
  font-size: 5.5px; color: rgba(255,255,255,.5);
  line-height: 1.5; margin-top: 4px;
  max-width: 220px; margin-left: auto; margin-right: auto;
}

/* Search bar */
.sk-searchbar {
  display: flex; width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px; overflow: hidden;
  position: relative; z-index: 1;
  flex-shrink: 0;
}
.sk-sb-inner {
  flex: 1; display: flex; align-items: center; gap: 5px;
  padding: 5px 9px;
}
.sk-sb-icon { font-size: 7px; opacity: .5; }
.sk-sb-text { font-size: 5.5px; color: rgba(255,255,255,.35); }
.sk-sb-btn {
  background: #00e5a0; color: #0c0c0e;
  font-size: 7px; font-weight: 800;
  padding: 0 14px;
  display: flex; align-items: center;
  flex-shrink: 0;
}

/* Category pills */
.sk-catpills {
  display: flex; gap: 4px; flex-wrap: wrap;
  justify-content: center;
  position: relative; z-index: 1; width: 100%;
}
.sk-cat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  padding: 3px 8px;
  font-size: 5.5px; color: rgba(255,255,255,.75); font-weight: 600;
  white-space: nowrap;
}

/* ══════════════════════════════
   STACK SECTION
   ══════════════════════════════ */
.stack-section {
  background: #ede3d2;
}

.stack-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0ccb4;
  margin-bottom: 40px;
}
.stack-heading {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #1a0e06;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.stack-heading span {
  background: linear-gradient(90deg, #ff7520, #c44a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stack-sub {
  font-size: .88rem;
  color: #7a5a42;
  line-height: 1.7;
  align-self: end;
}

/* ── Tech badges ── */
.stack-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.stack-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fdf6ee;
  border: 1.5px solid #e8d5be;
  border-radius: 14px;
  padding: 10px 18px 10px 10px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  animation: badge-in .4s ease both;
  animation-delay: calc(var(--si, 0) * 0.06s);
  cursor: default;
}
@keyframes badge-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stack-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(255,117,32,.4);
  box-shadow: 0 6px 20px rgba(180,80,0,.12);
}
.sb-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; letter-spacing: -.02em;
  flex-shrink: 0;
}
.sb-icon .material-icons-round { font-size: 1.1rem; }
.sb-php   { background: #4f2d8a; color: #d8b4fe; }
.sb-mysql { background: #005e86; color: #7dd3f8; }
.sb-html  { background: #c0390b; color: #fca57a; }
.sb-css   { background: #195fa8; color: #93c5fd; }
.sb-js    { background: #8a6e00; color: #fde047; }
.sb-laravel { background: #5c0a14; color: #ff8a9a; }
.sb-api   { background: #3b1f6e; color: #c4b5fd; }
.sb-claude { background: #ff7520; color: #fff; }
.sb-claude .material-icons-round { color: #fff; }
.stack-badge span { font-size: .82rem; font-weight: 700; color: #1a0e06; }

/* ── Bottom split ── */
.stack-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Terminal */
.stack-terminal {
  background: #140c05;
  border: 1px solid rgba(255,117,32,.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.st-bar {
  display: flex; align-items: center; gap: 10px;
  background: #1e1208;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,117,32,.15);
}
.st-dots { display: flex; gap: 5px; }
.st-dots i { display: block; width: 10px; height: 10px; border-radius: 50%; }
.st-dots i.r { background: #ff5f57; }
.st-dots i.y { background: #febc2e; }
.st-dots i.g { background: #28c840; }
.st-title { font-size: .68rem; color: #7a5a42; font-family: 'Space Mono', monospace; margin: 0 auto; }

.st-body {
  padding: 18px 20px 20px;
  font-family: 'Space Mono', monospace;
  font-size: .7rem;
  line-height: 2;
  overflow: hidden;
}
.st-line {
  display: block;
  white-space: pre;
  clip-path: inset(0 100% 0 0);
  animation-name: code-type;
  animation-timing-function: linear;
  animation-fill-mode: both;
}
.st-gap { line-height: 1; }
.st-prompt { color: #ff7520; }
.st-cmd    { color: #f5ede0; }
.st-ok     { color: #28c840; }
.st-out    { color: #7a8a6a; }
.st-cursor {
  display: inline-block;
  color: #ff7520;
  animation: cur-blink .8s step-end infinite;
  font-size: .7rem;
  font-family: 'Space Mono', monospace;
}

/* Process steps */
.stack-process {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sp-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e0ccb4;
  position: relative;
  transition: transform .2s;
}
.sp-step:first-child { padding-top: 0; }
.sp-step:last-child  { border-bottom: none; padding-bottom: 0; }
.sp-step:hover { transform: translateX(4px); }

.sp-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(255,117,32,.2);
  font-family: 'Space Mono', monospace;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  padding-top: 2px;
  transition: color .2s;
}
.sp-step:hover .sp-num { color: rgba(255,117,32,.5); }
.sp-body h4 {
  font-size: .9rem;
  font-weight: 700;
  color: #1a0e06;
  margin-bottom: 5px;
}
.sp-body p {
  font-size: .78rem;
  color: #7a5a42;
  line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .stack-intro  { grid-template-columns: 1fr; gap: 12px; }
  .stack-bottom { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .stack-section { padding: 0; }
  .stack-intro { padding: 28px 16px 20px; }
  .stack-heading { font-size: 1.5rem; }

  .stack-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 16px;
    margin-bottom: 24px;
  }
  .stack-badge {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 6px;
    gap: 6px;
    text-align: center;
    border-radius: 12px;
  }
  .stack-badge span { font-size: .7rem; }
  .sb-icon { width: 36px; height: 36px; border-radius: 10px; }
  .sb-icon .material-icons-round { font-size: .95rem; }

  .stack-bottom { padding: 0 16px 28px; gap: 20px; }
  .stack-terminal { border-radius: 12px; }
  .st-body { padding: 12px 14px 14px; }

  .stack-process { gap: 0; }
  .sp-step { padding: 14px 0; gap: 14px; }
  .sp-num { display: none; }
  .sp-body h4 { font-size: .85rem; }
  .sp-body p  { font-size: .75rem; }
}

/* ══════════════════════════════
   CTA — radar pulse + energy core
   ══════════════════════════════ */
.cta-banner {
  background: #f5ede0;
  padding: 0 0 72px;
}

.cta-inner {
  position: relative;
  background: linear-gradient(135deg, #ff7520 0%, #c44a00 55%, #9e3200 100%);
  background-size: 200% 200%;
  animation: cta-bg-shift 7s ease-in-out infinite;
  border-radius: 28px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(160,50,0,.35), 0 4px 24px rgba(160,50,0,.2);
}
@keyframes cta-bg-shift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Dot grid overlay */
.cta-inner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
/* Shine sweep */
.cta-inner::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 220px;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.1) 50%, transparent 70%);
  animation: cta-shine 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cta-shine { 0%{left:-220px} 65%{left:110%} 100%{left:110%} }

/* ── Left ── */
.cta-left { position: relative; z-index: 1; padding-right: 48px; }

.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  margin-bottom: 20px;
}
.cta-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #28c840;
  box-shadow: 0 0 6px rgba(40,200,64,.7);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(.8); }
}

.cta-heading {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}
.cta-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 380px;
}

.cta-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(0,0,0,.15);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 12px 20px;
  display: inline-flex;
}
.cta-stat { text-align: center; padding: 0 16px; }
.cta-stat strong { display: block; font-size: 1.2rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.cta-stat span   { display: block; font-size: .65rem; color: rgba(255,255,255,.6); margin-top: 1px; text-transform: uppercase; letter-spacing: .06em; }
.cta-stat-div    { width: 1px; height: 30px; background: rgba(255,255,255,.2); }

/* ── Divider ── */
.cta-divider {
  width: 1px; height: 200px;
  background: rgba(255,255,255,.2);
  position: relative; z-index: 1;
}

/* ── Right ── */
.cta-right { position: relative; z-index: 1; padding-left: 48px; display: flex; flex-direction: column; gap: 20px; }

.cta-contact-block { display: flex; flex-direction: column; gap: 6px; }
.cta-contact-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.55); }
.cta-email {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-size: .92rem; font-weight: 700;
  text-decoration: none;
  transition: opacity .15s;
}
.cta-email:hover { opacity: .8; }
.cta-email .material-icons-round { font-size: 1.1rem; }

.cta-promises {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.cta-promises li {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: rgba(255,255,255,.8);
}
.cta-promises .material-icons-round { font-size: 1rem; color: rgba(255,255,255,.6); flex-shrink: 0; }

.cta-main-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  color: #c44a00;
  font-size: .85rem; font-weight: 800;
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  align-self: flex-start;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transition: transform .18s, box-shadow .18s, background .15s;
}
.cta-main-btn .material-icons-round { font-size: 1rem; transition: transform .2s; }
.cta-main-btn:hover {
  background: #fff8f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.cta-main-btn:hover .material-icons-round { transform: translate(2px, -2px); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-container { grid-template-columns: 1fr; padding: 72px 24px 80px; }
  .hero-visual { display: none; }
  .hero-sub { display: none; }
  .hero-stats { max-width: 100%; }
  .sstrip-header { align-items: center; gap: 10px; margin-bottom: 16px; }
  .sstrip-heading { font-size: .95rem; white-space: nowrap; line-height: 1.2; }
  .sstrip-heading br { display: none; }

  .ssr {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 16px 14px;
  }
  .ssr-num { display: none; }
  .ssr-arrow { display: none; }
  .ssr-icon { width: 48px; height: 48px; border-radius: 14px; }
  .ssr-content h3 { font-size: .95rem; }
  .ssr-content p  { font-size: .82rem; }
  .fw-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .fw-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-container { padding: 56px 16px 64px; }
  .hero-code-card--mobile {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    pointer-events: none;
  }
  .hero-actions .btn-teal {
    box-shadow: 0 0 22px rgba(255,117,32,.55), 0 0 48px rgba(255,117,32,.2);
    animation: btn-glow 2.5s ease-in-out infinite;
  }
  @keyframes btn-glow {
    0%,100% { box-shadow: 0 0 18px rgba(255,117,32,.5), 0 0 40px rgba(255,117,32,.15); }
    50%      { box-shadow: 0 0 30px rgba(255,117,32,.75), 0 0 60px rgba(255,117,32,.3); }
  }
  .hero-title { text-align: center; }
  .hero-accent {
    background: linear-gradient(90deg, #ff3d00 0%, #ff7520 25%, #ffaa50 50%, #ff7520 75%, #ffb830 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: accent-shine 3s ease-in-out infinite;
  }
  @keyframes accent-shine {
    0%   { background-position: 100% 0; }
    60%  { background-position: -100% 0; }
    100% { background-position: -100% 0; }
  }
  .hero-badge {
    display: table;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(255,117,32,.2), rgba(255,184,48,.15));
    border-color: rgba(255,117,32,.5);
    color: #ff9a40;
    position: relative;
    overflow: hidden;
  }
  .hero-badge::after {
    content: '';
    position: absolute;
    top: 0; left: -80%; width: 60%; height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
    animation: badge-shine 3s ease-in-out infinite;
  }
  @keyframes badge-shine {
    0%   { left: -80%; }
    60%  { left: 120%; }
    100% { left: 120%; }
  }
  .hero-code-card--mobile .hcc-code {
    font-size: .58rem;
    padding: 10px 12px 14px;
    line-height: 1.7;
  }
  .hero-code-card--mobile .hcc-bar {
    padding: 7px 12px;
  }
  .hero-code-card--mobile .hcc-filename { font-size: .6rem; }
  .hero-title { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  /* CTA mobile — simplified single column */
  .cta-inner { grid-template-columns: 1fr; gap: 24px; padding: 28px 20px; }
  .cta-divider { display: none; }
  .cta-left  { padding-right: 0; }
  .cta-right { padding-left: 0; gap: 16px; }
  .cta-heading { font-size: 1.5rem; }
  .cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    padding: 10px 0;
  }
  .cta-stat { padding: 0; text-align: center; }
  .cta-stat strong { font-size: .95rem; }
  .cta-stat span   { font-size: .58rem; letter-spacing: .03em; }
  .cta-stat-div    { display: none; }
  .cta-contact-block { display: none; }
  .cta-main-btn { width: 100%; justify-content: center; }
}
