.port-hero {
padding: 140px 0 70px; position: relative; overflow: hidden;
background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
}
.port-hero-bg {
position: absolute; inset: 0;
background:
radial-gradient(ellipse 55% 55% at 0% 0%, rgba(6,37,156,.07), transparent),
radial-gradient(ellipse 45% 45% at 100% 100%, rgba(255,145,76,.05), transparent);
}
.port-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.port-hero-title { font-family: var(--font-display); font-size: clamp(2.5rem,5vw,3.75rem); font-weight: 800; color: var(--text); line-height: 1.1; margin-bottom: 1rem; }
.port-hero-desc { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.results-bar {
display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
background: linear-gradient(135deg,var(--primary-dark),var(--primary));
border-radius: var(--radius-2xl); overflow: hidden; margin-bottom: 2rem;
box-shadow: var(--shadow-xl);
}
.results-bar-item { padding: 1.25rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,.12); flex: 1; min-width: 110px; }
.results-bar-item:last-child { border-right: none; }
.results-bar-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: white; line-height: 1.1; }
.results-bar-label { font-size: .7rem; color: rgba(255,255,255,.65); font-weight: 600; margin-top: .2rem; }
.port-filter {
display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem;
}
.port-filter-btn {
padding: .5rem 1.1rem; border-radius: var(--radius-full);
border: 1.5px solid var(--border); background: var(--surface);
font-size: .82rem; font-weight: 600; color: var(--text-muted);
cursor: pointer; transition: all .2s; font-family: inherit;
}
.port-filter-btn.active, .port-filter-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
[data-theme="dark"] .port-filter-btn.active, [data-theme="dark"] .port-filter-btn:hover { background: var(--accent); border-color: var(--accent); }
.port-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}
.port-card {
background: var(--surface); border: 1.5px solid var(--border);
border-radius: var(--radius-2xl); overflow: hidden;
transition: all .35s var(--ease-spring);
cursor: pointer; display: flex; flex-direction: column;
}
.port-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-xl); border-color: transparent; }
.port-card-visual {
height: 180px; position: relative; overflow: hidden;
display: flex; align-items: center; justify-content: center;
}
.port-card-visual::after {
content: ''; position: absolute; inset: 0;
background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.3) 100%);
}
.port-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.port-card-cat {
font-size: .7rem; font-weight: 700; text-transform: uppercase;
letter-spacing: .08em; margin-bottom: .5rem;
}
.port-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; line-height: 1.35; }
.port-card-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.port-card-metrics { display: flex; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.port-metric { text-align: center; }
.port-metric-num { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; line-height: 1.1; }
.port-metric-label { font-size: .65rem; font-weight: 600; color: var(--text-muted); margin-top: .1rem; }
.port-card-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.port-tag { font-size: .68rem; font-weight: 600; padding: .2rem .55rem; border-radius: var(--radius-full); background: var(--bg-secondary); border: 1px solid var(--border); color: var(--text-muted); }
.port-card-footer {
padding: 1rem 1.5rem; border-top: 1px solid var(--border);
display: flex; align-items: center; justify-content: space-between;
}
.port-card-industry { font-size: .75rem; font-weight: 600; color: var(--text-muted); display: flex; align-items: center; gap: .35rem; }
.port-card-link {
font-size: .78rem; font-weight: 700; color: var(--primary);
display: flex; align-items: center; gap: .35rem;
text-decoration: none; transition: gap .2s;
}
[data-theme="dark"] .port-card-link { color: var(--accent); }
.port-card:hover .port-card-link { gap: .6rem; }
.port-card--featured { grid-column: span 2; }
.port-card--featured .port-card-visual { height: 240px; }
@media (max-width: 1000px) { .port-grid { grid-template-columns: repeat(2,1fr); } .port-card--featured { grid-column: span 2; } }
@media (max-width: 640px) { .port-grid { grid-template-columns: 1fr; } .port-card--featured { grid-column: span 1; } .port-card--featured .port-card-visual { height: 180px; } }
.work-gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 2.5rem; }
.wg-item { border-radius: var(--radius-xl); overflow: hidden; border: 1.5px solid var(--border); background: var(--surface); box-shadow: var(--shadow-md); transition: all .3s var(--ease-spring); }
.wg-item img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 1/1; transition: transform .4s; }
.wg-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: var(--primary); }
.wg-item:hover img { transform: scale(1.04); }
@media (max-width: 1000px) { .work-gallery { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px) { .work-gallery { grid-template-columns: repeat(2,1fr); } }
.port-quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: 3rem 0; }
.port-quotes .port-quote { margin: 0; }
.port-quote--wide { grid-column: 1 / -1; }
@media (max-width: 760px) { .port-quotes { grid-template-columns: 1fr; } }
.port-quote {
background: linear-gradient(135deg,var(--primary-dark),var(--primary));
border-radius: var(--radius-2xl); padding: 2.5rem;
margin: 3rem 0; position: relative; overflow: hidden;
}
.port-quote-mark { font-size: 6rem; line-height: .8; color: rgba(255,255,255,.1); font-family: serif; position: absolute; top: 1rem; left: 1.5rem; }
.port-quote-text { font-size: 1.1rem; color: rgba(255,255,255,.9); line-height: 1.75; font-style: italic; position: relative; z-index: 1; max-width: 680px; margin-bottom: 1.25rem; }
.port-quote-author { font-size: .85rem; font-weight: 700; color: var(--accent); }
.port-quote-role { font-size: .78rem; color: rgba(255,255,255,.55); }
