:root {
  --bg: #09090b;
  --bg-soft: #101014;
  --surface: rgba(255,255,255,.055);
  --surface-strong: rgba(255,255,255,.085);
  --text: #f5f5f4;
  --muted: #929298;
  --line: rgba(255,255,255,.12);
  --accent: #b8ff58;
  --accent-2: #8b5cf6;
  --max: 1240px;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #0a0a0b; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 30; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed; width: 420px; height: 420px; border-radius: 50%; pointer-events: none; z-index: -1;
  background: radial-gradient(circle, rgba(139,92,246,.12), rgba(139,92,246,0) 68%);
  transform: translate(-50%, -50%);
  left: 50%; top: 30%;
}

.section-shell { width: min(calc(100% - 56px), var(--max)); margin-inline: auto; }

.site-header {
  position: fixed; z-index: 20; top: 18px; left: 50%; transform: translateX(-50%);
  width: min(calc(100% - 36px), var(--max)); height: 68px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 16px 0 18px;
  border: 1px solid rgba(255,255,255,.1); border-radius: 18px;
  background: rgba(10,10,12,.68); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.site-header.scrolled { background: rgba(10,10,12,.9); box-shadow: 0 10px 40px rgba(0,0,0,.28); }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: Manrope, sans-serif; font-weight: 800; letter-spacing: -.04em; font-size: 18px; }
.brand-mark { width: 32px; height: 32px; display: grid; place-items: center; color: #0a0a0b; background: var(--accent); border-radius: 9px; font-size: 16px; transform: rotate(-3deg); transition: transform .25s ease; }
.brand:hover .brand-mark { transform: rotate(5deg) scale(1.06); }
.brand-slash { color: var(--accent); margin: 0 .08em; }

.nav { display: flex; align-items: center; gap: 26px; font-size: 14px; color: #bdbdc3; }
.nav > a { position: relative; transition: color .2s ease; }
.nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--text); transition: right .3s ease; }
.nav > a:hover { color: white; }
.nav > a:hover::after { right: 0; }
.nav-cta { background: #f4f4f2; color: #0a0a0b !important; padding: 12px 16px; border-radius: 12px; font-weight: 600; display: flex; gap: 10px; align-items: center; }
.nav-cta span { transition: transform .25s ease; }
.nav-cta:hover span { transform: translate(3px,-3px); }
.nav-toggle { display: none; width: 42px; height: 42px; background: transparent; border: 0; position: relative; cursor: pointer; }
.nav-toggle span { position: absolute; left: 9px; width: 24px; height: 1px; background: white; transition: .25s ease; }
.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { top: 25px; }
.nav-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.hero { min-height: 100svh; padding-top: 160px; padding-bottom: 54px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 60px; position: relative; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #b6b6bd; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 30px; }
.status-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 5px rgba(184,255,88,.09); }
.hero h1 { font-family: Manrope, sans-serif; font-size: clamp(54px, 6vw, 92px); line-height: .98; letter-spacing: -.065em; margin: 0; max-width: 820px; font-weight: 700; }
.text-gradient { background: linear-gradient(105deg, #fff 5%, var(--accent) 48%, #9c7cff 92%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { color: #a9a9b0; font-size: clamp(17px, 1.6vw, 20px); line-height: 1.65; max-width: 650px; margin: 32px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { height: 56px; padding: 0 22px; border-radius: 15px; display: inline-flex; align-items: center; justify-content: center; gap: 15px; font-size: 15px; font-weight: 600; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.button-primary { background: var(--accent); color: #10110e; }
.button-primary:hover { transform: translateY(-3px); }
.button-primary span { transition: transform .25s ease; }
.button-primary:hover span { transform: translate(3px,-3px); }
.button-ghost { border: 1px solid var(--line); color: #c8c8cd; background: rgba(255,255,255,.025); }
.button-ghost:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); transform: translateY(-3px); }

.hero-stage { min-height: 520px; position: relative; display: grid; place-items: center; }
.stage-window { width: min(100%, 510px); aspect-ratio: 1 / .86; border-radius: 24px; border: 1px solid rgba(255,255,255,.14); background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025)); box-shadow: 0 40px 100px rgba(0,0,0,.45); overflow: hidden; transform: perspective(1000px) rotateY(-7deg) rotateX(3deg); transform-style: preserve-3d; transition: transform .18s ease-out; }
.window-topbar { height: 52px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 16px; color: #77777e; font-size: 11px; }
.traffic-lights { display: flex; gap: 6px; }
.traffic-lights i { display: block; width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.19); }
.window-url { padding: 7px 14px; border: 1px solid rgba(255,255,255,.08); border-radius: 20px; }
.window-menu { text-align: right; letter-spacing: 2px; }
.window-content { height: calc(100% - 52px); padding: 42px; display: flex; flex-direction: column; position: relative; overflow: hidden; background: radial-gradient(circle at 82% 22%, rgba(184,255,88,.18), transparent 27%), radial-gradient(circle at 18% 78%, rgba(139,92,246,.23), transparent 31%); }
.window-content::before { content:""; position:absolute; width:210px; height:210px; right:-70px; top:55px; border:1px solid rgba(255,255,255,.16); border-radius:50%; box-shadow:0 0 0 26px rgba(255,255,255,.02),0 0 0 52px rgba(255,255,255,.018); }
.mini-label { font-size: 10px; color: #94949c; letter-spacing: .15em; }
.mini-heading { margin-top: auto; font-family: Manrope, sans-serif; font-size: clamp(38px, 4vw, 58px); font-weight: 700; letter-spacing: -.055em; line-height: .96; }
.mini-heading span { color: var(--accent); }
.mini-footer { margin-top: 34px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; font-size: 9px; color: #797980; letter-spacing: .12em; }
.mini-line { height: 1px; background: rgba(255,255,255,.13); }
.floating-chip { position: absolute; border: 1px solid rgba(255,255,255,.12); background: rgba(20,20,24,.82); backdrop-filter: blur(12px); padding: 12px 15px; border-radius: 14px; font-size: 12px; color: #bcbcc3; box-shadow: 0 14px 40px rgba(0,0,0,.25); animation: float 4s ease-in-out infinite; }
.chip-one { left: 2%; top: 23%; }
.chip-two { right: 0; bottom: 21%; animation-delay: -2s; }
.chip-two span { color: var(--accent); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 320px; height: 320px; right: 8%; top: 19%; background: rgba(139,92,246,.08); filter: blur(65px); }
.hero-orb-two { width: 240px; height: 240px; right: 30%; bottom: 9%; background: rgba(184,255,88,.055); filter: blur(60px); }
.hero-bottom { grid-column: 1 / -1; align-self: end; display: flex; justify-content: space-between; align-items: end; margin-top: 14px; color: #73737a; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.scroll-indicator { width: 32px; height: 50px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; display: grid; place-items: start center; padding-top: 9px; }
.scroll-indicator span { width: 3px; height: 8px; background: var(--accent); border-radius: 5px; animation: scrollDot 1.7s ease-in-out infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 0; } 25% { opacity: 1; } 70% { opacity: 1; } 100% { transform: translateY(19px); opacity: 0; } }

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0d0d10;
}
.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  padding: 17px 0 17px 20px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: none;
  backface-visibility: hidden;
  font-family: Manrope, sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  color: #78787f;
}
.ticker-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  white-space: nowrap;
}
.ticker-track i {
  color: var(--accent);
  font-style: normal;
  font-size: 13px;
}

.section { padding-top: 145px; padding-bottom: 60px; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: end; margin-bottom: 66px; }
.section-index { display: block; color: var(--accent); font-size: 11px; letter-spacing: .14em; margin-bottom: 20px; }
.section-heading h2 { margin: 0; font-family: Manrope, sans-serif; font-size: clamp(42px, 5vw, 72px); letter-spacing: -.055em; line-height: 1.02; }
.section-heading .muted { color: #66666d; }
.section-heading p { margin: 0 0 7px; color: #929299; line-height: 1.7; max-width: 480px; font-size: 15px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card { min-height: 390px; border: 1px solid var(--line); border-radius: var(--radius); padding: 27px; background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.02)); display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, background .35s ease; }
.service-card::before { content:""; position:absolute; width:190px; height:190px; border-radius:50%; background: radial-gradient(circle, rgba(184,255,88,.13), transparent 70%); right:-90px; bottom:-110px; opacity:0; transform: scale(.7); transition:.45s ease; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(184,255,88,.3); background: linear-gradient(145deg, rgba(255,255,255,.078), rgba(255,255,255,.025)); }
.service-card:hover::before { opacity:1; transform:scale(1.2); }
.service-top { display:flex; align-items:center; justify-content:space-between; color:#696970; font-size:12px; }
.service-icon { width:42px; height:42px; border-radius:50%; display:grid; place-items:center; border:1px solid var(--line); color:#b0b0b7; font-size:18px; transition:.3s ease; }
.service-card:hover .service-icon { background:var(--accent); color:#10110e; border-color:var(--accent); transform:rotate(45deg); }
.service-card h3 { font-family:Manrope,sans-serif; font-size:28px; letter-spacing:-.035em; margin:0 0 13px; }
.service-card p { color:#898990; line-height:1.7; margin:0; font-size:14px; max-width:330px; }
.tags { display:flex; flex-wrap:wrap; gap:7px; margin-top:25px; }
.tags span { border:1px solid rgba(255,255,255,.1); border-radius:100px; padding:7px 10px; color:#77777e; font-size:10px; text-transform:uppercase; letter-spacing:.07em; }

.work-section { padding-bottom: 100px; }
.work-list { display:grid; grid-template-columns:1.25fr .75fr; gap:16px; align-items:start; }
.work-card { display:block; }
.work-visual { height:520px; border-radius:var(--radius); border:1px solid var(--line); overflow:hidden; position:relative; padding:38px; transition:transform .35s ease, border-color .35s ease; }
.work-card:nth-child(2) .work-visual { height:430px; }
.work-card:hover .work-visual { transform:translateY(-6px); border-color:rgba(255,255,255,.25); }
.visual-one { background:linear-gradient(135deg,#c9c4b9,#767067); color:#191917; display:grid; place-items:center; }
.mock-site { width:78%; height:78%; background:#efebe2; border-radius:12px; box-shadow:0 34px 60px rgba(0,0,0,.23); padding:20px; display:flex; flex-direction:column; transform:rotate(-2deg); transition:transform .45s cubic-bezier(.2,.8,.2,1); }
.work-card:hover .mock-site { transform:rotate(0deg) scale(1.03); }
.mock-nav { display:flex; justify-content:space-between; align-items:center; font-size:10px; }
.mock-hero { margin:auto 0; font-family:Manrope,sans-serif; font-size:clamp(32px,4vw,58px); line-height:.95; letter-spacing:-.06em; }
.mock-hero em { font-family:Georgia,serif; font-weight:normal; }
.mock-pill { align-self:flex-start; border:1px solid #777268; border-radius:30px; padding:8px 12px; font-size:9px; }
.visual-two { background:#b8ff58; color:#12130f; }
.poster-type { font-family:Manrope,sans-serif; font-size:clamp(42px,6vw,76px); line-height:.8; font-weight:800; letter-spacing:-.07em; position:relative; z-index:2; }
.poster-type span { color:transparent; -webkit-text-stroke:1px #12130f; }
.poster-grid { position:absolute; inset:0; opacity:.17; background-image:linear-gradient(#111 1px,transparent 1px),linear-gradient(90deg,#111 1px,transparent 1px); background-size:35px 35px; transition:background-size .45s ease; }
.work-card:hover .poster-grid { background-size:28px 28px; }
.work-arrow { position:absolute; width:52px; height:52px; border-radius:50%; right:25px; bottom:25px; display:grid; place-items:center; background:#0c0c0e; color:white; font-size:20px; transform:scale(.9) rotate(-5deg); transition:.3s ease; }
.work-card:hover .work-arrow { transform:scale(1) rotate(45deg); }
.work-meta { display:flex; justify-content:space-between; align-items:flex-start; padding:18px 5px 0; }
.work-meta h3 { margin:0; font-family:Manrope,sans-serif; font-size:20px; letter-spacing:-.03em; }
.work-meta p,.work-meta>span { margin:5px 0 0; color:#6f6f76; font-size:12px; }

.process-section { padding-bottom: 120px; }
.process-list { border-top:1px solid var(--line); }
.process-row { min-height:132px; display:grid; grid-template-columns:80px 1fr 1.2fr 55px; align-items:center; gap:20px; border-bottom:1px solid var(--line); position:relative; transition:padding .35s ease, background .35s ease; }
.process-row::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(184,255,88,.055), transparent 70%); opacity:0; transition:opacity .3s ease; }
.process-row:hover { padding-inline:14px; }
.process-row:hover::before { opacity:1; }
.process-row>* { position:relative; z-index:1; }
.process-num { font-size:11px; color:#5e5e65; }
.process-row h3 { margin:0; font-family:Manrope,sans-serif; font-size:25px; letter-spacing:-.035em; }
.process-row p { margin:0; color:#85858c; line-height:1.6; font-size:14px; max-width:430px; }
.process-plus { justify-self:end; width:38px; height:38px; border:1px solid var(--line); border-radius:50%; display:grid; place-items:center; color:#77777f; transition:.3s ease; }
.process-row:hover .process-plus { background:var(--accent); color:#10110e; border-color:var(--accent); transform:rotate(90deg); }

.about-strip { padding-bottom:140px; }
.about-statement { min-height:370px; border-radius:36px; border:1px solid var(--line); background:radial-gradient(circle at 18% 20%,rgba(139,92,246,.15),transparent 28%),radial-gradient(circle at 86% 74%,rgba(184,255,88,.1),transparent 30%),#0e0e12; padding:55px; display:flex; flex-direction:column; justify-content:space-between; overflow:hidden; position:relative; }
.asterisk { color:var(--accent); font-size:30px; }
.about-statement p { margin:0; font-family:Manrope,sans-serif; font-size:clamp(32px,4.5vw,64px); line-height:1.07; letter-spacing:-.055em; color:#73737b; }
.about-statement strong { color:#ededeb; font-weight:600; }

.contact { padding-bottom:55px; }
.contact-card { min-height:570px; border-radius:40px; background:#f0f0eb; color:#111113; padding:65px; position:relative; overflow:hidden; display:flex; flex-direction:column; align-items:flex-start; justify-content:center; }
.contact-kicker { font-size:11px; letter-spacing:.16em; color:#777; margin-bottom:25px; position:relative; z-index:2; }
.contact-card h2 { margin:0; font-family:Manrope,sans-serif; font-size:clamp(55px,7vw,100px); line-height:.92; letter-spacing:-.07em; position:relative; z-index:2; }
.contact-card .text-gradient { background:linear-gradient(100deg,#151515,#5b3fd6 48%,#6b931f); -webkit-background-clip:text; background-clip:text; color:transparent; }
.contact-card p { max-width:500px; color:#676767; line-height:1.7; margin:28px 0 0; position:relative; z-index:2; }
.contact-mail { margin-top:32px; min-height:62px; background:#111113; color:#fff; border-radius:16px; padding:0 24px; display:inline-flex; align-items:center; gap:35px; font-weight:600; position:relative; z-index:2; transition:transform .25s ease; }
.contact-mail:hover { transform:translateY(-3px); }
.contact-mail span { color:var(--accent); font-size:19px; transition:.25s ease; }
.contact-mail:hover span { transform:translate(3px,-3px); }
.contact-orb { position:absolute; width:500px; height:500px; border-radius:50%; right:-120px; bottom:-220px; background:radial-gradient(circle at 35% 35%,#b8ff58,#7c5cff 55%,#151515 75%); filter:blur(1px); opacity:.85; }
.contact-orb::after { content:""; position:absolute; inset:22%; border:1px solid rgba(255,255,255,.5); border-radius:50%; box-shadow:0 0 0 45px rgba(255,255,255,.08),0 0 0 90px rgba(255,255,255,.06); }

.footer { min-height:130px; display:grid; grid-template-columns:1fr 1fr 1fr; align-items:center; color:#68686f; font-size:12px; }
.footer p { text-align:center; }
.footer-right { justify-self:end; display:flex; gap:24px; }
.footer-right a { color:#b5b5bb; }
.footer-right a:hover { color:white; }

.reveal { opacity:0; transform:translateY(28px); transition:opacity .8s cubic-bezier(.2,.8,.2,1),transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.12s; }
.reveal-delay-2 { transition-delay:.22s; }

@media (max-width: 980px) {
  .section-shell { width:min(calc(100% - 36px),var(--max)); }
  .hero { grid-template-columns:1fr; padding-top:145px; gap:26px; }
  .hero-stage { min-height:440px; }
  .stage-window { max-width:560px; }
  .hero-bottom { margin-top:0; }
  .services-grid { grid-template-columns:1fr; }
  .service-card { min-height:300px; }
  .work-list { grid-template-columns:1fr; }
  .work-card:nth-child(2) .work-visual,.work-visual { height:460px; }
  .process-row { grid-template-columns:55px 1fr 55px; padding:24px 0; }
  .process-row p { grid-column:2 / 3; }
  .process-plus { grid-column:3; grid-row:1 / 3; }
}

@media (max-width: 760px) {
  .site-header { top:10px; width:calc(100% - 20px); }
  .nav-toggle { display:block; z-index:3; }
  .nav { position:absolute; top:76px; left:0; right:0; padding:18px; border:1px solid var(--line); border-radius:18px; background:rgba(10,10,12,.97); backdrop-filter:blur(16px); display:flex; flex-direction:column; align-items:stretch; gap:0; opacity:0; pointer-events:none; transform:translateY(-8px); transition:.25s ease; }
  .nav.open { opacity:1; pointer-events:auto; transform:translateY(0); }
  .nav>a { padding:15px 8px; }
  .nav-cta { margin-top:8px; justify-content:space-between; padding:15px !important; }
  .hero { padding-top:130px; padding-bottom:38px; min-height:auto; }
  .hero h1 { font-size:clamp(48px,14vw,72px); }
  .hero-lead { font-size:16px; }
  .hero-actions { flex-direction:column; }
  .button { width:100%; }
  .hero-stage { min-height:360px; }
  .stage-window { width:94%; transform:none; }
  .window-content { padding:28px; }
  .floating-chip { display:none; }
  .hero-bottom { display:none; }
  .section { padding-top:100px; }
  .section-heading { grid-template-columns:1fr; gap:22px; margin-bottom:42px; }
  .section-heading h2 { font-size:clamp(40px,12vw,60px); }
  .service-card { min-height:280px; padding:23px; }
  .work-visual,.work-card:nth-child(2) .work-visual { height:360px; padding:24px; }
  .mock-site { width:90%; height:82%; }
  .poster-type { font-size:56px; }
  .process-row { grid-template-columns:42px 1fr 40px; gap:10px; }
  .process-row h3 { font-size:21px; }
  .about-strip { padding-bottom:95px; }
  .about-statement { min-height:330px; padding:30px; border-radius:28px; }
  .contact { width:calc(100% - 20px); }
  .contact-card { min-height:590px; border-radius:30px; padding:32px 25px; justify-content:flex-start; padding-top:55px; }
  .contact-card h2 { font-size:clamp(52px,16vw,78px); }
  .contact-card p { max-width:390px; }
  .contact-mail { width:100%; justify-content:space-between; }
  .contact-orb { width:390px; height:390px; right:-120px; bottom:-200px; }
  .footer { grid-template-columns:1fr auto; padding:28px 0; gap:25px; }
  .footer p { display:none; }
  .footer-right { gap:15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
  .cursor-glow { display:none; }
}

/* Real project: Apartmán Kumbor */
.work-list-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 920px;
}

.visual-montenegro {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 210, 126, .32), transparent 24%),
    linear-gradient(145deg, #11181c 0%, #18313b 46%, #8db4ba 100%);
  display: grid;
  place-items: center;
}

.montenegro-browser {
  width: min(94%, 760px);
  height: 86%;
  border-radius: 18px;
  overflow: hidden;
  background: #f1ede4;
  color: #13252a;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  transform: rotate(-1.5deg) scale(.98);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}

.work-card:hover .montenegro-browser {
  transform: rotate(0deg) scale(1.015);
  box-shadow: 0 34px 85px rgba(0,0,0,.35);
}

.montenegro-topbar {
  height: 38px;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  border-bottom: 1px solid rgba(19,37,42,.12);
  padding: 0 13px;
  background: rgba(255,255,255,.58);
}

.montenegro-topbar > span {
  justify-self: center;
  max-width: 72%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 10px;
  color: rgba(19,37,42,.55);
}

.montenegro-page {
  height: calc(100% - 38px);
  padding: 23px 28px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f1ede4 0 56%, #b7d4d4 56% 100%);
}

.montenegro-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 3;
  font-size: 9px;
  letter-spacing: .05em;
}

.montenegro-nav b { font-family: Manrope, sans-serif; }
.montenegro-nav span { color: rgba(19,37,42,.57); }

.montenegro-copy {
  position: relative;
  z-index: 3;
  margin-top: clamp(34px, 7vw, 72px);
  max-width: 76%;
}

.montenegro-kicker {
  font-size: 9px;
  letter-spacing: .18em;
  font-weight: 700;
  color: #5f706d;
}

.montenegro-copy h3 {
  margin: 10px 0 17px;
  font-family: Manrope, sans-serif;
  font-size: clamp(28px, 4.8vw, 53px);
  line-height: .96;
  letter-spacing: -.055em;
}

.montenegro-copy h3 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #607b78;
}

.montenegro-features { display: flex; gap: 8px; flex-wrap: wrap; }
.montenegro-features span {
  padding: 7px 9px;
  border: 1px solid rgba(19,37,42,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  font-size: 8px;
  font-weight: 700;
}

.montenegro-sun {
  position: absolute;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  right: 8%;
  top: 28%;
  background: #f0c66e;
  box-shadow: 0 0 55px rgba(240,198,110,.35);
}

.montenegro-sea {
  position: absolute;
  width: 120%;
  height: 42%;
  left: -10%;
  bottom: -15%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, #477e87, #214d59);
  transform: rotate(-3deg);
}

@media (max-width: 680px) {
  .work-list-single { max-width: none; }
  .montenegro-browser { width: 100%; height: 88%; }
  .montenegro-page { padding: 18px; }
  .montenegro-nav span { display: none; }
  .montenegro-copy { max-width: 92%; margin-top: 32px; }
  .montenegro-sun { width: 95px; height: 95px; right: 4%; top: 32%; }
}
